:root {
  --bg: #eef6ff;
  --bg-top: #f4f9ff;
  --paper: #ffffff;
  --ink: #1b2344;
  --muted: #5c6370;
  --teal: #4caf8c;
  --teal-deep: #1b2b50;
  --amber: #f5b142;
  --coral: #ff6b7a;
  --mist: #eef6ff;
  --glow-warm: rgba(245, 177, 66, 0.08);
  --glow-cool: rgba(27, 43, 80, 0.06);
  --glow-cool-soft: rgba(76, 175, 140, 0.06);
  --surface-nav: rgba(255, 255, 255, 0.92);
  --surface-line: rgba(27, 35, 68, 0.08);
  --surface-card: rgba(255, 255, 255, 0.98);
  --surface-card-strong: rgba(255, 255, 255, 0.99);
  --surface-card-soft: rgba(255, 255, 255, 0.94);
  --surface-tag: rgba(238, 246, 255, 0.95);
  --chip-bg: rgba(27, 43, 80, 0.1);
  --chip-text: #1b2b50;
  --hover-tint: rgba(27, 43, 80, 0.06);
  --brand-gradient-start: rgba(27, 43, 80, 0.98);
  --brand-gradient-end: rgba(27, 43, 80, 1);
  --company-wash-a: rgba(27, 43, 80, 0.06);
  --company-wash-b: rgba(76, 175, 140, 0.04);
  --note-bg: rgba(245, 177, 66, 0.14);
  --note-border: #f5b142;
  --line: rgba(27, 35, 68, 0.1);
  --shadow: 0 24px 60px rgba(27, 43, 80, 0.07);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, var(--glow-warm), transparent 28%),
    radial-gradient(circle at 85% 15%, var(--glow-cool), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg) 100%);
  font-family: "Atkinson Hyperlegible", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 50;
  padding: 12px 16px;
  border-radius: 14px;
  background: #111;
  color: #fff;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

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

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(16px);
  opacity: 0.5;
}

.site-shell::before {
  top: 120px;
  right: -120px;
  width: 340px;
  height: 340px;
  background: var(--glow-warm);
  animation: drift 14s ease-in-out infinite;
}

.site-shell::after {
  left: -120px;
  top: 720px;
  width: 300px;
  height: 300px;
  background: var(--glow-cool-soft);
  animation: drift 16s ease-in-out infinite reverse;
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  padding: 20px 0 8px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: var(--surface-nav);
  box-shadow: 0 10px 30px rgba(27, 43, 80, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: "Atkinson Hyperlegible", sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: var(--hover-tint);
  color: var(--ink);
  transform: translateY(-1px);
  outline: none;
}

.nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, #243a6e 0%, var(--teal-deep) 100%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 43, 80, 0.08);
  color: var(--teal-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p,
.section-intro,
.legal-intro {
  margin: 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, #243a6e 0%, var(--teal-deep) 100%);
  box-shadow: 0 18px 34px rgba(27, 43, 80, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface-card-soft);
}

.button:hover,
.button-secondary:hover,
.button:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.store-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  min-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(27, 43, 80, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 26px rgba(27, 43, 80, 0.06);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(27, 43, 80, 0.3);
  box-shadow: var(--shadow);
  outline: none;
}

.store-badge img {
  display: block;
  width: 190px;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 80px 30px 30px 40px;
  border-radius: 48px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.84), rgba(238, 246, 255, 0.2)),
    linear-gradient(180deg, rgba(27, 43, 80, 0.1) 0%, rgba(245, 177, 66, 0.06) 100%);
  filter: blur(2px);
}

.phone-mockup {
  position: absolute;
  right: 0;
  top: 20px;
  width: min(100%, 392px);
  padding: 18px 18px 20px;
  border-radius: 42px;
  background: linear-gradient(180deg, #1b2b50 0%, #111827 100%);
  box-shadow: 0 34px 70px rgba(27, 43, 80, 0.22);
  overflow: hidden;
  transform: rotate(4deg);
  animation: floaty 8s ease-in-out infinite;
}

.demo-mockup {
  transform: none;
  animation: none;
}

.demo-video-shell,
.prompt-card,
.mini-card,
.flow-card,
.card,
.legal-card,
.legal-callout,
.support-card {
  border: 1px solid rgba(27, 43, 80, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  box-shadow: var(--shadow);
}

.phone-screen-frame {
  position: relative;
  padding: 22px 10px 10px;
  border-radius: 32px;
  background: linear-gradient(180deg, #0f172a 0%, #1b2b50 100%);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 34%;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0c1222;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  z-index: 2;
}

.demo-video-shell {
  overflow: hidden;
  position: relative;
  aspect-ratio: 480 / 854;
  border-radius: 26px;
  padding: 0;
  background: #000;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.2);
}

.demo-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 26px;
  background: #000;
  object-fit: contain;
}

.section {
  padding: 38px 0;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1;
}

.section-heading-strong h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.muted-kicker {
  color: var(--teal-deep);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.stats-grid,
.card-grid,
.legal-grid,
.faq-grid,
.platform-grid,
.company-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

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

.card,
.flow-card,
.legal-card,
.support-card {
  padding: 24px;
}

.stats-grid .card strong,
.flow-card strong,
.legal-card strong,
.support-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.card p,
.flow-card p,
.legal-card p,
.support-card p,
.stats-grid .card p {
  margin: 0;
  color: var(--muted);
}

.flow-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber) 0%, var(--coral) 100%);
  font-family: "Nunito", sans-serif;
  font-size: 1.2rem;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.inline-list li {
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--chip-bg);
  color: var(--chip-text);
  font-weight: 700;
}

.company-block {
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, var(--company-wash-a), var(--company-wash-b)),
    var(--surface-card-strong);
  border: 1px solid rgba(27, 43, 80, 0.08);
  box-shadow: var(--shadow);
}

.company-block h2,
.company-block h3,
.legal-section h2,
.legal-callout h3 {
  margin-top: 0;
  font-family: "Nunito", sans-serif;
}

.company-block p,
.company-block address,
.legal-section p,
.legal-section li,
.legal-callout p,
.footer p {
  margin: 0;
  color: var(--muted);
}

.company-block address {
  font-style: normal;
}

.company-grid .support-card {
  height: 100%;
}

.note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--note-border);
  border-radius: 0 14px 14px 0;
  background: var(--note-bg);
}

.note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.section-tight {
  padding-top: 12px;
}

.hero-sales {
  padding: 54px 0 40px;
}

.hero-grid-sales {
  gap: 56px;
  align-items: start;
}

.hero-sales h1 {
  max-width: 9ch;
  margin-top: 20px;
  font-size: clamp(3.1rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.eyebrow-strong {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid rgba(27, 43, 80, 0.12);
  box-shadow: 8px 8px 0 rgba(27, 43, 80, 0.14);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-lead {
  max-width: 58ch;
  font-size: 1.15rem;
  color: var(--ink);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-proof-row span {
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.hero-visual-sales {
  min-height: 720px;
}

.hero-visual-sales::before {
  inset: 34px 0 0 0;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(27, 43, 80, 0.07), rgba(76, 175, 140, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.94));
  filter: none;
}

.hero-stage {
  position: relative;
  min-height: 680px;
  padding: 24px 18px 18px;
  border: 2px solid rgba(27, 43, 80, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 12%, rgba(27, 43, 80, 0.08), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(76, 175, 140, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 255, 0.96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 28px;
}

.hero-stage::before {
  top: 30px;
  right: 26px;
  width: 132px;
  height: 132px;
  background: rgba(245, 177, 66, 0.14);
  transform: rotate(16deg);
}

.hero-stage::after {
  bottom: 46px;
  left: 28px;
  width: 96px;
  height: 96px;
  background: rgba(76, 175, 140, 0.1);
  transform: rotate(-14deg);
}

.hero-visual-sales .phone-mockup {
  position: relative;
  top: auto;
  right: auto;
  width: min(100%, 386px);
  margin: 78px auto 0;
  transform: rotate(-5deg);
  z-index: 1;
}

.hero-scribble {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  width: 240px;
  color: #111;
  font-family: "Caveat", cursive;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 0.96;
  transform: rotate(-4deg);
}

.hero-scribble span {
  display: block;
}

.hero-scribble svg {
  display: block;
  width: 240px;
  height: 170px;
  margin-top: -10px;
  overflow: visible;
}

.hero-scribble path {
  fill: none;
  stroke: #111;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-grid,
.story-grid,
.persona-grid {
  display: grid;
  gap: 18px;
}

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

.impact-card {
  min-height: 224px;
  padding: 24px;
  border: 2px solid rgba(27, 43, 80, 0.06);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.impact-card span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.impact-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  line-height: 0.96;
}

.impact-card p {
  margin: 0;
}

.impact-purple {
  background: #1b2b50;
  color: #fff;
}

.impact-blue {
  background: #4caf8c;
  color: #fff;
}

.impact-pink {
  background: #f5b142;
  color: #1b2344;
}

.card-grid-strong {
  gap: 20px;
}

.flow-card-strong {
  position: relative;
  padding: 30px;
  border: 2px solid rgba(27, 43, 80, 0.08);
  overflow: hidden;
}

.flow-card-strong::after {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  transform: rotate(18deg);
  opacity: 0.85;
}

.flow-purple::after {
  background: rgba(27, 43, 80, 0.1);
}

.flow-blue::after {
  background: rgba(76, 175, 140, 0.12);
}

.flow-pink::after {
  background: rgba(245, 177, 66, 0.12);
}

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

.story-panel {
  padding: 34px;
  border-radius: 34px;
}

.story-panel h2 {
  margin: 10px 0 18px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.story-panel-light {
  border: 2px solid rgba(27, 43, 80, 0.08);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.story-panel-bright {
  color: #fff;
  background: linear-gradient(140deg, #1b2b50 0%, #243a6e 46%, #4caf8c 100%);
  box-shadow: 0 26px 60px rgba(27, 43, 80, 0.2);
}

.story-panel-bright .muted-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.story-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.story-list li {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
}

.story-list-light li {
  background: rgba(27, 43, 80, 0.06);
}

.story-list-bright li {
  background: rgba(255, 255, 255, 0.12);
}

.persona-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.persona-card {
  padding: 24px;
  border: 2px solid rgba(27, 43, 80, 0.08);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.persona-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.persona-card p {
  margin: 0;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  padding: 38px;
  border-radius: 38px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #111827 0%, #1b2b50 38%, #243a6e 100%);
  box-shadow: 0 28px 60px rgba(27, 43, 80, 0.2);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: -32px;
  right: -28px;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: rgba(245, 177, 66, 0.2);
  transform: rotate(18deg);
}

.cta-panel::after {
  content: "";
  position: absolute;
  bottom: -52px;
  left: 34px;
  width: 148px;
  height: 148px;
  border-radius: 999px;
  background: rgba(76, 175, 140, 0.16);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  margin: 10px 0 12px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.1rem, 4.3vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.cta-panel p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel .muted-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.cta-panel .store-badge {
  background: rgba(255, 255, 255, 0.96);
}

.footer {
  padding: 30px 0 44px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  outline: none;
}

.page-hero {
  padding: 52px 0 24px;
}

.page-hero .eyebrow {
  background: rgba(245, 177, 66, 0.14);
  color: #8a6a1e;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 24px;
  padding-bottom: 36px;
}

.legal-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-section,
.legal-callout {
  padding: 26px;
  border: 1px solid rgba(27, 43, 80, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface-card-strong);
  box-shadow: var(--shadow);
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 12px;
}

.legal-list,
.legal-list-tight {
  padding-left: 20px;
}

.legal-list li + li,
.legal-list-tight li + li {
  margin-top: 10px;
}

.legal-list strong,
.legal-list-tight strong,
.contact-list strong {
  color: var(--ink);
}

.legal-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-nav a {
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(238, 246, 255, 0.5);
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--ink);
  background: rgba(27, 43, 80, 0.08);
  outline: none;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list div {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(238, 246, 255, 0.6);
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 68vh;
  text-align: center;
}

.empty-state .card {
  max-width: 560px;
}

.landing-main {
  min-height: 100%;
}

.landing-flow {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
  padding: 28px 0 44px;
}

.landing-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.landing-stage {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 2px solid rgba(27, 43, 80, 0.08);
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 14%, rgba(27, 43, 80, 0.08), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(76, 175, 140, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 246, 255, 0.97));
  box-shadow: var(--shadow);
}

.landing-stage::before,
.landing-stage::after {
  content: "";
  position: absolute;
  border-radius: 34px;
  z-index: 0;
}

.landing-stage::before {
  top: 24px;
  right: 26px;
  width: 150px;
  height: 150px;
  background: rgba(245, 177, 66, 0.14);
  transform: rotate(18deg);
}

.landing-stage::after {
  bottom: 26px;
  left: 26px;
  width: 120px;
  height: 120px;
  background: rgba(27, 43, 80, 0.08);
  transform: rotate(-14deg);
}

.landing-stage > * {
  position: relative;
  z-index: 1;
}

.landing-stage-copy {
  margin: 0 auto 26px;
  max-width: 720px;
  text-align: center;
}

.landing-stage-copy h1 {
  margin: 18px auto 14px;
  max-width: 9ch;
  font-family: "Nunito", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.landing-stage-copy p {
  margin: 0 auto;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.landing-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 34px 32px;
  border: 2px solid rgba(27, 43, 80, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 46px rgba(27, 43, 80, 0.07);
  text-align: center;
}

.landing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.landing-progress {
  margin: 0;
  color: var(--teal-deep);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-dots {
  display: inline-flex;
  gap: 8px;
}

.landing-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(27, 43, 80, 0.12);
  transition: transform 160ms ease, background-color 160ms ease;
}

.landing-dot.is-active {
  transform: scale(1.18);
  background: linear-gradient(135deg, #243a6e 0%, var(--teal-deep) 100%);
}

.landing-dot.is-complete {
  background: rgba(27, 43, 80, 0.3);
}

.landing-question,
.landing-result-title {
  margin: 0 auto;
  max-width: 13ch;
  font-family: "Nunito", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.landing-helper,
.landing-result-copy {
  margin: 18px auto 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.landing-actions,
.landing-result-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.landing-button {
  appearance: none;
  -webkit-appearance: none;
  min-width: 220px;
  min-height: 88px;
  padding: 0 28px;
  border-radius: 26px;
  border: 2px solid transparent;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.landing-button:hover,
.landing-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  outline: none;
}

.landing-button-yes {
  color: #fff;
  background: linear-gradient(135deg, #243a6e 0%, var(--teal-deep) 100%);
}

.landing-button-no {
  color: var(--ink);
  border-color: rgba(27, 43, 80, 0.12);
  background: rgba(255, 255, 255, 0.96);
}

.landing-reset-button {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--line);
  background: var(--surface-card-soft);
  font: inherit;
  cursor: pointer;
}

.landing-result[hidden] {
  display: none;
}

.landing-card[data-result="positive"] {
  border-color: rgba(76, 175, 140, 0.2);
}

.landing-card[data-result="negative"] {
  border-color: rgba(255, 107, 122, 0.18);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumb-list a {
  text-decoration: none;
}

.breadcrumb-list a:hover,
.breadcrumb-list a:focus-visible {
  color: var(--teal);
  outline: none;
}

.article-hero {
  padding-bottom: 18px;
}

.article-byline {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.96rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card,
.article-panel,
.article-callout {
  border: 1px solid rgba(27, 43, 80, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 46px rgba(27, 43, 80, 0.06);
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.resource-card span {
  color: var(--teal-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 1.7rem;
  line-height: 1.02;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.resource-card .button-secondary {
  margin-top: auto;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: start;
}

.article-panel {
  padding: 34px;
}

.article-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.article-section h2 {
  margin: 0 0 14px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.article-section p {
  margin: 0 0 14px;
  color: var(--muted);
}

.article-section p:last-child {
  margin-bottom: 0;
}

.article-list,
.article-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.article-list li,
.article-steps li {
  margin-bottom: 12px;
}

.article-list li:last-child,
.article-steps li:last-child {
  margin-bottom: 0;
}

.article-callout {
  position: sticky;
  top: 24px;
  padding: 28px;
}

.article-callout strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Nunito", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.article-callout p {
  margin: 0;
  color: var(--muted);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(18px, -18px, 0);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2deg) translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .legal-layout,
  .stats-grid,
  .card-grid,
  .legal-grid,
  .platform-grid,
  .company-grid,
  .faq-grid,
  .impact-grid,
  .story-grid,
  .persona-grid,
  .resource-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .phone-mockup {
    position: relative;
    margin: 0 auto;
    right: auto;
  }

  .hero-visual-sales {
    min-height: auto;
  }

  .hero-stage {
    min-height: auto;
    padding-bottom: 28px;
  }

  .hero-visual-sales .phone-mockup {
    margin-top: 32px;
    transform: none;
  }

  .hero-scribble {
    display: none;
  }

}

@media (max-width: 720px) {
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 14vw, 3.8rem);
  }

  .hero-sales h1 {
    font-size: clamp(2.7rem, 13vw, 3.9rem);
  }

  .phone-mockup {
    width: 100%;
    transform: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .landing-card {
    padding: 30px 22px 24px;
  }

  .resource-card,
  .article-panel,
  .article-callout {
    padding: 24px;
    border-radius: 24px;
  }

  .landing-stage {
    padding: 24px 18px;
    border-radius: 34px;
  }

  .landing-stage-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.9rem);
  }

  .landing-card-top {
    flex-direction: column;
    align-items: center;
  }

  .landing-question,
  .landing-result-title {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .landing-button {
    width: 100%;
  }

  .button,
  .button-secondary,
  .store-badge {
    width: 100%;
  }

  .cta-panel {
    padding: 28px 22px;
  }
}
