:root {
  --navy: #1e3a8a;
  --navy-deep: #152a66;
  --navy-ink: #0f1f4d;
  --blue: #3b82f6;
  --blue-hover: #2563eb;
  --blue-focus: #1d4ed8;
  --ice: #dbeafe;
  --paper: #f6f4ef;
  --gray: #f3f4f6;
  --line: #e5e7eb;
  --muted: #374151;
  --ink: #111827;
  --white: #ffffff;
  --heart: #dc2626;
  --success: #10b981;
  --success-bg: #d1fae5;
  --danger: #ef4444;
  --danger-bg: #fee2e2;
  --warn-bg: #fef3c7;
  --shadow: 0 18px 50px rgba(15, 31, 77, 0.12);
  --shadow-soft: 0 8px 30px rgba(15, 31, 77, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --header: 76px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font-family: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue);
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.15rem);
  font-weight: 600;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 42rem;
}

.section {
  padding: 92px 0;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head.center .lede {
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 + .lede,
.section-head h2 + p {
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary,
a.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover,
a.btn-primary:hover {
  background: var(--blue-hover);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-secondary:hover {
  background: var(--ice);
}

.btn-white,
a.btn-white {
  background: var(--white);
  color: var(--navy);
}

.btn-white:hover,
a.btn-white:hover {
  background: var(--ice);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(246, 244, 239, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.header-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}

.logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

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

.nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--navy);
}

.nav-login {
  display: none;
}

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

.nav-cta .btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

/* Hero */
.hero {
  padding: 48px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy p {
  margin: 18px 0 0;
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-note {
  margin-top: 18px !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: var(--navy) !important;
}

.hero-visual {
  position: relative;
}

.device {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.device-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}

.device-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.device img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top left;
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 14px;
  min-width: 180px;
}

.float-card strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.float-card span {
  font-size: 0.92rem;
  color: var(--muted);
}

.float-a {
  left: -28px;
  bottom: 58px;
  border-left: 4px solid var(--danger);
}

.float-b {
  right: -18px;
  top: 48px;
  border-left: 4px solid var(--success);
}

.hero-strip {
  margin-top: 56px;
  background: var(--navy-ink);
  color: var(--white);
}

.hero-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: auto;
}

.hero-strip-inner span {
  white-space: nowrap;
  opacity: 0.82;
}

/* Problem */
.problem {
  background: var(--white);
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.compare-col {
  border-radius: var(--radius);
  padding: 32px;
}

.compare-col h3 {
  margin-bottom: 8px;
}

.compare-col p {
  margin: 0 0 22px;
  color: var(--muted);
}

.chaos {
  background: var(--gray);
  border: 1px dashed #cbd5e1;
}

.order {
  background: var(--navy);
  color: var(--white);
}

.order p {
  color: rgba(255, 255, 255, 0.78);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 600;
}

.flow-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
}

.flow-mini span {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
}

.compare-arrow {
  align-self: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* Cycle */
.cycle-board {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.cycle-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cycle-step {
  position: relative;
  background: var(--paper);
  border-radius: 16px;
  padding: 18px 16px 16px;
  min-height: 118px;
}

.cycle-step b {
  display: block;
  font-size: 0.72rem;
  color: var(--blue);
  letter-spacing: 0.08em;
}

.cycle-step strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.cycle-step span {
  display: block;
  margin-top: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}

.cycle-note {
  margin: 22px 0 0;
  text-align: center;
  font-weight: 700;
  color: var(--navy);
}

/* Payments */
.pay {
  background: linear-gradient(180deg, #eef3ff 0%, var(--paper) 100%);
}

.pay-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.pay-step {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}

.pay-step em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--blue);
}

.pay-step h3 {
  font-size: 2rem;
  margin: 8px 0 10px;
}

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

.pay-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.pay-copy li {
  margin: 8px 0;
}

.pay-result {
  margin-top: 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.3;
}

.pay .device img {
  height: 390px;
  object-position: top;
}

/* Internet */
.internet {
  background: var(--navy-ink);
  color: var(--white);
}

.internet .eyebrow {
  color: #93c5fd;
}

.internet .eyebrow::before {
  background: #93c5fd;
}

.internet .lede {
  color: rgba(255, 255, 255, 0.78);
}

.internet-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.storefront,
.backoffice {
  border-radius: 24px;
  padding: 28px;
}

.storefront {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.backoffice {
  background: var(--white);
  color: var(--ink);
}

.backoffice h3 {
  margin-bottom: 8px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip-cloud span {
  background: var(--ice);
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.muted-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0 0 10px;
}

/* Operate */
.operate-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process {
  appearance: none;
  text-align: left;
  background: var(--white);
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  cursor: pointer;
  width: 100%;
}

.process.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.process small {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.7;
}

.process p {
  margin: 8px 0 0;
  font-size: 0.95rem;
}

.process.active p {
  color: rgba(255, 255, 255, 0.82);
}

.process-panel {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 420px;
}

.process-panel img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}

.process-caption {
  padding: 22px 24px 26px;
}

.process-caption h3 {
  margin-bottom: 8px;
}

.process-idea {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 280px;
  padding: 32px;
  background: linear-gradient(180deg, #eef3ff, #fff);
}

.process-idea small {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.process-idea strong {
  display: block;
  margin-top: 8px;
  font-size: 1.35rem;
  font-family: var(--display);
}

.process-idea span {
  font-weight: 800;
  color: var(--navy);
}

.internet .backoffice {
  margin-top: 16px;
}

.founder .lede {
  color: rgba(255, 255, 255, 0.78);
}

.footer .logo {
  color: var(--white);
  margin-bottom: 12px;
}

.hidden {
  display: none;
}

/* Worlds */
.worlds {
  padding: 0 0 92px;
}

.worlds-wrap {
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 32px;
  overflow: hidden;
  min-height: 640px;
}

.world {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.world-biz {
  background: var(--navy);
  color: var(--white);
}

.world-you {
  background: #fff7f7;
  color: var(--ink);
  border-left: 1px solid #fecaca;
}

.world .eyebrow {
  color: inherit;
}

.world-biz .eyebrow {
  color: #93c5fd;
}

.world-you .eyebrow {
  color: var(--heart);
}

.world-you .eyebrow::before {
  background: var(--heart);
}

.world h2 {
  margin-bottom: 12px;
}

.world .question {
  font-family: var(--display);
  font-size: 1.45rem;
  margin: 16px 0 24px;
}

.world-biz .question {
  color: #bfdbfe;
}

.world-you .question {
  color: var(--heart);
}

.world ul {
  margin: 0;
  padding-left: 18px;
}

.world li {
  margin: 8px 0;
}

.world .device {
  margin-top: auto;
  padding-top: 28px;
}

.world .device img {
  height: 230px;
}

.neq {
  margin-top: 22px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 14px;
}

/* Month */
.month {
  background: var(--white);
}

.month-formula {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
}

.month-item,
.month-sum,
.month-free {
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
}

.month-item {
  background: var(--gray);
}

.month-sum {
  background: var(--navy);
  color: var(--white);
}

.month-free {
  background: var(--success-bg);
  color: #15803d;
}

.plus {
  color: var(--blue);
  font-weight: 800;
}

.month-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.month-panel .device img {
  height: 320px;
}

/* Types */
.bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.bento article {
  background: var(--white);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.bento .wide {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: var(--navy);
  color: var(--white);
}

.bento h3 {
  margin: 10px 0;
}

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

.bento .wide p {
  color: rgba(255, 255, 255, 0.8);
}

.org {
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px 20px;
  font-family: ui-monospace, Consolas, monospace;
  line-height: 1.7;
}

/* Reports */
.reports {
  background: var(--gray);
}

.reports-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
}

.q-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.q-list li {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-weight: 700;
}

.reports .device img {
  height: 420px;
  object-position: top;
}

/* Story */
.story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.story-insight {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 40rem;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.timeline div {
  border-left: 3px solid var(--ice);
  padding-left: 18px;
}

.timeline b {
  color: var(--navy);
}

.story-stat {
  background: var(--paper);
  border-radius: 24px;
  padding: 36px;
}

.story-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--navy);
  line-height: 1;
}

.story-stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.chaos {
  background: #fff7f7;
}

.chaos .eyebrow {
  color: var(--heart);
}

.chaos .eyebrow::before {
  background: var(--heart);
}

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

.chaos-layout p {
  color: var(--muted);
}

.chaos-photo {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.chaos-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
}

.chaos-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 36px 22px 18px;
  background: linear-gradient(transparent, rgba(127, 29, 29, 0.92));
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

/* Position */
.position {
  padding: 0 0 92px;
}

.position-banner {
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 28px;
  padding: 42px 48px;
}

.position-banner .eyebrow {
  color: #93c5fd;
}

.position-banner .eyebrow::before {
  background: #93c5fd;
}

.position-banner h2 {
  max-width: 22ch;
  margin-bottom: 18px;
}

.position-banner p {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 14px;
}

.position-banner p:last-child {
  margin-bottom: 0;
}

.position-banner .actions {
  margin-top: 24px;
}

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

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.plan.featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.plan.personal {
  border-color: #fecaca;
  background: #fff7f7;
}

.plan .tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.plan.featured .tag,
.plan.featured .price small {
  color: #93c5fd;
}

.plan.personal .tag {
  color: var(--heart);
}

.plan h3 {
  margin: 8px 0 4px;
}

.price {
  font-family: var(--display);
  font-size: 2.3rem;
  margin: 8px 0 12px;
}

.price small {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.plan p,
.plan-points {
  margin: 0 0 18px;
  color: var(--muted);
}

.plan-points {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-points li {
  position: relative;
  padding-left: 16px;
  line-height: 1.45;
}

.plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.plan.featured p,
.plan.featured .plan-points {
  color: rgba(255, 255, 255, 0.88);
}

.plan.featured .plan-points li::before {
  background: #93c5fd;
}

.plan.personal .plan-points li::before {
  background: var(--heart);
}

.plan .btn {
  margin-top: auto;
}

/* Founder */
.founder {
  background: var(--navy-ink);
  color: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.founder-deal {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 32px 28px;
}

.founder-until {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(219, 234, 254, 0.16);
  color: #bfdbfe;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.founder-price {
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 6rem);
  line-height: 0.9;
}

.founder-price small {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.founder-save {
  margin: 18px 0 8px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #93c5fd;
}

.founder-compare {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
}

.founder-compare s {
  color: rgba(255, 255, 255, 0.45);
}

.founder-once {
  margin: 0;
  font-weight: 700;
  color: #fff;
}

.founder ul {
  margin: 0;
  padding-left: 18px;
  font-size: 1.05rem;
}

.founder li {
  margin: 8px 0;
}

/* Shop */
.shop-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  background: var(--white);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.price-stack {
  background: var(--paper);
  border-radius: 18px;
  padding: 24px;
}

.price-stack b {
  display: block;
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--navy);
}

.price-stack span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.shop-box p {
  color: var(--muted);
}

.shop-versions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.shop-versions article {
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
}

.shop-versions h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.shop-versions p {
  margin: 0;
  font-size: 0.92rem;
}

.addons {
  padding-top: 0;
}

.price-stack .stack-title {
  font-size: 1.55rem;
  line-height: 1.2;
}

.price-stack .btn {
  margin-top: 20px;
  width: 100%;
}

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

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-size: 1.02rem;
  font-weight: 800;
  color: inherit;
  cursor: pointer;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  display: none;
}

.faq-item a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item.open p {
  display: block;
}

/* Close */
.close {
  padding: 0 0 92px;
}

.close-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: 32px;
  padding: 56px 40px;
  text-align: center;
}

.close-banner .brand-line {
  margin: 18px 0 28px;
  font-size: 1.15rem;
  color: #bfdbfe;
}

.close-banner .actions {
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--navy-ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 42px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

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

.footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin: 8px 0;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  font-size: 0.88rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.7s ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

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

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

/* Responsive */
@media (max-width: 980px) {
  .nav,
  .nav-cta .btn-secondary {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px 22px;
    gap: 14px;
  }

  .nav.open .nav-login {
    display: block;
  }

  .process-idea {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .compare,
  .pay-layout,
  .internet-grid,
  .operate-layout,
  .worlds-wrap,
  .month-panel,
  .reports-grid,
  .story-grid,
  .chaos-layout,
  .founder-grid,
  .shop-box,
  .shop-versions,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compare {
    gap: 16px;
  }

  .compare-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .pay-steps,
  .plans-grid,
  .bento {
    grid-template-columns: 1fr;
  }

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

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

  .float-a,
  .float-b {
    position: static;
    margin-top: 12px;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .device img,
  .pay .device img,
  .reports .device img,
  .process-panel img,
  .month-panel .device img,
  .chaos-photo img {
    height: auto;
    max-height: 320px;
  }

  .hero-strip-inner {
    justify-content: flex-start;
  }

  .section {
    padding: 72px 0;
  }

  .worlds-wrap {
    min-height: 0;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .cycle-grid,
  .pay-steps {
    grid-template-columns: 1fr;
  }

  .hero-copy p {
    font-size: 1.05rem;
  }
}

/* Inner pages */
.nav a.is-current {
  color: var(--navy);
}

.page-story {
  padding-top: 24px;
}

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

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

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

.page-hero {
  padding: 48px 0 12px;
}

.page-hero h1 {
  max-width: 22ch;
}

.page-hero .lede {
  margin-top: 16px;
}

.page-prose {
  max-width: 46rem;
}

.page-prose p {
  color: var(--muted);
}

.form-card {
  background: var(--white);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-ok {
  background: var(--success-bg);
  color: #15803d;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-err {
  background: var(--danger-bg);
  color: #b91c1c;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.draft-banner {
  background: var(--ice);
  color: var(--navy);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 700;
  margin-bottom: 28px;
}

.legal {
  max-width: 760px;
  padding-bottom: 72px;
}

.legal-meta {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal a {
  color: var(--navy);
  font-weight: 700;
}

.legal a.btn,
.legal a.btn-primary {
  color: var(--white);
  text-decoration: none;
}

.legal a.btn:hover,
.legal a.btn-primary:hover {
  color: var(--white);
}

.legal ul {
  padding-left: 1.2rem;
}

.legal .btn {
  margin-top: 8px;
}

.legal h2 {
  margin: 32px 0 10px;
  font-size: 1.45rem;
}

.legal p,
.legal li {
  color: var(--muted);
}

.footer-copy a {
  color: #93c5fd;
}

.footer-copy a:hover {
  color: var(--white);
}

.page-prose a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.op-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 20px;
}

.op-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.op-item p {
  margin: 0;
  color: var(--muted);
}

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

.limit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  text-align: center;
}

.limit-card .num {
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.limit-card .num.fit {
  font-size: 2.15rem;
}

.limit-card h3 {
  margin: 0 0 8px;
}

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

@media (max-width: 980px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .op-grid,
  .limit-grid {
    grid-template-columns: 1fr;
  }
}
