
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Lora:ital,wght@0,500;0,600;1,500&display=swap");

:root {
  --plum-950: #100618;
  --plum-900: #160820;
  --plum-800: #2d163d;
  --plum-700: #432158;
  --plum-600: #69487d;
  --lavender-200: #e9dced;
  --lavender-100: #f3ebf6;
  --cream: #fbf8f4;
  --paper: #fffdfb;
  --ink: #302837;
  --muted: #756b7a;
  --green: #237847;
  --green-hover: #2d8c55;
  --green-soft: #e8f3ec;
  --gold: #dfb85f;
  --coral-soft: #f9e6e2;
  --coral: #ad4d44;
  --border: #e4d8ce;
  --shadow: 0 22px 56px rgba(31, 13, 42, .12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { display: block; }

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

.inner-header {
  position: relative;
  z-index: 20;
  color: #fff;
  background: var(--plum-900);
}

.inner-header__row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  font: 600 31px "Lora", Georgia, serif;
  letter-spacing: -1.4px;
}

.brand span { color: #c9a6dd; }

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 29px;
  font-size: 13px;
}

.primary-nav a[aria-current="page"] {
  color: #d8bceb;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.nav-toggle {
  display: none;
  padding: 8px 10px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg { display: block; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: .18s ease;
}

.button:hover { transform: translateY(-2px); }

.button--green {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(35,120,71,.22);
}

.button--green:hover { background: var(--green-hover); }

.button--outline {
  color: var(--plum-700);
  border-color: #bdabc7;
  background: #fff;
}

.button--outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.02);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--plum-600);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.eyebrow--light { color: #c7b2d3; }
.eyebrow--green { color: var(--green); }

.page-title,
.section-title,
.card-serif {
  font-family: "Lora", Georgia, serif;
}

.page-title {
  margin: 0 0 20px;
  font-size: clamp(50px, 5.5vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -3px;
}

.page-title em {
  color: #c9a6dd;
  font-weight: 500;
}

.section-title {
  margin: 0 0 13px;
  color: var(--plum-700);
  font-size: clamp(34px, 4vw, 47px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -1.6px;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 16%, #291438 0%, var(--plum-900) 55%, var(--plum-950) 100%);
}

.hero-dark__noise {
  position: absolute;
  inset: 5px 0 auto;
  width: 100%;
  height: 510px;
  opacity: .5;
  pointer-events: none;
}

.hero-dark__noise path,
.hero-dark__noise ellipse {
  fill: none;
  stroke: #9e80ae;
  stroke-width: 1.05;
  vector-effect: non-scaling-stroke;
}

.hero-dark__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 68px;
  align-items: center;
  padding: 74px 0 78px;
}

.hero-intro {
  max-width: 540px;
  margin: 0 0 27px;
  color: #efe8f2;
  font-size: 18px;
  line-height: 1.65;
}

.button-row {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

.system-map {
  display: grid;
  gap: 12px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(255,253,251,.98);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
}

.system-map__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1px 4px 12px;
}

.system-map__head strong {
  color: var(--plum-700);
  font: 500 24px "Lora", Georgia, serif;
}

.system-map__head span {
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
}

.system-map__row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 75px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}

.system-map__icon,
.feature-icon,
.plan-icon {
  display: grid;
  place-items: center;
  color: var(--plum-700);
  background: var(--lavender-100);
}

.system-map__icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
}

.system-map__icon svg,
.feature-icon svg,
.plan-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.system-map__row h3 {
  margin: 0 0 3px;
  color: var(--plum-700);
  font-size: 14px;
}

.system-map__row p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.plan-chip {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--plum-700);
  background: var(--lavender-100);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.plan-chip--green {
  color: #286b42;
  background: var(--green-soft);
}

.jump-nav {
  position: sticky;
  z-index: 15;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,253,251,.96);
  backdrop-filter: blur(12px);
}

.jump-nav__inner {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 12px;
}

.jump-nav a {
  color: #625768;
  font-weight: 600;
}

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

.page-section {
  padding: 78px 0;
}

.page-section--paper { background: var(--paper); }
.page-section--cream { background: var(--cream); }
.page-section--lavender {
  background:
    radial-gradient(circle at 92% 12%, rgba(207,178,221,.35), transparent 34%),
    linear-gradient(135deg, #f8f1f9, #eee3f3);
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 43px;
  text-align: center;
}

.outcome-grid {
  display: grid;
  gap: 20px;
}

.outcome-card {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 34px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(41,20,52,.06);
}

.outcome-card:nth-child(even) {
  grid-template-columns: 1.34fr .66fr;
}

.outcome-card:nth-child(even) .outcome-copy { order: 2; }
.outcome-card:nth-child(even) .outcome-visual { order: 1; }

.outcome-copy h3 {
  margin: 0 0 11px;
  color: var(--plum-700);
  font: 500 31px "Lora", Georgia, serif;
  letter-spacing: -1px;
}

.outcome-copy p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 9px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid #eee5df;
}

.feature-list li:first-child { border-top: 0; }

.feature-list__check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
}

.feature-list strong {
  display: block;
  color: #433849;
  font-size: 13px;
}

.feature-list small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.outcome-visual {
  min-width: 0;
  padding: 20px;
  border-radius: 15px;
  background: var(--lavender-100);
}

.message-ui {
  display: grid;
  gap: 11px;
}

.message-ui__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--plum-700);
  font-size: 11px;
  font-weight: 700;
}

.message-ui__bar span { color: var(--green); font-size: 9px; }

.bubble {
  max-width: 74%;
  padding: 13px 15px;
  border-radius: 11px;
  color: #4a3e4e;
  background: #f3ede7;
  font-size: 11px;
  line-height: 1.48;
}

.bubble--out {
  margin-left: auto;
  color: #41644e;
  background: #e6f0e9;
}

.tone-pair {
  display: grid;
  grid-template-columns: 1fr 34px 1fr;
  gap: 10px;
  align-items: center;
}

.tone-box {
  min-height: 194px;
  padding: 15px;
  border: 1px solid #dfd3e4;
  border-radius: 12px;
  background: #fff;
}

.tone-box__head {
  display: flex;
  justify-content: space-between;
  color: var(--plum-700);
  font-size: 10px;
  font-weight: 700;
}

.status-pill {
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 8px;
}

.status-pill--risk { color: var(--coral); background: var(--coral-soft); }
.status-pill--good { color: #2d7547; background: var(--green-soft); }

.tone-box blockquote {
  margin: 13px 0;
  padding: 13px;
  border-radius: 8px;
  color: #45394a;
  background: var(--coral-soft);
  font-size: 10px;
  line-height: 1.45;
}

.tone-box--good blockquote { background: var(--green-soft); }

.tone-box ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 9px;
}

.tone-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--plum-700);
}

.organize-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 12px;
}

.mini-panel {
  padding: 15px;
  border: 1px solid #dfd4e3;
  border-radius: 11px;
  background: #fff;
}

.mini-panel h4 {
  margin: 0 0 9px;
  color: var(--plum-700);
  font-size: 11px;
}

.calendar-row,
.expense-row,
.document-row {
  display: grid;
  gap: 3px;
  padding: 9px 0;
  border-top: 1px solid #eee6e1;
  font-size: 9px;
}

.calendar-row:first-of-type,
.expense-row:first-of-type,
.document-row:first-of-type { border-top: 0; }

.calendar-row strong,
.expense-row strong,
.document-row strong { color: #4a3e4f; }
.calendar-row span,
.expense-row span,
.document-row span { color: var(--muted); }

.record-flow {
  display: grid;
  grid-template-columns: 1fr 29px 1fr 29px 1fr;
  gap: 8px;
  align-items: center;
}

.record-step {
  min-height: 176px;
  padding: 14px;
  border: 1px solid #dfd3e4;
  border-radius: 11px;
  background: #fff;
  text-align: center;
}

.record-step strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--plum-700);
  font-size: 11px;
}

.record-step p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.record-step .feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border-radius: 50%;
}

.flow-arrow {
  color: var(--plum-700);
  text-align: center;
  font-size: 19px;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(46,23,58,.06);
}

.comparison-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #eee5df;
  border-right: 1px solid #eee5df;
  text-align: center;
  font-size: 11px;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  width: 34%;
  text-align: left;
}

.comparison-table th:last-child,
.comparison-table td:last-child { border-right: 0; }

.comparison-table thead th {
  color: var(--plum-700);
  background: #fbf7fc;
  font: 500 18px "Lora", Georgia, serif;
}

.comparison-table thead th small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font: 9px "DM Sans", Arial, sans-serif;
}

.comparison-table tbody tr:last-child td { border-bottom: 0; }

.check-mark { color: var(--green); font-size: 16px; font-weight: 700; }
.dash { color: #c4bac6; }

.mobile-plan-stack {
  display: none;
  gap: 13px;
}

.mobile-plan {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}

.mobile-plan summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px;
  color: var(--plum-700);
  font: 500 20px "Lora", Georgia, serif;
  cursor: pointer;
}

.mobile-plan__content {
  padding: 0 17px 17px;
  color: var(--muted);
  font-size: 12px;
}

.mobile-plan__content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-plan__content li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 700;
}

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

.faq-grid details {
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
}

.faq-grid summary {
  padding: 18px;
  color: var(--plum-700);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.cta-band {
  padding: 54px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(107,70,126,.35), transparent 30%),
    var(--plum-900);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 7px;
  font: 500 37px "Lora", Georgia, serif;
  letter-spacing: -1.3px;
}

.cta-band p {
  margin: 0;
  color: #d8cedd;
  font-size: 13px;
}

/* Pricing page */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 134px;
  background:
    radial-gradient(circle at 92% 5%, rgba(211,183,224,.48), transparent 35%),
    linear-gradient(145deg, #fffdfb, #f4ebf7);
}

.pricing-hero__grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 55px;
  align-items: center;
}

.pricing-hero__copy h1 {
  margin: 0 0 19px;
  color: var(--plum-700);
  font: 500 clamp(51px, 5.5vw, 74px)/1 "Lora", Georgia, serif;
  letter-spacing: -3px;
}

.pricing-hero__copy p {
  max-width: 610px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.billing-card {
  padding: 29px;
  border: 1px solid #d8c8df;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.billing-card h2 {
  margin: 0 0 15px;
  color: var(--plum-700);
  font: 500 28px "Lora", Georgia, serif;
}

.billing-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5f5465;
  font-size: 13px;
}

.billing-card li {
  display: flex;
  gap: 10px;
}

.billing-card li::before {
  content: "✓";
  display: grid;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 11px;
  font-weight: 700;
}

.plan-overlap {
  position: relative;
  z-index: 4;
  margin-top: -80px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 27px 21px 21px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 17px 42px rgba(43,21,54,.08);
}

.price-card--featured {
  border-color: #a98bb8;
  box-shadow: 0 20px 48px rgba(66,32,83,.14);
}

.price-card__ribbon {
  position: absolute;
  top: 0;
  right: 16px;
  transform: translateY(-50%);
  padding: 6px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--plum-700);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card h2 {
  margin: 0;
  color: var(--plum-700);
  font: 500 31px "Lora", Georgia, serif;
}

.price-card__purpose {
  min-height: 38px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.price-card__amount {
  margin: 18px 0 5px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 700;
}

.price-card__amount small {
  font-size: 12px;
  font-weight: 500;
}

.price-card__per {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 9px;
}

.price-card__best {
  min-height: 46px;
  margin-bottom: 16px;
  padding: 10px 11px;
  border-radius: 8px;
  color: #5a4f60;
  background: var(--lavender-100);
  font-size: 10px;
  line-height: 1.45;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
  color: #5c5262;
  font-size: 11px;
  line-height: 1.4;
}

.price-card li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 700;
}

.price-card .button { margin-top: auto; }

.billing-band {
  padding: 58px 0;
  color: #fff;
  background: var(--plum-900);
}

.billing-band__heading {
  max-width: 710px;
  margin: 0 auto 34px;
  text-align: center;
}

.billing-band__heading h2 {
  margin: 0 0 8px;
  font: 500 36px "Lora", Georgia, serif;
}

.billing-band__heading p {
  margin: 0;
  color: #d7cddd;
  font-size: 13px;
}

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

.billing-principle {
  padding: 4px 32px;
  border-right: 1px solid rgba(255,255,255,.18);
  text-align: center;
}

.billing-principle:last-child { border-right: 0; }

.billing-principle .plan-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 13px;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255,255,255,.04);
}

.billing-principle h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.billing-principle p {
  margin: 0;
  color: #d7cddd;
  font-size: 11px;
  line-height: 1.55;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.fit-card {
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}

.fit-card h3 {
  margin: 0 0 7px;
  color: var(--plum-700);
  font: 500 24px "Lora", Georgia, serif;
}

.fit-card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--green);
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.fit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.site-footer {
  padding: 44px 0 25px;
  background: #f2ece6;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
}

.site-footer__brand {
  color: var(--plum-700);
  font: 600 29px "Lora", Georgia, serif;
  letter-spacing: -1.3px;
}

.site-footer p {
  color: var(--muted);
  font-size: 11px;
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-footer a:not(.site-footer__brand) {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 10px;
}

.tm {
  font-size: 0.42em;
  font-weight: 400;
  line-height: 1;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 0.08em;
}

.legal-tm {
  display: block;
  margin-top: 6px;
}

.site-footer__copyright {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #ddd2c9;
  color: #8b8088;
  font-size: 9px;
}

@media (max-width: 1050px) {
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .inner-header__row { grid-template-columns: 1fr auto auto; }

  .primary-nav.is-open {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: var(--plum-800);
    box-shadow: 0 20px 45px rgba(0,0,0,.35);
  }

  .primary-nav.is-open a {
    display: block;
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #e8d8f5;
  }

  .primary-nav.is-open a:hover {
    background: rgba(255,255,255,.08);
    color: #fff;
  }

  .primary-nav.is-open a[aria-current="page"] {
    background: rgba(201,166,221,.15);
    color: #c9a6dd;
  }

  .hero-dark__grid,
  .pricing-hero__grid {
    grid-template-columns: 1fr;
  }

  .system-map,
  .billing-card {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .outcome-card,
  .outcome-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .outcome-card:nth-child(even) .outcome-copy,
  .outcome-card:nth-child(even) .outcome-visual {
    order: initial;
  }

  .pricing-cards,
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-shell { width: min(100% - 28px, 1180px); }

  .inner-header__row {
    grid-template-columns: 1fr auto auto;
    min-height: 70px;
  }

  .brand { font-size: 27px; }
  .header-actions > a:first-child { display: none; }
  .header-actions .button { min-height: 39px; padding: 0 13px; font-size: 10px; }

  .hero-dark__grid { gap: 38px; padding: 54px 0 63px; }
  .page-title { font-size: 53px; letter-spacing: -2px; }
  .hero-intro { font-size: 16px; }

  .jump-nav__inner {
    justify-content: flex-start;
    gap: 22px;
  }

  .page-section { padding: 59px 0; }
  .outcome-card { padding: 22px; }

  .tone-pair,
  .organize-grid,
  .record-flow {
    grid-template-columns: 1fr;
  }

  .tone-arrow,
  .flow-arrow {
    margin: -4px auto;
    transform: rotate(90deg);
  }

  .compare-wrap { display: none; }
  .mobile-plan-stack { display: grid; }

  .faq-grid,
  .cta-band__inner,
  .billing-principles {
    grid-template-columns: 1fr;
  }

  .cta-band__inner { text-align: center; }
  .cta-band .button-row { justify-content: center; }

  .pricing-hero { padding: 58px 0 108px; }
  .plan-overlap { margin-top: -62px; }

  .billing-principle {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .pricing-cards,
  .fit-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid > div:first-child { grid-column: auto; }

  .system-map { padding: 17px; }
  .system-map__row { grid-template-columns: 48px 1fr; }
  .system-map__row .plan-chip { grid-column: 2; justify-self: start; }

  .price-card { min-height: 0; }
}


.pricing-page-link {
  color: inherit;
  text-decoration: none;
}
.pricing-page-link:hover {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-page-link--mobile {
  display: inline-block;
  margin-top: 14px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

/* Mobile nav — CTA in dropdown */
.header-actions--desktop { display: flex; align-items: center; gap: 22px; font-size: 13px; }

.nav-cta {
  display: none;
}

@media (max-width: 1050px) {
  .inner-header__row { grid-template-columns: 1fr auto auto !important; }
  .header-actions--desktop { display: none; }

  .primary-nav.is-open .nav-cta {
    display: block;
    margin-top: 6px;
    text-align: center;
    background: #237847;
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 14px !important;
  }

  .primary-nav.is-open .nav-cta:hover {
    background: #2d8c55 !important;
  }
}
