/* ═══════════════════════════════════════════════════════════
   THE HEADROOM NETWORK — shared design system
   Brand: orange #EA580C · warm white #FFFBEB · near black #1C1917
   Hero lineage: v7. Section rhythm: dark / warm white / orange.
═══════════════════════════════════════════════════════════ */

:root {
  --bg:        #0a0806;   /* primary dark — the cinematic hero black */
  --near:      #1C1917;   /* brand near black */
  --surface:   #161210;   /* card on dark */
  --ink:       #FFFBEB;   /* warm white */
  --orange:    #EA580C;
  --orange-hv: #F97316;
  --orange-lt: #FB923C;

  --max: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Film grain — the v7 signature */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Scroll progress bar */
.scroll-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--orange);
  z-index: 8999;
  transition: width 100ms linear;
}

/* Cursor glow */
.cursor-glow {
  position: fixed; width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,0.09) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
  transform: translate(-50%, -50%);
  display: none;
}
@media (pointer: fine) { .cursor-glow { display: block; } }

.container {
  width: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════
   NAVIGATION — liquid glass, always dark
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 8, 6, 0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(255,251,235,0.07);
  transition: background 350ms ease, border-color 350ms ease;
}
.nav.scrolled {
  background: rgba(10, 8, 6, 0.9);
  border-bottom-color: rgba(255,251,235,0.1);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

/* Logo lockup */
.logo-lockup { display: flex; align-items: center; gap: 0.7rem; }
.logo-lockup svg { display: block; width: 32px; height: 32px; flex-shrink: 0; }

/* Animated mark — assembles on load; the bars breathe like a level meter on
   hover (headroom = the space in an audio signal, living in the logo itself).
   All motion is gated to no-preference so reduced-motion keeps a static mark. */
.logo-lockup svg rect { transition: filter 300ms ease; }
.nav .logo-lockup:hover svg rect { filter: drop-shadow(0 0 2.5px rgba(234,88,12,0.7)); }
@media (prefers-reduced-motion: no-preference) {
  .logo-lockup svg polygon {
    stroke-dasharray: 280; stroke-dashoffset: 280;
    animation: logo-draw 1.1s var(--ease) 0.15s forwards;
  }
  .logo-lockup svg rect {
    opacity: 0; transform-box: fill-box; transform-origin: 50% 50%;
    animation: logo-rise 0.55s var(--ease) forwards;
  }
  .logo-lockup svg rect:nth-of-type(1) { animation-delay: 0.62s; }
  .logo-lockup svg rect:nth-of-type(2) { animation-delay: 0.74s; }
  .logo-lockup svg rect:nth-of-type(3) { animation-delay: 0.86s; }
  /* the two posts breathe, gently out of phase — a living VU meter */
  .nav .logo-lockup:hover svg rect:nth-of-type(1) { animation: logo-meter-a 0.9s ease-in-out infinite alternate; }
  .nav .logo-lockup:hover svg rect:nth-of-type(2) { animation: logo-meter-b 0.72s ease-in-out infinite alternate; }
}
@keyframes logo-draw { to { stroke-dashoffset: 0; } }
@keyframes logo-rise { from { opacity: 0; transform: scaleY(0.25); } to { opacity: 1; transform: scaleY(1); } }
@keyframes logo-meter-a { from { transform: scaleY(1); } to { transform: scaleY(0.82); } }
@keyframes logo-meter-b { from { transform: scaleY(0.88); } to { transform: scaleY(1); } }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-head {
  font-weight: 900; font-size: 0.98rem; letter-spacing: -0.05em;
  text-transform: uppercase; color: var(--ink);
}
.logo-head .r { color: var(--orange); }
.logo-sub {
  font-weight: 700; font-size: 0.44rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,251,235,0.34);
  margin-top: 0.22rem;
}

.nav-links { display: none; align-items: center; gap: 1.5rem; }
.nav-links a {
  font-weight: 700; font-size: 0.66rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,251,235,0.5);
  position: relative; transition: color 200ms ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--orange);
  transition: width 250ms var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { display: none; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform 300ms var(--ease), opacity 200ms ease;
}
.hamburger:hover span { background: var(--orange); }

@media (min-width: 1040px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .hamburger { display: none; }
}

/* Touch devices (phones/tablets): force the mobile nav regardless of any
   viewport-width inflation iOS Safari applies on horizontal overflow.
   hover/pointer are input-type features, immune to the layout-viewport bug. */
@media (hover: none) and (pointer: coarse) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
}

.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(10, 8, 6, 0.96);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,251,235,0.07);
  padding: 2rem 1.5rem; z-index: 99;
  flex-direction: column; gap: 1.4rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,251,235,0.55);
  transition: color 200ms ease;
}
.mobile-nav a:hover { color: var(--orange); }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.95rem 1.9rem;
  border: none; cursor: pointer; position: relative;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), background-color 250ms ease, color 200ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.97); }

.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 32px rgba(234,88,12,0.22); }
.btn-primary:hover { background: var(--orange-hv); box-shadow: 0 12px 48px rgba(234,88,12,0.3); }

.btn-ghost { background: transparent; color: var(--sink, var(--ink)); border: 1.5px solid var(--shair, rgba(255,251,235,0.2)); }
.btn-ghost:hover { background: var(--sghost, rgba(255,251,235,0.06)); }

/* On orange sections the primary inverts to near black */
.sec-orange .btn-primary { background: var(--near); color: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.22); }
.sec-orange .btn-primary:hover { background: #000; }

/* ═══════════════════════════════════════════
   SECTION COLOUR SYSTEM
   Every section sets local tokens so its children adapt.
═══════════════════════════════════════════ */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }

.sec-dark   { --sbg: var(--bg);   --sink: var(--ink); --smuted: rgba(255,251,235,0.46); --shair: rgba(255,251,235,0.1);  --scard: #161210; --sghost: rgba(255,251,235,0.06); }
.sec-light  { --sbg: #FFFBEB;     --sink: #1C1917;    --smuted: rgba(28,25,23,0.58);    --shair: rgba(28,25,23,0.13);   --scard: #ffffff;  --sghost: rgba(28,25,23,0.05); }
.sec-orange { --sbg: var(--orange); --sink: #ffffff;  --smuted: rgba(255,255,255,0.82);  --shair: rgba(255,255,255,0.26); --scard: rgba(255,255,255,0.1); --sghost: rgba(255,255,255,0.12); }

.section { background: var(--sbg); color: var(--sink); }

/* Accent word — orange normally, near black when the bg is orange */
.accent { color: var(--orange); }
.sec-orange .accent { color: var(--near); }

/* Kicker label */
.kicker {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-weight: 800; font-size: 0.65rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 1.6rem;
}
.sec-orange .kicker { color: var(--near); }
.kicker::before { content: ''; width: 26px; height: 2px; background: currentColor; flex-shrink: 0; }

/* Headings */
.h-sec {
  font-weight: 900; font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 0.98; letter-spacing: -0.04em; text-transform: uppercase;
  margin-bottom: 1.4rem; max-width: 18ch;
}
.h-sub {
  font-weight: 500; font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7; color: var(--smuted); max-width: 60ch;
}
.eyebrow-lead { max-width: 62ch; }

/* Hairline divider */
.rule { height: 1px; background: var(--shair); border: none; width: 100%; }

/* ═══════════════════════════════════════════
   REVEAL ON SCROLL
═══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 90ms; }
.reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; }
.reveal.d4 { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════
   CARDS / GRIDS
═══════════════════════════════════════════ */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--scard);
  border: 1px solid var(--shair);
  border-radius: 18px;
  padding: 2rem 1.9rem;
  transition: transform 300ms var(--ease), border-color 300ms ease, box-shadow 300ms var(--ease);
  position: relative; overflow: hidden;
}
.sec-light .card { box-shadow: 0 1px 0 rgba(28,25,23,0.04); }
.card:hover { transform: translateY(-4px); border-color: var(--orange); }
.sec-orange .card:hover { border-color: rgba(255,255,255,0.6); }

.card-index {
  font-weight: 900; font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--orange); margin-bottom: 1.1rem; font-variant-numeric: tabular-nums;
}
.sec-orange .card-index { color: var(--near); }
.card h3 {
  font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em;
  margin-bottom: 0.7rem; line-height: 1.15;
}
.card p { font-weight: 500; font-size: 0.92rem; line-height: 1.65; color: var(--smuted); }
.card ul { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card li {
  font-weight: 600; font-size: 0.82rem; color: var(--smuted);
  padding-left: 1.1rem; position: relative; line-height: 1.4;
}
.card li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 6px; height: 6px; background: var(--orange); border-radius: 2px; }
.sec-orange .card li::before { background: #fff; }

.card-link {
  display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.3rem;
  font-weight: 800; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
}
.sec-orange .card-link { color: var(--near); }
.card-link .arr { transition: transform 250ms var(--ease); }
.card:hover .card-link .arr { transform: translateX(5px); }
/* Whole-tile clickable cards (resource / sector navigation tiles) */
.link-card { cursor: pointer; }
.link-card h3 a { color: var(--orange); }
.link-card h3 a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.link-card:hover h3 a { color: var(--orange-hv); }
.sec-orange .link-card h3 a { color: var(--near); }

/* High-contrast cards on dark sections — warm white + orange on black.
   Add .cards-contrast to a grid/split wrapper; add .feat to orange feature cards. */
.cards-contrast .card { background: #FFFBEB; border: none; color: #1C1917; box-shadow: 0 14px 40px rgba(0,0,0,0.5); }
.cards-contrast .card h3 { color: #1C1917; }
.cards-contrast .card p { color: rgba(28,25,23,0.64); }
.cards-contrast .card li { color: rgba(28,25,23,0.66); }
.cards-contrast .card li::before { background: var(--orange); }
.cards-contrast .card .card-index { color: var(--orange); }
.cards-contrast .card .card-link { color: var(--orange); }
.cards-contrast .card:hover { transform: translateY(-6px); border: none; box-shadow: 0 24px 60px rgba(234,88,12,0.3); }
.cards-contrast .card.feat { background: var(--orange); color: #fff; box-shadow: 0 14px 40px rgba(234,88,12,0.34); }
.cards-contrast .card.feat h3 { color: #fff; }
.cards-contrast .card.feat p { color: rgba(255,255,255,0.9); }
.cards-contrast .card.feat li { color: rgba(255,255,255,0.92); }
.cards-contrast .card.feat li::before { background: #fff; }
.cards-contrast .card.feat .card-index { color: #1C1917; }
.cards-contrast .card.feat .card-link { color: #1C1917; }
.cards-contrast .card.feat:hover { box-shadow: 0 24px 64px rgba(234,88,12,0.5); }
.cards-contrast .card.feat::after { content: ''; position: absolute; right: -40px; bottom: -40px; width: 150px; height: 150px; border-radius: 50%; background: rgba(255,255,255,0.08); pointer-events: none; }

/* Split layout (text + media) */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 920px) { .split { grid-template-columns: 1.05fr 0.95fr; } .split.rev > :first-child { order: 2; } }

/* Symptom / pain list */
.symptoms { display: grid; gap: 0.9rem; grid-template-columns: 1fr; margin-top: 0.5rem; }
@media (min-width: 720px) { .symptoms { grid-template-columns: 1fr 1fr; } }
.symptom {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 1.1rem 1.2rem; border: 1px solid var(--shair); border-radius: 14px;
  background: var(--scard); font-weight: 600; font-size: 0.95rem; line-height: 1.45;
}
.symptom .x { color: var(--orange); font-weight: 900; flex-shrink: 0; line-height: 1.3; }

/* Numbered model steps */
.steps { counter-reset: step; display: grid; gap: 1px; background: var(--shair); border: 1px solid var(--shair); border-radius: 18px; overflow: hidden; }
.step { background: var(--sbg); padding: 1.5rem 1.6rem; display: flex; gap: 1.3rem; align-items: flex-start; transition: background 250ms ease; }
.sec-light .step { background: #FFFBEB; }
.step:hover { background: var(--scard); }
.step .n {
  counter-increment: step; font-weight: 900; font-size: 0.85rem;
  color: var(--orange); flex-shrink: 0; width: 2.2rem;
  font-variant-numeric: tabular-nums;
}
.step .n::before { content: counter(step, decimal-leading-zero); }
.step .body h4 { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 0.3rem; }
.step .body p { font-weight: 500; font-size: 0.88rem; line-height: 1.6; color: var(--smuted); }

/* Founder photo treatment — image defines the box, no frame possible */
.founder-media { position: relative; display: block; border-radius: 18px; overflow: hidden; background: var(--surface); }
.founder-media img { display: block; width: 100%; height: auto; margin: 0; filter: grayscale(0.08) contrast(1.03) brightness(0.99); }
.founder-media::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(10,8,6,0.62) 100%),
    radial-gradient(ellipse 80% 55% at 72% 16%, rgba(234,88,12,0.13) 0%, transparent 70%);
}
.founder-tag {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 4;
  display: flex; flex-direction: column; gap: 0.15rem;
}
.founder-tag .nm { font-weight: 900; font-size: 1.05rem; line-height: 1.15; letter-spacing: -0.02em; color: #FFFBEB; }
.founder-tag .rl { font-weight: 700; font-size: 0.6rem; line-height: 1.3; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange-lt); }

/* Pull quote */
.pullquote {
  font-weight: 800; font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3; letter-spacing: -0.02em; max-width: 22ch;
}
.pullquote .accent { color: var(--orange); }

/* Stat row */
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--shair); border: 1px solid var(--shair); border-radius: 18px; overflow: hidden; }
@media (min-width: 720px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--sbg); padding: 1.6rem 1.4rem; }
.sec-light .stat { background: #FFFBEB; }
.sec-orange .stat { background: transparent; }
.stat .v { font-weight: 900; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.03em; line-height: 1; }
.stat .l { font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--smuted); margin-top: 0.5rem; line-height: 1.4; }

/* FAQ accordion */
.faq { border-top: 1px solid var(--shair); }
.faq-item { border-bottom: 1px solid var(--shair); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; text-align: left; color: var(--sink);
  font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
}
.faq-q .ic { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 300ms var(--ease); }
.faq-q .ic::before, .faq-q .ic::after { content: ''; position: absolute; background: var(--orange); border-radius: 2px; }
.faq-q .ic::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-q .ic::after { top: 0; left: 10px; width: 2px; height: 22px; transition: transform 300ms var(--ease); }
.faq-item.open .faq-q .ic::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 350ms var(--ease); }
.faq-a-inner { padding: 0 0 1.5rem; font-weight: 500; font-size: 0.98rem; line-height: 1.7; color: var(--smuted); max-width: 70ch; }

/* Price cards */
.price-card { display: flex; flex-direction: column; height: 100%; }
.price-card .tier { font-weight: 700; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--smuted); margin-bottom: 1rem; }
.price-card .amt { font-weight: 900; font-size: 2rem; letter-spacing: -0.03em; line-height: 1; }
.price-card .amt small { font-weight: 600; font-size: 0.8rem; color: var(--smuted); letter-spacing: 0; }
.price-card .desc { font-weight: 500; font-size: 0.9rem; line-height: 1.6; color: var(--smuted); margin: 1rem 0 0; }

/* Tag chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.4rem; }
.chip {
  font-weight: 700; font-size: 0.68rem; letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem; border-radius: 100px;
  border: 1px solid var(--shair); color: var(--smuted);
}

/* CTA band */
.cta-band { text-align: center; }
.cta-band .h-sec { margin-left: auto; margin-right: auto; max-width: 16ch; }
.cta-band .h-sub { margin: 0 auto 2.4rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ═══════════════════════════════════════════
   PAGE HEADER (inner pages)
═══════════════════════════════════════════ */
.page-head { padding-top: 72px; position: relative; overflow: hidden; }
.page-head .container { padding-top: clamp(4.5rem, 10vw, 7rem); padding-bottom: clamp(3rem, 6vw, 4.5rem); }
.page-head .h-lg {
  font-weight: 900; font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.95; letter-spacing: -0.045em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.page-head .h-lg .accent { color: var(--orange); }
.page-head .lead { font-weight: 500; font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.65; color: var(--smuted); max-width: 56ch; }
.page-head .glow-blob { position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(234,88,12,0.14) 0%, transparent 70%); pointer-events: none; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer { background: var(--near); color: var(--ink); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem; border-top: 1px solid rgba(255,251,235,0.08); }
.footer-top { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand .logo-head { font-size: 1.2rem; }
.footer-brand p { font-weight: 500; font-size: 0.9rem; line-height: 1.65; color: rgba(255,251,235,0.5); max-width: 38ch; margin-top: 1.1rem; }
.footer-col h5 { font-weight: 700; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,251,235,0.4); margin-bottom: 1.1rem; }
.footer-col a { display: block; font-weight: 600; font-size: 0.9rem; color: rgba(255,251,235,0.66); padding: 0.4rem 0; transition: color 200ms ease; }
.footer-col a:hover { color: var(--orange-lt); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,251,235,0.08); }
.footer-bottom small { font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(255,251,235,0.34); }
.footer-bottom .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); display: inline-block; margin-right: 0.5rem; vertical-align: middle; }

/* ═══════════════════════════════════════════
   DECORATIVE TOUCHES — brand motifs, used sparingly
   Hexagon = the mark · signal bars = headroom (the VU meter).
   All opt-in, all behind content, none intercept clicks.
═══════════════════════════════════════════ */

/* Faint dot-grid texture for a section. Colour follows the section ink,
   feathered to the centre so edges never harden. */
.section.dotgrid > .container { position: relative; z-index: 1; }
.section.dotgrid::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(currentColor 1px, transparent 1.6px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 42%, #000, transparent 80%);
          mask-image: radial-gradient(ellipse 72% 62% at 50% 42%, #000, transparent 80%);
  opacity: 0.05;
}

/* Hexagon brand watermark — drop into any positioned container. */
.deco-hex {
  position: absolute; pointer-events: none; z-index: 0;
  width: 300px; height: 300px; opacity: 0.07;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,3 92,26.5 92,73.5 50,97 8,73.5 8,26.5' fill='none' stroke='%23EA580C' stroke-width='2.4'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: no-preference) {
  .deco-hex { animation: hex-float 13s ease-in-out infinite; }
}
@keyframes hex-float { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(6deg); } }

/* Every inner-page header gets a subtle hex watermark bottom-left,
   balancing the glow-blob top-right. One rule, whole site. */
.page-head .container { position: relative; z-index: 1; }
.page-head::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  left: -72px; bottom: -96px; width: 340px; height: 340px; opacity: 0.055;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpolygon points='50,3 92,26.5 92,73.5 50,97 8,73.5 8,26.5' fill='none' stroke='%23EA580C' stroke-width='2.2'/%3E%3C/svg%3E");
}

/* Signal bars — the headroom / VU-meter motif. Use <span class="signal-rule">
   with 7 child <i>s. Echoes the breathing posts in the logo. */
.signal-rule { display: inline-flex; align-items: flex-end; gap: 4px; height: 26px; vertical-align: middle; }
.signal-rule i { width: 4px; border-radius: 2px; background: var(--orange); opacity: 0.85; transform-origin: bottom; }
.sec-orange .signal-rule i { background: #fff; }
.signal-rule i:nth-child(1) { height: 36%; } .signal-rule i:nth-child(2) { height: 70%; }
.signal-rule i:nth-child(3) { height: 100%; } .signal-rule i:nth-child(4) { height: 54%; }
.signal-rule i:nth-child(5) { height: 86%; } .signal-rule i:nth-child(6) { height: 44%; }
.signal-rule i:nth-child(7) { height: 64%; }
@media (prefers-reduced-motion: no-preference) {
  .signal-rule i { animation: vu 1.7s ease-in-out infinite alternate; }
  .signal-rule i:nth-child(1) { animation-delay: 0s; }    .signal-rule i:nth-child(2) { animation-delay: 0.16s; }
  .signal-rule i:nth-child(3) { animation-delay: 0.32s; } .signal-rule i:nth-child(4) { animation-delay: 0.1s; }
  .signal-rule i:nth-child(5) { animation-delay: 0.24s; } .signal-rule i:nth-child(6) { animation-delay: 0.06s; }
  .signal-rule i:nth-child(7) { animation-delay: 0.2s; }
}
@keyframes vu { from { transform: scaleY(0.4); } to { transform: scaleY(1); } }

/* Price cards — animated accent bar, glyph badge, "most chosen" flag */
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transform-origin: left;
  transition: transform 450ms var(--ease);
}
.price-card:hover::before, .price-card.feat::before { transform: scaleX(1); }
.tier-ico {
  width: 46px; height: 46px; border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sghost); border: 1px solid var(--shair);
  color: var(--orange); margin-bottom: 1.3rem;
  transition: transform 300ms var(--ease), border-color 300ms ease;
}
.card:hover .tier-ico { transform: translateY(-2px); border-color: var(--orange); }
.tier-ico svg { width: 23px; height: 23px; display: block; }
.price-card .flag {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-weight: 800; font-size: 0.55rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--orange); padding: 0.34rem 0.62rem; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(234,88,12,0.35);
}

/* ═══════════════════════════════════════════
   TOAST NOTIFICATION
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #161210;
  border: 1px solid rgba(255,251,235,0.1);
  color: #FFFBEB;
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 400ms var(--ease), opacity 400ms var(--ease);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast-icon {
  flex-shrink: 0;
  color: var(--orange);
  width: 24px;
  height: 24px;
}
.toast-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.1rem;
}
.toast-title {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.toast-message {
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,251,235,0.6);
  line-height: 1.4;
  max-width: 240px;
}
.toast-close {
  background: none;
  border: none;
  color: rgba(255,251,235,0.4);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease;
  margin-left: 0.5rem;
}
.toast-close:hover {
  color: var(--orange);
}
@media (max-width: 600px) {
  .toast {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
  .toast-message { max-width: none; }
}
