:root {
  --ink: #141816;
  --ink-soft: #2a312e;
  --cream: #f6f1e8;
  --cream-2: #efe8d8;
  --paper: #fbf7f0;
  --sage: #6f8f7c;
  --sage-deep: #4d6a5a;
  --brass: #c4a574;
  --brass-deep: #9b7d4e;
  --slate: #5c6b66;
  --line: rgba(20, 24, 22, 0.12);
  --line-strong: rgba(20, 24, 22, 0.22);
  --white: #fffcf7;
  --danger: #a65a3a;
  --shadow: 0 30px 80px rgba(20, 24, 22, 0.16);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button, .btn { font-family: inherit; cursor: pointer; }

.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
h1, h2, h3, .display { font-family: var(--serif); font-optical-sizing: auto; font-weight: 500; letter-spacing: -0.03em; }
h1 { font-size: clamp(48px, 7vw, 92px); line-height: 0.95; }
h2 { font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; }
h3 { font-size: 28px; line-height: 1.15; }
.lede { font-size: clamp(18px, 2vw, 22px); color: var(--ink-soft); max-width: 42rem; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: rgba(246, 241, 232, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 17px; letter-spacing: 0.01em;
}
.brand svg { width: 34px; height: 34px; color: var(--ink); flex: none; }
.brand span { white-space: nowrap; }
.nav-links { display: flex; gap: 26px; align-items: center; font-size: 14px; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.nav-menu { display: contents; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px; flex: none;
  border: 1px solid var(--line-strong); background: transparent; color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle .bars { display: grid; gap: 5px; width: 20px; }
.nav-toggle .bars span { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav.is-open .nav-toggle .bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle .bars span:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle .bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 60; background: var(--ink); color: var(--cream); padding: 10px 14px; border-radius: 10px; }
.skip:focus { top: 12px; }
a:focus-visible, button:focus-visible, .btn:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 3px; }
.text-link { text-decoration: underline; text-underline-offset: 3px; }
.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent; border-radius: 999px;
  padding: 12px 18px; font-size: 14px; font-weight: 500;
  transition: 0.2s ease;
}
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--cream-2); }
.btn-brass { background: var(--brass); color: var(--ink); }
.btn-brass:hover { background: #d4b686; }
.btn-wide { min-width: 180px; }

/* HERO */
.hero { padding: 48px 0 24px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero .eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: 22px; font-size: clamp(42px, 4.5vw, 64px); line-height: 1; }
.hero .proof { margin-top: 4px; }
.hero-actions { display: flex; gap: 12px; margin: 28px 0 18px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 28px; color: var(--slate); font-size: 13px;
  font-family: var(--mono); letter-spacing: 0.04em;
}
.hero-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #ece7dc;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero-photo img { width: 100%; height: auto; object-fit: contain; min-height: 0; }
.ticket {
  position: absolute; left: 18px; bottom: 18px;
  width: 220px; background: var(--paper);
  border: 1px dashed var(--line-strong);
  padding: 14px 16px;
  font-family: var(--mono); font-size: 11px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.ticket b { display: block; font-family: var(--serif); font-size: 16px; letter-spacing: 0; margin-bottom: 8px; }
.ticket .row { display: flex; justify-content: space-between; margin: 3px 0; color: var(--slate); }
.ticket .total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 8px; color: var(--ink); }

/* SECTIONS */
section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head p { margin-top: 16px; color: var(--ink-soft); }

.ink {
  background: var(--ink);
  color: var(--cream);
}
.ink .eyebrow { color: var(--brass); }
.ink p, .ink .lede { color: rgba(246,241,232,.78); }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.card h3 { margin: 10px 0 8px; }
.card p { color: var(--ink-soft); font-size: 15px; }
.card .num {
  font-family: var(--mono); font-size: 12px; color: var(--brass-deep);
}

.feature-row {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 36px; align-items: center;
  margin: 28px 0;
}
.feature-row.reverse { grid-template-columns: 0.85fr 1.15fr; }
.feature-row img {
  width: 100%; border-radius: 14px; height: auto; object-fit: contain;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: #ece7dc;
}
.shot {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.shot img { width: 100%; height: auto; }
.kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 10px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.pill {
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 6px 12px; font-size: 13px; color: var(--ink-soft);
}

/* PRICING */
.price-toggle { display: flex; gap: 8px; margin: 18px 0 28px; }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px;
  display: flex; flex-direction: column; min-height: 520px;
}
.price-card.featured {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
  transform: translateY(-8px);
}
.price-card .plan { font-family: var(--serif); font-size: 30px; }
.price-card .amt {
  display: flex; flex-wrap: wrap; align-items: baseline;
  font-family: var(--serif); font-size: 54px; font-weight: 500; line-height: 1; letter-spacing: -0.02em;
  margin: 18px 0 6px;
}
.price-card .amt [data-plan] { font: inherit; letter-spacing: inherit; }
.price-card .amt [data-cycle-label] {
  flex-basis: 100%; margin-top: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 380; line-height: 1.4; letter-spacing: -0.01em; opacity: .72;
}
.price-card ul { list-style: none; margin: 20px 0 28px; flex: 1; }
.price-card li { padding: 7px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.price-card.featured li { border-color: rgba(246,241,232,.12); }

/* BRAND SYSTEM */
.swatch-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.swatch { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); }
.swatch .chip { height: 110px; }
.swatch figcaption { padding: 12px 14px; font-size: 13px; background: var(--white); }
.swatch code { font-family: var(--mono); font-size: 12px; color: var(--slate); }

.type-sample { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.type-sample .big { font-family: var(--serif); font-size: 64px; line-height: .95; }
.logo-stage {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.logo-box {
  min-height: 220px; border-radius: 18px; display: grid; place-items: center;
  border: 1px solid var(--line);
}
.logo-box img, .logo-box svg { width: 72px; height: 72px; }
.logo-box.dark { background: var(--ink); color: var(--brass); }
.logo-box.cream { background: var(--cream-2); color: var(--ink); }
.logo-box.sage { background: var(--sage); color: var(--cream); }
.logo-box.brass { background: var(--brass); color: var(--ink); }

/* FORM */
form { display: grid; gap: 12px; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--white);
  font-family: var(--sans); font-size: 15px; color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px; }
.note { font-size: 13px; color: var(--slate); }
.field { display: grid; align-content: start; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-soft); }
.field em { font-style: normal; font-weight: 380; color: var(--slate); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--sage); outline-offset: 1px; border-color: var(--sage); }
[aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 13px; font-weight: 500; }
.form-status { font-size: 14px; min-height: 1.4em; }
.form-status:empty { display: none; }
.form-status[data-kind="busy"] { color: var(--slate); }
.form-status[data-kind="error"] { color: var(--danger); font-weight: 500; padding: 10px 14px; border: 1px solid rgba(166,90,58,.35); background: rgba(166,90,58,.07); border-radius: 12px; }
.form-done { padding: 8px 0; outline: none; }
.form-done h3 { margin: 10px 0 8px; }
.form-done p { color: var(--ink-soft); }
button[disabled] { opacity: .6; cursor: progress; }
/* trust points under the demo submit button */
.trust-points { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 2px 0 0; padding: 0; font-size: 13px; font-weight: 500; color: var(--sage-deep); }
.trust-points li { display: inline-flex; align-items: center; gap: 7px; margin: 0; padding: 0; }
.trust-points li::before { content: ""; width: 14px; height: 14px; flex: none; border-radius: 50%; background: rgba(111,143,124,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M4 7.2l2 2 4-4.4' fill='none' stroke='%234d6a5a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat; }
/* menu upload */
.field-help { font-size: 13px; font-weight: 380; line-height: 1.45; color: var(--slate); }
.file-label { cursor: pointer; }
.file-input {
  padding: 14px; border: 1.5px dashed rgba(111,143,124,.6); border-radius: 14px;
  background: rgba(111,143,124,.07); font-size: 14px; color: var(--ink-soft); cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.file-input:hover { border-color: var(--sage); background: rgba(111,143,124,.12); }
.file-input::file-selector-button {
  font: 500 14px/1 var(--sans); letter-spacing: -0.01em; padding: 11px 18px; margin-right: 14px;
  border: 1px solid var(--sage-deep); border-radius: 999px; background: var(--sage-deep); color: var(--cream); cursor: pointer;
}
.file-input:hover::file-selector-button { background: #435d4f; }
.file-input[aria-invalid="true"] { border-color: var(--danger); border-style: solid; background: rgba(166,90,58,.05); }
.file-types { font-size: 12.5px; }
.file-list { list-style: none; display: grid; gap: 6px; margin-top: 2px; }
.file-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream);
  font-size: 13.5px; font-weight: 380; color: var(--ink-soft);
}
.file-list .file-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-list .file-size { flex: none; font-family: var(--mono); font-size: 12px; color: var(--slate); }
.file-list .file-clear { justify-content: flex-end; padding: 0; border: 0; background: none; }
.file-clear button {
  font: 500 13px var(--sans); color: var(--sage-deep); background: none; border: 0; padding: 2px 0; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
}
/* honeypot: off-screen for people, still in the DOM for bots */
.hp { position: absolute !important; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* CONTENT COMPONENTS */
.proof { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; color: var(--ink-soft); }
.proof li { display: flex; align-items: center; gap: 8px; }
.proof li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); flex: none; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.check-list { list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid rgba(246,241,232,.16); border-radius: 14px; }

.card .num { display: block; }
.facts .card h3 { font-size: 24px; }
.body-copy { margin-top: 14px; color: var(--ink-soft); }
.story-img { border-radius: 14px; width: 100%; height: auto; box-shadow: var(--shadow); border: 1px solid var(--line); }
.price-notes { display: grid; gap: 10px; margin-top: 24px; max-width: 900px; }
.price-notes strong { color: var(--ink); font-weight: 600; }
.saving { font-size: 14px; font-weight: 500; color: var(--sage-deep); margin-bottom: 4px; }
.price-card.featured .saving { color: var(--brass); }
.feature-row h2 + p { margin-top: 14px; }
.form-card .note a { text-decoration: underline; text-underline-offset: 2px; }
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(44px, 6vw, 72px); margin: 12px 0 18px; }
.prose h2 { font-size: 28px; line-height: 1.2; margin: 40px 0 12px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p, .prose ul + p { margin-top: 12px; }
.prose ul { margin: 12px 0 0 22px; display: grid; gap: 8px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
#pricing-faq .card p a { text-decoration: underline; text-underline-offset: 3px; }
.prose .note { margin-top: 12px; }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  color: var(--slate); font-size: 14px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 28px; }
footer a { display: block; padding: 4px 0; }
.legal { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; font-size: 12px; }

.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; color: var(--slate); font-family: var(--mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}
.marquee-track { display: flex; gap: 48px; width: max-content; animation: slide 32s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.quote {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); line-height: 1.2;
  max-width: 18ch;
}

@media (max-width: 900px) {
  .hero-grid, .feature-row, .feature-row.reverse, .grid-3, .grid-2, .grid-4, .swatch-row, .logo-stage, .foot-grid, .field-row {
    grid-template-columns: 1fr;
  }
  .nav { padding: 12px 20px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(20,24,22,.12); padding: 8px 20px 20px;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav.is-open .nav-menu { display: block; }
  .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; font-size: 18px; }
  .nav-links a { padding: 13px 2px; border-bottom: 1px solid var(--line); }
  .nav-cta { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  html:not(.js) .nav { flex-wrap: wrap; }
  html:not(.js) .nav-toggle { display: none; }
  html:not(.js) .nav-menu { display: block; position: static; width: 100%; box-shadow: none; border: 0; padding: 8px 0 0; }
  .split { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card .amt { font-size: 42px; margin-top: 14px; }
  h1 { font-size: 48px; }
  section { padding: 64px 0; }
}

/* Home v2: offer strip, tick lists, plan notes */
.offer {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 40px;
}
.offer li {
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; row-gap: 2px; align-items: center; padding: 18px 20px; border-radius: 14px;
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--brass);
}
.offer strong { font-family: var(--serif, inherit); font-size: 19px; font-weight: 500; color: var(--ink); }
.offer span { font-size: 14px; color: var(--ink-soft); }
.ticks { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.ticks li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-soft); font-size: 15.5px; }
.plan-note { margin-top: 16px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--sage-deep); }
.h2-sm { font-size: clamp(26px, 3vw, 36px); line-height: 1.08; margin-bottom: 12px; }
.feature-row p + .ticks { margin-top: 16px; }
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; margin-top: 28px; }
}

/* Icons: Lucide (ISC/MIT), inlined as an SVG sprite in each page */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex: none; display: block; }
.ico-tile {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: rgba(111,143,124,.14); color: var(--sage-deep);
}
.card .ico-tile { margin-bottom: 14px; }
.card .ico-tile + .num { display: block; }
.ico-tile-sm { width: 30px; height: 30px; border-radius: 9px; }
.ico-tile-sm .i { width: 17px; height: 17px; }
.has-ico { display: flex; align-items: center; gap: 10px; }
h2.has-ico { gap: 14px; }
.kicker.has-ico { margin-bottom: 12px; }
.ico-li { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 8px; flex: none; background: rgba(111,143,124,.14); color: var(--sage-deep); margin-top: -3px; }
.ico-li .i { width: 16px; height: 16px; }
.ink .ico-li, .ink .ico-tile { background: rgba(196,165,116,.16); color: var(--brass); }
.check-list .ico-li { margin-top: 0; }
.offer .ico-tile { grid-row: span 2; width: 42px; height: 42px; }
.offer .ico-tile .i { width: 21px; height: 21px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; }
.ico-check { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; flex: none; margin-top: 1px; background: rgba(111,143,124,.16); color: var(--sage-deep); }
.ico-check .i { width: 12px; height: 12px; stroke-width: 2.4; }
.price-card.featured .ico-check { background: rgba(196,165,116,.2); color: var(--brass); }
.prose h2.has-ico .ico-tile { width: 36px; height: 36px; border-radius: 10px; }
.prose h2.has-ico .ico-tile .i { width: 18px; height: 18px; }
@media (max-width: 900px) {
  .ico-tile { width: 40px; height: 40px; }
  .i { width: 20px; height: 20px; }
}

/* Home overview and Features reference */
.points .card { display: flex; flex-direction: column; }
.points .card p { flex: 1; }
.card-link { display: inline-block; margin-top: 14px; font-weight: 500; color: var(--sage-deep); }
.cta-band { padding-top: 24px; }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 40px 44px; }
.cta-card h2 { margin-bottom: 8px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
.feat-intro { padding-bottom: 28px; }
.feat-intro .section-head { margin-bottom: 0; }
.jump {
  position: sticky; top: 80px; z-index: 30;
  background: rgba(246, 241, 232, 0.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.jump-inner {
  width: min(1180px, calc(100% - 48px)); margin: 0 auto;
  display: flex; gap: 8px; overflow-x: auto; padding: 10px 0;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.jump-inner::-webkit-scrollbar { display: none; }
.jump a {
  flex: 0 0 auto; white-space: nowrap; font-size: 14px;
  padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--white);
}
.jump a:hover, .jump a:focus-visible { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.feat { padding: 72px 0; scroll-margin-top: 140px; border-bottom: 1px solid var(--line); }
.feat.ink { border-bottom: 0; }
.feat-head { max-width: 760px; margin-bottom: 32px; }
.feat-head h2 { margin-bottom: 10px; }
.feat .feature-row { margin-bottom: 0; }
.feat .feature-row + .grid-3, .feat .feature-row + .grid-2 { margin-top: 32px; }
.spec { list-style: none; display: grid; gap: 12px; }
.spec li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; }
.sub-h { margin: 36px 0 16px; font-size: 20px; }
.export-list { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 18px; }
.export-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; padding: 10px 12px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.alerts-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; }
.feat-note { margin-top: 20px; font-size: 15px; color: var(--slate); }
@media (max-width: 1100px) { .export-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) {
  .jump { top: 68px; }
  .modules .card { scroll-margin-top: 136px; }
  .jump-inner { width: 100%; padding: 10px 20px; }
  .feat { padding: 56px 0; scroll-margin-top: 124px; }
  .export-list { grid-template-columns: repeat(2, 1fr); }
  .alerts-list { grid-template-columns: 1fr; }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 30px 24px; }
}
@media (max-width: 520px) { .export-list { gap: 8px; } .export-list li { font-size: 13.5px; padding: 8px 10px; gap: 8px; } .export-list .ico-li { width: 24px; height: 24px; } }

/* Icon tiles matched to the product's back office: sage line icon in a soft white rounded tile */
.ico-tile {
  background: var(--white); color: #719680; border-radius: 10px;
  border: 1px solid rgba(20,24,22,.08); box-shadow: 0 1px 2px rgba(20,24,22,.06);
}
.card .ico-tile { box-shadow: 0 2px 6px rgba(20,24,22,.08); }
.ink .ico-tile, .ink .card .ico-tile { background: var(--white); color: #719680; border-color: transparent; }
.ico-tile-sm { border-radius: 8px; }
.ico-li { background: var(--white); color: #719680; border: 1px solid rgba(20,24,22,.08); }
.ink .ico-li { background: var(--white); color: #719680; border-color: transparent; }
.modules .card h3 { font-size: 19px; margin-bottom: 6px; }
.modules .card p { font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.ink .modules .card p { color: var(--ink-soft); }
.modules .card { scroll-margin-top: 156px; }
.feat:not(.ink) .check-list li { border-color: var(--line); background: var(--white); }
.ink .card { color: var(--ink); }
@media (max-width: 900px) {
  .modules { gap: 10px; }
  .modules .card { display: grid; grid-template-columns: 40px 1fr; column-gap: 14px; align-items: start; padding: 16px 18px; border-radius: 14px; }
  .modules .card .ico-tile { grid-row: span 2; margin: 0; width: 40px; height: 40px; }
  .modules .card h3 { font-size: 18px; margin: 8px 0 4px; }
  .modules .card p { grid-column: 2; font-size: 14.5px; }
}

/* Product name: "Live" is always italic (keeps the surrounding weight and colour) */
em.brand-live, .field em.brand-live { font-style: italic; font-weight: inherit; color: inherit; letter-spacing: inherit; padding-right: .06em; }

/* Stacked image/text rows: section-sized breathing room between consecutive rows */
.feature-row + .feature-row { margin-top: 112px; }
.feat .feature-row + .sub-h { margin-top: 64px; }
@media (max-width: 900px) {
  .feature-row + .feature-row { margin-top: 64px; }
  .feat .feature-row + .sub-h { margin-top: 48px; }
}

/* ===== v3: dropdown nav, breadcrumbs, page heroes, answers, shift timelines, steps, comparisons, guide ===== */
.nav-links .nav-drop { position: relative; }
.nav-drop summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.nav-drop summary::-webkit-details-marker { display: none; }
.nav-drop summary::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .15s ease; }
.nav-drop[open] summary::after { transform: translateY(1px) rotate(-135deg); }
.nav-drop summary:hover, .nav-drop.is-current summary, .nav-links a.is-current { color: var(--ink); }
.nav-drop.is-current summary { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }
.nav-drop-menu { position: absolute; top: calc(100% + 14px); left: -16px; min-width: 240px; display: grid; padding: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 40px rgba(20,24,22,.14); z-index: 50; }
.nav-drop-menu a { padding: 9px 12px; border-radius: 9px; white-space: nowrap; color: var(--ink-soft); }
.nav-drop-menu a:hover, .nav-drop-menu a:focus-visible { background: var(--cream); color: var(--ink); }
.nav-drop-menu a[aria-current="page"] { color: var(--ink); background: var(--cream); text-decoration: none; }

.crumbs { margin-bottom: 22px; font-size: 13px; color: var(--slate); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px 0; }
.crumbs li { display: inline; }
.crumbs li + li::before { content: "/"; margin: 0 10px; color: var(--line-strong); }
.crumbs a { text-decoration: underline; text-decoration-color: var(--line-strong); text-underline-offset: 3px; }
.crumbs a:hover { color: var(--ink); }
.crumbs [aria-current] { color: var(--ink-soft); }
#plans > .crumbs { margin-bottom: 18px; }

.page-hero { padding-top: 32px; }
.page-hero h1 { font-size: clamp(40px, 4.6vw, 62px); line-height: 1.02; }
.hero-solo { max-width: 820px; }
.hero-solo .lede { max-width: 46rem; }
.page-meta { margin-top: 14px; font-family: var(--mono); font-size: 12px; letter-spacing: .03em; color: var(--sage-deep); }
.page-meta a { color: inherit; }
.page-hero .trust-points { margin-top: 4px; }

.answer-sec { padding: 56px 0; }
.answer-sec:not(.ink) { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.answer { max-width: 820px; }
.answer .eyebrow { margin-bottom: 12px; }
.answer h2 { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 18px; }
.answer p { font-size: 17px; color: var(--ink-soft); max-width: 44rem; }
.answer p + p { margin-top: 12px; }
.answer-first { font-weight: 500; color: var(--ink) !important; }
.answer .answer-first { font-size: clamp(19px, 2vw, 22px); line-height: 1.45; }
.ink .answer p { color: rgba(246,241,232,.78); }
.ink .answer-first { color: var(--cream) !important; }
.section-head .answer-first { font-size: 18px; }

.shift { list-style: none; display: grid; gap: 0; max-width: 900px; border-left: 2px solid var(--line-strong); margin-left: 6px; }
.shift li { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 0 0 30px 28px; position: relative; }
.shift li::before { content: ""; position: absolute; left: -8px; top: 6px; width: 14px; height: 14px; border-radius: 50%; background: var(--brass); border: 3px solid var(--cream); box-sizing: content-box; transform: translateX(-3px); }
.shift li:last-child { padding-bottom: 0; }
.shift-time { font-family: var(--mono); font-size: 13px; letter-spacing: .04em; color: var(--sage-deep); padding-top: 3px; }
.shift h3 { font-size: 22px; margin-bottom: 6px; }
.shift p { color: var(--ink-soft); font-size: 16px; }

.steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.steps li { counter-increment: step; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; color: var(--ink); }
.steps li::before { content: counter(step); display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--ink); color: var(--cream); font-family: var(--mono); font-size: 14px; margin-bottom: 14px; }
.ink .steps li::before { background: var(--brass); color: var(--ink); }
.steps h3 { font-size: 21px; margin-bottom: 6px; }
.steps p { font-size: 15px; color: var(--ink-soft) !important; }
.ink .steps li { border-color: transparent; }

.plan-fit h3 { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 4px 12px; font-size: 24px; }
.plan-fit-price { font-family: var(--mono); font-size: 13px; letter-spacing: .02em; color: var(--sage-deep); }
.featured-fit { border-color: var(--brass); box-shadow: 0 0 0 1px var(--brass) inset; }
.grid-1 { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 560px; }

.related-sec { padding-top: 56px; padding-bottom: 32px; }
.related-sec .section-head { margin-bottom: 24px; }
.related-sec h2 { font-size: clamp(28px, 3vw, 38px); }
.related-card { display: flex; flex-direction: column; gap: 6px; transition: border-color .15s ease, transform .15s ease; }
.related-card strong { font-family: var(--serif); font-weight: 500; font-size: 21px; letter-spacing: -.02em; }
.related-card strong::after { content: " →"; color: var(--sage-deep); }
.related-card span { font-size: 15px; color: var(--ink-soft); }
.related-card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.cta-card .trust-points { margin-top: 14px; }

/* comparison tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.table-wrap:focus-visible { outline: 2px solid var(--sage-deep); outline-offset: 2px; }
.cmp { width: 100%; border-collapse: collapse; font-size: 15px; line-height: 1.5; color: var(--ink); }
.cmp caption { text-align: left; padding: 14px 20px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--slate); border-bottom: 1px solid var(--line); }
.cmp th, .cmp td { text-align: left; vertical-align: top; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.cmp tbody tr:last-child th, .cmp tbody tr:last-child td { border-bottom: 0; }
.cmp thead th { font-family: var(--serif); font-weight: 500; font-size: 19px; background: var(--paper); }
.cmp thead th:nth-child(2) { background: rgba(111,143,124,.12); }
.cmp tbody th { width: 20%; font-weight: 600; font-size: 14px; color: var(--ink-soft); }
.cmp td { width: 40%; }
.cmp td:nth-of-type(1) { background: rgba(111,143,124,.06); }
.ns { font-style: normal; color: var(--slate); font-size: 14px; }
.ink .table-wrap { border-color: transparent; }
.suits .card h3 { font-size: 24px; margin-bottom: 16px; }
.suits-live { border-color: var(--sage); }
.source-note { padding-top: 56px; padding-bottom: 40px; }
.source-note h2 { font-size: clamp(26px, 2.8vw, 34px); margin-bottom: 12px; }
.source-note p, .source-list { max-width: 820px; font-size: 15px; color: var(--ink-soft); }
.source-list { margin: 14px 0 0 18px; display: grid; gap: 8px; }
.tm-note { margin-top: 18px; font-size: 13px !important; color: var(--slate) !important; }
.text-link { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* buyer's guide */
.guide-sec { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; padding-top: 48px; }
.guide-toc { position: sticky; top: 96px; padding: 20px 22px; }
.guide-toc .eyebrow { margin-bottom: 10px; }
.guide-toc ol { margin-left: 18px; display: grid; gap: 6px; font-size: 14px; color: var(--ink-soft); }
.guide-toc a:hover { color: var(--ink); text-decoration: underline; }
.guide { list-style: none; counter-reset: gq; display: grid; gap: 22px; }
.guide-q { counter-increment: gq; padding: 28px 30px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; scroll-margin-top: 96px; }
.guide-q h2 { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 14px; }
.guide-q h2::before { content: counter(gq, decimal-leading-zero); display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--sage-deep); margin-bottom: 8px; }
.guide-q p { font-size: 16px; color: var(--ink-soft); }
.guide-q p + p { margin-top: 10px; }
.guide-live { padding: 12px 14px; border-left: 3px solid var(--sage); background: rgba(111,143,124,.08); border-radius: 0 10px 10px 0; }

/* footer: brand + 5 link columns */
.foot-grid { grid-template-columns: 1.5fr repeat(5, 1fr); }
footer strong { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 600; font-size: 13px; }

@media (max-width: 1100px) {
  .nav-links { gap: 18px; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .nav-links .nav-drop { border-bottom: 1px solid var(--line); }
  .nav-drop summary { width: 100%; justify-content: space-between; padding: 13px 2px; }
  .nav-drop-menu { position: static; min-width: 0; padding: 0 0 10px 12px; background: transparent; border: 0; box-shadow: none; }
  .nav-drop-menu a { padding: 10px 2px; border-bottom: 0 !important; font-size: 16px; white-space: normal; }
  .nav-cta { grid-template-columns: 1fr; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .page-hero { padding-top: 20px; }
  .answer-sec { padding: 44px 0; }
  .shift li { grid-template-columns: 1fr; gap: 4px; padding-left: 22px; }
  .steps { grid-template-columns: 1fr; }
  .guide-sec { grid-template-columns: 1fr; gap: 24px; }
  .guide-toc { position: static; }
  .guide-q { padding: 22px 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  /* comparison tables stack into cards on small screens, so the page never scrolls sideways */
  .table-wrap { overflow: visible; border: 0; background: transparent; }
  .cmp, .cmp tbody, .cmp tr, .cmp th, .cmp td { display: block; width: 100%; }
  .cmp thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cmp caption { display: block; padding: 0 0 12px; border: 0; }
  .cmp tr { background: var(--white); border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
  .cmp tbody th { width: 100%; padding: 12px 16px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .cmp td { padding: 12px 16px; }
  .cmp td::before { content: attr(data-label); display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 4px; }
  .cmp tbody tr:last-child td { border-bottom: 1px solid var(--line); }
  .cmp tbody tr td:last-child { border-bottom: 0 !important; }
  .ink .cmp caption { color: rgba(246,241,232,.7); }
}

/* 404 */
.nf-hero { padding-bottom: 8px; }
.nf-links { padding-top: 32px; }
.nf-venues { margin-top: 36px; }
.nf-venues .eyebrow { margin-bottom: 12px; }
.nf-venues ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; font-size: 16px; }

/* Testimonial (plain quote; no ratings or review markup) */
.testimonial-sec { padding-top: 24px; padding-bottom: 72px; }
.testimonial { max-width: 860px; margin: 0 auto; padding: 44px 48px; background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--brass); border-radius: 18px; }
.testimonial blockquote p { font-family: var(--serif); font-size: clamp(24px, 2.6vw, 34px); line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); }
.testimonial figcaption { margin-top: 18px; font-size: 15px; color: var(--slate); }
.testimonial figcaption strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) {
  .testimonial-sec { padding-bottom: 48px; }
  .testimonial { padding: 28px 24px; }
}

/* Currency label on plan price figures: small "AU" set to the top of the figure, before the $ */
.price-card .amt { flex-wrap: wrap; }
.price-card .amt .cur {
  align-self: flex-start; margin: .08em .08em 0 0;
  font-family: var(--sans); font-size: .42em; font-weight: 500; line-height: 1; letter-spacing: .02em;
  white-space: nowrap; opacity: .62;
}

/* Light cards inside dark (.ink) sections take dark ink text, not the section's cream */
.ink .export-list li { color: var(--ink); }
