/* ============================================================
   Spade Review Co. — styles.css
   Shared stylesheet for index.html, privacy.html, terms.html,
   refunds.html.
   Palette: near-black, bone white, muted gold.
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Surfaces */
  --ink-000: #060607;
  --ink-050: #0a0a0c;
  --ink-100: #0e0e11;
  --ink-200: #141418;
  --ink-300: #1b1b21;

  /* Type */
  --bone: #f2efe9;
  --bone-dim: #b8b4ac;
  --bone-faint: #7f7c76;

  /* Gold */
  --gold: #d8b662;
  --gold-bright: #f0d391;
  --gold-deep: #9a7c31;
  --gold-wash: rgba(216, 182, 98, 0.12);

  /* Lines & shadow */
  --line: rgba(242, 239, 233, 0.09);
  --line-strong: rgba(242, 239, 233, 0.16);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 32px -12px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 20px 60px -30px rgba(216, 182, 98, 0.45);

  /* Type scale */
  --font-display: "Fraunces", "Hoefler Text", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", ui-sans-serif, "Segoe UI", Helvetica, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Menlo, monospace;

  /* Layout */
  --wrap: 1160px;
  --wrap-narrow: 760px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --nav-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.55s;
}

/* ---------- 2. Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--ink-050);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.97rem + 0.16vw, 1.075rem);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Ambient page texture: fine grain + two soft gold pools of light. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(52rem 40rem at 82% -8%, rgba(216, 182, 98, 0.13), transparent 65%),
    radial-gradient(46rem 36rem at 4% 42%, rgba(216, 182, 98, 0.06), transparent 60%);
}

body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

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

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

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

::selection {
  background: var(--gold);
  color: var(--ink-000);
}

/* ---------- 3. Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "SOFT" 0, "WONK" 0, "opsz" 40;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 1.6rem + 4.4vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem);
}

h3 {
  font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem);
  line-height: 1.25;
}

p {
  margin: 0 0 1.1em;
  text-wrap: pretty;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1.06rem, 1rem + 0.4vw, 1.28rem);
  color: var(--bone-dim);
  line-height: 1.6;
  max-width: 46ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}

.gold-text {
  color: var(--gold-bright);
}

/* Italic display accent used inside headlines. */
.wonk {
  font-style: italic;
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 40;
  color: var(--gold-bright);
}

/* ---------- 4. Layout primitives ---------- */
.wrap {
  width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto;
}

@media (min-width: 720px) {
  .wrap {
    width: min(100% - 5rem, var(--wrap));
  }
}

.section {
  padding-block: clamp(4.5rem, 3rem + 7vw, 8.5rem);
  scroll-margin-top: calc(var(--nav-h) + 12px);
  position: relative;
}

.section--tint {
  background:
    linear-gradient(180deg, transparent, rgba(242, 239, 233, 0.022) 18%, rgba(242, 239, 233, 0.022) 82%, transparent);
}

.section-head {
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}

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

.section-head--center .lead {
  margin-inline: auto;
}

.section-head--center .eyebrow::before {
  display: none;
}

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}

/* ---------- 5. Buttons ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  --btn-bd: var(--line-strong);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.85em 1.5em;
  border: 1px solid var(--btn-bd);
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease-soft),
    border-color 0.3s var(--ease-soft), box-shadow 0.35s var(--ease), color 0.3s var(--ease-soft);
}

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

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  --btn-bg: linear-gradient(160deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  --btn-fg: #14100a;
  --btn-bd: transparent;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  box-shadow: 0 26px 70px -28px rgba(216, 182, 98, 0.65);
}

.btn--ghost:hover {
  background: rgba(242, 239, 233, 0.06);
  border-color: var(--line-strong);
}

.btn--lg {
  padding: 1.02em 1.9em;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn .arrow {
  transition: transform 0.35s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- 6. Spade mark ---------- */
.spade {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bone);
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 9px;
  border: 1px solid rgba(216, 182, 98, 0.35);
  background: linear-gradient(155deg, rgba(216, 182, 98, 0.2), rgba(216, 182, 98, 0.03));
  color: var(--gold-bright);
  font-size: 1.15rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.brand:hover .brand__mark {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 8px 26px -10px rgba(216, 182, 98, 0.6);
}

.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin-top: 2px;
}

/* ---------- 7. Navigation ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.7em 1.1em;
  border-radius: 0 0 10px 10px;
  background: var(--gold);
  color: var(--ink-000);
  font-weight: 700;
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft),
    backdrop-filter 0.4s var(--ease-soft);
}

.site-header.is-stuck {
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}

/* The header deliberately runs wider than the .wrap container it shares
   markup with: logo pinned left, CTA pinned right, with a comfortable
   inset so neither ever touches the viewport edge. Overrides .wrap. */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
  padding-inline: clamp(1.25rem, 2.5vw, 3rem);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  position: relative;
  display: block;
  padding: 0.5em 0.85em;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bone-dim);
  transition: color 0.25s var(--ease-soft);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0.85em;
  right: 0.85em;
  bottom: 0.24em;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--bone);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: none;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(242, 239, 233, 0.04);
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--bone);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease-soft), width 0.4s var(--ease);
}

.nav__toggle span:nth-child(2) {
  width: 70%;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 auto;
  z-index: 55;
  padding: 1rem 1.25rem 1.75rem;
  background: rgba(8, 8, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease-soft), transform 0.42s var(--ease), visibility 0.32s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.mobile-menu li + li {
  border-top: 1px solid var(--line);
}

.mobile-menu a:not(.btn) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--bone);
}

.mobile-menu a:not(.btn) span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold-deep);
}

.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav__links,
  .nav__cta {
    display: flex;
  }

  .nav__toggle,
  .mobile-menu {
    display: none;
  }
}

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3rem, 2rem + 6vw, 6rem));
  padding-bottom: clamp(4rem, 3rem + 6vw, 7.5rem);
  overflow: hidden;
}

/* Oversized watermark spade behind the hero. */
.hero__watermark {
  position: absolute;
  top: -6%;
  right: -14%;
  width: min(70vw, 780px);
  color: rgba(216, 182, 98, 0.045);
  pointer-events: none;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-22px) rotate(-2.5deg);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(3rem, 2rem + 6vw, 4.5rem);
  align-items: center;
}

@media (min-width: 1000px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  }
}

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

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.2rem;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
  font-size: 0.87rem;
  color: var(--bone-faint);
}

.hero__notes li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__notes svg {
  width: 0.95em;
  height: 0.95em;
  color: var(--gold);
  flex: none;
}

/* ---------- 9. Product mockup (hero visual) ---------- */
.mockup {
  position: relative;
  display: grid;
  justify-items: center;
  padding-block: 1rem;
}

/* Once the dashboard card floats, reserve room beneath the phone so the
   card clears the message thread instead of covering it. */
@media (min-width: 560px) {
  .mockup {
    padding-bottom: 9rem;
  }

  .mockup .phone {
    transform: translateX(-3rem);
  }

  /* Caption tucks under the phone on the left, clear of the floating card. */
  .mockup .mockup__caption {
    justify-self: start;
    text-align: left;
    margin-top: 1.1rem;
  }
}

.mockup__caption {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-faint);
  text-align: center;
}

/* Phone */
.phone {
  position: relative;
  z-index: 2;
  width: min(300px, 78vw);
  border-radius: 40px;
  padding: 11px;
  background: linear-gradient(150deg, #2a2a30, #0d0d10 45%, #232329);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(242, 239, 233, 0.07);
}

.phone__screen {
  border-radius: 30px;
  background: linear-gradient(180deg, #101014, #0b0b0e);
  overflow: hidden;
  border: 1px solid rgba(242, 239, 233, 0.05);
}

.phone__notch {
  width: 38%;
  height: 20px;
  margin: 0 auto;
  border-radius: 0 0 14px 14px;
  background: #0d0d10;
}

.phone__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem 0.7rem;
  border-bottom: 1px solid var(--line);
}

.phone__avatar {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold-deep));
  color: #14100a;
  font-size: 0.66rem;
  font-weight: 800;
  flex: none;
}

.phone__bar b {
  font-size: 0.78rem;
  font-weight: 600;
}

.phone__bar em {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  color: var(--bone-faint);
}

.phone__thread {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 0.8rem 1.1rem;
  min-height: 250px;
  align-content: start;
}

.bubble {
  max-width: 88%;
  padding: 0.62rem 0.8rem;
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.bubble--in {
  justify-self: start;
  border-bottom-left-radius: 5px;
  background: #1d1d23;
  color: var(--bone);
}

.bubble--out {
  justify-self: end;
  border-bottom-right-radius: 5px;
  background: linear-gradient(155deg, #3a3a44, #26262e);
  color: var(--bone);
}

.bubble--link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bubble__meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--bone-faint);
}

.bubble--typing {
  display: inline-flex;
  gap: 4px;
  padding: 0.75rem 0.85rem;
}

.bubble--typing i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bone-faint);
  animation: blip 1.3s var(--ease-soft) infinite;
}

.bubble--typing i:nth-child(2) {
  animation-delay: 0.18s;
}

.bubble--typing i:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes blip {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

/* Floating dashboard card */
.dash {
  position: relative;
  z-index: 3;
  width: min(300px, 84vw);
  margin-top: -3.5rem;
  margin-left: auto;
  margin-right: -0.5rem;
  padding: 1.1rem 1.15rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(165deg, rgba(28, 28, 34, 0.96), rgba(14, 14, 18, 0.96));
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 560px) {
  .dash {
    position: absolute;
    right: max(0px, calc(50% - 330px));
    bottom: -1rem;
    width: min(285px, 74vw);
    margin: 0;
  }
}

.dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.dash__title {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.dash__dot {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  color: var(--gold);
}

.dash__dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(216, 182, 98, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(216, 182, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 182, 98, 0);
  }
}

.dash__rows {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.dash__rows li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  color: var(--bone-dim);
}

.dash__rows i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--gold-wash);
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-style: normal;
  flex: none;
}

.dash__rows b {
  margin-left: auto;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  font-size: 0.76rem;
}

/* CSS-drawn bar chart — illustrative shape only, no data claims. */
.dash__chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.dash__chart span {
  flex: 1;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--gold), rgba(216, 182, 98, 0.22));
  transform-origin: bottom;
  animation: grow 1.1s var(--ease) backwards;
}

@keyframes grow {
  from {
    transform: scaleY(0.05);
    opacity: 0;
  }
}

.dash__foot {
  margin-top: 0.7rem;
  font-size: 0.62rem;
  color: var(--bone-faint);
}

/* ---------- 10. Cards ---------- */
.grid {
  display: grid;
  gap: 1.1rem;
}

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

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

@media (min-width: 700px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  padding: 1.9rem 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(242, 239, 233, 0.045), rgba(242, 239, 233, 0.012));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease-soft), box-shadow 0.5s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(20rem 14rem at 100% 0%, rgba(216, 182, 98, 0.14), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-soft);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 182, 98, 0.28);
  box-shadow: var(--shadow-lg);
}

.card:hover::after {
  opacity: 1;
}

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

.card p {
  color: var(--bone-dim);
  font-size: 0.95rem;
  margin: 0;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(216, 182, 98, 0.28);
  background: linear-gradient(160deg, rgba(216, 182, 98, 0.18), rgba(216, 182, 98, 0.02));
  color: var(--gold-bright);
}

.card__icon svg {
  width: 21px;
  height: 21px;
}

/* Problem / benefit split */
.split {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 860px) {
  .split {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 1.4rem;
  }
}

.split__divider {
  display: none;
  place-items: center;
}

@media (min-width: 860px) {
  .split__divider {
    display: grid;
  }
}

.split__divider::before,
.split__divider::after {
  content: "";
  width: 1px;
  flex: 1;
  background: linear-gradient(var(--line), transparent);
}

.split__arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0.7rem 0;
  border-radius: 50%;
  border: 1px solid rgba(216, 182, 98, 0.35);
  color: var(--gold-bright);
  background: var(--ink-100);
}

.panel {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.panel--problem {
  background: rgba(242, 239, 233, 0.022);
}

.panel--benefit {
  border-color: rgba(216, 182, 98, 0.3);
  background: linear-gradient(170deg, rgba(216, 182, 98, 0.09), rgba(216, 182, 98, 0.015));
  box-shadow: var(--shadow-gold);
}

.panel h3 {
  font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
}

.checks {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.checks li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--bone-dim);
}

.checks svg {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.28rem;
  flex: none;
}

.checks--x svg {
  color: var(--bone-faint);
}

.checks--tick svg {
  color: var(--gold);
}

/* ---------- 11. How it works (numbered rail) ---------- */
.steps {
  position: relative;
  display: grid;
  gap: 0;
  list-style: none;
  /* Capped so rows don't stretch past the section heading on wide screens. */
  max-width: 62rem;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}

.step:last-child {
  border-bottom: 1px solid var(--line);
}

@media (min-width: 800px) {
  .step {
    grid-template-columns: 3.6rem minmax(0, 20rem) minmax(0, 1fr);
    gap: 2rem;
    align-items: baseline;
    padding: 1.9rem 0;
  }
}

.step__num {
  counter-increment: step;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  padding-top: 0.35rem;
  position: relative;
}

.step__num::before {
  content: "0" counter(step);
}

.step h3 {
  margin: 0;
}

.step p {
  color: var(--bone-dim);
  font-size: 0.95rem;
  max-width: 48ch;
  margin: 0.45rem 0 0;
}

@media (min-width: 800px) {
  .step p {
    margin-top: 0;
  }
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent 55%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}

.step:hover::after {
  transform: scaleX(1);
}

/* ---------- 12. Demo message preview ---------- */
.preview {
  display: grid;
  gap: clamp(2.5rem, 2rem + 4vw, 4rem);
  align-items: center;
}

@media (min-width: 950px) {
  .preview {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

.preview__phone {
  justify-self: center;
}

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

.timeline li {
  position: relative;
  padding-left: 2.1rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: 0.42rem;
  top: 0.55rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 182, 98, 0.14);
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.79rem;
  top: 1.35rem;
  bottom: -1.4rem;
  width: 1px;
  background: linear-gradient(var(--line-strong), transparent);
}

.timeline b {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.timeline span {
  display: block;
  font-size: 0.9rem;
  color: var(--bone-dim);
}

.note {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold-deep);
  background: rgba(242, 239, 233, 0.025);
  font-size: 0.9rem;
  color: var(--bone-dim);
}

/* ---------- 13. Pricing ---------- */
.pricing {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .pricing {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.6rem;
  }
}

.plan {
  position: relative;
  padding: clamp(1.9rem, 1.5rem + 1.6vw, 2.8rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(216, 182, 98, 0.34);
  background:
    radial-gradient(30rem 20rem at 90% -10%, rgba(216, 182, 98, 0.16), transparent 70%),
    linear-gradient(170deg, rgba(242, 239, 233, 0.05), rgba(242, 239, 233, 0.012));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.plan__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35em 0.85em;
  border-radius: 100px;
  border: 1px solid rgba(216, 182, 98, 0.35);
  background: var(--gold-wash);
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.plan__name {
  margin: 1.2rem 0 0.2rem;
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.2rem);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1.1rem 0 0.4rem;
}

.plan__price strong {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.2rem + 3.4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  background: linear-gradient(160deg, var(--bone), var(--gold-bright) 70%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.plan__price span {
  color: var(--bone-dim);
  font-size: 0.98rem;
}

.plan__terms {
  font-size: 0.9rem;
  color: var(--bone-faint);
  margin: 0 0 1.6rem;
}

.plan .checks {
  margin-top: 0;
  margin-bottom: 1.8rem;
}

.plan .checks li {
  color: var(--bone);
}

.plan__fine {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--bone-faint);
}

.terms-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(242, 239, 233, 0.022);
}

.terms-card h3 {
  margin: 0;
}

.terms-card dl {
  margin: 0;
  display: grid;
  gap: 1.1rem;
}

.terms-card dt {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.terms-card dd {
  margin: 0;
  font-size: 0.93rem;
  color: var(--bone-dim);
}

/* ---------- 14. FAQ ---------- */
.faq {
  max-width: var(--wrap-narrow);
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

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

.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.35rem 0.2rem;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.22rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.35;
  color: var(--bone);
  transition: color 0.3s var(--ease-soft);
}

.faq__q:hover {
  color: var(--gold-bright);
}

.faq__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  transition: border-color 0.3s var(--ease-soft), transform 0.45s var(--ease);
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% 25%;
  height: 1.5px;
  margin-top: -0.75px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease-soft);
}

.faq__icon::after {
  transform: rotate(90deg);
}

.faq__q[aria-expanded="true"] .faq__icon {
  border-color: var(--gold);
  transform: rotate(180deg);
}

.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.42s var(--ease);
}

.faq__a > div {
  padding: 0 3rem 1.5rem 0.2rem;
  color: var(--bone-dim);
  font-size: 0.97rem;
}

/* ---------- 15. Contact form ---------- */
.contact {
  display: grid;
  gap: clamp(2rem, 1.5rem + 3vw, 3.5rem);
}

@media (min-width: 980px) {
  .contact {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

.contact__aside .checks {
  margin-top: 1.8rem;
}

.form {
  padding: clamp(1.5rem, 1.2rem + 1.6vw, 2.4rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, rgba(242, 239, 233, 0.05), rgba(242, 239, 233, 0.012));
  box-shadow: var(--shadow-lg);
}

.form__grid {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 620px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }

  .field--full {
    grid-column: 1 / -1;
  }
}

.field {
  display: grid;
  gap: 0.42rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
}

.field .req {
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.82em 0.95em;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(6, 6, 7, 0.55);
  color: var(--bone);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.25s var(--ease-soft), box-shadow 0.25s var(--ease-soft),
    background-color 0.25s var(--ease-soft);
}

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

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23d8b662' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.4rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #5f5c57;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(6, 6, 7, 0.8);
  box-shadow: 0 0 0 3px rgba(216, 182, 98, 0.16);
}

.field .error {
  min-height: 1.05rem;
  font-size: 0.78rem;
  color: #e79a8a;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.25s var(--ease-soft), transform 0.25s var(--ease-soft);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b4675a;
  box-shadow: 0 0 0 3px rgba(180, 103, 90, 0.14);
}

.field.is-invalid .error {
  opacity: 1;
  transform: translateY(0);
}

.form__foot {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.form__note {
  font-size: 0.8rem;
  color: var(--bone-faint);
  margin: 0;
}

/* Success state */
.form__success {
  display: none;
  text-align: center;
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem) 1rem;
}

.form.is-sent .form__body {
  display: none;
}

.form.is-sent .form__success {
  display: block;
  animation: rise 0.6s var(--ease) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

.form__success .tick {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  border: 1px solid rgba(216, 182, 98, 0.4);
  background: var(--gold-wash);
  color: var(--gold-bright);
}

.form__success .tick svg {
  width: 28px;
  height: 28px;
}

.form__success h3 {
  font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
}

.form__success p {
  color: var(--bone-dim);
  max-width: 42ch;
  margin-inline: auto;
}

/* ---------- 16. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
  padding-block: clamp(3rem, 2.5rem + 3vw, 4.5rem) 2rem;
}

.footer__top {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 820px) {
  .footer__top {
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

.footer__blurb {
  max-width: 40ch;
  margin-top: 1.2rem;
  color: var(--bone-dim);
  font-size: 0.93rem;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 0 0 1rem;
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.footer__col a {
  color: var(--bone-dim);
  font-size: 0.93rem;
  transition: color 0.25s var(--ease-soft), padding-left 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--gold-bright);
  padding-left: 4px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.8rem;
  font-size: 0.82rem;
  color: var(--bone-faint);
}

/* ---------- 17. Legal / policy pages ---------- */
.legal {
  padding-top: calc(var(--nav-h) + 3.5rem);
  padding-bottom: 5rem;
}

.legal__inner {
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
}

.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.87rem;
  color: var(--bone-dim);
  transition: color 0.25s var(--ease-soft);
}

.legal__back:hover {
  color: var(--gold-bright);
}

.legal h1 {
  font-size: clamp(2.2rem, 1.7rem + 2.6vw, 3.4rem);
  margin-bottom: 0.6rem;
}

.legal__meta {
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone-faint);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.legal h2 {
  font-size: clamp(1.35rem, 1.2rem + 0.8vw, 1.75rem);
  margin-top: 2.8rem;
}

.legal h3 {
  margin-top: 1.8rem;
  font-size: 1.1rem;
}

.legal p,
.legal li {
  color: var(--bone-dim);
  font-size: 0.98rem;
}

.legal ul,
.legal ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}

.legal li::marker {
  color: var(--gold-deep);
}

.legal strong {
  color: var(--bone);
}

.legal a:not(.btn):not(.legal__back):not(.brand) {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Placeholder chips — replace before launch. */
.ph {
  display: inline-block;
  padding: 0.1em 0.5em;
  border-radius: 5px;
  border: 1px dashed rgba(216, 182, 98, 0.45);
  background: var(--gold-wash);
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.82em;
}

.callout {
  padding: 1.2rem 1.4rem;
  margin: 2rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  background: rgba(242, 239, 233, 0.025);
}

.callout p {
  font-size: 0.93rem;
}

.legal__toc {
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(242, 239, 233, 0.022);
}

.legal__toc h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.legal__toc ol {
  margin: 0;
  gap: 0.45rem;
}

.legal__toc a {
  font-size: 0.93rem;
}

/* ---------- 18. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-soft), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

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

/* Hero load-in stagger */
.hero .stagger > * {
  animation: rise 0.9s var(--ease) backwards;
}

.hero .stagger > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero .stagger > *:nth-child(2) {
  animation-delay: 0.15s;
}
.hero .stagger > *:nth-child(3) {
  animation-delay: 0.25s;
}
.hero .stagger > *:nth-child(4) {
  animation-delay: 0.35s;
}
.hero .stagger > *:nth-child(5) {
  animation-delay: 0.45s;
}

.hero .mockup {
  animation: rise 1.1s var(--ease) 0.3s backwards;
}

/* ---------- 19. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

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

  .hero__watermark {
    animation: none;
  }
}

/* ---------- 20. Print ---------- */
@media print {
  body {
    background: #fff;
    color: #000;
  }

  body::before,
  body::after,
  .site-header,
  .mobile-menu,
  .site-footer .btn {
    display: none !important;
  }

  .legal {
    padding-top: 0;
  }

  .legal p,
  .legal li {
    color: #222;
  }
}
