:root {
  color-scheme: dark;
  --bg: #111318;
  --surface: #191c23;
  --surface-2: #232730;
  --text: #f7f7f4;
  --muted: #aeb4bf;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff695f;
  --accent-soft: #ffb29e;
  --ink-on-accent: #28100e;
  --max: 1180px;
  --radius: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 18px 24px;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 760; letter-spacing: -0.02em; }
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: var(--accent); color: var(--ink-on-accent); font-weight: 900; }
nav { display: flex; gap: 28px; font-size: 0.94rem; color: var(--muted); }
nav a:hover, .footer-links a:hover { color: var(--text); }
.lang-button { justify-self: end; border: 1px solid var(--line); background: var(--surface); color: var(--text); border-radius: 999px; padding: 8px 14px; cursor: pointer; font: inherit; }

.section-shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.hero { min-height: 760px; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 70px; padding-block: 96px 110px; }
.eyebrow { margin: 0 0 16px; color: var(--accent-soft); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 24px; font-size: clamp(3.5rem, 8vw, 7.2rem); line-height: 0.92; letter-spacing: -0.068em; }
h2 { margin-bottom: 20px; font-size: clamp(2.3rem, 5vw, 4.5rem); line-height: 1; letter-spacing: -0.055em; }
h3 { margin-bottom: 10px; font-size: 1.15rem; }
.hero-lede, .section-heading > p:not(.eyebrow), .cta-section > div > p:not(.eyebrow) { max-width: 660px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 18px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 999px; font-weight: 750; transition: transform 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--ink-on-accent); }
.button-secondary { background: var(--surface); border: 1px solid var(--line); }
.launch-note { max-width: 540px; color: #8f96a2; font-size: 0.82rem; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; inset: 7% 5%; background: radial-gradient(circle, rgba(255, 105, 95, 0.26), transparent 62%); filter: blur(18px); }
.stage-card { position: relative; z-index: 2; width: min(460px, 100%); padding: 16px; border-radius: 32px; background: linear-gradient(150deg, #292e39, #171a20); border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42); transform: rotate(2deg); }
.stage-card-top { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.8rem; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #62d49d; box-shadow: 0 0 0 4px rgba(98, 212, 157, 0.12); }
.pill { margin-left: auto; padding: 3px 9px; border-radius: 999px; background: rgba(255, 105, 95, 0.12); color: var(--accent-soft); font-weight: 800; }
.content-preview { min-height: 300px; margin: 14px 0; display: grid; place-items: center; border-radius: 22px; background: radial-gradient(circle at 36% 34%, rgba(255, 202, 178, 0.72), transparent 18%), linear-gradient(145deg, #bb5f51 0%, #5e4057 42%, #18283a 100%); overflow: hidden; }
.content-preview::before { content: "STAGE"; font-size: 5rem; font-weight: 950; letter-spacing: -0.09em; color: rgba(255, 255, 255, 0.16); transform: rotate(-8deg); }
.play-button { position: absolute; display: grid; place-items: center; width: 58px; height: 58px; padding-left: 4px; border-radius: 50%; background: rgba(17, 19, 24, 0.72); backdrop-filter: blur(12px); }
.card-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.card-metrics div { padding: 12px; border-radius: 14px; background: rgba(255, 255, 255, 0.045); }
.card-metrics strong, .card-metrics span { display: block; }
.card-metrics strong { font-size: 0.92rem; }
.card-metrics span { color: var(--muted); font-size: 0.7rem; }
.floating-chip { position: absolute; z-index: 3; padding: 10px 14px; border-radius: 999px; background: rgba(35, 39, 48, 0.9); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(0,0,0,.35); font-size: 0.82rem; font-weight: 700; backdrop-filter: blur(12px); }
.chip-one { top: 9%; left: -3%; }
.chip-two { right: -3%; bottom: 15%; }

.trust-strip { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 44px; padding: 24px; color: #858c97; border-block: 1px solid var(--line); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.section-block { padding-block: 130px; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step-card, .feature-card { min-height: 260px; padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step-number { display: block; margin-bottom: 62px; color: var(--accent); font-family: ui-monospace, monospace; font-size: 0.78rem; }
.step-card p, .feature-card p { color: var(--muted); font-size: 0.92rem; }
.split-section { display: grid; grid-template-columns: 1fr 0.8fr; gap: 80px; align-items: center; }
.pricing-card { padding: 34px; border-radius: 32px; background: linear-gradient(160deg, #282d37, #191c22); border: 1px solid var(--line); }
.pricing-label { color: var(--muted); font-size: 0.82rem; }
.price { margin: 8px 0 26px; font-size: 1rem; }
.price strong { display: block; font-size: 3.2rem; line-height: 1.05; letter-spacing: -0.055em; }
.pricing-card ul { padding: 0; margin: 0; list-style: none; }
.pricing-card li { position: relative; padding: 12px 0 12px 28px; border-top: 1px solid var(--line); }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.fine-print { margin: 22px 0 0; color: #8f96a2; font-size: 0.78rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card { min-height: 220px; }
.feature-card > span { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 42px; border-radius: 14px; background: rgba(255, 105, 95, 0.12); color: var(--accent); font-size: 1.4rem; }
.cta-section { width: min(var(--max), calc(100% - 40px)); margin: 20px auto 110px; padding: 72px; display: flex; justify-content: space-between; align-items: end; gap: 48px; border-radius: 36px; background: linear-gradient(130deg, #2b1e20, #222630 65%); border: 1px solid var(--line); }
.cta-section h2 { max-width: 760px; }

footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 54px 0 44px; display: grid; grid-template-columns: 1.1fr 0.7fr 1fr; gap: 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.84rem; }
.footer-brand p { max-width: 340px; margin-top: 18px; }
.footer-links { display: grid; align-content: start; gap: 10px; }
.legal-identity p { margin-bottom: 5px; }

.policy-main { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 120px; }
.policy-main h1 { font-size: clamp(3rem, 8vw, 5.4rem); }
.policy-main h2 { margin-top: 54px; font-size: 1.7rem; letter-spacing: -0.03em; }
.policy-main h3 { margin-top: 34px; }
.policy-main p, .policy-main li { color: #c3c8d0; }
.policy-main a { color: var(--accent-soft); text-decoration: underline; }
.policy-meta { margin-bottom: 48px; padding: 18px 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); }
.policy-main li { margin-bottom: 10px; }

.reveal { opacity: 1; transform: none; }
html[dir="rtl"] body { font-family: Tahoma, Arial, sans-serif; }
html[dir="rtl"] .pill { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .pricing-card li { padding-left: 0; padding-right: 28px; }
html[dir="rtl"] .pricing-card li::before { left: auto; right: 0; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { padding-top: 68px; gap: 20px; }
  .hero-visual { min-height: 500px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 48px; align-items: start; flex-direction: column; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .site-header { padding-inline: 18px; }
  .section-shell, .cta-section, footer, .policy-main { width: min(100% - 28px, var(--max)); }
  .hero { min-height: auto; padding-block: 58px 78px; }
  h1 { font-size: 3.45rem; }
  .hero-visual { min-height: 430px; }
  .stage-card { transform: none; }
  .content-preview { min-height: 240px; }
  .floating-chip { display: none; }
  .section-block { padding-block: 88px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 220px; }
  .step-number { margin-bottom: 42px; }
  .cta-section { margin-bottom: 70px; padding: 34px 24px; border-radius: 26px; }
  footer { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
