:root {
  --color-bg: #F7F7F4;
  --color-surface: #FFFFFF;
  --color-dark: #050505;
  --color-dark-soft: #111111;
  --color-graphite: #1C1C1C;
  --color-text: #101010;
  --color-muted: #6B6B6B;
  --color-border: rgba(0, 0, 0, 0.10);
  --color-primary: #FFB000;
  --color-primary-soft: #FFE2A3;
  --color-gold: #C99A2E;
  --color-cream: #F3EFE7;
  --ink: var(--color-text);
  --ink-soft: var(--color-graphite);
  --paper: var(--color-bg);
  --white: var(--color-surface);
  --muted: var(--color-muted);
  --line: var(--color-border);
  --acid: var(--color-primary);
  --cyan: #7CCBD3;
  --rose: #D8735F;
  --gold: var(--color-gold);
  --green: #9CA36C;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(16, 16, 16, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 6px;
  color: var(--ink);
  background: var(--acid);
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.footer-nav a {
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 0.91rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.footer-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.store-link,
.button,
.nav-toggle {
  min-height: 44px;
  border-radius: 6px;
}

.store-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.store-link {
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
}

.store-link:hover,
.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 132px);
  padding: 84px max(22px, calc((100vw - var(--max)) / 2)) 28px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 44px 44px, 44px 44px, auto;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16px;
  background: repeating-linear-gradient(90deg, var(--acid) 0 14%, var(--cyan) 14% 28%, var(--rose) 28% 42%, var(--gold) 42% 56%, var(--green) 56% 70%, var(--white) 70% 84%, var(--ink) 84% 100%);
}

.hero-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 26px 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--acid);
}

.eyebrow.dark {
  color: #6a6400;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 8ch;
  font-size: 6.6rem;
  line-height: 0.86;
}

.hero-lede {
  width: min(560px, 100%);
  margin: 26px 0 0;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  padding: 0 18px;
}

.button-primary {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.button-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, minmax(86px, 1fr));
  gap: 8px;
  padding-bottom: 28px;
}

.hero-strip span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(0, 0, 0, 0.32);
}

.hero-shot {
  position: absolute;
  width: 230px;
  margin: 0;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #202020;
  overflow: hidden;
  transform: rotate(-4deg);
}

.hero-shot-a {
  top: 80px;
  right: max(24px, calc((100vw - var(--max)) / 2 + 84px));
}

.hero-shot-b {
  top: 170px;
  right: max(230px, calc((100vw - var(--max)) / 2 + 300px));
  transform: rotate(5deg);
}

.hero-shot-c {
  bottom: 92px;
  right: max(48px, calc((100vw - var(--max)) / 2 + 190px));
  transform: rotate(2deg);
}

.image-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    #181818;
  background-size: 24px 24px, 24px 24px, auto;
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-shell.is-missing img {
  display: none;
}

.image-fallback {
  display: none;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.image-shell.is-missing .image-fallback,
.image-shell:not(:has(img)) .image-fallback {
  display: block;
  z-index: 1;
}

.fallback-editor {
  background:
    linear-gradient(90deg, transparent 0 12%, var(--rose) 12% 18%, transparent 18% 100%),
    linear-gradient(0deg, transparent 0 58%, var(--cyan) 58% 61%, transparent 61% 100%),
    #181818;
}

.fallback-editor::before,
.fallback-d3d::before,
.fallback-template::before,
.fallback-filters::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
}

.fallback-editor::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 16%;
  border-radius: 6px;
  background: repeating-linear-gradient(90deg, var(--acid) 0 15%, var(--rose) 15% 30%, var(--cyan) 30% 45%, var(--gold) 45% 60%, var(--green) 60% 75%, var(--white) 75% 90%);
}

.fallback-d3d {
  background:
    linear-gradient(90deg, transparent 0 22%, var(--cyan) 22% 30%, transparent 30% 100%),
    linear-gradient(90deg, transparent 0 36%, var(--rose) 36% 44%, transparent 44% 100%),
    #111111;
}

.fallback-d3d::after {
  content: "D3D";
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: -8px 0 var(--cyan), 8px 0 var(--rose);
}

.fallback-template {
  background:
    linear-gradient(90deg, transparent 0 8%, var(--acid) 8% 15%, transparent 15% 100%),
    linear-gradient(0deg, transparent 0 16%, var(--rose) 16% 23%, transparent 23% 100%),
    #171717;
}

.fallback-template::after {
  content: "";
  position: absolute;
  inset: 24% 18%;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--cyan) 0 28%, transparent 28% 36%, var(--gold) 36% 64%, transparent 64% 72%, var(--green) 72% 100%);
}

.fallback-filters {
  background:
    repeating-linear-gradient(90deg, var(--acid) 0 16%, var(--rose) 16% 32%, var(--cyan) 32% 48%, var(--gold) 48% 64%, var(--green) 64% 80%, var(--white) 80% 100%);
}

.fallback-filters::after {
  content: "VHS  BLING  TEAL  D3D";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 9%;
  padding: 12px;
  border-radius: 6px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  color: var(--white);
  background: rgba(16, 16, 16, 0.76);
}

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

.intro-band,
.feature-band,
.content-band,
.value-band,
.legal-band {
  padding: 92px 0;
}

.intro-band {
  background: var(--acid);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.showcase-copy h2,
.sticky-label h2,
.price-panel h2,
.statement-panel h2,
.page-hero h1 {
  font-size: 3rem;
}

.intro-grid p:last-child,
.showcase-copy p,
.page-hero p,
.price-panel p,
.statement-panel p,
.legacy-item p,
.legal-copy p,
.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-band {
  background: var(--paper);
}

.section-heading {
  width: min(680px, 100%);
  margin-bottom: 34px;
}

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

.feature-card,
.statement-panel,
.price-panel,
.legacy-item,
.contact-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 235px;
  padding: 26px;
}

.feature-card i,
.stack-list i,
.statement-panel i,
.legacy-item i,
.contact-note i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--acid);
}

.feature-card:nth-child(2n) i,
.statement-panel.accent i,
.legacy-item:nth-child(2) i {
  background: var(--cyan);
}

.feature-card:nth-child(3n) i,
.legacy-item:nth-child(3) i {
  background: var(--rose);
  color: var(--white);
}

.feature-card h3,
.stack-list h3,
.legacy-item h2,
.contact-note h2,
.legal-copy h2,
.value-list h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.feature-card p,
.stack-list p,
.value-list p {
  margin: 0;
  color: var(--muted);
}

.showcase-band {
  padding: 100px 0;
  color: var(--white);
  background: var(--ink);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: 56px;
  align-items: center;
}

.image-panel,
.page-hero-media {
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-copy {
  width: min(560px, 100%);
}

.showcase-copy p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
  color: var(--ink);
  transition: transform 180ms ease;
}

.showcase-copy .text-link {
  color: var(--acid);
}

.tone-band {
  padding: 28px 0;
  background: var(--white);
}

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

.tone-grid article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.metric {
  display: block;
  margin-bottom: 16px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.tone-grid p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    var(--ink);
  background-size: 38px 38px, 38px 38px, auto;
}

.compact-hero {
  padding: 84px 0 76px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 46px;
  align-items: center;
}

.page-hero p {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero-media {
  min-height: 440px;
}

.narrow {
  width: min(860px, calc(100% - 44px));
}

.split-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.sticky-label {
  position: sticky;
  top: 110px;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stack-list i {
  margin: 0;
}

.pricing-band {
  padding: 100px 0;
  background: var(--gold);
}

.pricing-grid,
.about-layout,
.legacy-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.price-panel {
  min-height: 360px;
  padding: 32px;
}

.price-panel.invert {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.plan-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: 6px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
  background: var(--acid);
}

.price-panel.invert p {
  color: rgba(255, 255, 255, 0.72);
}

.price-panel .button {
  margin-top: 26px;
}

.about-layout {
  align-items: stretch;
}

.statement-panel {
  min-height: 310px;
  padding: 32px;
}

.statement-panel.accent {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.statement-panel.accent p {
  color: rgba(255, 255, 255, 0.74);
}

.value-band {
  background: var(--cyan);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-list article {
  padding: 26px;
  border: 1px solid rgba(16, 16, 16, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.value-list span {
  display: inline-block;
  margin-bottom: 24px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: 12px;
  align-self: end;
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel i {
  color: var(--acid);
}

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

.contact-form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 8px;
  cursor: pointer;
}

.contact-note {
  padding: 28px;
}

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

.legacy-item {
  min-height: 330px;
  padding: 28px;
}

.legacy-item .text-link {
  color: var(--ink);
}

.legal-band {
  background: var(--paper);
}

.legal-copy {
  display: grid;
  gap: 14px;
}

.legal-copy article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer {
  padding: 42px max(22px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.footer-disclaimer {
  max-width: 920px;
  margin: 24px 0 10px;
  font-size: 0.92rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    grid-column: 1 / -1;
    padding: 18px 22px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
  }

  body.nav-open .site-nav {
    display: grid;
    justify-items: stretch;
  }

  .site-nav a {
    padding: 14px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .store-link {
    justify-self: end;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .hero-shot {
    opacity: 0.54;
  }

  .hero-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid,
  .tone-grid,
  .value-list,
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-grid,
  .page-hero-grid,
  .split-content {
    grid-template-columns: 1fr;
  }

  .sticky-label {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand-text {
    display: none;
  }

  .site-nav {
    inset: 68px 0 auto;
  }

  .store-link span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 52px 16px 24px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-shot {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 31%;
    min-width: 92px;
    opacity: 0.72;
    transform: none;
  }

  .hero-scene {
    position: relative;
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    pointer-events: auto;
  }

  .hero-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-band,
  .feature-band,
  .content-band,
  .value-band,
  .legal-band,
  .showcase-band,
  .pricing-band {
    padding: 64px 0;
  }

  .section-inner,
  .narrow {
    width: calc(100% - 32px);
  }

  .intro-grid,
  .feature-grid,
  .tone-grid,
  .pricing-grid,
  .about-layout,
  .legacy-grid,
  .contact-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .intro-grid h2,
  .section-heading h2,
  .showcase-copy h2,
  .sticky-label h2,
  .price-panel h2,
  .statement-panel h2,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .page-hero {
    padding: 58px 0;
  }

  .image-panel,
  .page-hero-media {
    min-height: 390px;
  }

  .stack-list article {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-strip span {
    min-height: 40px;
    font-size: 0.9rem;
  }

  .feature-card,
  .price-panel,
  .statement-panel,
  .legacy-item,
  .contact-note,
  .contact-form,
  .legal-copy article {
    padding: 22px;
  }
}

.home-page {
  background: var(--color-bg);
  color: var(--color-text);
}

.home-page .site-header {
  grid-template-columns: auto 1fr auto auto;
  min-height: 74px;
  padding: 14px max(22px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-surface);
  background: rgba(5, 5, 5, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.home-page .site-header.is-scrolled {
  color: var(--color-text);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(247, 247, 244, 0.88);
}

.home-page .brand {
  gap: 12px;
  text-transform: none;
}

.app-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 77% 22%, var(--color-primary) 0 8px, transparent 9px),
    linear-gradient(145deg, #1a1a1a, #000000);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 12px 28px rgba(0, 0, 0, 0.24);
}

.app-icon span::before {
  content: "P";
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.app-icon.mini {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  box-shadow: none;
}

.app-icon.mini span::before {
  font-size: 1rem;
}

.home-page .brand-text {
  font-size: 1.08rem;
  font-weight: 800;
}

.home-page .site-nav {
  gap: 8px;
}

.home-page .site-nav a,
.home-page .footer-nav a {
  border-radius: 999px;
  color: currentColor;
  opacity: 0.74;
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible,
.home-page .site-nav a[aria-current="page"] {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.home-page .site-header.is-scrolled .site-nav a:hover,
.home-page .site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(0, 0, 0, 0.08);
}

.home-page .store-link {
  min-width: 142px;
  color: var(--color-dark);
  background: var(--color-primary);
  box-shadow: 0 14px 32px rgba(255, 176, 0, 0.28);
}

.home-page .store-link:hover,
.home-page .store-link:focus-visible {
  color: var(--color-dark);
  background: var(--color-primary-soft);
  outline: 2px solid rgba(255, 176, 0, 0.42);
  outline-offset: 3px;
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  color: currentColor;
}

.home-page .site-header.is-scrolled .nav-toggle {
  border-color: rgba(0, 0, 0, 0.14);
}

.home-shell {
  width: min(1240px, calc(100% - 44px));
  margin: 0 auto;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 54px;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 176, 0, 0.24), transparent 28%),
    radial-gradient(circle at 16% 72%, rgba(255, 226, 163, 0.16), transparent 24%),
    linear-gradient(112deg, var(--color-dark) 0 58%, #171717 58% 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.64), transparent);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.22), transparent 66%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 58px;
  align-items: center;
  min-height: 680px;
}

.hero-copy {
  max-width: 610px;
}

.hero-kicker,
.home-eyebrow {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.home-eyebrow {
  margin: 0 0 16px;
  color: var(--color-gold);
  font-size: 0.82rem;
}

.hero-copy h1,
.section-title h2,
.effects-copy h2,
.gold-copy h2,
.final-card h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: 5.6rem;
}

.hero-lede {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.22rem;
  line-height: 1.65;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.home-page .button {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: none;
}

.home-page .button:focus-visible,
.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible,
.home-page textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.home-page .button-primary {
  color: var(--color-dark);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 18px 42px rgba(255, 176, 0, 0.24);
}

.home-page .button-primary:hover {
  background: var(--color-primary-soft);
  border-color: var(--color-primary-soft);
}

.home-page .button-secondary {
  color: var(--color-surface);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-page .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.hero-badges strong {
  color: var(--color-surface);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.brand-poster {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(54%, 360px);
  border-radius: 32px;
  overflow: hidden;
  opacity: 0.88;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.brand-poster img,
.phone-frame img,
.bento-card > img,
.mini-preview img,
.effect-card img,
.before-after-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-stack {
  position: absolute;
  inset: 0;
}

.phone-frame {
  position: relative;
  display: block;
  margin: 0;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: linear-gradient(145deg, #242424, #050505);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.phone-frame img {
  display: block;
  border-radius: 24px;
  background: #000000;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: 52px;
  height: 5px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
}

.hero-phone-main {
  position: absolute;
  left: 8%;
  top: 54px;
  width: 330px;
  transform: rotate(-3deg);
  animation: homeFloat 6.5s ease-in-out infinite;
}

.hero-phone-side {
  position: absolute;
  right: 6%;
  bottom: 26px;
  width: 250px;
  transform: rotate(5deg);
  animation: homeFloat 7.4s ease-in-out infinite reverse;
}

.floating-card,
.floating-tool {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--color-surface);
  background: rgba(17, 17, 17, 0.66);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.floating-card {
  padding: 0 16px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.card-disco {
  left: 0;
  top: 74px;
}

.card-diamond {
  right: 19%;
  top: 6px;
  color: var(--color-dark);
  background: var(--color-primary);
}

.card-bling {
  left: 10%;
  bottom: 118px;
}

.card-miami {
  right: 0;
  top: 302px;
}

.floating-tool {
  left: 48%;
  bottom: 0;
  gap: 9px;
  padding: 0 15px;
  font-weight: 800;
}

.floating-tool i {
  color: var(--color-primary);
}

.stats-section {
  position: relative;
  z-index: 2;
  padding: 0 0 74px;
  background: linear-gradient(180deg, var(--color-dark) 0 48px, var(--color-bg) 48px 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.stats-grid article {
  min-height: 116px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f7f4ef);
}

.stats-grid span {
  display: block;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.stats-grid p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.screens-section,
.tools-section,
.workflow-section,
.final-cta {
  padding: 98px 0;
  background: var(--color-bg);
}

.section-title {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin-bottom: 44px;
}

.section-title h2 {
  color: var(--color-text);
  font-size: 4rem;
}

.screens-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.screen-card {
  margin: 0;
}

.screen-card .phone-frame {
  background: linear-gradient(145deg, #1d1d1d, #050505);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.screen-card:hover .phone-frame {
  transform: translateY(-8px);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.26);
}

.screen-card.tall {
  transform: translateY(-22px);
}

.screen-card figcaption {
  margin-top: 18px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  text-align: center;
}

.tools-section {
  background:
    linear-gradient(180deg, var(--color-bg), var(--color-cream));
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}

.bento-card.wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.bento-card.dark {
  color: var(--color-surface);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 176, 0, 0.12), transparent 42%),
    linear-gradient(145deg, var(--color-dark-soft), var(--color-dark));
}

.bento-card.gold {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.42), transparent 26%),
    linear-gradient(145deg, var(--color-primary-soft), #f4c35a);
}

.bento-card i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--color-dark);
  background: var(--color-primary);
}

.bento-card.dark i {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.1);
}

.bento-card h3 {
  font-size: 1.55rem;
  line-height: 1.1;
}

.bento-card p {
  max-width: 410px;
  margin: 12px 0 0;
  color: var(--color-muted);
}

.bento-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.bento-card > img {
  position: absolute;
  right: -14px;
  bottom: -42px;
  width: 54%;
  height: auto;
  border: 10px solid #050505;
  border-radius: 28px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.36);
  transform: rotate(3deg);
}

.mini-preview {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 45%;
  min-height: 286px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.16);
}

.split-preview::after {
  content: "";
  position: absolute;
  inset: 0 50% 0 auto;
  width: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(255, 176, 0, 0.34);
}

.adjustment-lines {
  display: grid;
  gap: 18px;
}

.adjustment-lines span {
  position: relative;
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.adjustment-lines span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), #ffffff);
}

.effects-section {
  padding: 106px 0;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 176, 0, 0.17), transparent 24%),
    linear-gradient(145deg, var(--color-dark), var(--color-graphite));
}

.effects-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.effects-copy h2 {
  font-size: 4rem;
}

.effects-copy p:not(.home-eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.effect-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 30px;
  overflow: visible;
}

.effect-chips span {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.07);
}

.effect-chips .active {
  color: var(--color-dark);
  background: var(--color-primary);
}

.effect-gallery {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: stretch;
}

.effect-card,
.before-after-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.effect-card::after,
.before-after-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.76));
  pointer-events: none;
}

.effect-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.effect-card span,
.before-after-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-dark);
  background: var(--color-primary);
}

.effect-card strong {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.7rem;
  line-height: 1.08;
}

.before-after-card {
  min-height: 440px;
  align-self: end;
}

.before-after-card img {
  object-position: 50% 42%;
}

.before-after-card span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 20px;
}

.slider-line {
  position: absolute;
  z-index: 2;
  top: 9%;
  bottom: 9%;
  left: 51%;
  width: 2px;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.18);
}

.gold-section {
  padding: 106px 0;
  background: var(--color-bg);
}

.gold-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 48px;
  align-items: center;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 176, 0, 0.3), transparent 30%),
    linear-gradient(145deg, var(--color-dark), #1c170d);
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.2);
}

.gold-copy h2 {
  max-width: 720px;
  font-size: 4rem;
}

.gold-copy p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.gold-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.gold-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.gold-list i {
  color: var(--color-primary);
}

.gold-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.gold-visual .phone-frame {
  width: min(320px, 100%);
  transform: rotate(3deg);
}

.gold-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gold-orbit span {
  position: absolute;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  color: var(--color-dark);
  background: var(--color-primary);
}

.gold-orbit span:nth-child(1) {
  left: 0;
  top: 18%;
}

.gold-orbit span:nth-child(2) {
  right: 0;
  top: 50%;
  color: var(--color-surface);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.gold-orbit span:nth-child(3) {
  left: 14%;
  bottom: 8%;
  background: var(--color-primary-soft);
}

.workflow-section {
  padding-top: 0;
}

.workflow-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.workflow-timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.18), transparent);
}

.workflow-timeline article {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: var(--color-surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.07);
}

.workflow-timeline article > span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 800;
  color: var(--color-dark);
  background: var(--color-primary-soft);
}

.workflow-timeline i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 28px 0 20px;
  border-radius: 18px;
  color: var(--color-dark);
  background: var(--color-primary);
}

.workflow-timeline h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.workflow-timeline p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.final-cta {
  padding-top: 0;
}

.final-card {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 42px;
  align-items: center;
  overflow: hidden;
  padding: 52px;
  border-radius: 34px;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 176, 0, 0.24), transparent 30%),
    linear-gradient(145deg, var(--color-dark), var(--color-graphite));
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.18);
}

.final-card h2 {
  max-width: 700px;
  margin-top: 26px;
  font-size: 4rem;
}

.final-card p {
  max-width: 620px;
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.final-card .phone-frame {
  transform: rotate(4deg);
}

.home-page .site-footer {
  padding: 66px 0 34px;
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 176, 0, 0.12), transparent 26%),
    var(--color-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.7fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-block p {
  max-width: 420px;
  margin: 20px 0 24px;
}

.home-page .footer-brand {
  display: inline-flex;
  color: var(--color-surface);
}

.home-page .footer-nav {
  display: grid;
  align-content: start;
  justify-content: start;
  gap: 8px;
}

.home-page .footer-nav a {
  padding: 8px 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.home-page .footer-nav a:hover,
.home-page .footer-nav a:focus-visible {
  color: var(--color-primary);
  background: transparent;
}

.footer-store {
  width: fit-content;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.home-page .footer-disclaimer,
.home-page .footer-copy {
  margin: 0;
  font-size: 0.9rem;
}

.home-page .footer-disclaimer {
  max-width: 680px;
}

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

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

@keyframes homeFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -14px;
  }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: 4.6rem;
  }

  .hero-visual {
    min-height: 610px;
  }

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

  .screens-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .effects-layout,
  .gold-layout {
    grid-template-columns: 1fr;
  }

  .effect-gallery {
    max-width: 840px;
  }
}

@media (max-width: 920px) {
  .home-page .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
    padding: 12px 18px;
  }

  .home-page .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    color: var(--color-surface);
    background: rgba(5, 5, 5, 0.94);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  }

  .home-page.nav-open .site-nav {
    display: grid;
    justify-content: stretch;
  }

  .home-page .site-nav a {
    padding: 14px;
  }

  .home-page .nav-toggle {
    display: grid;
    place-items: center;
  }

  .home-page .store-link {
    justify-self: end;
  }

  .section-title h2,
  .effects-copy h2,
  .gold-copy h2,
  .final-card h2 {
    font-size: 3.1rem;
  }

  .gold-list {
    grid-template-columns: 1fr;
  }

  .final-card,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .final-card {
    display: grid;
  }

  .final-card .phone-frame {
    width: min(310px, 100%);
  }
}

@media (max-width: 720px) {
  .home-shell {
    width: calc(100% - 32px);
  }

  .home-hero {
    padding: 58px 0 34px;
  }

  .hero-copy h1 {
    font-size: 3.35rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .home-page .hero-actions,
  .home-page .button {
    width: 100%;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-badges span {
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .brand-poster {
    width: 62%;
    right: -18px;
  }

  .hero-phone-main {
    left: 0;
    width: 68%;
  }

  .hero-phone-side {
    right: 0;
    width: 48%;
  }

  .floating-card,
  .floating-tool {
    scale: 0.88;
  }

  .stats-grid,
  .bento-grid,
  .workflow-timeline,
  .effect-gallery {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding-bottom: 58px;
  }

  .screens-section,
  .tools-section,
  .effects-section,
  .gold-section,
  .workflow-section,
  .final-cta {
    padding: 70px 0;
  }

  .screens-rail {
    display: flex;
    gap: 16px;
    margin-right: -16px;
    overflow-x: auto;
    padding: 4px 16px 12px 0;
    scroll-snap-type: x mandatory;
  }

  .screen-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .screen-card.tall {
    transform: none;
  }

  .bento-card.large,
  .bento-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card.wide {
    grid-template-columns: 1fr;
  }

  .mini-preview {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
  }

  .bento-card > img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin: 24px auto 0;
  }

  .effect-card,
  .before-after-card {
    min-height: 420px;
  }

  .gold-layout,
  .final-card {
    padding: 28px;
    border-radius: 28px;
  }

  .workflow-timeline::before {
    display: none;
  }
}

@media (max-width: 460px) {
  .home-page .brand-text {
    display: inline;
  }

  .home-page .store-link span {
    display: none;
  }

  .home-page .store-link {
    min-width: 46px;
    width: 46px;
    padding: 0;
  }

  .hero-copy h1 {
    font-size: 2.85rem;
  }

  .section-title h2,
  .effects-copy h2,
  .gold-copy h2,
  .final-card h2 {
    font-size: 2.45rem;
  }

  .hero-badges {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .screen-card {
    flex-basis: 86%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Inner pages aligned to the home design
   (scoped to .home-page so the homepage itself is unaffected)
   ============================================================ */

.home-page .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-surface);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 176, 0, 0.24), transparent 30%),
    radial-gradient(circle at 14% 78%, rgba(255, 226, 163, 0.14), transparent 26%),
    linear-gradient(120deg, var(--color-dark) 0 60%, #161616 60% 100%);
}

.home-page .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.64), transparent);
}

.home-page .compact-hero {
  padding: 104px 0 92px;
}

.home-page .page-hero .home-eyebrow {
  color: var(--color-primary);
}

.home-page .page-hero h1 {
  max-width: 18ch;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.02;
}

.home-page .page-hero p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.1rem;
}

.home-page .page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 52px;
  align-items: center;
}

.home-page .narrow {
  width: min(880px, calc(100% - 44px));
  margin: 0 auto;
}

.home-page .page-hero-media {
  min-height: auto;
  border: 0;
  box-shadow: none;
}

.home-page .page-hero-media .phone-frame {
  width: min(300px, 78%);
  margin: 0 auto;
  transform: rotate(3deg);
}

/* Section backgrounds */
.home-page .content-band {
  padding: 96px 0;
  background: var(--color-bg);
}

.home-page .legal-band {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--color-bg), var(--color-cream));
}

.home-page .value-band {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--color-cream), var(--color-bg));
}

.home-page .pricing-band {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 176, 0, 0.22), transparent 36%),
    linear-gradient(180deg, var(--color-bg), var(--color-cream));
}

/* Shared card styling to match the home bento look */
.home-page .statement-panel,
.home-page .price-panel,
.home-page .stack-list article,
.home-page .value-list article,
.home-page .legal-copy article,
.home-page .contact-form,
.home-page .contact-note {
  border: 1px solid var(--color-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.home-page .statement-panel:hover,
.home-page .price-panel:hover,
.home-page .stack-list article:hover,
.home-page .value-list article:hover,
.home-page .legal-copy article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

.home-page .statement-panel.accent,
.home-page .price-panel.invert {
  color: var(--color-surface);
  border-color: transparent;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 176, 0, 0.22), transparent 32%),
    linear-gradient(150deg, var(--color-dark), var(--color-graphite));
}

.home-page .statement-panel.accent:hover,
.home-page .price-panel.invert:hover {
  border-color: rgba(255, 176, 0, 0.4);
}

.home-page .statement-panel.accent p,
.home-page .price-panel.invert p {
  color: rgba(255, 255, 255, 0.74);
}

/* Icons */
.home-page .stack-list i,
.home-page .statement-panel i,
.home-page .contact-note i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  color: var(--color-dark);
  background: var(--color-primary);
}

.home-page .statement-panel.accent i {
  color: var(--color-dark);
  background: var(--color-primary);
}

/* Headings inside cards */
.home-page .statement-panel h2,
.home-page .price-panel h2 {
  font-size: 1.8rem;
  font-weight: 800;
}

.home-page .legal-copy h2,
.home-page .contact-note h2,
.home-page .stack-list h3,
.home-page .value-list h3 {
  font-weight: 800;
}

.home-page .content-band .home-eyebrow,
.home-page .legal-band .home-eyebrow {
  color: var(--color-gold);
}

.home-page .sticky-label h2 {
  font-size: 2.6rem;
  font-weight: 800;
}

/* Value list numbering chip */
.home-page .value-list article {
  padding: 28px;
}

.home-page .value-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 12px;
  color: var(--color-dark);
  background: var(--color-primary);
  font-weight: 800;
}

/* Plan kicker pill */
.home-page .plan-kicker {
  border-radius: 999px;
  background: var(--color-primary);
}

.home-page .price-panel.invert .plan-kicker {
  color: var(--color-dark);
}

/* Pricing CTA button radius already handled by .home-page .button */

/* Contact panel cards on dark hero */
.home-page .contact-panel a {
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.home-page .contact-panel i {
  color: var(--color-primary);
}

.home-page .contact-form input,
.home-page .contact-form select,
.home-page .contact-form textarea {
  border-radius: 12px;
}

@media (max-width: 920px) {
  .home-page .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-page .page-hero h1 {
    font-size: 2.7rem;
  }

  .home-page .compact-hero {
    padding: 84px 0 72px;
  }
}

@media (max-width: 720px) {
  .home-page .narrow {
    width: calc(100% - 32px);
  }

  .home-page .content-band,
  .home-page .legal-band,
  .home-page .value-band,
  .home-page .pricing-band {
    padding: 68px 0;
  }

  .home-page .page-hero h1 {
    font-size: 2.3rem;
  }
}
