:root {
  color-scheme: dark;
  --bg: #06060a;
  --bg-soft: #0c0d13;
  --panel: rgba(17, 18, 27, 0.78);
  --panel-solid: #11121a;
  --panel-lift: #171822;
  --text: #f7f7fa;
  --muted: #a6a7b5;
  --muted-strong: #c8c8d2;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --brand: #ff003f;
  --brand-soft: #ff4b72;
  --max: 1240px;
  --header-h: 76px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--text);
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 0, 63, 0.12), transparent 30rem),
    radial-gradient(circle at 8% 36%, rgba(102, 73, 255, 0.1), transparent 34rem),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 74%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(6, 6, 10, 0.72);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.nav-row {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 1.05rem;
  font-weight: 760;
  letter-spacing: 0.03em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 0 28px rgba(255, 0, 63, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-links a,
.mobile-nav a {
  color: var(--muted-strong);
  font-size: 0.9rem;
  transition: color 160ms ease;
}

.nav-links a:hover,
.mobile-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.language-switch button {
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 650;
}

.language-switch button[aria-pressed="true"] {
  background: #f1f1f4;
  color: #0a0a0d;
}

.top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 9px;
  color: #0a0a0d;
  background: #fff;
  font-size: 0.86rem;
  font-weight: 720;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding: 58px 0 62px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 4vw, 60px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 660;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(255, 0, 63, 0.8);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.9rem, 3.3vw, 4rem);
  line-height: 1.06;
  letter-spacing: -0.052em;
  font-weight: 770;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 26px;
  color: var(--muted-strong);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 48px rgba(255, 0, 63, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.availability::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 7% 8% -4%;
  border-radius: 44%;
  background: radial-gradient(circle, rgba(255, 0, 63, 0.26), rgba(93, 63, 255, 0.12) 45%, transparent 70%);
  filter: blur(34px);
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: #0e0f15;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56), 0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.window-bar {
  height: 40px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #11121a;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3d3e47;
}

.window-label {
  margin-left: 7px;
  color: #8f909a;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.product-window img {
  width: 100%;
  aspect-ratio: 1199 / 768;
  object-fit: cover;
}

.hero-visual .product-window {
  transform: perspective(1600px) rotateY(-4.5deg) rotateX(1.2deg);
  transform-origin: center left;
}

.section {
  padding: 116px 0;
}

.section-tight {
  padding: 84px 0;
}

.section-border {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 52px;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--brand-soft);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 760;
}

.section-heading p {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.gallery-primary {
  margin-bottom: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.shot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-solid);
}

.shot-card img {
  width: 100%;
  aspect-ratio: 1199 / 768;
  object-fit: cover;
}

.shot-caption {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.shot-caption b {
  font-size: 0.9rem;
}

.shot-caption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
}

.workflow-step {
  min-height: 252px;
  padding: 28px 24px 26px;
  border-right: 1px solid var(--line);
}

.workflow-step:last-child {
  border-right: 0;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 720;
}

.workflow-step h3,
.feature-card h3,
.price-card h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.35;
}

.workflow-step p,
.feature-card p,
.price-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.016));
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #f2f2f5;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: 18px;
}

.pricing-intro {
  padding: 42px;
  border: 1px solid rgba(255, 0, 63, 0.3);
  border-radius: 19px;
  background: radial-gradient(circle at 30% 0%, rgba(255, 0, 63, 0.12), transparent 45%), var(--panel-solid);
}

.pricing-intro .section-kicker {
  margin-bottom: 16px;
}

.pricing-intro h2 {
  max-width: 550px;
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
}

.pricing-intro p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted-strong);
  line-height: 1.72;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-card {
  min-height: 190px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.price-card strong {
  display: block;
  margin-bottom: 26px;
  color: var(--brand-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 46px;
}

.faq-item {
  padding: 25px 0 27px;
  border-top: 1px solid var(--line);
}

.faq-item:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
  gap: 48px;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.company-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
}

.company-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.company-details {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.company-details div {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.company-details div:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.company-details dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.75rem;
}

.company-details dd {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.87rem;
  word-break: break-word;
}

.legal-links {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.legal-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.site-footer {
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

.legal-main {
  padding: 72px 0 120px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 56px;
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.legal-hero p {
  color: var(--muted);
  line-height: 1.75;
}

.draft-notice {
  max-width: 920px;
  margin-bottom: 42px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 0, 63, 0.28);
  border-radius: 10px;
  background: rgba(255, 0, 63, 0.07);
  color: var(--muted-strong);
  font-size: 0.86rem;
  line-height: 1.65;
}

.legal-article {
  max-width: 920px;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: var(--muted-strong);
  font-size: 0.91rem;
  line-height: 1.78;
}

.legal-section ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 8px;
}

[data-lang-block="en"] {
  display: none;
}

html[data-lang="en"] [data-lang-block="zh"] {
  display: none;
}

html[data-lang="en"] [data-lang-block="en"] {
  display: revert;
}

.inline-lang [data-lang-block] {
  display: none;
}

html[data-lang="zh"] .inline-lang [data-lang-block="zh"],
html[data-lang="en"] .inline-lang [data-lang-block="en"] {
  display: inline;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 36px;
  }

  .workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .workflow-step {
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:nth-child(3) {
    border-right: 0;
  }

  .workflow-step:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .pricing-wrap,
  .company-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links,
  .top-cta {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .menu-button {
    display: inline-flex;
  }

  .mobile-nav[data-open] {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(var(--header-h) - 2px);
    display: grid;
    gap: 1px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 16, 24, 0.98);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 8px;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    min-height: auto;
    padding: 64px 0 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  h1 {
    max-width: 860px;
  }

  .hero-visual {
    max-width: 760px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 68px;
  }

  .shell {
    width: min(100% - 32px, var(--max));
  }

  .site-header .shell {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    font-size: 0.96rem;
  }

  .language-switch button {
    min-width: 37px;
    padding: 0 8px;
  }

  .hero {
    padding: 46px 0 58px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.7rem;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 10.5vw, 3.25rem);
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .button {
    width: 100%;
  }

  .availability {
    align-items: flex-start;
    line-height: 1.5;
  }

  .hero-visual .product-window {
    transform: none;
  }

  .product-window,
  .shot-card {
    border-radius: 12px;
  }

  .window-bar {
    height: 32px;
  }

  .section,
  .section-tight {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 2.6rem);
  }

  .gallery-grid,
  .feature-grid,
  .price-grid,
  .faq-grid,
  .company-details {
    grid-template-columns: 1fr;
  }

  .shot-caption {
    min-height: 72px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 16px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:nth-child(3),
  .workflow-step:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:last-child {
    border-bottom: 0;
  }

  .step-index,
  .feature-icon {
    margin-bottom: 30px;
  }

  .feature-card {
    min-height: 204px;
  }

  .pricing-intro,
  .company-card {
    padding: 28px 22px;
  }

  .pricing-intro h2 {
    font-size: clamp(2rem, 8.5vw, 2.55rem);
  }

  .faq-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .faq-item:last-child {
    border-bottom: 1px solid var(--line);
  }

  .company-details div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .company-details div:last-child {
    border-bottom: 1px solid var(--line);
  }

  .legal-links {
    flex-direction: column;
  }

  .legal-main {
    padding: 50px 0 84px;
  }

  .legal-hero {
    margin-bottom: 38px;
  }

  .legal-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Rich product-entry interactions */
.media-button { padding: 0; color: inherit; text-align: inherit; cursor: zoom-in; }
.section-heading-split { align-items: end; }
.section-heading-split > div:last-child > p { margin: 0; color: var(--muted); line-height: 1.72; }

.idea-library-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin: -10px 0 22px; }
.library-filter { min-height: 36px; padding: 0 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: var(--muted); cursor: pointer; font-size: .76rem; font-weight: 650; }
.library-filter:hover, .library-filter.is-active { border-color: rgba(255,0,63,.5); background: rgba(255,0,63,.09); color: var(--text); }
.idea-library { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.idea-template { overflow: hidden; min-width: 0; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.012)); transition: transform 180ms ease, border-color 180ms ease; }
.idea-template:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.template-art { position: relative; overflow: hidden; min-height: 210px; display: grid; place-items: center; isolation: isolate; border-bottom: 1px solid var(--line); background: #0b0c12; }
.template-art::before, .template-art::after { content: ""; position: absolute; border-radius: 999px; filter: blur(1px); z-index: -1; }
.template-art::before { width: 220px; height: 220px; left: -50px; bottom: -110px; background: rgba(255,0,63,.26); box-shadow: 120px -58px 100px rgba(98,78,255,.16); }
.template-art::after { width: 120px; height: 120px; right: 24px; top: 22px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.025); }
.template-art > span { position: relative; z-index: 2; color: rgba(255,255,255,.92); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 850; letter-spacing: -.05em; text-shadow: 0 8px 35px rgba(0,0,0,.5); }
.template-art i { position: absolute; display: block; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.045); transform: rotate(45deg); }
.template-art i:nth-of-type(1) { width: 52px; height: 52px; left: 17%; top: 20%; }
.template-art i:nth-of-type(2) { width: 28px; height: 28px; right: 18%; bottom: 18%; }
.template-art i:nth-of-type(3) { width: 16px; height: 16px; left: 28%; bottom: 20%; background: var(--brand); border-color: var(--brand); box-shadow: 0 0 28px rgba(255,0,63,.5); }
.template-survival .template-art::before { background: rgba(67,176,121,.2); box-shadow: 140px -58px 100px rgba(255,163,63,.15); }
.template-puzzle .template-art::before { background: rgba(73,133,255,.22); box-shadow: 150px -44px 90px rgba(105,74,255,.18); }
.template-tower .template-art::before { background: rgba(255,133,56,.22); box-shadow: 130px -65px 100px rgba(255,0,63,.12); }
.template-platform .template-art::before { background: rgba(255,0,63,.23); box-shadow: 150px -52px 90px rgba(255,205,57,.13); }
.template-explore .template-art::before { background: rgba(59,124,155,.2); box-shadow: 140px -62px 100px rgba(103,73,255,.16); }
.template-copy { padding: 22px; }
.template-tags { display: flex; gap: 6px; margin-bottom: 14px; }
.template-tags span { padding: 4px 7px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.template-copy h3 { margin: 0 0 10px; font-size: 1.12rem; }
.template-copy p { min-height: 65px; margin: 0 0 18px; color: var(--muted); font-size: .8rem; line-height: 1.68; }
.template-copy .text-action { color: var(--muted-strong); }

.idea-lab { display: grid; grid-template-columns: 1fr; gap: 18px; }
.prompt-panel, .product-explorer, .workflow-detail, .audience-card, .platform-card, .download-card, .release-note, .download-help { border: 1px solid var(--line); border-radius: 19px; background: var(--panel); }
.prompt-panel { padding: 26px; }
.prompt-header, .download-card-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.prompt-header { margin-bottom: 18px; font-size: .82rem; }
.status-pill { display: inline-flex; align-items: center; min-height: 26px; padding: 0 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.04); color: var(--muted-strong); font-size: .68rem; font-weight: 700; }
.idea-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.idea-chip { min-height: 34px; padding: 0 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.025); color: var(--muted); cursor: pointer; font-size: .76rem; }
.idea-chip:hover, .idea-chip.is-active { border-color: rgba(255,0,63,.5); background: rgba(255,0,63,.09); color: var(--text); }
.prompt-editor { width: 100%; min-height: 190px; resize: vertical; padding: 20px; border: 1px solid var(--line); border-radius: 14px; outline: none; background: #0b0c12; color: var(--text); font: inherit; font-size: .96rem; line-height: 1.7; }
.prompt-editor:focus { border-color: rgba(255,0,63,.55); box-shadow: 0 0 0 3px rgba(255,0,63,.08); }
.prompt-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.product-explorer { overflow: hidden; display: grid; grid-template-columns: 300px minmax(0, 1fr); background: #0c0d13; }
.product-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.product-tab { flex: 1; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 14px; padding: 24px 22px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); text-align: left; cursor: pointer; }
.product-tab:last-child { border-bottom: 0; }
.product-tab:hover, .product-tab.is-active { background: rgba(255,255,255,.035); color: var(--text); }
.product-tab.is-active { box-shadow: inset 2px 0 var(--brand); }
.product-tab > span { color: var(--brand-soft); font-size: .7rem; font-weight: 760; }
.product-tab b, .product-tab small { display: block; }
.product-tab b { margin-bottom: 5px; font-size: .9rem; }
.product-tab small { color: var(--muted); font-size: .73rem; }
.product-stage { min-width: 0; }
.product-stage-media { display: block; width: 100%; border: 0; border-bottom: 1px solid var(--line); background: #050507; }
.product-stage-media img { width: 100%; aspect-ratio: 1199 / 660; object-fit: cover; object-position: top center; }
.product-stage-copy { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr) auto; align-items: end; gap: 24px; padding: 25px 28px 27px; }
.product-stage-copy .section-kicker { grid-column: 1 / -1; margin-bottom: -9px; }
.product-stage-copy h3 { margin: 0; font-size: 1.35rem; }
.product-stage-copy p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.text-action { padding: 0; border: 0; background: none; color: var(--muted-strong); cursor: pointer; white-space: nowrap; font: inherit; font-size: .78rem; }
.text-action:hover { color: var(--text); }

.workflow-explorer { display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); gap: 18px; }
.workflow-rail { display: grid; grid-template-columns: repeat(5, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: rgba(255,255,255,.02); }
.workflow-node { min-height: 225px; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; padding: 24px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); text-align: left; cursor: pointer; }
.workflow-node:last-child { border-right: 0; }
.workflow-node:hover, .workflow-node.is-active { background: rgba(255,255,255,.04); color: var(--text); }
.workflow-node.is-active { box-shadow: inset 0 2px var(--brand); }
.workflow-node > span { color: var(--brand-soft); font-size: .72rem; font-weight: 760; }
.workflow-node b, .workflow-node small { display: block; }
.workflow-node b { margin-bottom: 6px; font-size: .9rem; }
.workflow-node small { color: var(--muted); font-size: .71rem; line-height: 1.45; }
.workflow-detail { position: relative; overflow: hidden; min-height: 225px; display: grid; grid-template-columns: 120px 1fr; align-items: center; gap: 26px; padding: 34px; background: radial-gradient(circle at 0 50%, rgba(255,0,63,.15), transparent 42%), var(--panel-solid); }
.workflow-detail-index { color: rgba(255,255,255,.1); font-size: 5rem; font-weight: 800; letter-spacing: -.08em; }
.workflow-detail h3 { margin: 0 0 12px; font-size: 1.5rem; }
.workflow-detail p { margin: 0 0 18px; color: var(--muted); font-size: .88rem; line-height: 1.7; }
.workflow-detail strong { color: var(--muted-strong); font-size: .78rem; }

.verification-explorer { overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: #0c0d13; }
.verification-rail { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.018); }
.verification-tab { min-height: 126px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 14px; padding: 22px 20px; border: 0; border-right: 1px solid var(--line); background: transparent; color: var(--muted); text-align: left; cursor: pointer; }
.verification-tab:last-child { border-right: 0; }
.verification-tab:hover, .verification-tab.is-active { background: rgba(255,255,255,.04); color: var(--text); }
.verification-tab.is-active { box-shadow: inset 0 2px var(--brand); }
.verification-tab > span { color: var(--brand-soft); font-size: .7rem; font-weight: 780; }
.verification-tab b, .verification-tab small { display: block; }
.verification-tab b { margin-bottom: 6px; font-size: .88rem; }
.verification-tab small { color: var(--muted); font-size: .69rem; line-height: 1.4; }
.verification-stage { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr); min-height: 390px; }
.verification-copy { position: relative; overflow: hidden; padding: 42px; background: radial-gradient(circle at 0 20%, rgba(255,0,63,.15), transparent 42%), var(--panel-solid); }
.verification-copy::after { content: ""; position: absolute; width: 260px; height: 260px; right: -150px; bottom: -150px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.012), 0 0 0 90px rgba(255,255,255,.009); pointer-events: none; }
.verification-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 54px; }
.verification-meta .section-kicker { margin: 0; }
.verification-index { display: block; margin-bottom: 14px; color: rgba(255,255,255,.2); font-size: .78rem; font-weight: 760; letter-spacing: .08em; }
.verification-copy h3 { max-width: 720px; margin: 0 0 18px; font-size: clamp(1.6rem, 2.3vw, 2.4rem); letter-spacing: -.04em; line-height: 1.1; }
.verification-copy p { max-width: 760px; margin: 0 0 28px; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.verification-copy strong { display: inline-block; max-width: 760px; color: var(--muted-strong); font-size: .79rem; line-height: 1.55; }
.evidence-board { display: flex; flex-direction: column; padding: 30px; border-left: 1px solid var(--line); background: #090a0f; }
.evidence-board-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .67rem; font-weight: 760; letter-spacing: .08em; }
.evidence-row { display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 14px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.evidence-row > span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--brand-soft); font-size: .66rem; font-weight: 760; }
.evidence-row p { margin: 3px 0 0; color: var(--muted-strong); font-size: .8rem; line-height: 1.6; }
.evidence-boundary { margin-top: auto; padding-top: 24px; }
.evidence-boundary span, .evidence-boundary b { display: block; }
.evidence-boundary span { margin-bottom: 8px; color: var(--muted); font-size: .68rem; }
.evidence-boundary b { color: rgba(255,255,255,.74); font-size: .76rem; letter-spacing: .04em; }

.media-explorer { display: grid; grid-template-columns: 310px minmax(0, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: #0c0d13; }
.media-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.media-tab { flex: 1; display: grid; grid-template-columns: 36px 1fr; align-items: center; gap: 14px; min-height: 102px; padding: 21px 20px; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); text-align: left; cursor: pointer; }
.media-tab:last-child { border-bottom: 0; }
.media-tab:hover, .media-tab.is-active { background: rgba(255,255,255,.035); color: var(--text); }
.media-tab.is-active { box-shadow: inset 2px 0 var(--brand); }
.media-tab > span { color: var(--brand-soft); font-size: .69rem; font-weight: 760; }
.media-tab b, .media-tab small { display: block; }
.media-tab b { margin-bottom: 5px; font-size: .85rem; }
.media-tab small { color: var(--muted); font-size: .68rem; }
.media-stage { min-width: 0; display: flex; flex-direction: column; background: radial-gradient(circle at 85% 0, rgba(255,0,63,.12), transparent 38%), var(--panel-solid); }
.media-pipeline { min-height: 255px; display: flex; align-items: center; justify-content: center; gap: 11px; padding: 36px 28px; border-bottom: 1px solid var(--line); }
.media-pipeline > i { color: rgba(255,255,255,.22); font-style: normal; }
.pipeline-node { width: min(120px, 17%); min-height: 118px; display: flex; flex-direction: column; justify-content: space-between; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.025); }
.pipeline-node-accent { border-color: rgba(255,0,63,.38); background: rgba(255,0,63,.075); box-shadow: inset 0 0 34px rgba(255,0,63,.035); }
.pipeline-node span { color: var(--brand-soft); font-size: .65rem; font-weight: 760; }
.pipeline-node b { font-size: .74rem; line-height: 1.42; }
.media-stage-copy { padding: 30px 32px 34px; }
.media-stage-copy h3 { margin: 10px 0 12px; font-size: 1.55rem; }
.media-stage-copy p { max-width: 820px; margin: 0 0 18px; color: var(--muted); font-size: .88rem; line-height: 1.72; }
.media-stage-copy strong { color: var(--muted-strong); font-size: .78rem; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.audience-card { min-height: 480px; padding: 40px; background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); }
.audience-primary { background: radial-gradient(circle at 20% 0%, rgba(255,0,63,.16), transparent 45%), var(--panel-solid); border-color: rgba(255,0,63,.24); }
.audience-card h2 { margin: 0 0 24px; font-size: clamp(2rem, 2.45vw, 2.65rem); }
.audience-card p { color: var(--muted-strong); line-height: 1.75; }
.audience-card ul { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.audience-card li { position: relative; padding: 15px 0 15px 22px; border-bottom: 1px solid var(--line); color: var(--muted-strong); font-size: .86rem; }
.audience-card li::before { content: "↳"; position: absolute; left: 0; color: var(--brand-soft); }

.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.platform-card { display: grid; grid-template-columns: 76px 1fr auto; align-items: center; gap: 22px; padding: 26px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); }
.platform-icon { display: grid; place-items: center; width: 62px; height: 62px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(255,255,255,.035); color: var(--muted-strong); font-size: .72rem; font-weight: 800; letter-spacing: .04em; }
.platform-icon.large { width: 72px; height: 72px; }
.platform-card h3 { margin: 9px 0 4px; font-size: 1.12rem; }
.platform-card p { margin: 0; color: var(--muted); font-size: .78rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { padding: 0; border: 0; border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 24px; min-height: 76px; cursor: pointer; color: var(--text); font-size: 1rem; font-weight: 650; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { color: var(--muted); font-size: 1.4rem; font-weight: 300; transition: transform 160ms ease; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item > .inline-lang { display: block; max-width: 860px; padding: 0 60px 24px 0; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.72; }

.footer-grid { display: grid; grid-template-columns: minmax(280px, 1.8fr) repeat(3, 1fr); gap: 48px; padding: 54px 0 42px; }
.footer-brand p { max-width: 300px; margin: 20px 0 0; color: var(--muted); font-size: .82rem; line-height: 1.6; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-column b { margin-bottom: 4px; font-size: .78rem; }
.footer-column a { color: var(--muted); font-size: .78rem; }
.footer-column a:hover { color: var(--text); }
.footer-company { display: flex; flex-direction: column; gap: 5px; margin-top: 4px; color: var(--muted); font-size: .7rem; line-height: 1.55; }
.footer-bottom { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

.lightbox { width: min(1500px, calc(100vw - 64px)); max-width: none; padding: 0; border: 1px solid var(--line-strong); border-radius: 18px; background: #08090d; box-shadow: 0 40px 120px rgba(0,0,0,.7); }
.lightbox::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 96px); object-fit: contain; }
.lightbox-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; background: rgba(10,10,14,.82); color: #fff; cursor: pointer; font-size: 1.4rem; }
.toast { position: fixed; left: 50%; bottom: 32px; z-index: 100; transform: translate(-50%, 18px); opacity: 0; pointer-events: none; padding: 11px 15px; border: 1px solid var(--line-strong); border-radius: 10px; background: rgba(20,21,29,.96); color: var(--text); font-size: .8rem; transition: opacity 160ms ease, transform 160ms ease; }
.toast[data-show] { opacity: 1; transform: translate(-50%, 0); }

.download-main { padding: 94px 0 120px; }
.download-hero { max-width: 920px; margin-bottom: 54px; }
.download-hero h1 { margin-bottom: 22px; }
.download-hero p { max-width: 760px; color: var(--muted-strong); font-size: 1rem; line-height: 1.75; }
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.download-card { padding: 30px; background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.download-card-head { justify-content: flex-start; margin-bottom: 30px; }
.download-card-head h2 { margin: 8px 0 4px; font-size: 1.8rem; }
.download-card-head p { margin: 0; color: var(--muted); font-size: .8rem; }
.download-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.download-meta div { padding: 15px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.02); }
.download-meta span, .download-meta b { display: block; }
.download-meta span { margin-bottom: 6px; color: var(--muted); font-size: .68rem; }
.download-meta b { font-size: .82rem; }
.download-button { width: 100%; }
.download-button[aria-disabled="true"] { cursor: not-allowed; opacity: .56; background: rgba(255,255,255,.07); border-color: var(--line); box-shadow: none; }
.release-note { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: 52px; margin-top: 64px; padding: 42px; }
.release-note h2, .download-help h2 { margin: 0 0 18px; font-size: clamp(1.9rem, 2.6vw, 2.6rem); }
.release-note p, .download-help p { color: var(--muted); line-height: 1.72; }
.release-steps { list-style: none; padding: 0; margin: 0; }
.release-steps li { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 15px; min-height: 58px; border-bottom: 1px solid var(--line); }
.release-steps li:first-child { border-top: 1px solid var(--line); }
.release-steps span { color: var(--brand-soft); font-size: .7rem; font-weight: 760; }
.release-steps b { font-size: .84rem; }
.download-help { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: 52px; margin-top: 18px; padding: 42px; }
.company-details.compact { align-content: start; }

.cta-section { padding-top: 32px; }
.final-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 56px; padding: 52px; border: 1px solid rgba(255,0,63,.28); border-radius: 22px; background: radial-gradient(circle at 8% 0, rgba(255,0,63,.18), transparent 40%), linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.final-cta h2 { max-width: 760px; margin: 8px 0 18px; font-size: clamp(2.1rem, 3vw, 3.2rem); letter-spacing: -.045em; }
.final-cta p { max-width: 760px; margin: 0; color: var(--muted-strong); line-height: 1.72; }
.final-cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 190px; }
.final-cta-actions .button { width: 100%; }

@media (max-width: 1180px) {
  .idea-lab, .workflow-explorer, .release-note, .download-help { grid-template-columns: 1fr; }
  .idea-library { grid-template-columns: repeat(2, 1fr); }
  .product-explorer { grid-template-columns: 240px minmax(0,1fr); }
  .product-stage-copy { grid-template-columns: 1fr; align-items: start; }
  .product-stage-copy .section-kicker { grid-column: auto; margin-bottom: -8px; }
  .platform-card { grid-template-columns: 70px 1fr; }
  .platform-card .button { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .product-explorer { grid-template-columns: 1fr; }
  .product-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .product-tab { min-height: 110px; border-bottom: 0; border-right: 1px solid var(--line); }
  .product-tab:last-child { border-right: 0; }
  .product-tab.is-active { box-shadow: inset 0 2px var(--brand); }
  .workflow-rail { grid-template-columns: repeat(5, minmax(120px, 1fr)); overflow-x: auto; }
  .verification-rail { grid-template-columns: repeat(4, minmax(175px, 1fr)); overflow-x: auto; }
  .verification-stage { grid-template-columns: 1fr; }
  .evidence-board { border-left: 0; border-top: 1px solid var(--line); }
  .media-explorer { grid-template-columns: 1fr; }
  .media-tabs { display: grid; grid-template-columns: repeat(4, minmax(150px, 1fr)); overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .media-tab { min-height: 100px; border-bottom: 0; border-right: 1px solid var(--line); }
  .media-tab:last-child { border-right: 0; }
  .media-tab.is-active { box-shadow: inset 0 2px var(--brand); }
  .audience-grid, .platform-grid, .download-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .final-cta { grid-template-columns: 1fr; align-items: start; }
  .final-cta-actions { flex-direction: row; min-width: 0; }
}

@media (max-width: 680px) {
  .idea-library { grid-template-columns: 1fr; }
  .template-art { min-height: 180px; }
  .template-copy p { min-height: 0; }
  .prompt-panel, .audience-card, .download-card, .release-note, .download-help { padding: 22px; }
  .prompt-actions .button { width: 100%; }
  .product-tabs { grid-template-columns: 1fr; }
  .product-tab { min-height: 78px; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-stage-media img { aspect-ratio: 1.35; }
  .product-stage-copy { padding: 22px; }
  .workflow-detail { grid-template-columns: 1fr; padding: 26px 22px; }
  .workflow-detail-index { font-size: 3.4rem; }
  .workflow-rail { grid-template-columns: repeat(5, 132px); }
  .workflow-node { min-height: 180px; }
  .verification-rail { grid-template-columns: repeat(4, 154px); }
  .verification-tab { min-height: 108px; padding: 18px 16px; }
  .verification-copy { padding: 28px 22px 32px; }
  .verification-meta { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
  .evidence-board { padding: 24px 22px; }
  .media-tabs { grid-template-columns: repeat(4, 140px); }
  .media-pipeline { min-height: 0; align-items: stretch; justify-content: flex-start; gap: 7px; overflow-x: auto; padding: 24px 18px; }
  .pipeline-node { flex: 0 0 104px; width: 104px; min-height: 100px; }
  .media-stage-copy { padding: 24px 22px 28px; }
  .platform-card { grid-template-columns: 64px 1fr; padding: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .footer-brand { grid-column: 1 / -1; }
  .download-main { padding: 60px 0 84px; }
  .download-meta { grid-template-columns: 1fr; }
  .release-note, .download-help { gap: 28px; margin-top: 28px; }
  .release-note .release-steps, .download-help .company-details { min-width: 0; }
  .lightbox { width: calc(100vw - 24px); }
  .final-cta { gap: 30px; padding: 28px 22px; }
  .final-cta-actions { flex-direction: column; width: 100%; }
}
