:root {
  --header: rgba(0, 171, 174, 0.92);
  --header-solid: #00A7AA;
  --heading: #083A3F;
  --heading-strong: #083A3F;
  --text: #0B2528;
  --muted: rgba(11, 37, 40, 0.76);
  --deep: #083A3F;
  --deep-2: #10B4B8;
  --gold: #FFD166;
  --gold-soft: #FFD98A;
  --gold-deep: #E5B84F;
  --gold-line: rgba(255, 209, 102, 0.72);
  --panel: rgba(255, 255, 255, 0.14);
  --panel-soft: rgba(255, 255, 255, 0.22);
  --panel-deep: rgba(8, 58, 63, 0.10);
  --line: rgba(255, 209, 102, 0.38);
  --line-cool: rgba(8, 58, 63, 0.18);
  --shadow: 0 26px 70px rgba(8, 58, 63, 0.18);
  --container: min(1160px, calc(100% - 48px));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;

  /* Palette aliases */
  --color-bg-main: #00BFC2;
  --color-bg-soft: #12C9CA;
  --color-bg-deep: #10B4B8;
  --color-heading: #083A3F;
  --color-text: #0B2528;
  --color-text-muted: rgba(11, 37, 40, 0.76);
  --color-text-light: #FFFAF0;
  --color-gold: #FFD166;
  --color-gold-soft: #FFD98A;
  --color-gold-deep: #E5B84F;
  --color-button-bg: #FFD98A;
  --color-button-text: #083A3F;
  --color-glass: rgba(255, 255, 255, 0.14);
  --color-glass-strong: rgba(255, 255, 255, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 20%, rgba(105, 235, 226, 0.35), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(255, 229, 150, 0.12), transparent 28%),
    radial-gradient(ellipse at 18% 58%, rgba(255, 255, 255, 0.13), transparent 30rem),
    linear-gradient(135deg, #12C9CA 0%, #00BFC2 42%, #10B4B8 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    radial-gradient(ellipse at 70% 8%, rgba(238, 255, 249, 0.20), rgba(255, 234, 174, 0.08) 24%, transparent 54%),
    conic-gradient(
      from 202deg at 72% 3%,
      transparent 0deg 12deg,
      rgba(241, 255, 252, 0.09) 24deg 48deg,
      transparent 62deg 88deg,
      rgba(201, 255, 247, 0.08) 102deg 132deg,
      transparent 148deg 176deg,
      rgba(255, 232, 170, 0.055) 190deg 214deg,
      transparent 230deg 360deg
    );
  opacity:0.86;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, var(--header), rgba(0, 171, 174, 0.84));
  border-bottom: 1px solid rgba(255, 209, 102, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(6, 93, 102, 0.12);
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(0, 171, 174, 0.97), rgba(0, 171, 174, 0.90));
  box-shadow: 0 16px 42px rgba(6, 73, 84, 0.18);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 2vw + 1rem, 2.8rem);
  line-height: 0.92;
  color: transparent;
  background: linear-gradient(120deg, #FFD166, #FFE3A0 54%, #FFD98A);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 20px rgba(255, 209, 102, 0.20);
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 0.9vw + 0.8rem, 1.55rem);
  color: rgba(255, 255, 255, 0.92);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.header-cta,
.btn,
.footer-links a {
  text-decoration: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--gold);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 209, 102, 0.46);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.13);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  color: var(--color-button-text, #083A3F);
  font-weight: 800;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-cta,
.btn-gold {
  background: linear-gradient(135deg, #FFD166 0%, #FFE3A0 50%, #F3C65F 100%);
  box-shadow:
    0 14px 34px rgba(111, 92, 36, 0.18),
    0 0 24px rgba(255, 209, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.header-cta::before,
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -70%;
  width: 54%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.50), transparent);
  transition: left 0.55s ease;
}

.header-cta:hover::before,
.btn-gold:hover::before { left: 118%; }
.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(111, 92, 36, 0.24);
}

.btn-outline {
  color: #083A3F;
  border: 1.5px solid rgba(255, 209, 102, 0.86);
  background: rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 18px rgba(255, 209, 102, 0.16);
  backdrop-filter: blur(14px);
}

.btn-outline:hover {
  border-color: #FFE7A6;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 26px rgba(255, 209, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.40);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 64px;
  min-height: auto;
  background-image: url('/assets/home/hero-marso-rays.webp');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 137, 140, 0.18) 0%, rgba(0, 158, 160, 0.10) 45%, var(--color-bg-main) 100%),
    linear-gradient(90deg, rgba(0, 104, 108, 0.14) 0%, rgba(0, 143, 146, 0.04) 52%, rgba(0, 116, 120, 0.12) 100%);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .hero {
    background-image: url('/assets/home/hero-marso-rays-mobile.webp');
    background-position: center 42%;
  }
}

.hero-grid {
  position: relative;
  display: block;
}

.hero-copy {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 12px rgba(5, 66, 76, 0.30), 0 0 18px rgba(255, 209, 102, 0.22);
}

.eyebrow::after {
  content: "";
  width: 70px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), rgba(255, 209, 102, 0));
  box-shadow: 0 0 14px rgba(255, 209, 102, 0.32);
}

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

h1,
h2,
.section-heading h2,
.price-frame h2,
.final-band h2,
.author-letter h2 {
  color: var(--heading);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.text-light-accent {
  color: var(--color-text-light) !important;
  text-shadow: 0 1px 2px rgba(5, 66, 76, 0.24) !important;
}

.hero h1 {
  max-width: 860px;
  margin: 0 auto 22px;
  font-size: clamp(3rem, 4.45vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 780px;
  margin: 0 auto 16px;
  color: var(--text);
  font-size: clamp(1.12rem, 0.82vw + 0.96rem, 1.42rem);
  line-height: 1.64;
}

.hero-price-note {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--color-heading);
  font-size: clamp(1rem, 0.45vw + 0.95rem, 1.18rem);
  line-height: 1.55;
  font-weight: 700;
}

.hero-price-note strong {
  color: var(--gold);
  font-weight: 900;
  text-shadow: 0 1px 10px rgba(6, 75, 84, 0.30);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stage {
  position: relative;
  height: 500px;
  min-width: 0;
}

.stage-line {
  position: absolute;
  left: 9%;
  right: 0;
  top: 52%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.72), rgba(255, 209, 102, 0.08), transparent);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 5% 0 4% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 209, 102, 0.24), transparent 34%),
    radial-gradient(circle at 34% 44%, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 70% 56%, rgba(6, 115, 126, 0.28), transparent 48%);
  filter: blur(8px);
}

.mock-phone,
.mock-qr {
  position: absolute;
  margin: 0;
  border: 1px solid rgba(255, 209, 102, 0.42);
  background: rgba(20, 47, 68, 0.16);
  box-shadow: 0 24px 70px rgba(5, 67, 78, 0.26);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.mock-phone img,
.mock-qr img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-main {
  right: 12%;
  top: 5%;
  width: 190px;
  height: 370px;
  border-radius: 30px;
  transform: rotate(4deg);
  opacity: 0.86;
}

.mock-side {
  left: 5%;
  top: 22%;
  width: 155px;
  height: 306px;
  border-radius: 26px;
  transform: rotate(-6deg);
  opacity: 0.72;
}

.mock-qr {
  right: 0;
  bottom: 20px;
  width: 155px;
  height: 200px;
  border-radius: 24px;
  padding: 10px;
  transform: rotate(-2deg);
  opacity: 0.86;
}

.mock-qr img {
  height: 135px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 44%;
  background: #fff;
}

.mock-qr figcaption {
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.link-chip {
  position: absolute;
  left: 15%;
  bottom: 38px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.52);
  color: #FFE7A6;
  background: rgba(31, 93, 100, 0.34);
  box-shadow: 0 14px 38px rgba(4, 87, 98, 0.20);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-benefits {
  position: relative;
  max-width: 1040px;
  margin: 58px auto 0;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 209, 102, 0.38);
}

.hero-benefits span {
  position: relative;
  padding: 0 22px 16px;
  color: var(--gold);
  font-weight: 800;
  text-align: center;
  line-height: 1.38;
  text-shadow: 0 1px 10px rgba(5, 66, 76, 0.22);
}

.hero-benefits span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255, 209, 102, 0.80), transparent);
}

.hero-benefits span::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.90), transparent);
}

.section {
  position: relative;
  padding: 72px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(860px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.35), rgba(255, 255, 255, 0.18), transparent);
}

.section-heading h2,
.price-frame h2,
.author-letter h2,
.final-band h2 {
  margin: 0;
  font-size: clamp(2.65rem, 4.1vw, 5.2rem);
  line-height: 0.96;
  text-wrap: balance;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.editorial-copy {
  position: relative;
  padding: 10px 0 10px 34px;
  border-left: 1px solid var(--gold-line);
  max-width: 650px;
}

.editorial-copy::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 100px;
  background: linear-gradient(180deg, #FFE7A6, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.42);
}

.editorial-copy p,
.process-copy p,
.author-letter p,
.final-band p,
.section-lead,
.usage-card p {
  color: var(--text);
  font-size: 1.07rem;
  line-height: 1.78;
}

.editorial-copy p,
.process-copy p,
.author-letter p,
.final-band p { margin-bottom: 17px; }
.editorial-copy p:last-child,
.process-copy p:last-child,
.author-letter p:last-child,
.final-band p:last-child { margin-bottom: 0; }
.editorial-copy strong,
.author-intro { color: #083A3F; font-weight: 800; }

.power {
  padding-top: 78px;
}

.power-lane {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 209, 102, 0.34);
  border-bottom: 1px solid rgba(255, 209, 102, 0.26);
  background:
    radial-gradient(ellipse at 18% 40%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 209, 102, 0.05), rgba(255, 255, 255, 0.02));
}

.power-lane article {
  position: relative;
  min-height: 210px;
  padding: 32px 32px 30px;
}

.power-lane article + article {
  border-left: 1px solid rgba(255, 209, 102, 0.30);
}

.num {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-shadow: 0 0 16px rgba(255, 209, 102, 0.22);
}

.power-lane h3 {
  margin: 0;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-size: clamp(1.46rem, 1.75vw, 1.95rem);
  line-height: 1.12;
  font-weight: 600;
}

.power-lane h3::after,
.scenario-label::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.inside-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 62px;
  align-items: start;
}

.section-lead {
  max-width: 420px;
  margin-top: 24px;
}

.feature-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.feature-directory span {
  position: relative;
  display: block;
  min-height: 72px;
  padding: 18px 18px 18px 38px;
  color: var(--text);
  border: 1px solid rgba(255, 209, 102, 0.20);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    radial-gradient(ellipse at 88% 0%, rgba(255, 209, 102, 0.09), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 34px rgba(4, 87, 98, 0.08);
  font-size: 1.02rem;
  line-height: 1.42;
  font-weight: 500;
}

.feature-directory span:nth-child(1),
.feature-directory span:nth-child(2),
.feature-directory span:nth-child(4) {
  border-color: rgba(255, 209, 102, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    radial-gradient(ellipse at 86% 0%, rgba(255, 209, 102, 0.14), transparent 44%);
  color: #083A3F;
  font-weight: 800;
}

.feature-directory span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 1.66em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.58);
}

.catalog-demo-heading {
  max-width: 1050px;
  margin-inline: auto;
  text-align: center;
}

.catalog-demo-heading .section-lead {
  max-width: 1050px;
  margin-inline: auto;
}

.catalog-demo {
  padding-bottom: 64px;
}

.catalog-demo-layout {
  max-width: 1160px;
  margin-top: 38px;
  margin-right: auto;
  margin-left: auto;
}

.catalog-demo-main {
  min-width: 0;
  margin: 0;
  display: flex;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 209, 102, 0.78);
  border-radius: 26px;
  background: transparent;
  box-shadow:
    0 22px 46px rgba(8, 58, 63, 0.24),
    0 0 28px rgba(255, 209, 102, 0.13),
    0 0 0 4px rgba(255, 255, 255, 0.055);
}

.catalog-demo-main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.catalog-demo-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.usage-scene {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.usage-card {
  position: relative;
  min-height: 238px;
  padding: 38px 42px;
  border: 1px solid rgba(255, 209, 102, 0.48);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.075)),
    radial-gradient(ellipse at 82% 6%, rgba(255, 209, 102, 0.15), transparent 36%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 24px 58px rgba(4, 87, 98, 0.13);
  backdrop-filter: blur(14px);
}

.usage-online,
.usage-offline {
  border-radius: 32px;
}

.usage-connector {
  display: none;
}

.scenario-label {
  display: block;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.usage-card p { margin: 28px 0 0; }

.usage-card .tags {
  margin-top: 28px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.tags span {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.36);
  color: #166068;
  background: rgba(255, 255, 255, 0.10);
  font-size: 0.78rem;
  font-weight: 700;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
  padding: 30px 0 34px;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: -28px;
  right: -28px;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-top: 1px solid rgba(255, 209, 102, 0.28);
  border-bottom: 1px solid rgba(8, 58, 63, 0.15);
  background:
    radial-gradient(ellipse at 73% 50%, rgba(255, 209, 102, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(8, 58, 63, 0.07), transparent 62%);
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 36px;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 7px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 209, 102, 0.35), transparent);
}

.process-step {
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: -33px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 209, 102, 0.6);
}

.process-step span {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 12px;
}

.process-step strong {
  display: block;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.35;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pricing {
  padding-top: 86px;
  padding-bottom: 78px;
}

.price-frame {
  position: relative;
  max-width: 820px;
  padding: 52px 42px 50px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 47%, rgba(255, 209, 102, 0.22), transparent 32%),
    radial-gradient(ellipse at 15% 10%, rgba(255, 255, 255, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-top: 1px solid rgba(255, 209, 102, 0.58);
  border-bottom: 1px solid rgba(255, 209, 102, 0.48);
}

.price-frame::before,
.price-frame::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
  border-color: rgba(255, 209, 102, 0.58);
}

.price-frame::before {
  left: 0;
  top: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}

.price-frame::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.price-frame .eyebrow {
  justify-content: center;
}

.price-frame h2 {
  color: var(--heading);
  font-size: clamp(2.2rem, 3.2vw, 4rem);
}

.price {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  padding: 0.04em 0.12em 0.12em;
  color: transparent;
  background: linear-gradient(120deg, #E5B84F 0%, #FFD166 36%, #FFE7A6 58%, #FFD98A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  word-spacing: normal;
  font-variant-numeric: lining-nums;
  font-size: clamp(5.2rem, 9.5vw, 8.6rem);
  line-height: 0.88;
  text-shadow: 0 16px 30px rgba(110, 94, 38, 0.12);
}

.price::before {
  content: "";
  position: absolute;
  inset: -22% -20%;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.34), transparent 62%);
  filter: blur(10px);
}

.price::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.85), transparent);
}

.price-once {
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}


.price-includes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.price-includes span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 102, 0.46);
  color: var(--color-text-light);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 800;
}

.price-cta {
  display: flex;
  width: fit-content;
  margin: 24px auto 0;
}

.author-letter {
  position: relative;
  max-width: 920px;
  padding: 42px 0 44px 44px;
  border-left: 1px solid rgba(255, 209, 102, 0.70);
}

.author-letter::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 42px;
  width: 1px;
  height: 150px;
  background: linear-gradient(180deg, #FFE7A6, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.45);
}

.author-letter h2 {
  margin-bottom: 18px;
}

.author-letter p {
  max-width: 800px;
}

.author-btn {
  margin-top: 18px;
  min-height: 44px;
  padding: 0 22px;
  font-size: 0.95rem;
  box-shadow: none;
}

.author-btn:hover {
  box-shadow: 0 10px 24px rgba(8, 58, 63, 0.14);
}


.final-cta {
  padding-top: 76px;
  padding-bottom: 84px;
}

.final-band {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 64px 58px;
  overflow: hidden;
  text-align: center;
  color: var(--color-text);
  background:
    radial-gradient(ellipse at 50% 14%, rgba(255, 209, 102, 0.14), transparent 34%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06));
  border-top: 1px solid rgba(255, 209, 102, 0.46);
  border-bottom: 1px solid rgba(255, 209, 102, 0.34);
  box-shadow: 0 20px 48px rgba(8, 58, 63, 0.12);
}

.final-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(420px, 46vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 209, 102, 0.84), transparent);
}

.final-band h2 {
  max-width: 820px;
  margin: 0 auto 24px;
  color: var(--color-heading);
}

.final-band p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text);
}

.final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.final-actions span {
  color: var(--color-text-light);
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 0 12px rgba(255, 209, 102, 0.16);
}

.site-footer {
  position: relative;
  padding: 24px 0 16px;
  background:
    radial-gradient(ellipse at 16% 0%, rgba(255, 209, 102, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(0, 171, 174, 0.76), rgba(8, 58, 63, 0.76));
  backdrop-filter: blur(16px);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, auto) minmax(280px, 1fr);
  gap: 32px;
  align-items: start;
}

.footer-brand {
  justify-self: start;
}

.footer-brand p {
  max-width: 360px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer .brand-main { font-size: clamp(1.75rem, 1.5vw + 0.9rem, 2.3rem); }
.site-footer .brand-sub { font-size: clamp(1.04rem, 0.8vw + 0.72rem, 1.32rem); }

.footer-contacts {
  display: grid;
  justify-self: center;
  justify-items: center;
  gap: 10px;
}

.footer-contacts-title {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 209, 102, 0.90);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  color: #FFE7A6;
  background: rgba(255, 209, 102, 0.14);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.28);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links {
  display: grid;
  justify-self: end;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.4;
  transition: color 0.2s ease;
}

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

.footer-legal {
  margin-top: 14px;
  padding-top: 0;
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr);
  gap: 6px 18px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.4;
}

.footer-legal span:first-child {
  color: rgba(255, 255, 255, 0.72);
}

.footer-legal span:last-child {
  justify-self: end;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(26px, -18px, 0) rotate(4deg); }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero-copy {
    max-width: 860px;
    text-align: center;
    margin-inline: auto;
  }
  .hero-actions { justify-content: center; }
  .hero-stage {
    height: 360px;
    max-width: 620px;
    margin-inline: auto;
    width: 100%;
  }
  .mock-main { right: 20%; top: 0; width: 160px; height: 315px; }
  .mock-side { left: 16%; top: 34px; width: 132px; height: 260px; }
  .mock-qr { right: 7%; bottom: 6px; width: 130px; height: 170px; }
  .link-chip { left: 22%; bottom: 10px; }
  .header-cta { display: none; }
  .site-nav { gap: 18px; }
  .power-lane { grid-template-columns: repeat(2, 1fr); }
  .power-lane article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 209, 102, 0.25); }
  .power-lane article:nth-child(4) { border-top: 1px solid rgba(255, 209, 102, 0.25); }
  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-brand,
  .footer-contacts,
  .footer-links {
    justify-self: center;
  }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-links { justify-items: center; text-align: center; }
  .footer-legal {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-legal span:last-child {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 24px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-legal span:last-child {
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 32px, 1160px); }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: grid;
    gap: 4px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(0, 171, 174, 0.96);
    border: 1px solid rgba(255, 209, 102, 0.40);
    box-shadow: 0 24px 48px rgba(4, 66, 78, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .site-nav a { padding: 12px 10px; }
  .hero { padding-top: 58px; min-height: auto; }
  .hero-stage { display: none; }
  .hero-benefits,
  .editorial-grid,
  .inside-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-benefits { gap: 16px; border-top: 0; max-width: 520px; }
  .hero-benefits span { border-bottom: 1px solid rgba(255, 209, 102, 0.36); }
  .hero-benefits span + span::before { display: none; }
  .editorial-grid,
  .inside-grid,
  .process-grid { gap: 32px; }
  .power-lane { grid-template-columns: 1fr; }
  .power-lane article {
    min-height: auto;
    padding: 26px 0;
  }
  .power-lane article + article,
  .power-lane article:nth-child(3),
  .power-lane article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(255, 209, 102, 0.25);
  }
  .feature-directory { grid-template-columns: 1fr; }
  .section.catalog-demo {
    padding-bottom: 56px;
  }
  .catalog-demo-layout {
    margin-top: 30px;
  }
  .catalog-demo-main {
    width: 100%;
    padding: 0;
    border-radius: 18px;
    box-shadow:
      0 14px 30px rgba(8, 58, 63, 0.20),
      0 0 18px rgba(255, 209, 102, 0.10),
      0 0 0 3px rgba(255, 255, 255, 0.05);
  }
  .catalog-demo-main img {
    border-radius: 17px;
  }
  .catalog-demo-action {
    justify-content: stretch;
    margin-top: 30px;
  }
  .catalog-demo-action .btn {
    width: 100%;
  }
  .usage-scene { grid-template-columns: 1fr; gap: 18px; }
  .usage-online,
  .usage-offline {
    min-height: auto;
    padding: 30px 28px;
    border-radius: 28px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 0;
    padding-left: 24px;
  }
  .process-steps::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(255, 209, 102, 0.15), transparent);
  }
  .process-step::before { left: -28px; top: 4px; }
  .final-actions { align-items: center; }
}

@media (max-width: 620px) {
  .header-inner { min-height: 62px; }
  .brand-main { font-size: 1.9rem; }
  .brand-sub { font-size: 1.2rem; }
 .hero h1 { font-size: clamp(2.45rem, 10vw, 3.55rem); }
  .section { padding: 54px 0; }
  .section-heading h2,
  .price-frame h2,
  .author-letter h2,
  .final-band h2 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .hero-actions,
  .final-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .eyebrow { font-size: 11px; letter-spacing: 0.26em; gap: 14px; }
  .eyebrow::after { width: 48px; }
  .editorial-copy { padding-left: 22px; }
  .usage-card { padding: 26px 24px; }
  .price-frame { padding: 38px 18px 36px; }
  .price { font-size: clamp(4.4rem, 22vw, 5.8rem); }
  .author-letter { padding: 34px 0 34px 24px; }
  .final-band { padding: 36px 22px 40px; }
  .footer-top { gap: 18px; }
  .footer-socials { flex-wrap: wrap; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


/* v2: mockups removed from hero; keep any leftover assets visually disabled if older HTML remains cached. */
.hero-stage,
.mock-phone,
.mock-qr,
.link-chip,
.stage-line { display: none !important; }

@media (max-width: 620px) {
  .hero { padding-top: 62px; padding-bottom: 44px; }
}

/* === MARSO Partner: strict unified eyebrow system ===
   Все малые надзаголовки секций должны выглядеть одинаково и не наследовать цвет карточек/текста. */
:root {
  --eyebrow-gold: #FFD166;
  --eyebrow-line: rgba(255, 209, 102, 0.72);
}

.eyebrow,
.section-eyebrow,
.section-heading > .eyebrow,
.section-heading > .section-eyebrow,
.hero-copy > .eyebrow,
.process-copy > .eyebrow,
.price-frame > .eyebrow,
.author-letter > .eyebrow,
.final-band > .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 0 18px !important;
  color: var(--eyebrow-gold) !important;
  opacity: 1 !important;
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 1px 12px rgba(6, 75, 84, 0.50),
    0 0 18px rgba(255, 209, 102, 0.28) !important;
}

.eyebrow::after,
.section-eyebrow::after,
.section-heading > .eyebrow::after,
.section-heading > .section-eyebrow::after,
.hero-copy > .eyebrow::after,
.process-copy > .eyebrow::after,
.price-frame > .eyebrow::after,
.author-letter > .eyebrow::after,
.final-band > .eyebrow::after {
  content: "" !important;
  display: block !important;
  width: 70px !important;
  height: 1px !important;
  flex: 0 0 auto !important;
  background: linear-gradient(90deg, var(--eyebrow-line), rgba(255, 209, 102, 0)) !important;
  box-shadow: 0 0 16px rgba(255, 209, 102, 0.36) !important;
}

.section-heading.centered .eyebrow,
.section-heading.centered .section-eyebrow,
.catalog-demo-heading .eyebrow,
.catalog-demo-heading .section-eyebrow,
.hero-copy .eyebrow,
.hero-copy .section-eyebrow,
.price-frame .eyebrow,
.price-frame .section-eyebrow,
.final-band .eyebrow,
.final-band .section-eyebrow {
  justify-content: center !important;
}

/* Centered eyebrow rule: decorative gold lines must not participate in centering. */
.section-heading.centered .eyebrow,
.section-heading.centered .section-eyebrow,
.catalog-demo-heading .eyebrow,
.catalog-demo-heading .section-eyebrow,
.hero-copy .eyebrow,
.hero-copy .section-eyebrow,
.price-frame .eyebrow,
.price-frame .section-eyebrow,
.final-band .eyebrow,
.final-band .section-eyebrow {
  position: relative !important;
  gap: 0 !important;
}

.section-heading.centered .eyebrow::after,
.section-heading.centered .section-eyebrow::after,
.catalog-demo-heading .eyebrow::after,
.catalog-demo-heading .section-eyebrow::after,
.hero-copy .eyebrow::after,
.hero-copy .section-eyebrow::after,
.price-frame .eyebrow::after,
.price-frame .section-eyebrow::after,
.final-band .eyebrow::after,
.final-band .section-eyebrow::after {
  position: absolute !important;
  left: calc(100% + 18px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

@media (max-width: 720px) {
  .eyebrow,
  .section-eyebrow {
    font-size: 10.5px !important;
    letter-spacing: 0.24em !important;
    gap: 12px !important;
  }

  .eyebrow::after,
  .section-eyebrow::after {
    width: 42px !important;
  }

  .section-heading.centered .eyebrow::after,
  .section-heading.centered .section-eyebrow::after,
  .catalog-demo-heading .eyebrow::after,
  .catalog-demo-heading .section-eyebrow::after,
  .hero-copy .eyebrow::after,
  .hero-copy .section-eyebrow::after,
  .price-frame .eyebrow::after,
  .price-frame .section-eyebrow::after,
  .final-band .eyebrow::after,
  .final-band .section-eyebrow::after {
    left: calc(100% + 12px) !important;
  }

  .catalog-demo-heading .eyebrow::after,
  .catalog-demo-heading .section-eyebrow::after {
    left: calc(100% + 8px) !important;
    width: 36px !important;
  }
}



/* === MARSO Partner: palette B final contrast tuning === */
.hero-lead,
.hero-price-note,
.section-lead,
.editorial-copy p,
.process-copy p,
.author-letter p,
.final-band p,
.usage-card p {
  color: var(--color-text);
}

.section-heading h2,
.price-frame h2,
.author-letter h2,
.final-band h2,
.hero h1,
.scenario-label {
  color: var(--color-heading);
}

.feature-directory span,
.tags span {
  color: var(--color-text);
}

.btn-gold,
.header-cta {
  background: linear-gradient(135deg, #FFD166 0%, #FFE3A0 50%, #F3C65F 100%);
  color: var(--color-button-text);
}

.btn-outline {
  color: var(--color-heading);
  border-color: var(--gold-line);
}

/* === First package: hero, concept and partner-strength blocks === */
.hero {
  padding-top: 76px;
  padding-bottom: 48px;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 4.05vw, 4.45rem);
  line-height: 1.01;
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 14px;
}

.hero-price-note {
  margin-bottom: 28px;
}

.hero-benefits {
  max-width: 1060px;
  margin-top: 42px;
  padding-top: 20px;
}

.hero-benefits span {
  padding-inline: 18px;
  color: #FFD166;
  font-size: 0.98rem;
}

.editorial-grid {
  grid-template-columns: minmax(290px, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.editorial .section-heading {
  max-width: 430px;
}

.editorial .section-lead {
  max-width: 380px;
  margin-top: 24px;
  color: rgba(11, 37, 40, 0.84);
  font-size: 1.12rem;
  line-height: 1.58;
}

.editorial-copy {
  max-width: 690px;
  padding-left: 36px;
}

.power {
  padding-top: 70px;
}

.power-lane {
  margin-top: 34px;
}

.power-lane article {
  min-height: 190px;
  padding: 28px 28px 26px;
}

.power-lane .num {
  margin-bottom: 18px;
}

.power-lane h3 {
  font-size: clamp(1.26rem, 1.18vw, 1.55rem);
  line-height: 1.16;
  max-width: 230px;
}

.power-lane h3::after {
  width: 44px;
  margin-top: 14px;
}

.power-lane p {
  max-width: 245px;
  margin: 14px 0 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.52;
}

@media (max-width: 1120px) {
  .power-lane article {
    min-height: 172px;
  }

  .power-lane h3,
  .power-lane p {
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 24px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-legal span:last-child {
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .hero-benefits {
    margin-top: 34px;
    padding-top: 0;
  }

  .editorial-grid {
    align-items: start;
  }

  .editorial .section-lead {
    margin-top: 18px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.35rem, 9.5vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-price-note {
    font-size: 0.98rem;
  }

  .power-lane article {
    padding: 24px 0;
  }
}


/* === First package polish: compact header, lighter explanation, premium partner-strength cards === */
.site-header .header-inner {
  min-height: 58px;
}

.brand-main {
  font-size: clamp(1.82rem, 1.45vw + 0.88rem, 2.35rem);
}

.brand-sub {
  font-size: clamp(1rem, 0.62vw + 0.72rem, 1.28rem);
}

.site-nav {
  gap: 24px;
}

.site-nav a {
  font-size: 0.88rem;
}

.header-cta {
  min-height: 42px;
  padding: 0 24px;
  font-size: 0.91rem;
}

.hero {
  padding-top: 68px;
  padding-bottom: 42px;
}

.hero-benefits {
  margin-top: 36px;
  padding-top: 18px;
}

.editorial-copy {
  max-width: 620px;
  padding-left: 40px;
}

.editorial-copy p {
  max-width: 590px;
  margin-bottom: 24px;
  line-height: 1.84;
}

.editorial-copy p:first-child {
  margin-bottom: 26px;
}

.power-lane {
  border-top-color: rgba(255, 209, 102, 0.24);
  border-bottom-color: rgba(255, 209, 102, 0.20);
  background:
    radial-gradient(ellipse at 18% 36%, rgba(255, 255, 255, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(8, 58, 63, 0.08);
}

.power-lane article {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.power-lane article + article {
  border-left-color: rgba(8, 58, 63, 0.14);
}

.power-lane .num {
  color: #FFD166;
  font-weight: 600;
  text-shadow:
    0 1px 10px rgba(8, 58, 63, 0.26),
    0 0 22px rgba(255, 209, 102, 0.36);
}

.power-lane h3::after {
  background: linear-gradient(90deg, rgba(255, 209, 102, 0.92), rgba(255, 209, 102, 0));
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 24px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-legal span:last-child {
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .site-header .header-inner {
    min-height: 56px;
  }

  .brand-main {
    font-size: 1.9rem;
  }

  .brand-sub {
    font-size: 1.08rem;
  }

  .hero {
    padding-top: 48px;
    padding-bottom: 38px;
  }

  .editorial-copy {
    max-width: none;
    padding-left: 28px;
  }

  .editorial-copy p {
    max-width: none;
    margin-bottom: 20px;
    line-height: 1.72;
  }

  .power-lane {
    gap: 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .power-lane article {
    border: 1px solid rgba(255, 209, 102, 0.22) !important;
    background: rgba(255, 255, 255, 0.11);
  }
}

@media (max-width: 620px) {
  .site-header .header-inner {
    min-height: 56px;
  }

  .brand-main {
    font-size: 1.75rem;
  }

  .brand-sub {
    font-size: 1.08rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }
}


/* === Power section: softer standalone cards, less table-like === */
.power-lane {
  gap: 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.power-lane article {
  min-height: 206px;
  padding: 30px 30px 28px;
  border: 1px solid rgba(255, 209, 102, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 42px rgba(8, 58, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.power-lane article + article {
  border-left: 1px solid rgba(255, 209, 102, 0.24);
}

.power-lane .num {
  color: #FFD166;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-shadow:
    0 1px 8px rgba(8, 58, 63, 0.18),
    0 0 18px rgba(255, 209, 102, 0.34);
}

.power-lane h3 {
  max-width: 230px;
}

.power-lane p {
  max-width: 250px;
}

@media (max-width: 1120px) {
  .power-lane {
    gap: 16px;
  }

  .power-lane article {
    min-height: 178px;
  }
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 24px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-legal span:last-child {
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .power-lane {
    gap: 14px;
  }

  .power-lane article,
  .power-lane article + article,
  .power-lane article:nth-child(3),
  .power-lane article:nth-child(4) {
    padding: 24px 24px 22px;
    border: 1px solid rgba(255, 209, 102, 0.24) !important;
    border-radius: 22px;
  }
}

@media (max-width: 620px) {
  .power-lane article {
    padding: 24px 22px 22px;
  }
}

/* === MARSO Partner: third package — lower page polish === */
.process {
  padding-top: 66px;
  padding-bottom: 62px;
}

.process-grid {
  padding: 34px 38px;
  gap: 42px;
  align-items: stretch;
  border: 1px solid rgba(255, 209, 102, 0.24);
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 20% 12%, rgba(255, 255, 255, 0.16), transparent 34%),
    radial-gradient(ellipse at 78% 36%, rgba(255, 209, 102, 0.10), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 20px 50px rgba(8, 58, 63, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.process-grid::before {
  display: none;
}

.process-copy {
  align-self: center;
}

.process-copy h2 {
  max-width: 470px;
}

.process-copy p {
  max-width: 560px;
}

.process-steps {
  gap: 14px;
  padding-top: 26px;
  align-self: center;
}

.process-steps::before {
  top: 8px;
  left: 18px;
  right: 18px;
  opacity: 0.72;
}

.process-step {
  min-height: 158px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.process-step::before {
  left: 20px;
  top: -22px;
}

.pricing {
  padding-top: 32px;
  padding-bottom: 64px;
}

.price-frame {
  max-width: 760px;
  padding: 44px 40px 42px;
  border: 1px solid rgba(255, 209, 102, 0.34);
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 209, 102, 0.20), transparent 34%),
    radial-gradient(ellipse at 15% 12%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 20px 50px rgba(8, 58, 63, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.price-frame::before,
.price-frame::after {
  width: 56px;
  height: 56px;
  border-color: rgba(255, 209, 102, 0.42);
}

.price-frame h2 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
}

.price {
  margin-top: 22px;
  font-size: clamp(4.7rem, 8.2vw, 7.4rem);
}

.price-once {
  margin-top: 14px;
}

.price-includes {
  margin-top: 24px;
  gap: 9px;
}

.author {
  padding-top: 64px;
  padding-bottom: 64px;
}

.author-letter {
  max-width: 900px;
  padding: 42px 48px 44px;
  border-left: 0;
  border: 1px solid rgba(255, 209, 102, 0.24);
  border-radius: 34px;
  background:
    radial-gradient(ellipse at 18% 8%, rgba(255, 255, 255, 0.15), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 46px rgba(8, 58, 63, 0.08);
}

.author-letter::before {
  left: 48px;
  top: 0;
  width: min(280px, 40%);
  height: 1px;
  background: linear-gradient(90deg, #FFE7A6, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.40);
}

.author-note {
  max-width: 760px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 209, 102, 0.26);
  border-radius: 20px;
  color: var(--color-heading);
  background: rgba(255, 255, 255, 0.11);
  font-weight: 750;
  line-height: 1.58;
}

.author-secondary {
  color: var(--color-text-muted) !important;
}

.final-cta {
  padding-top: 62px;
  padding-bottom: 72px;
}

.final-band {
  max-width: 960px;
  padding: 46px 50px 48px;
  border: 1px solid rgba(255, 209, 102, 0.30);
  border-radius: 36px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 209, 102, 0.14), transparent 34%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.15), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 22px 52px rgba(8, 58, 63, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.final-band h2 {
  max-width: 720px;
  font-size: clamp(2.5rem, 3.8vw, 4.6rem);
}

.final-band p {
  max-width: 720px;
}

.final-actions {
  margin-top: 30px;
}

.final-actions span {
  color: var(--color-text-light);
  font-weight: 850;
  text-shadow: none;
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 24px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-legal span:last-child {
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .process-grid {
    padding: 30px 26px;
  }

  .process-steps {
    padding-top: 0;
  }

  .process-step {
    min-height: auto;
  }

  .price-frame,
  .author-letter,
  .final-band {
    border-radius: 28px;
  }
}

@media (max-width: 620px) {
  .process,
  .pricing,
  .author,
  .final-cta {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .process-grid {
    padding: 26px 20px;
    gap: 28px;
  }

  .process-step {
    padding: 20px 18px;
  }

  .price-frame {
    padding: 34px 18px 34px;
  }

  .author-letter {
    padding: 34px 22px 36px;
  }

  .author-letter::before {
    left: 22px;
  }

  .final-band {
    padding: 36px 22px 38px;
  }
}

@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 24px;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .footer-legal span:last-child {
    justify-self: auto;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .process-steps {
    padding-left: 0;
  }

  .process-steps::before,
  .process-step::before {
    display: none;
  }
}


/* === MARSO Partner: author + final CTA rhythm correction === */
.author-letter {
  max-width: 900px;
  padding: 38px 0 42px 44px;
  border: 0;
  border-left: 1px solid rgba(255, 209, 102, 0.62);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.author-letter::before {
  left: -1px;
  top: 38px;
  width: 1px;
  height: 148px;
  background: linear-gradient(180deg, #FFE7A6, var(--gold), transparent);
  box-shadow: 0 0 16px rgba(255, 209, 102, 0.36);
}

.author-note {
  display: none;
}

.final-cta {
  padding-top: 58px;
  padding-bottom: 66px;
}

.final-band {
  max-width: 1120px;
  padding: 48px 28px 52px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(ellipse at 50% 4%, rgba(255, 209, 102, 0.13), transparent 34%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.13), transparent 46%);
  border-top: 1px solid rgba(255, 209, 102, 0.36);
  border-bottom: 1px solid rgba(8, 58, 63, 0.14);
}

.final-band::before {
  width: min(460px, 52vw);
}

.final-band h2 {
  max-width: 740px;
}

.final-actions {
  margin-top: 28px;
}

@media (max-width: 620px) {
  .author-letter {
    padding: 34px 0 34px 24px;
  }

  .author-letter::before {
    left: -1px;
    top: 34px;
  }

  .final-band {
    padding: 36px 18px 40px;
  }
}

/* Pricing eyebrow: center the text itself; keep the decorative line outside the flow. */
.price-frame > .eyebrow.section-eyebrow {
  position: relative !important;
  display: inline-block !important;
  justify-content: initial !important;
  gap: 0 !important;
  text-align: center !important;
}

.price-frame > .eyebrow.section-eyebrow::after {
  position: absolute !important;
  left: calc(100% + 18px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: block !important;
}

@media (max-width: 720px) {
  .price-frame > .eyebrow.section-eyebrow::after {
    width: 48px !important;
    left: calc(100% + 14px) !important;
  }
}

/* Process block: editorial layout without common card. */
.process {
  padding-top: 72px;
  padding-bottom: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
  padding: 48px 0 52px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.process-grid::before {
  display: none !important;
}

.process-copy {
  align-self: center;
}

.process-copy h2 {
  max-width: 540px;
}

.process-lead {
  max-width: 500px !important;
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  color: rgba(11, 37, 40, 0.84) !important;
  font-size: 1.08rem !important;
  line-height: 1.58 !important;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  padding-top: 28px;
  align-self: auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 7px;
  display: block !important;
  height: 1px;
  opacity: 1;
  background: linear-gradient(90deg, var(--gold), rgba(255, 209, 102, 0.48), transparent);
}

.process-step {
  position: relative;
  min-height: auto !important;
  padding: 0 8px 0 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: -25px;
  display: block !important;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255, 209, 102, 0.56);
}

.process-step span {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255, 209, 102, 0.22);
}

.process-step strong {
  color: var(--color-text-light);
  font-size: 0.98rem;
  line-height: 1.3;
}

.process-step p {
  margin-top: 7px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.42;
}

.process-explain {
  position: relative;
  max-width: 660px;
  padding: 12px 0 12px 44px;
  border-left: 1px solid rgba(255, 209, 102, 0.62);
}

.process-explain::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  width: 1px;
  height: 116px;
  background: linear-gradient(180deg, #FFE7A6, var(--gold), transparent);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.40);
}

.process-explain p {
  max-width: 600px;
  margin: 0 0 20px;
  color: var(--text);
  font-size: 1.07rem;
  line-height: 1.78;
}

.process-explain p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 42px 0 46px !important;
  }

  .process-copy h2,
  .process-lead,
  .process-explain,
  .process-explain p {
    max-width: 720px !important;
  }

  .process-explain {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 209, 102, 0.48);
  }

  .process-explain::before {
    left: 0;
    top: -1px;
    width: 148px;
    height: 1px;
    background: linear-gradient(90deg, #FFE7A6, var(--gold), transparent);
  }
}

@media (max-width: 620px) {
  .process {
    padding-top: 54px;
    padding-bottom: 24px;
  }

  .process-grid {
    padding: 34px 0 38px !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
    padding-top: 0;
    padding-left: 30px;
  }

  .process-steps::before {
    left: 3px;
    right: auto;
    top: 4px;
    bottom: 4px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--gold), rgba(255, 209, 102, 0.48), transparent);
  }

  .process-step::before {
    left: -30px;
    top: 4px;
  }

  .process-step p {
    max-width: 280px;
  }
}


/* === MARSO Partner: final polish for author and final CTA === */
.author {
  padding-top: 58px;
  padding-bottom: 58px;
}

.author-letter {
  max-width: 820px;
  padding: 32px 0 34px 36px;
}

.author-letter::before {
  top: 32px;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 231, 166, 0.88), rgba(255, 209, 102, 0.72), transparent);
  box-shadow: 0 0 12px rgba(255, 209, 102, 0.28);
}

.author-letter h2 {
  margin-bottom: 16px;
}

.author-letter p {
  max-width: 760px;
}

.author-btn {
  margin-top: 14px;
}

.final-cta {
  padding-top: 42px;
  padding-bottom: 52px;
}

.final-band {
  max-width: 980px;
  padding: 38px 24px 42px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 209, 102, 0.11), transparent 32%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.10), transparent 44%);
}

.final-band::before {
  width: min(380px, 46vw);
}

.final-band h2 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 3.35vw, 4rem);
}

.final-band p {
  max-width: 660px;
  line-height: 1.62;
}

.final-actions {
  margin-top: 22px;
  gap: 18px;
}

@media (max-width: 620px) {
  .author {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .author-letter {
    padding: 30px 0 30px 22px;
  }

  .author-letter::before {
    top: 30px;
    height: 112px;
  }

  .final-cta {
    padding-top: 40px;
    padding-bottom: 44px;
  }

  .final-band {
    padding: 32px 16px 34px;
  }

  .final-band h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }
}


/* === MARSO Partner: author title size aligned with pricing title === */
.author-letter h2 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.02;
}

@media (max-width: 620px) {
  .author-letter h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }
}


/* === MARSO Partner: compact FAQ accordion === */
.faq {
  padding-top: 34px;
  padding-bottom: 44px;
}

.faq-wrap {
  max-width: 900px;
}

.faq-head {
  max-width: 660px;
  margin: 0 auto 24px;
  text-align: center;
}

.faq-head .eyebrow {
  justify-content: center;
}

.faq-head h2 {
  margin-bottom: 12px;
  color: var(--color-heading);
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1.02;
}

.faq-head p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 209, 102, 0.26);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 14px 34px rgba(8, 58, 63, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 18px 58px 18px 22px;
  color: var(--color-heading);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 209, 102, 0.64);
  border-radius: 999px;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-main);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: rgba(255, 209, 102, 0.14);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  color: var(--color-text);
  line-height: 1.65;
}

.faq-item[open] {
  background:
    radial-gradient(ellipse at 12% 0%, rgba(255, 209, 102, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.14);
}

@media (max-width: 620px) {
  .faq {
    padding-top: 28px;
    padding-bottom: 38px;
  }

  .faq-head {
    text-align: left;
  }

  .faq-head .eyebrow {
    justify-content: flex-start;
  }

  .faq-head h2 {
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }

  .faq-item summary {
    min-height: 58px;
    padding: 16px 52px 16px 18px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }
}

/* Final responsive pass for the public landing page. */
body{
  overflow-x:hidden;
}

.process-copy h2{
  font-size:clamp(2.65rem, 4.1vw, 5.2rem);
  line-height:.96;
  text-wrap:balance;
}

@media (max-width: 980px) {
  :root{
    --container:min(100% - 40px, 1160px);
  }

  .header-inner{
    gap:14px;
  }

  .site-nav{
    gap:16px;
  }

  .header-cta{
    padding-inline:20px;
    white-space:nowrap;
  }

  .hero{
    padding-top:62px;
  }

  .hero h1{
    font-size:clamp(2.55rem, 7vw, 4.1rem);
  }

  .hero-benefits{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
    border-top:0;
  }

  .hero-benefits span{
    min-height:74px;
    padding:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,209,102,.24);
    border-radius:20px;
    background:rgba(255,255,255,.10);
  }

  .hero-benefits span + span::before,
  .hero-benefits span::after{
    display:none;
  }

  .editorial-grid,
  .inside-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .editorial-copy{
    padding:28px 0 0;
    border-left:0;
    border-top:1px solid var(--gold-line);
  }

  .editorial-copy::before{
    left:0;
    top:-1px;
    width:140px;
    height:1px;
    background:linear-gradient(90deg, #FFE7A6, var(--gold), transparent);
  }

  .power-lane{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

  .usage-scene{
    grid-template-columns:1fr;
  }

  .price{
    font-size:clamp(3.8rem, 12vw, 6rem);
  }
}

@media (max-width: 760px) {
  body::before{
    background:
      radial-gradient(ellipse at 72% 6%, rgba(238, 255, 249, 0.14), rgba(255, 234, 174, 0.05) 26%, transparent 58%),
      conic-gradient(
        from 208deg at 74% 3%,
        transparent 0deg 20deg,
        rgba(241,255,252,.05) 32deg 58deg,
        transparent 72deg 110deg,
        rgba(201,255,247,.045) 124deg 150deg,
        transparent 166deg 360deg
      );
    opacity:.58;
  }

  :root{
    --container:calc(100% - 36px);
  }

  .site-header{
    position:sticky;
  }

  .header-inner{
    min-height:62px;
    display:grid;
    grid-template-columns:auto 44px;
    gap:10px 12px;
  }

  .brand{
    min-width:0;
  }

  .nav-toggle{
    display:flex;
    justify-self:end;
  }

  .site-nav{
    grid-column:1 / -1;
    display:none;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
    width:100%;
    padding:0 0 10px;
  }

  .site-nav.is-open{
    display:grid;
  }

  .site-nav a{
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px 10px;
    border-radius:999px;
    border:1px solid rgba(255,209,102,.36);
    background:rgba(255,255,255,.10);
    text-align:center;
    font-size:.82rem;
  }

  .header-cta{
    grid-column:1 / -1;
    width:100%;
    min-height:42px;
    padding-inline:16px;
  }

  .section{
    padding:52px 0;
  }

  .section-heading h2,
  .price-frame h2,
  .final-band h2,
  .author-letter h2,
  .faq-head h2,
  .process-copy h2{
    font-size:clamp(2.1rem, 10vw, 3.35rem);
    line-height:1.02;
  }

  .hero{
    padding:44px 0 34px;
  }

  .hero h1{
    font-size:clamp(2.25rem, 11vw, 3.35rem);
    line-height:1.04;
  }

  .hero-lead{
    font-size:1.02rem;
    line-height:1.58;
  }

  .hero-actions,
  .final-actions{
    display:grid;
    grid-template-columns:1fr;
    justify-items:stretch;
  }

  .btn,
  .header-cta{
    width:100%;
    min-width:0;
    text-align:center;
  }

  .hero-benefits,
  .power-lane{
    grid-template-columns:1fr;
  }

  .power-lane article{
    min-height:auto;
  }

  .power-lane h3,
  .power-lane p{
    max-width:none;
  }

  .feature-directory span{
    min-height:auto;
    padding:16px 16px 16px 34px;
  }

  .usage-card{
    min-height:auto;
    padding:28px 22px;
    border-radius:24px;
  }

  .tags span{
    max-width:100%;
  }

  .process-steps{
    grid-template-columns:1fr;
    padding-left:0;
  }

  .process-steps::before,
  .process-step::before{
    display:none !important;
  }

  .process-step p{
    max-width:none;
  }

  .price-frame{
    padding:32px 18px 34px;
  }

  .price-includes{
    justify-content:stretch;
  }

  .price-includes span{
    width:100%;
    text-align:center;
  }

  .author-letter{
    padding-left:22px;
  }

  .author-btn{
    width:100%;
  }

  .faq-item summary{
    align-items:flex-start;
    padding-right:54px;
  }

  .final-actions span{
    text-align:center;
    line-height:1.45;
  }

  .footer-top{
    grid-template-columns:1fr;
    justify-items:center;
    text-align:center;
  }

  .footer-socials{
    justify-content:center;
  }

  .footer-socials a{
    width:44px;
    height:44px;
  }

  .footer-links{
    align-items:center;
  }

  .footer-links a{
    text-align:center;
  }
}

@media (max-width: 480px) {
  :root{
    --container:calc(100% - 32px);
  }

  .brand-main{
    font-size:1.62rem;
  }

  .brand-sub{
    font-size:.98rem;
  }

  .site-nav{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:clamp(2rem, 10.5vw, 2.85rem);
  }

  .eyebrow{
    gap:10px;
    max-width:100%;
    font-size:10px;
    letter-spacing:.22em;
  }

  .eyebrow::after{
    width:42px;
  }

  .section-heading h2,
  .price-frame h2,
  .final-band h2,
  .author-letter h2,
  .faq-head h2,
  .process-copy h2{
    font-size:clamp(2rem, 10vw, 2.9rem);
  }

  .hero-benefits span,
  .power-lane article,
  .usage-card,
  .faq-item{
    border-radius:18px;
  }

  .price{
    font-size:clamp(3.25rem, 18vw, 4.6rem);
  }

  .final-band,
  .price-frame{
    padding-inline:16px;
  }
}
