@font-face {
  font-family: "Estedad Persian";
  src: url("assets/fonts/Estedad-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0600-06FF, U+0750-077F, U+08A0-08FF, U+FB50-FDFF, U+FE70-FEFF, U+200C-200F, U+202A-202E, U+2066-2069;
}

:root {
  --display-fa: "Estedad Persian", "Noto Naskh Arabic", Georgia, serif;
  --body-fa: "Estedad Persian", "Vazirmatn", Tahoma, Arial, sans-serif;
  "Estedad Persian", "Roboto Mono", monospace;
  --container: min(1220px, calc(100vw - 48px));
  --ink: #f5f6f8;
  --muted: rgba(245, 246, 248, .72);
  --muted-2: rgba(245, 246, 248, .56);
  --surface: #0a0d14;
  --surface-2: #10141f;
  --surface-3: #131722;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.18);
  --accent: #7d8cff;
  --shadow: 0 24px 80px rgba(0, 0, 0, .34);
  --header-h: 92px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top center, rgba(68, 106, 182, .16), transparent 38%),
    linear-gradient(180deg, #07090d, #0a0d14 26%, #080a0f 100%);
  color: var(--ink);
  font-family: var(--body-fa);
  font-weight: 360;
  line-height: 1.75;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: rgba(201, 218, 255, .82); color: #08111d; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 108px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; inset: 10px auto auto 10px; z-index: 100;
  transform: translateY(-150%); background: white; color: black; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 60; pointer-events: none; padding-top: 18px;
}
.site-header > * { pointer-events: auto; }
.nav-shell {
  width: min(calc(100vw - 56px), 1960px);
  margin-inline: auto;
  height: 58px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  direction: ltr;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(108, 146, 206, .16), rgba(255,255,255,.08) 50%, rgba(127, 160, 214, .14));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 40px rgba(0,0,0,.14);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.scrolled .nav-shell {
  background: linear-gradient(90deg, rgba(19, 31, 53, .68), rgba(255,255,255,.07) 50%, rgba(20, 34, 58, .65));
  border-color: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 18px 54px rgba(0,0,0,.24);
}
.brand {
  width: 90px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.brand img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  display: flex; align-items: center; justify-content: center; gap: 10px; direction: rtl;
}
.nav-links a,
.nav-login {
  font-size: 13px; letter-spacing: .02em; line-height: 1;
  color: rgba(255,255,255,.82);
}
.nav-links a {
  min-height: 34px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 15px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid transparent;
  transition: .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.12);
  color: white;
}
.nav-actions { display: flex; align-items: center; gap: 20px; direction: ltr; }
.nav-login {
  opacity: .92; padding-inline: 4px; transition: opacity .2s ease, color .2s ease;
}
.nav-login:hover { opacity: 1; color: white; }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.08);
  border-radius: 12px;
}
.menu-toggle span { width: 18px; height: 1px; background: white; display: block; margin: 5px auto; transition: .2s ease; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 18px; border-radius: 12px;
  font-size: 14px; font-weight: 500; border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 40px; padding: 10px 16px; }
.button-primary { background: #ffffff; color: #11131c; }
.button-primary:hover { background: #eef2f9; }
.button-ghost { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.24); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.11); }
.button.full { width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + 56px) 0 56px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-media,
.hero::after {
  position: absolute; inset: 0; content: "";    z-index: -9;
}
.hero-media {
  z-index: -2; background: url("assets/generated/hero-sky-new.png") center/cover no-repeat;
  transform: scale(1.03);
  
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(3,7,16,.16), rgba(5,9,17,.42) 56%, rgba(7,10,17,.92) 100%),
    radial-gradient(circle at center, rgba(140, 189, 255, .18), transparent 42%);
}
.hero-content {
  text-align: center; display: flex; flex-direction: column; align-items: center; position: relative;
}
.hero-meta {
  position: absolute;
  top: 8px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.78);
}
.hero-meta span {
  display:block;
  width:100%;
  text-align:justify;
  text-align-last: justify; /* Forces the last line to stretch too, if needed */
    word-break: normal;

}
.eyebrow {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 34px; padding: 4px 12px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.12);
  font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero-logo { width: min(100px, 18vw); margin: 0px; 
           position: absolute;
  top: 0px;
  left: 0;
           
           }
.hero h1,
.section-heading h2,
.copy-card h2,
.download-copy h2,
.rules-card h3,
.visual-band-copy h3,
.process-card h3,
.price strong {
  margin: 0;
  font-family: var(--display-fa);
  font-weight: 650;
  letter-spacing: -.03em;
}
.hero h1 { font-size: clamp(24px, 2vw, 42px); line-height: 1; max-width: 950px; margin-top:1em;}
.hero h1 em,
.section-heading h2 em,
.copy-card h2 em,
.download-copy h2 em { font-style: normal;   color:rgb(213 196 253); backdrop-filter: blur(18px);  }
.hero > .hero-content > p {
  max-width: 8000px; margin: 14px auto 0; font-size: 18px; color: rgba(245,246,248,.8);
}
.hero-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.prompt-bar {
  width: min(720px, 100%); display: flex; direction: rtl; align-items: center; gap: 10px;
  margin-top: 36px; padding: 8px 10px 8px 8px; border-radius: 999px;
  background: rgba(18, 25, 39, .38); border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
  backdrop-filter: blur(22px);
}
.prompt-bar input {
  flex: 1; min-width: 0; border: 0; background: transparent; color: white; outline: none; padding: 10px 16px;
}
.prompt-bar input::placeholder { color: rgba(255,255,255,.6); }
.prompt-bar button {
  width: 48px; height: 48px; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.18); font-size: 22px; transition: .2s ease;
}
.prompt-bar button:hover { background: white; color: #10131b; }
.prompt-note { margin: 12px 0 0 !important; font-size: 12px !important; color: rgba(255,255,255,.58) !important; }
.hero-proof { display: flex; direction: rtl; gap: 44px; margin-top: 40px; }
.hero-proof div { display: flex; flex-direction: column; gap: 4px; }
.hero-proof strong { font-family: var(--mono); font-size: 18px; font-weight: 500; }
.hero-proof span { font-size: 11px; color: rgba(255,255,255,.58); text-transform: uppercase; }

.section-heading {
  text-align: center; max-width: 850px; margin: 0 auto 52px;
}
.section-heading.align-start { text-align: right; margin: 0; }
.mono-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .09em; color: rgba(255,255,255,.54); direction: ltr; display: inline-block;
}
.section-heading h2,
.copy-card h2,
.download-copy h2 { font-size: clamp(24px, 3.5vw, 42px); line-height: 1.1; margin-top: 16px; }
.section-heading p,
.copy-card p,
.download-copy p,
.visual-band-copy p { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.compact-heading { max-width: 920px; }

.split-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: center;
}
.split-grid-wide { grid-template-columns: .9fr 1.1fr; }
.copy-card {
  display: flex; flex-direction: column; align-items: flex-start;
}
.copy-card.align-start { text-align: right; }
.bullet-list {
  margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 14px;
}
.bullet-list li {
  position: relative; padding-right: 26px; color: var(--ink);
}
.bullet-list li::before {
  content: "✔"; position: absolute; right: 0; top: 0; color: #8ec3ff; font-size: 14px;
}
.bullet-list li.star::before {
  content: "★" !important; /* Overrides the checkmark successfully */
}
.bullet-list li.starpro::before {
  content: "✪" !important; /* Overrides the checkmark successfully */
}
.stat-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}
.stat-pills span {
  border-radius: 999px; padding: 10px 14px; font-size: 12px;
  background: rgba(125,140,255,.12); border: 1px solid rgba(125,140,255,.24); color: #eef1ff;
}
.stat-pills-dark span {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14);
}

.visual-panel {
  position: relative; overflow: hidden; border-radius: 28px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.visual-panel img { width: 100%; height: 100%; object-fit: cover; }
.panel-dark { min-height: 640px; background: #05070c; }
.panel-glow { min-height: 560px; background: #080b12; }
.panel-padding-lg img { padding: 22px; }
.panel-flat { min-height: 520px; background: #04070d; }
.panel-flat img { padding: 14px; }
.panel-forecast { min-height: 440px; background: #041024; }
.panel-forecast img { object-fit: cover; }

.experience,
.process,
.testimonials,
.footer { background: transparent; }
.insights,
.forecast,
.faq { background: rgba(255,255,255,.015); }
.pricing,
.rules,
.download-cta { background: transparent; }

.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px;
}
.process-card {
  min-height: 280px; padding: 30px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column;
}
.process-card .step { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.5); }
.process-card h3 { font-size: 31px; line-height: 1.18; margin: auto 0 16px; }
.process-card p { margin: 0; color: var(--muted); font-size: 15px; }
.visual-band {
  display: grid; grid-template-columns: .76fr 1.24fr; gap: 24px; align-items: center;
  margin-top: 22px; padding: 30px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(18,27,42,.84), rgba(9,13,21,.9));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.visual-band-copy h3 { font-size: 38px; line-height: 1.12; margin-top: 18px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch;
}
.price-card {
  min-height: 560px; display: flex; flex-direction: column; padding: 32px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 48px rgba(0,0,0,.16);
}
.price-card-featured {
  border-color: rgba(146, 190, 255, .38);
  background: linear-gradient(180deg, rgba(84,110,171,.18), rgba(255,255,255,.03));
  transform: translateY(-10px);
}
.price-card-pro {background: linear-gradient(180deg, rgb(0 0 0 / 56%), rgba(0, 0, 0, .1));border-color: rgba(255, 255, 255, .38);box-shadow: 0 14px 48px rgba(0,0,0,.66);}

.price-card-pro {
  position: relative;
  overflow: hidden;       /* Prevents video overflow */
  isolation: isolate;
  border-radius: 22px;
  background: #050913;
}

/* Animated background */
.price-card-pro > .price-card-video {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: inherit;
  pointer-events: none;

  opacity: 0.32;

  transform: translateZ(0);
  backface-visibility: hidden;

  /* Fade the video near the card margins */
  -webkit-mask-image: radial-gradient(
    ellipse 95% 90% at center,
    #000 20%,
    rgba(0, 0, 0, 0.9) 48%,
    rgba(0, 0, 0, 0.4) 72%,
    transparent 100%
  );

  mask-image: radial-gradient(
    ellipse 95% 90% at center,
    #000 20%,
    rgba(0, 0, 0, 0.9) 48%,
    rgba(0, 0, 0, 0.4) 72%,
    transparent 100%
  );
}

/* Dark readable layer above the video */
.price-card-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;

  background:
    linear-gradient(
      180deg,
      rgba(3, 7, 16, 0.36),
      rgba(3, 7, 16, 0.12) 45%,
      rgba(3, 7, 16, 0.75)
    ),
    radial-gradient(
      ellipse at center,
      transparent 20%,
      rgba(3, 7, 16, 0.2) 58%,
      rgba(3, 7, 16, 0.85) 100%
    );
}

/* Keep all card content above the video */
.price-card-pro > :not(.price-card-video) {
  position: relative;
  z-index: 2;
}


.price-card header { display: flex; align-items: flex-start; justify-content: space-between; direction: ltr; }
.price-card header > div { display: flex; flex-direction: column; align-items: flex-start; }
.plan-name { font-family: var(--mono); font-size: 20px; letter-spacing: .08em; }
.plan-subtitle, .plan-index, .plan-icon { color: rgba(255,255,255,.56); font-size: 13px; }
.plan-icon { font-size: 18px; display:flex;direction:ltr; gap:6px; position: relative;
    top: -2px;}
.plan-icon span {font-size: 13px;    position: relative;
    top: 2px; }
.price-card ul {
  list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 14px;
}
.price-card li { position: relative; padding-right: 26px; color: rgba(255,255,255,.9); }
.price-card li::before { content: "✔"; position: absolute; right: 0; color: #b8d5ff; }
.price {
  margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); min-height: 110px;
  display: flex; align-items: center;
}
.priceplus {
  margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); min-height: 110px;
 
}
.priceplus strong { font-size: 33px; line-height: 1.2; }

.price-discounted {
      margin-top: auto;
    padding: 8px;
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1em;
	direction:ltr;
	
}
  

.price-discounted strong{
text-decoration:line-through 2px solid rgba(255,255,255,0.75); font-size: 20.4px;
opacity:0.66;
}
.price-discounted em, .priceplus em, .price em {
font-style: normal;
    color: rgb(213 196 253);
            font-size: 12.6px; 
}
 .priceplus em, .price em {
 padding-right:4px;
 }
 .priceplus em{
	 padding-right:0px;
     width: 50%;
    text-align: right;
 }
.price strong { font-size: 33px; line-height: 1.2; }
.price-card .button { margin-top: 24px; }

.rules-card {
  padding: 38px; border-radius: 28px; background: rgba(240,242,246,.92); color: #10131a;
  border: 1px solid rgba(255,255,255,.38); box-shadow: var(--shadow);
}
.rules-card h3 { font-size: 38px; line-height: 1.15; margin-bottom: 16px; }
.rules-card p { margin: 0; font-size: 16px; line-height: 2; color: rgba(16, 19, 26, .9); }

.stories-shell {
  position: relative; min-height: 720px; border-radius: 32px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08); background: linear-gradient(180deg, rgba(7,9,15,.8), rgba(4,5,10,.95));
  box-shadow: var(--shadow);
}
.stories-glow {
  position: absolute; inset: 0;
}
.stories-glow img { width: 100%; height: 100%; object-fit: cover; opacity: .96; }
.stories-grid {
  position: absolute; inset: auto 32px 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.story-card {
  min-height: 208px; padding: 24px; border-radius: 24px; color: white;
  display: flex; flex-direction: column; justify-content: space-between;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16);
}
.story-card span { font-family: var(--mono); font-size: 13px; opacity: .8; }
.story-card p { margin: 0; font-size: 18px; line-height: 1.8; }
.story-blue { background: linear-gradient(135deg, rgba(106,176,255,.92), rgba(255,187,58,.92)); }
.story-green { background: linear-gradient(135deg, rgba(0,138,107,.92), rgba(170,224,77,.9)); }
.story-cyan { background: linear-gradient(135deg, rgba(1,149,209,.94), rgba(195,240,255,.88)); color: #f8fdff; }

.faq-grid {
  display: grid; grid-template-columns: .64fr 1.36fr; gap: 48px;
}
.accordion {
  border-top: 1px solid rgba(255,255,255,.16);
}
details { border-bottom: 1px solid rgba(255,255,255,.16); }
summary {
  list-style: none; cursor: pointer; padding: 24px 36px 24px 4px; position: relative; font-size: 18px; font-weight: 520;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; left: 4px; top: 22px; font-family: var(--mono); color: rgba(255,255,255,.6);
}
details[open] summary::after { content: "−"; }
details p { margin: -6px 0 24px; color: var(--muted); font-size: 15px; }

.download-panel {
  position: relative; min-height: 660px; border-radius: 32px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1); box-shadow: var(--shadow);
}
.download-bg,
.download-bg::after {
  position: absolute; inset: 0; content: "";
}
.download-bg img { width: 100%; height: 100%; object-fit: cover; }
.download-bg::after {
  background: linear-gradient(180deg, rgba(7,10,17,.1), rgba(8,11,18,.18) 40%, rgba(7,10,17,.75) 100%);
}
.download-copy {
  position: relative; z-index: 1; min-height: 660px; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; padding: 56px 32px;
}
.download-copy h2 { max-width: 920px; }
.download-copy p { max-width: 700px; color: rgba(255,255,255,.88); }

.footer {
  padding: 82px 0 24px; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 38px;
}
.footer-brand img { width: 250px; margin-bottom: 18px; }
.footer-brand p,
.footer-grid span,
.footer-grid a { color: rgba(255,255,255,.62); }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-grid strong { margin-bottom: 8px; font-weight: 600; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; margin-top: 56px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08); font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.46); direction: ltr;
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.455,.03,.515,.955), transform 1s cubic-bezier(.455,.03,.515,.955);
}
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 32px, 960px); }
  .split-grid,
  .split-grid-wide,
  .visual-band,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid,
  .pricing-grid,
  .stories-grid { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
  .stories-shell { min-height: auto; padding-bottom: 28px; }
  .stories-glow { position: relative; height: 420px; }
  .stories-grid { position: relative; inset: auto; padding: 0 28px; margin-top: -48px; }
}

@media (max-width: 980px) {
  :root { --header-h: 84px; }
  .nav-shell {
    grid-template-columns: auto auto; gap: 14px; width: min(calc(100vw - 28px), 980px); padding: 0 14px;
  }
  .menu-toggle { display: block; justify-self: end; }
  .nav-actions { margin-right: auto; gap: 12px; }
  .nav-links {
    position: fixed; inset: 86px 14px auto; display: none; flex-direction: column; align-items: stretch; gap: 8px; direction: rtl;
    background: rgba(10, 13, 20, .94); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; padding: 16px;
    backdrop-filter: blur(24px);
  }
  body.menu-open .nav-links { display: flex; }
  .nav-links a { min-height: 42px; justify-content: flex-start; }
  body.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(45deg); }
  body.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero-meta { display: none; }
  .hero-proof { gap: 24px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 720px) {
  :root { --container: calc(100vw - 24px); }
  .section { padding: 84px 0; }
  .site-header { padding-top: 12px; }
  .nav-shell { height: 54px; border-radius: 16px; }
  .nav-actions .button-small { display: none; }
  .nav-actions { gap: 8px; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 34px); padding-bottom: 64px; }
  .hero-logo { width: min(320px, 80vw); }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero > .hero-content > p { font-size: 16px; }
  .prompt-bar { border-radius: 22px; }
  .prompt-bar input { font-size: 14px; }
  .section-heading h2,
  .copy-card h2,
  .download-copy h2 { font-size: clamp(34px, 9vw, 44px); }
  .process-card h3,
  .rules-card h3,
  .visual-band-copy h3 { font-size: 28px; }
  .price strong { font-size: 28px; }
  .panel-dark { min-height: 420px; }
  .panel-glow,
  .panel-flat,
  .panel-forecast { min-height: 320px; }
  .stories-glow { height: 320px; }
  .story-card p { font-size: 16px; }
  .download-panel,
  .download-copy { min-height: 520px; }
  .footer-bottom { flex-direction: column; gap: 10px; align-items: flex-start; }
}
