/* ==========================================================================
   Hoko — AI Shopping Visibility · Design system (revamp)
   Palette: Palladian #EEE9DF · Oatmeal #C9C1B1 · Blue Fantastic #2C3B4D
            Burning Flame #FFB162 · Truffle Trouble #A35139 · Abyssal #1B2632
   ========================================================================== */

:root {
  --paper: #f7f4ec;
  --palladian: #eee9df;
  --oatmeal: #c9c1b1;
  --blue: #2c3b4d;
  --flame: #ffb162;
  --truffle: #a35139;
  --truffle-deep: #8c422c;
  --ink: #1b2632;
  --ink-soft: #46525f;
  --line: rgba(27, 38, 50, 0.12);

  --font-serif: "Kameron", Georgia, "Times New Roman", serif;
  --font-sans: "Arimo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-card: 0 1px 2px rgba(27, 38, 50, 0.05), 0 12px 32px -12px rgba(27, 38, 50, 0.14);
  --shadow-float: 0 2px 4px rgba(27, 38, 50, 0.08), 0 32px 64px -24px rgba(27, 38, 50, 0.35);

  --container: 1160px;
  --section-pad: clamp(2.5rem, 6vw, 4rem);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 0.3em;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.8rem, 6vw, 4rem); letter-spacing: -0.015em; line-height: 0.95; }
h2 { font-size: clamp(2.3rem, 4vw, 3rem); letter-spacing: -0.005em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }

p { margin: 0 0 1em; }

a {
  color: var(--truffle-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--truffle); }

:focus-visible {
  outline: 3px solid var(--truffle);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus { top: 1rem; }

.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 24px -10px rgba(27, 38, 50, 0.5);
}

.btn-primary:hover {
  background: var(--blue);
  color: var(--paper);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(27, 38, 50, 0.35);
}

.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-large { padding: 1.15rem 2.1rem; font-size: 1.06rem; }

.shopify-logo {
  width: 1.1em;
  height: 1.1em;
  flex: none;
  margin-left: 0.1em;
}

.shopify-word { letter-spacing: 0.01em; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 20%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27, 38, 50, 0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: auto;
  height: 1.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav .btn { padding: 0.7rem 1.3rem; font-size: 0.92rem; }

.nav-toggle { display: none; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: min(100vh, 60rem);
  padding-top: 70px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(to bottom, rgba(247, 244, 236, 0) 62%, var(--paper) 96%),
    url("../assets/hero-mountain.jpg");
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
}

.hero-inner {
  padding: clamp(4rem, 10vw, 5rem) 0 clamp(4rem, 12vw, 5rem);
  position: relative;
}

.hero-copy { max-width: 40rem; }

.hero-chat {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  top: 30%;
  transform: translateY(-50%);
  width: clamp(260px, 25vw, 340px);
  filter: drop-shadow(0 24px 48px rgba(27, 38, 50, 0.28));
  background: color-mix(in srgb, var(--paper) 20%, transparent);
  border-radius: 24px;
  backdrop-filter: blur(14px);
}

.hero-chat img { width: 100%; height: auto; display: block; }

@media (max-width: 1080px) {
  .hero-chat { display: none; }
}

.hero h1 { margin-bottom: 0.5em; }

.hero-line { display: block; }

.hero-line-2 { padding-left: clamp(1rem, 4vw, 3.5rem); }

.hero-line-3 { /*padding-left: clamp(2rem, 8vw, 7rem);*/ color: var(--truffle-deep); }

.hero-lede {
  font-size: clamp(1.08rem, 1.6vw, 1rem);
  color: var(--ink-soft);
  max-width: 33rem;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.hero-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.scroll-hint {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: 5rem;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: 1px 3px 5px #ffffff;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 3.2rem;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scroll-drift 2.6s ease-in-out infinite;
}

/* ---- AI prompts (below hero) ---- */
.prompts { padding-top: 0; }

.prompts-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.prompts-copy h2 { margin-bottom: 0.6em; }

.prompts-copy .section-lede { margin-bottom: 0; }

.prompts-examples {
  padding-top: 0.15rem;
}

.prompts-label {
  font-weight: 600;
  margin: 0 0 0.8rem;
  color: var(--ink);
}

.prompts-questions {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.prompts-questions li {
  padding: 0.9rem 1.2rem;
  background: var(--palladian);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.prompts-questions li::before {
  content: "\201C";
  margin-right: 0.15em;
  color: var(--truffle);
  font-family: var(--font-serif);
}

.prompts-closer {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
}

/* ---- Shopping shift (before/now) ---- */
.shopping-shift {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: clamp(1.5rem, 2.5vw, 2rem) 0;
  max-width: 36rem;
}

.shift-col {
  padding: 1.4rem 1.5rem;
  background: color-mix(in srgb, var(--palladian) 50%, var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.shift-col-now {
  background: color-mix(in srgb, var(--flame) 18%, var(--paper));
  border-color: color-mix(in srgb, var(--flame) 35%, var(--line));
}

.shift-col h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.8rem;
}

.shift-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.shift-col li {
  font-size: 0.95rem;
  color: var(--ink);
}

.shift-col li::before {
  content: "→ ";
  color: var(--truffle-deep);
}

/* ---- Competitor intelligence intro ---- */
.competitors-intro {
  padding-top: 0;
  padding-bottom: 0;
}

.competitors-intro .section-head { margin-bottom: 0; }

@keyframes scroll-drift {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(0.5rem); opacity: 0.4; }
}

/* ---- Sections (seamless) ---- */
.section { padding: var(--section-pad) 0; }

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0;
}

/* ---- Transformation (sticky header choreography) ---- */
.transform { padding: clamp(3rem, 6vw, 5rem) 0 var(--section-pad); }


.transform-track {
  position: relative;
}

.transform-title {
  position: sticky;
  top: 40vh;
  z-index: 0;
  text-align: center;
  margin: 0 auto;
  max-width: 24ch;
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  letter-spacing: -0.015em;
}

.steps {
  margin: 0;
  padding: 6vh 10vw 0vh;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 6vh;
  justify-items: center;
  flex-direction: column;
  margin-bottom: 6vh;
}

.step {
  position: relative;
  width: min(34rem, 100%);
  background: var(--palladian);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem 2.2rem;
  box-shadow: var(--shadow-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--paper);
  background: var(--truffle);
  margin-bottom: 1.3rem;
}

.step h3 { margin-bottom: 0.5rem; }

.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

.step-time {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--truffle-deep);
}

/* ---- Benefits carousel ---- */
.benefits-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.benefits-head h2 { max-width: 28ch; }

.carousel-nav {
  display: flex;
  gap: 0.6rem;
  flex: none;
  padding-bottom: 0.4rem;
}

.carousel-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid rgba(27, 38, 50, 0.3);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.carousel-btn svg { width: 1.2rem; height: 1.2rem; }

.carousel-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.carousel-btn:disabled { opacity: 0.3; cursor: default; }

.carousel-btn:disabled:hover { background: transparent; color: var(--ink); border-color: rgba(27, 38, 50, 0.3); }

.carousel {
  --carousel-inset: max(calc((100vw - var(--container)) / 2), 1.5rem);
  --carousel-gap: clamp(1.2rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--carousel-inset);
  scrollbar-width: none;
  padding: 0 0 2rem;
}

.carousel::-webkit-scrollbar { display: none; }

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  list-style: none;
  margin: 0;
  padding: 0 var(--carousel-inset);
}

.benefit-card {
  scroll-snap-align: start;
  width: clamp(250px, calc((min(var(--container), 100vw - 3rem) - 2 * var(--carousel-gap)) / 2.5), 460px);
  flex: none;
  position: relative;
  width: min(34rem, 100%);
  background: var(--palladian);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.4rem 2.2rem;
  box-shadow: var(--shadow-card);
  height: 380px;
}

.benefit-card img {
  /*width: 250px;
  height: 250px;
  max-width: 100%;*/
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.4rem;
  transition: transform 0.45s var(--ease-out);
}

.benefit-card h3 { font-size: 1.22rem; margin-bottom: 0.45rem; }

.benefit-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* ---- Product tour ---- */
.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}

.tour-tab {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tour-tab:hover { border-color: var(--ink-soft); color: var(--ink); }

.tour-tab[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.tour-stage {
  position: relative;
  border-radius: calc(var(--radius-lg) + 8px);
  padding: clamp(1.5rem, 4vw, 4rem);
  background-image: url("../assets/product-scenery.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.tour-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 244, 236, 0.12);
  pointer-events: none;
}

.tour-panel { position: relative; }

.tour-panel[hidden] { display: none; }

.tour-caption {
  text-align: center;
  color: var(--ink);
  font-size: 0.95rem;
  max-width: 42rem;
  margin: 1.5rem auto 0;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  width: fit-content;
}

/* ---- Dashboard mockups (on-brand skin) ---- */
.admin-frame {
  background: color-mix(in srgb, var(--palladian) 92%, transparent);
  border: 1px solid rgba(27, 38, 50, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--ink);
  backdrop-filter: blur(4px);
}

.admin-topbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--palladian);
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
}

.admin-topbar .admin-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--flame);
}

.admin-topbar .admin-shop { margin-left: auto; color: var(--oatmeal); }

.admin-body {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  overflow: auto;
}

.admin-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
}

.admin-stack { display: grid; gap: 0.8rem; }

.admin-card {
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(27, 38, 50, 0.06), 0 0 0 1px rgba(27, 38, 50, 0.06);
  padding: 0.9rem 1rem;
}

.admin-card h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.admin-card p { margin: 0 0 0.4rem; color: var(--ink-soft); }
.admin-card p:last-child { margin-bottom: 0; }

.admin-score {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

/* badges */
.badge {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--palladian);
  color: var(--ink);
  white-space: nowrap;
}

.badge-success { background: color-mix(in srgb, var(--blue) 14%, var(--paper)); color: var(--blue); }
.badge-info { background: color-mix(in srgb, var(--blue) 10%, var(--paper)); color: var(--blue); font-family: var(--font-sans); }
.badge-warn { background: color-mix(in srgb, var(--flame) 40%, var(--paper)); color: #6b4a1d; }
.badge-critical { background: color-mix(in srgb, var(--truffle) 18%, var(--paper)); color: var(--truffle-deep); }
.badge-neutral { background: var(--palladian); color: var(--ink-soft); }

/* tables */
.admin-table-wrap { overflow-x: auto; border-radius: 8px; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.76rem;
  min-width: 540px;
}

.admin-table th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--palladian) 55%, var(--paper));
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.admin-table td {
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(27, 38, 50, 0.07);
  color: var(--ink);
  vertical-align: top;
}

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

.admin-table .num { text-align: left; font-variant-numeric: tabular-nums; }

/* toggle */
.toggle {
  display: inline-block;
  width: 2rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--blue);
  position: relative;
  flex: none;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--paper);
}

.toggle.off { background: var(--oatmeal); }
.toggle.off::after { right: auto; left: 2px; }

/* progress */
.progress {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--palladian);
  overflow: hidden;
  margin: 0.3rem 0 0.6rem;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--blue);
}

/* chart */
.admin-chart {
  width: 100%;
  height: auto;
  margin: 0.2rem 0 0.6rem;
}

.chart-grid { stroke: rgba(27, 38, 50, 0.08); }
.chart-label { fill: var(--ink-soft); }
.chart-line { stroke: var(--truffle); }
.chart-dot { fill: var(--truffle); }

.admin-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

.admin-btn {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
}

.admin-btn-plain {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--oatmeal);
}

.admin-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.prompt-item { border-bottom: 1px solid rgba(27, 38, 50, 0.07); padding: 0.5rem 0; }
.prompt-item:last-child { border-bottom: 0; padding-bottom: 0; }
.prompt-item .badge { margin-bottom: 0.25rem; }
.prompt-item p { color: var(--ink); }

/* issue detail */
.issue-detail {
  background: color-mix(in srgb, var(--palladian) 55%, var(--paper));
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  margin-top: 0.6rem;
}

.issue-detail h5 {
  margin: 0 0 0.3rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
}

.issue-detail p { color: var(--ink-soft); margin: 0 0 0.7rem; }

.app-card {
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(27, 38, 50, 0.1);
  padding: 0.7rem 0.8rem;
  max-width: 50%;
}

.app-card strong { display: block; margin-bottom: 0.25rem; font-weight: 600; }

.app-card a { font-size: 0.74rem; }

/* ---- Features (expanding hover grid) ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.feature {
  position: relative;
  background: var(--palladian);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem 1.8rem;
  cursor: default;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature h3 {
  font-size: 1.28rem;
  margin: 0;
  padding-right: 2rem;
  transition: color 0.3s ease;
}

.feature-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}

.feature-body > div { overflow: hidden; }

.feature-body p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0;
  padding-top: 0.9rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.08s, transform 0.4s var(--ease-out) 0.08s;
}

.feature-cue {
  position: absolute;
  top: 1.9rem;
  right: 1.7rem;
  width: 1.1rem;
  height: 1.1rem;
  pointer-events: none;
}

.feature-cue::before,
.feature-cue::after {
  content: "";
  position: absolute;
  background: var(--truffle);
  transition: transform 0.35s var(--ease-out), opacity 0.3s ease;
}

.feature-cue::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  margin-top: -0.75px;
}

.feature-cue::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  margin-left: -0.75px;
}

.feature:hover,
.feature:focus-visible,
.feature:focus-within {
  background: var(--paper);
  border-color: rgba(27, 38, 50, 0.25);
  box-shadow: var(--shadow-card);
}

.feature:hover .feature-body,
.feature:focus-visible .feature-body,
.feature:focus-within .feature-body {
  grid-template-rows: 1fr;
}

.feature:hover .feature-body p,
.feature:focus-visible .feature-body p,
.feature:focus-within .feature-body p {
  opacity: 1;
  transform: none;
}

.feature:hover .feature-cue::after,
.feature:focus-visible .feature-cue::after,
.feature:focus-within .feature-cue::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ---- Desire (full-bleed, mirrored hero) ---- */
.desire {
  position: relative;
  min-height: min(88vh, 56rem);
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
  background-image:
    linear-gradient(to bottom, var(--paper) 0%, rgba(247, 244, 236, 0) 18%, rgba(247, 244, 236, 0) 78%, var(--paper) 100%),
    url("../assets/desire-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.desire-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  width: 100%;
}

.desire-copy { max-width: 36rem; }

.desire-points {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.4rem;
}

.desire-points li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.desire-points .point-marker {
  flex: none;
  margin-top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--truffle);
}

.desire-points strong { display: block; font-weight: 600; }

.desire-points span { color: var(--ink-soft); font-size: 0.97rem; }

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-art img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}


.about-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.2em;
}

.about-copy p:last-child { margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: grid;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0.4rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--truffle-deep);
  transition: transform 0.3s var(--ease-out);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--truffle-deep); }

.faq-body {
  padding: 0 0.4rem 1.4rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.faq-body p:last-child { margin-bottom: 0; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 24rem));
  gap: 1.5rem;
  justify-content: center;
}

.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.1rem;
  display: flex;
  flex-direction: column;
}

.plan-featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-card);
  background: var(--palladian);
}

.plan-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }

.plan-tagline { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 1.4rem; }

.plan-price {
  font-family: var(--font-serif);
  font-size: 2.7rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.plan-price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.plan-features {
  list-style: none;
  margin: 1.6rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  font-size: 0.96rem;
}

.plan-features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.plan-features svg {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  color: var(--truffle-deep);
}

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

.pricing-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: 2rem;
}

/* ---- Final CTA ---- */
.cta-banner {
  position: relative;
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 5vw, 4.5rem) clamp(1.8rem, 5vw, 4.5rem);
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 92% 60%, rgba(255, 177, 98, 0.85) 0%, rgba(163, 81, 57, 0.55) 32%, rgba(44, 59, 77, 0.2) 58%, transparent 75%),
    linear-gradient(100deg, #1b2632 0%, #24334a 48%, #4a4055 68%, #a35139 88%, #d98549 100%);
}

.cta-banner h2 {
  color: var(--paper);
  max-width: 26ch;
}

.cta-banner p {
  color: color-mix(in srgb, var(--paper) 80%, transparent);
  max-width: 36rem;
  margin: 0 0 1rem;
}

.cta-checklist {
  list-style: none;
  margin: 0 0 2.2rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  max-width: 32rem;
}

.cta-checklist li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  color: color-mix(in srgb, var(--paper) 88%, transparent);
  font-size: 0.98rem;
}

.cta-checklist li::before {
  content: "✓";
  flex: none;
  font-weight: 700;
  color: var(--flame);
}

.btn-cta {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.45);
}

.btn-cta:hover {
  background: #fffdf8;
  color: var(--ink);
  transform: translateY(-2px);
}

.cta-trial { font-weight: 500; color: var(--ink-soft); }

/* ---- Footer ---- */
.site-footer {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 2rem;
  background-image: linear-gradient(to bottom, var(--paper) 0%, rgb(247 244 236 / 0%) 45%, rgb(247 244 236) 100%), url(../assets/lighthouse.jpg);
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.footer-brand p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 22rem;
  margin-top: 0.8rem;
  padding-right: 4vw;
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.96rem;
}

.footer-col a:hover { color: var(--truffle-deep); text-decoration: underline; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(27, 38, 50, 0.18);
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---- Privacy page ---- */
.legal {
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.legal h1 { font-size: clamp(2.1rem, 4.5vw, 3rem); margin-bottom: 0.4rem; }

.legal-date { color: var(--ink-soft); margin-bottom: 3rem; }

.legal h2 {
  font-size: 1.35rem;
  margin: 2.6rem 0 0.7rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.legal p, .legal ul { color: var(--ink-soft); }

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

.legal li { margin-bottom: 0.4rem; }

.legal .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--truffle-deep);
  margin-bottom: 1rem;
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

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

  .btn, .benefit-card img, .feature-body, .feature-body p { transition: none; }

  .scroll-hint::after { animation: none; }

  .transform-title { position: static; }

  .steps { padding-top: 0; gap: 2rem; }

  .transform-track { padding-bottom: 0; }

  .feature-body { grid-template-rows: 1fr; }

  .feature-body p { opacity: 1; transform: none; }
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    background: transparent;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink);
    cursor: pointer;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.5rem 1.4rem;
    box-shadow: var(--shadow-card);
  }
  
  .desire-grid { grid-template-columns: 1fr; }

  .desire-space { display: none; }

  .desire {
    background-position: 22% center;
  }

  .desire-copy {
    background: color-mix(in srgb, var(--paper) 78%, transparent);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-lg);
    padding: 2rem 1.8rem;
  }

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

  .about-art { max-width: 30rem; }

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

  .admin-cols { grid-template-columns: 1fr; }

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

  .pricing-grid { grid-template-columns: minmax(0, 26rem); }

  .benefits-head { flex-direction: column; align-items: flex-start; }

  .shopping-shift { grid-template-columns: 1fr; max-width: none; }

  .prompts-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-menu.open { display: flex; }

  .nav-menu .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-menu .nav-links a {
    display: block;
    padding: 0.9rem 0.2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-menu .btn { margin-top: 1.1rem; }

  .hero {
    background-position: 68% 25%;
    min-height: 86vh;
  }

  .hero-copy {
    background: color-mix(in srgb, var(--paper) 55%, transparent);
    backdrop-filter: blur(3px);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1rem;
    margin: 0 -1rem;
  }

  .scroll-hint { display: none; }

  .transform-title { top: 34vh; }

  .steps { padding: 6vh 0 0vh; }

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

  .feature-body { grid-template-rows: 1fr; }

  .feature-body p { opacity: 1; transform: none; }

  .feature-cue { display: none; }

  .benefit-card { height: auto; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .cta-trial { display: block; width: 100%; margin-top: 0.2rem; }

  .btn-cta { flex-wrap: wrap; }
}
