/* =================================================================
   NEXURA v3 — Warm. Bright. Alive.
   Light-dominant with occasional dark feature sections.
   Inter Tight display + Inter body.
   ================================================================= */

:root {
  /* Warm, bright palette */
  --cream:     #F6F1E6;
  --paper:     #FCF8EE;
  --bone:      #EFE7D4;
  --ink:       #141108;
  --ink-1:     #201C13;
  --ink-2:     #3D362A;
  --muted:     #7A7264;
  --muted-2:   #9E9683;

  --line:      #DACEB5;
  --line-2:    #E6DDC5;
  --line-3:    #F1E9D4;

  /* Dark section palette (used sparingly) */
  --dark:      #0E0B06;
  --dark-1:    #1A160E;
  --dark-2:    #2A2419;
  --dark-line: rgba(247,242,230,0.12);

  /* Accents */
  --oxblood:   #7C2F22;      /* primary accent — warm hospitality */
  --oxblood-2: #9B3A2C;
  --amber:     #B88432;      /* small highlights only */
  --amber-soft:#E8D9B7;

  /* Type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;   /* editorial display */
  --sans:  "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --body:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --max:       1440px;
  --pad-x:     clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(5rem, 10vw, 9rem);

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

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
html { scroll-behavior: smooth; background: var(--cream); }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  overflow-x: hidden;
}

/* Very subtle paper grain */
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
::selection { background: var(--oxblood); color: var(--paper); }

/* =================================================================
   Typography
   ================================================================= */

.display {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.display.light { font-weight: 300; letter-spacing: -0.03em; }
.display.bold  { font-weight: 700; letter-spacing: -0.04em; }

h1.display { font-size: clamp(2.75rem, 8vw, 7.5rem); font-weight: 500; letter-spacing: -0.04em; }
h2.display { font-size: clamp(2.25rem, 5.5vw, 5.25rem); font-weight: 500; letter-spacing: -0.035em; }
h3.display { font-size: clamp(1.6rem, 3vw, 2.75rem); line-height: 1.05; }

.display .bold  { font-weight: 700; }
.display .italic { font-style: italic; font-weight: 400; }
.display .accent { color: var(--oxblood); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 0.55rem;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--oxblood);
}

.lede {
  font-family: var(--body);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 50ch;
}

.muted { color: var(--muted); }
.accent { color: var(--oxblood); }

/* Dark-section variants */
.dark {
  background: var(--dark);
  color: var(--paper);
}
.dark .display { color: var(--paper); }
.dark .display .accent { color: var(--amber-soft); }
.dark .lede { color: rgba(247,242,230,0.82); }
.dark .muted { color: rgba(247,242,230,0.6); }
.dark .eyebrow { color: rgba(247,242,230,0.7); }
.dark .eyebrow::before { background: var(--amber); }

/* =================================================================
   Buttons
   ================================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s, transform 0.35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--oxblood);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--paper);
  border-color: var(--ink);
}
.dark .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.dark .btn-primary:hover {
  background: var(--amber-soft);
}
.dark .btn-ghost {
  color: var(--paper);
  border-color: rgba(247,242,230,0.3);
}
.dark .btn-ghost:hover {
  background: rgba(247,242,230,0.08);
  border-color: rgba(247,242,230,0.55);
}

.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn.compact { padding: 0.58rem 1rem; font-size: 0.78rem; }

.txt-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.txt-link:hover { border-color: var(--oxblood); color: var(--oxblood); }
.txt-link .arr { transition: transform 0.35s var(--ease); }
.txt-link:hover .arr { transform: translate(3px, -3px); }

/* =================================================================
   Nav
   ================================================================= */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 1.1rem var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,6,0.45) 0%, rgba(14,11,6,0) 100%);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.nav.scrolled {
  background: rgba(246, 241, 230, 0.88);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border-bottom-color: var(--line-2);
  padding: 0.75rem var(--pad-x);
}
.nav.scrolled::before { opacity: 0; }

.nav-brand {
  display: inline-flex; align-items: center;
  transition: opacity 0.3s;
}
.nav-brand:hover { opacity: 0.85; }
.nav-brand img {
  height: 30px; width: auto;
  mix-blend-mode: screen;
  filter: brightness(1) drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: mix-blend-mode 0.3s, filter 0.3s;
}
.nav.scrolled .nav-brand img {
  mix-blend-mode: multiply;
  filter: drop-shadow(0 0 0 transparent);
}

.nav-links {
  justify-self: center;
  display: flex; align-items: center;
  gap: 2.25rem;
  list-style: none;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  color: rgba(247, 242, 230, 0.88);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.25s;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--amber-soft);
  transition: width 0.3s var(--ease), background 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav.scrolled .nav-links a {
  color: var(--ink-2);
  text-shadow: none;
}
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--ink); }
.nav.scrolled .nav-links a::after { background: var(--oxblood); }

/* Nav CTA button — inverted on hero bg */
.nav .btn-primary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}
.nav .btn-primary:hover { background: var(--amber-soft); }
.nav.scrolled .btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}
.nav.scrolled .btn-primary:hover { background: var(--oxblood); }

.nav-toggle span { background: var(--paper); transition: background 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--ink); }

.nav-right {
  justify-self: end;
  display: flex; align-items: center; gap: 0.5rem;
}

.nav-toggle {
  display: none;
  padding: 0.4rem; width: 32px; height: 32px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); display: block; }

@media (max-width: 960px) {
  .nav-links { display: none; position: fixed; top: 58px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); backdrop-filter: blur(24px);
    padding: 1rem var(--pad-x) 2rem;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid var(--line-3); font-size: 1.05rem; }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
  .nav-right .btn { display: none; }
}

/* =================================================================
   CINEMATIC HERO — full-bleed photo, ken-burns, mouse parallax
   (used on every page — this is the "billion dollar" hero)
   ================================================================= */

.hero-cinematic {
  position: relative;
  min-height: 94vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(7rem, 12vw, 10rem) var(--pad-x) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
  margin-top: -72px; /* slide under the sticky nav */
}
.hero-cinematic.short { min-height: 82vh; }

.hero-cinematic-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.hero-cinematic-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.12) translate3d(0, 0, 0);
  animation: kenBurns 28s ease-in-out infinite alternate;
  will-change: transform;
  transition: transform 3s var(--ease);
}
@keyframes kenBurns {
  0%   { transform: scale(1.10) translate3d(0, 0, 0); }
  100% { transform: scale(1.18) translate3d(-2%, -2%, 0); }
}

.hero-cinematic-overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,11,6,0.35) 0%, rgba(14,11,6,0) 30%, rgba(14,11,6,0.85) 100%),
    linear-gradient(90deg, rgba(14,11,6,0.55) 0%, rgba(14,11,6,0.15) 55%, rgba(14,11,6,0.05) 100%);
}

/* Spotlight follows cursor — adds depth/interactivity */
.hero-cinematic-spot {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 30%) var(--my, 55%),
    rgba(232, 217, 183, 0.12) 0%,
    rgba(232, 217, 183, 0) 55%
  );
  mix-blend-mode: screen;
  transition: background 0.3s var(--ease);
}

.hero-cinematic-inner {
  position: relative; z-index: 3;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
}

.hero-cinematic .eyebrow {
  color: var(--amber-soft);
  margin-bottom: 1.5rem;
}
.hero-cinematic .eyebrow::before { background: var(--amber); box-shadow: 0 0 10px rgba(184,132,50,0.55); }

.hero-cinematic h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2.5rem, 8vw, 7.25rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 17ch;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.hero-cinematic h1 .bold { font-weight: 700; }
.hero-cinematic h1 .italic { font-style: italic; font-weight: 400; }
.hero-cinematic h1 .accent { color: var(--amber-soft); font-style: italic; font-weight: 400; }

.hero-cinematic .sub {
  margin-top: 1.75rem;
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.15vw, 1.18rem);
  color: rgba(247, 242, 230, 0.88);
  line-height: 1.55;
  max-width: 52ch;
  font-weight: 400;
  text-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.hero-cinematic-actions {
  margin-top: 2.25rem;
  display: flex; gap: 0.7rem; flex-wrap: wrap;
}
.hero-cinematic .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.hero-cinematic .btn-primary:hover { background: var(--amber-soft); }
.hero-cinematic .btn-ghost {
  color: var(--paper);
  border-color: rgba(247, 242, 230, 0.32);
  background: rgba(14,11,6,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-cinematic .btn-ghost:hover {
  background: rgba(247, 242, 230, 0.1);
  border-color: rgba(247, 242, 230, 0.6);
}

/* Floating meta strip at top (status pill + info) */
.hero-cinematic-meta {
  position: absolute; top: clamp(5.5rem, 9vw, 7rem);
  left: 0; right: 0; z-index: 3;
  padding: 0 var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  color: rgba(247,242,230,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.hero-cinematic-meta .pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(247,242,230,0.22);
  border-radius: 999px;
  background: rgba(14,11,6,0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  font-weight: 500;
}
.hero-cinematic-meta .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px rgba(184,132,50,0.65);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-cinematic-meta .loc {
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.45rem;
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247,242,230,0.6);
  animation: floatY 3s ease-in-out infinite;
  font-weight: 500;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 26px;
  background: linear-gradient(180deg, rgba(247,242,230,0.6) 0%, transparent 100%);
}
@keyframes floatY { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 5px); } }

@media (max-width: 640px) {
  .hero-cinematic h1 { font-size: clamp(2.25rem, 9vw, 3.6rem); }
  .hero-cinematic-meta { position: static; padding: 0; margin-bottom: 1.5rem; }
  .hero-cinematic { padding-top: 6rem; }
}

/* =================================================================
   Ticker
   ================================================================= */

.ticker {
  padding: 1.35rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--paper);
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickScroll 42s linear infinite;
}
.ticker-item {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-1);
  padding: 0 2.25rem;
  display: inline-flex; align-items: center; gap: 2.25rem;
  letter-spacing: -0.005em;
}
.ticker-item::after {
  content: ""; width: 5px; height: 5px; background: var(--oxblood);
  border-radius: 50%; margin-left: 2.25rem;
}
@keyframes tickScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =================================================================
   Specs — clean number row
   ================================================================= */

.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.spec {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3.25rem) 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.spec-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.spec-num .unit {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-left: 0.1em;
  color: var(--muted);
}
.spec-label {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}
.spec-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 30ch;
}
@media (max-width: 820px) { .specs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .specs { grid-template-columns: 1fr; } }

/* =================================================================
   Section base
   ================================================================= */

.section {
  padding: var(--section-y) var(--pad-x);
  position: relative;
}
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}
.section-head h2 {
  max-width: 16ch;
  line-height: 1;
}
.section-head .sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 44ch;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; }
}

/* =================================================================
   Capabilities grid — what Nexura handles
   ================================================================= */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  overflow: hidden;
}
.cap {
  background: var(--paper);
  padding: 2rem 1.65rem 1.85rem;
  display: flex; flex-direction: column;
  min-height: 270px;
  transition: background 0.3s;
}
.cap:hover { background: var(--bone); }
.cap-num {
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}
.cap-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: var(--ink);
}
.cap-desc {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: auto;
}
.cap-foot {
  margin-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500;
}
.cap-foot .arr { color: var(--ink); transition: transform 0.35s var(--ease), color 0.3s; }
.cap:hover .cap-foot .arr { color: var(--oxblood); transform: translateX(4px); }

@media (max-width: 1120px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .cap-grid { grid-template-columns: 1fr; } }

/* =================================================================
   Split — image + text
   ================================================================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bone);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text h3.display {
  margin-bottom: 1.25rem;
}
.split-text p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 46ch;
  margin-bottom: 1rem;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse > :first-child { order: initial; }
}

/* =================================================================
   Process — sticky rail
   ================================================================= */

.process {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}
.process-rail { position: sticky; top: 110px; }
.process-rail .eyebrow { margin-bottom: 1.2rem; }
.process-rail h2.display {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 12ch;
}
.process-rail p {
  color: var(--muted);
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.6;
}

.process-steps { display: grid; gap: 0; }
.process-step {
  padding: 2rem 0;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line-2); }
.process-step .num {
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding-top: 0.3rem;
}
.process-step h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.process-step p {
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 52ch;
}
.process-step .meta {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr; gap: 2rem; }
  .process-rail { position: static; }
}

/* =================================================================
   Pricing
   ================================================================= */

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: 3px;
  overflow: hidden;
}
.tier {
  background: var(--paper);
  padding: 2.5rem 1.85rem 2.25rem;
  display: flex; flex-direction: column;
  transition: background 0.3s;
}
.tier:hover { background: var(--bone); }
.tier--feature {
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.tier--feature:hover { background: var(--ink-1); }
.tier--feature::before {
  content: "Most venues choose this";
  position: absolute; top: 1.1rem; right: 1.1rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  color: var(--amber-soft);
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(232, 217, 183, 0.3);
  border-radius: 999px;
}
.tier-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}
.tier-sub { font-size: 0.88rem; margin-bottom: 1.75rem; color: var(--muted); }
.tier--feature .tier-sub { color: rgba(247,242,230,0.7); }
.tier-price {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.tier-price .per {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 0.45rem;
  vertical-align: super;
}
.tier--feature .tier-price .per { color: rgba(247,242,230,0.7); }
.tier-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.tier--feature .tier-hint { color: var(--amber-soft); }
.tier ul { list-style: none; margin-bottom: 2rem; }
.tier ul li {
  padding: 0.6rem 0;
  border-top: 1px solid var(--line-3);
  font-size: 0.9rem;
  color: var(--ink-2);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.65rem;
}
.tier--feature ul li {
  color: rgba(247,242,230,0.9);
  border-top-color: rgba(247,242,230,0.12);
}
.tier ul li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--oxblood); margin-top: 0.55rem;
}
.tier--feature ul li::before { background: var(--amber-soft); }
.tier .btn { margin-top: auto; width: 100%; }
.tier--feature .btn-primary { background: var(--paper); color: var(--ink); }
.tier--feature .btn-primary:hover { background: var(--amber-soft); }

@media (max-width: 960px) {
  .pricing { grid-template-columns: 1fr; }
}

/* =================================================================
   FAQ
   ================================================================= */

.faq { border-top: 1px solid var(--line-2); }
.faq details {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-2);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  letter-spacing: -0.015em;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋"; color: var(--muted); font-weight: 300;
  transition: transform 0.3s var(--ease), color 0.3s;
}
.faq details[open] summary::after { content: "−"; color: var(--oxblood); }
.faq .body {
  margin-top: 0.85rem;
  color: var(--ink-2);
  max-width: 68ch;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =================================================================
   Dark feature section — hero-alt, CTA blocks
   ================================================================= */

.feature {
  position: relative;
  background: var(--dark);
  color: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  overflow: hidden;
}
.feature-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative; z-index: 1;
  text-align: center;
}
.feature .eyebrow { color: var(--amber-soft); }
.feature .eyebrow::before { background: var(--amber); }
.feature h2.display { color: var(--paper); margin: 1.25rem auto 1.25rem; max-width: 20ch; }
.feature .lede { color: rgba(247,242,230,0.82); margin: 0 auto 2.25rem; max-width: 50ch; text-align: center; }
.feature .actions {
  display: inline-flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center;
}
.feature .fineprint {
  margin-top: 2rem; font-size: 0.72rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(247,242,230,0.55); font-weight: 500;
}
.feature .fineprint span { margin: 0 0.85rem; }

/* Dark feature with image bg */
.feature-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.feature-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.32;
  filter: brightness(0.7) contrast(1.05);
}
.feature-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,11,6,0.6) 0%, rgba(14,11,6,0.85) 60%, rgba(14,11,6,0.95) 100%);
}

/* =================================================================
   Page head (subpages)
   ================================================================= */

.page-head {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line-2);
  background: var(--cream);
}
.page-head .inner { max-width: var(--max); margin: 0 auto; }
.page-head .eyebrow { margin-bottom: 1.25rem; }
.page-head h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 18ch;
  margin: 0.75rem 0 1.5rem;
  color: var(--ink);
}
.page-head h1 .bold { font-weight: 700; }
.page-head h1 .accent { color: var(--oxblood); }
.page-head .sub {
  color: var(--ink-2);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  max-width: 56ch;
  line-height: 1.6;
}

/* =================================================================
   Services expanded rows
   ================================================================= */

.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.5fr 100px;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-top: 1px solid var(--line-2);
  align-items: start;
  transition: padding 0.3s, background 0.3s;
}
.svc-row:last-child { border-bottom: 1px solid var(--line-2); }
.svc-row:hover { background: var(--paper); }
.svc-row .idx {
  font-family: var(--body);
  font-variant-numeric: tabular-nums;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  padding-top: 0.5rem;
  font-weight: 500;
}
.svc-row h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.svc-row .body {
  color: var(--ink-2);
  font-size: 0.96rem;
  line-height: 1.7;
  max-width: 58ch;
}
.svc-row .body ul { margin-top: 0.85rem; list-style: none; }
.svc-row .body ul li {
  padding: 0.25rem 0;
  font-size: 0.88rem;
  color: var(--muted);
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.6rem;
}
.svc-row .body ul li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--oxblood); margin-top: 0.55rem;
}
.svc-row .meta-col {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-top: 0.55rem;
  text-align: right;
  font-weight: 600;
}
@media (max-width: 820px) {
  .svc-row { grid-template-columns: 50px 1fr; }
  .svc-row .body, .svc-row .meta-col { grid-column: 1 / -1; padding-left: calc(50px + 1rem); text-align: left; }
}

/* =================================================================
   Founders
   ================================================================= */

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.founders-joint-bio {
  max-width: 58ch;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: grid;
  gap: 1.1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  text-align: left;
}
.founders-joint-bio p { margin: 0; }
.founder {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}
.founder-photo {
  aspect-ratio: 4/5;
  background: var(--bone);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-2);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.founder-info {
  display: grid; gap: 0.85rem;
}
.founder-info .role {
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-info h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
.founder-info p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 48ch;
}
.founder-info .bio-placeholder {
  font-style: italic;
  color: var(--muted);
  padding: 1rem 1.15rem;
  background: var(--paper);
  border-left: 2px solid var(--oxblood);
  border-radius: 2px;
  font-size: 0.92rem;
}
@media (max-width: 820px) {
  .founders-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* =================================================================
   Prose (privacy, long-form)
   ================================================================= */

.prose { max-width: 72ch; margin: 0 auto; }
.prose h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.prose h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin: 1.75rem 0 0.75rem;
  color: var(--ink);
}
.prose p, .prose li {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0.85rem;
}
.prose ul { padding-left: 1.25rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--oxblood); border-bottom: 1px solid rgba(124,47,34,0.3); }
.prose a:hover { border-bottom-color: var(--oxblood); }

/* =================================================================
   Footer
   ================================================================= */

footer.foot {
  background: var(--dark);
  color: var(--paper);
  padding: clamp(4rem, 7vw, 6rem) var(--pad-x) 2rem;
  margin-top: 0;
}
.foot-inner { max-width: var(--max); margin: 0 auto; }
.foot-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-line);
}
.foot-brand .mark {
  display: inline-block; margin-bottom: 1.25rem;
}
.foot-brand .mark img {
  height: 44px; width: auto;
  mix-blend-mode: screen;
}
.foot-brand p {
  color: rgba(247,242,230,0.72);
  font-size: 0.92rem;
  max-width: 40ch;
  line-height: 1.6;
}
.foot-col h5 {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,242,230,0.55);
  margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; }
.foot-col ul li { padding: 0.35rem 0; }
.foot-col ul li a {
  color: rgba(247,242,230,0.82);
  font-size: 0.92rem;
  transition: color 0.3s;
}
.foot-col ul li a:hover { color: var(--amber-soft); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-top: 1.75rem;
  color: rgba(247,242,230,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.foot-bottom .legal { display: flex; gap: 1.5rem; }
.foot-bottom .legal a { transition: color 0.3s; }
.foot-bottom .legal a:hover { color: var(--paper); }

@media (max-width: 820px) {
  .foot-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 520px) {
  .foot-top { grid-template-columns: 1fr; }
}

/* =================================================================
   Reveal on scroll
   ================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.2s; }
.reveal.d4 { transition-delay: 0.28s; }

.center { text-align: center; }
.hr { height: 1px; width: 100%; background: var(--line-2); border: 0; }

/* =================================================================
   Premium interactive polish
   ================================================================= */

/* Capability cards: lift + tilt shadow on hover */
.cap {
  transition: background 0.4s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.cap:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(14,11,6,0.22), 0 2px 8px rgba(14,11,6,0.06);
  z-index: 1;
  position: relative;
}

/* Pricing tier lift */
.tier {
  transition: background 0.4s var(--ease), transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -28px rgba(14,11,6,0.28);
  z-index: 1;
  position: relative;
}
.tier--feature:hover {
  box-shadow: 0 28px 56px -28px rgba(14,11,6,0.5);
}

/* Founder card hover */
.founder-photo {
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.founder:hover .founder-photo {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(14,11,6,0.22);
}
.founder-photo img {
  transition: transform 1.2s var(--ease);
}
.founder:hover .founder-photo img { transform: scale(1.04); }

/* Split-image subtle hover zoom */
.split-image { transition: box-shadow 0.5s var(--ease); }
.split-image img { transition: transform 1.2s var(--ease); }
.split-image:hover img { transform: scale(1.03); }

/* Magnetic / radial glow on buttons */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: -1;
}
.btn:hover::before { opacity: 1; }
.btn-primary::before { background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(232,217,183,0.35), transparent 55%); }

/* Cap-grid: slightly darker hairlines under hover state */
.cap-grid { position: relative; }

/* Smooth image entrance */
.hero-cinematic .hero-cinematic-bg img {
  opacity: 0;
  animation: fadeImg 1.4s var(--ease) 0.1s forwards, kenBurns 28s ease-in-out 1.4s infinite alternate;
}
@keyframes fadeImg { to { opacity: 1; } }

/* Reduce motion users */
@media (prefers-reduced-motion: reduce) {
  .hero-cinematic-bg img { animation: none; transform: scale(1); opacity: 1; }
  .reveal { transition: none; opacity: 1; transform: none; }
  * { scroll-behavior: auto !important; }
}

/* =================================================================
   HERO PRODUCT — product-centric home hero (phone + floating tiles)
   ================================================================= */

.hero-product {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 11vw, 10rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 80% 60% at 78% 28%, rgba(232, 217, 183, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 18% 85%, rgba(124, 47, 34, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  overflow: hidden;
  isolation: isolate;
  margin-top: -72px;
}

/* Subtle animated mesh / dot pattern behind */
.hero-product::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(14, 11, 6, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, black 30%, transparent 75%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-product-inner {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  min-height: calc(100vh - 72px - clamp(6rem, 12vw, 10rem));
}

/* Copy column */
.hero-product-copy {
  position: relative; z-index: 3;
}
.hero-product-copy .pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(252, 248, 238, 0.7);
  backdrop-filter: blur(10px);
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}
.hero-product-copy .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--oxblood);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero-product-copy h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2.75rem, 7.5vw, 6.75rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: 1.75rem;
}
.hero-product-copy h1 .bold { font-weight: 700; }
.hero-product-copy h1 .accent { color: var(--oxblood); font-style: italic; font-weight: 500; }

.hero-product-copy .sub {
  font-family: var(--body);
  font-size: clamp(1.02rem, 1.15vw, 1.2rem);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 46ch;
  margin-bottom: 2.25rem;
}
.hero-product-actions {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.75rem;
}
.hero-product-trust {
  display: flex; align-items: center; gap: 1.1rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.hero-product-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--oxblood); }
.hero-product-trust strong { color: var(--ink); font-weight: 600; }

/* Product viz column */
.hero-product-viz {
  position: relative;
  height: 640px;
  perspective: 1800px;
  display: flex; align-items: center; justify-content: center;
  transform-style: preserve-3d;
}

/* Inside the viz: a smaller phone (reuse existing .phone-mockup)
   that's positioned and parallax-reactive */
.hero-product-viz .phone-mockup {
  position: relative;
  z-index: 3;
  transform-origin: center;
  transition: transform 0.9s var(--ease);
  will-change: transform;
}
/* Override the showcase float so hero phone stays still (parallax handles motion) */
.hero-product-viz .phone-mockup {
  animation: heroPhoneFloat 9s ease-in-out infinite;
  transform: rotateX(3deg) rotateY(-10deg);
}
@keyframes heroPhoneFloat {
  0%, 100% { transform: rotateX(3deg) rotateY(-10deg) translateY(0); }
  50% { transform: rotateX(4deg) rotateY(-9deg) translateY(-8px); }
}

/* Floating mini UI tiles orbiting the phone */
.hero-tile {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  box-shadow: 0 28px 56px -28px rgba(14,11,6,0.35), 0 3px 10px rgba(14,11,6,0.06);
  backdrop-filter: blur(6px);
  font-family: var(--body);
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease), box-shadow 0.5s var(--ease);
  opacity: 0;
  animation: tileIn 0.9s var(--ease) forwards;
}
.hero-tile:hover { box-shadow: 0 36px 68px -28px rgba(14,11,6,0.4); }
@keyframes tileIn {
  to { opacity: 1; }
}

/* Tile 1: review notification — top-left of the phone */
.hero-tile-review {
  top: 10%; left: -5%;
  width: 270px;
  transform: rotate(-4deg) translateZ(80px);
  z-index: 4;
  animation-delay: 0.6s;
}
.hero-tile-review .row { display: flex; align-items: center; gap: 0.55rem; }
.hero-tile-review .avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: #D1A981; color: #fff;
  font-weight: 600; font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-tile-review .who { font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.hero-tile-review .when { margin-left: auto; font-size: 0.7rem; color: var(--muted); }
.hero-tile-review .stars { color: #FBBC04; font-size: 0.85rem; letter-spacing: 1.5px; margin: 0.35rem 0 0.3rem; }
.hero-tile-review .txt { font-size: 0.74rem; color: var(--ink-2); line-height: 1.45; }
.hero-tile-review .replied {
  margin-top: 0.55rem;
  padding: 0.25rem 0.55rem;
  background: rgba(19, 115, 51, 0.08);
  border-radius: 999px;
  color: #137333;
  font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.hero-tile-review .replied::before { content: "✓"; font-weight: 700; }

/* Tile 2: Google Business update — bottom-right */
.hero-tile-gbp {
  bottom: 12%; right: -6%;
  width: 260px;
  transform: rotate(3deg) translateZ(60px);
  z-index: 4;
  animation-delay: 0.9s;
}
.hero-tile-gbp .label {
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
}
.hero-tile-gbp .title { font-size: 0.95rem; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 0.25rem; }
.hero-tile-gbp .detail { font-size: 0.74rem; color: var(--muted); display: flex; align-items: center; gap: 0.45rem; }
.hero-tile-gbp .detail .open { color: #137333; font-weight: 600; }
.hero-tile-gbp .detail .open::before { content: "● "; }
.hero-tile-gbp .stat {
  margin-top: 0.6rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line-3);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.74rem;
}
.hero-tile-gbp .stat .num { font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.hero-tile-gbp .stat .delta { color: #137333; font-weight: 600; }

/* Tile 3: IG post notification — top-right, small */
.hero-tile-ig {
  top: 22%; right: -2%;
  width: 190px;
  transform: rotate(2.5deg) translateZ(40px);
  z-index: 2;
  animation-delay: 1.2s;
  padding: 0.6rem;
}
.hero-tile-ig .top { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.55rem; }
.hero-tile-ig .mini-ig {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: conic-gradient(from 225deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
}
.hero-tile-ig .txt { font-size: 0.74rem; color: var(--ink); font-weight: 500; line-height: 1.3; }
.hero-tile-ig .txt strong { color: var(--ink); font-weight: 700; }
.hero-tile-ig .thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background-image: url('images/table-spread.png');
  background-size: cover; background-position: center;
}

/* Mouse parallax target */
.hero-tile[data-depth] { transform-origin: center; }

@media (max-width: 900px) {
  .hero-product-inner { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero-product-viz { height: 560px; }
  .hero-tile-ig { display: none; }
  .hero-tile-review, .hero-tile-gbp { transform: none; }
  .hero-tile-review { top: 4%; left: 50%; transform: translateX(-50%); width: min(260px, 80vw); }
  .hero-tile-gbp { bottom: 4%; right: 50%; transform: translateX(50%); width: min(240px, 70vw); }
}
@media (max-width: 540px) {
  .hero-tile-review, .hero-tile-gbp { display: none; }
  .hero-product-viz .phone-mockup { transform: rotateY(0); animation: none; }
}

/* =================================================================
   SHOWCASE — animated phone + WhatsApp thread
   ================================================================= */

.showcase {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232, 217, 183, 0.5) 0%, transparent 45%),
    radial-gradient(ellipse at 20% 90%, rgba(124, 47, 34, 0.06) 0%, transparent 40%),
    var(--paper);
  overflow: hidden;
}
.showcase-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.showcase-copy {
  max-width: 32ch;
}
.showcase-copy .eyebrow { margin-bottom: 1.25rem; }
.showcase-copy h2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin: 0.75rem 0 1.5rem;
}
.showcase-copy h2 .accent { color: var(--oxblood); font-style: italic; font-weight: 400; }
.showcase-copy p {
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.showcase-copy .steps-pill {
  list-style: none;
  margin-top: 1.5rem;
}
.showcase-copy .steps-pill li {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(252, 248, 238, 0.7);
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  color: var(--ink-2);
  margin-bottom: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.showcase-copy .steps-pill li:hover {
  border-color: var(--oxblood);
  transform: translateX(4px);
}
.showcase-copy .steps-pill li::before {
  content: "→";
  color: var(--oxblood);
  font-weight: 600;
}

/* Phone stage */
.phone-stage {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  perspective: 1600px;
  min-height: 620px;
}
.phone-mockup {
  position: relative;
  width: 300px; height: 610px;
  transform-style: preserve-3d;
  transform: rotateX(2deg) rotateY(-14deg) rotateZ(0.5deg);
  transition: transform 0.6s var(--ease);
  animation: phoneFloat 8s ease-in-out infinite;
  will-change: transform;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotateX(2deg) rotateY(-14deg) translateY(0); }
  50% { transform: rotateX(3deg) rotateY(-13deg) translateY(-10px); }
}

.phone-frame {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(165deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 60px 80px -30px rgba(14, 11, 6, 0.55),
    0 30px 40px -20px rgba(14, 11, 6, 0.35),
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12);
}
.phone-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 47px;
  background: linear-gradient(145deg, rgba(255,255,255,0.25), transparent 50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #ece5dd; /* WhatsApp bg */
  background-image:
    linear-gradient(180deg, #0B825A 0%, #0B825A 54px, #ECE5DD 54px);
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 30px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 10;
}

/* WhatsApp header */
.wa-header {
  position: relative; z-index: 2;
  padding: 14px 14px 10px;
  padding-top: 48px;
  display: flex; align-items: center; gap: 0.7rem;
  color: #fff;
}
.wa-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  overflow: hidden;
  background: #142540;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15), inset 0 0 0 1px rgba(255,255,255,0.06);
}
.wa-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.25);
}
.wa-who { display: flex; flex-direction: column; gap: 1px; line-height: 1.15; }
.wa-name { font-family: var(--sans); font-size: 0.88rem; font-weight: 600; letter-spacing: -0.005em; }
.wa-status { font-size: 0.66rem; opacity: 0.88; font-weight: 400; }
.wa-status .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #9ef9ee;
  border-radius: 50%;
  margin-right: 3px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

/* Message thread */
.wa-thread {
  padding: 0.85rem 0.85rem 1rem;
  display: flex; flex-direction: column;
  gap: 0.45rem;
  height: calc(100% - 110px);
  overflow: hidden;
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(14,11,6,0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(14,11,6,0.04) 0%, transparent 35%);
}
.wa-msg {
  max-width: 80%;
  padding: 0.48rem 0.65rem 0.4rem;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 0.72rem;
  line-height: 1.4;
  color: #111;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(14, 11, 6, 0.1);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
}
.wa-msg.show { opacity: 1; transform: none; }
.wa-msg .t { display: inline-block; font-size: 0.6rem; opacity: 0.55; margin-left: 0.35rem; margin-top: 2px; }
.wa-msg .tick {
  display: inline-block;
  color: #53BDEB;
  font-size: 0.62rem;
  margin-left: 2px;
  vertical-align: middle;
  font-weight: 700;
}
.wa-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.wa-out::after {
  content: "";
  position: absolute;
  right: -5px; top: 0;
  width: 0; height: 0;
  border-left: 6px solid #DCF8C6;
  border-top: 6px solid transparent;
}
.wa-in {
  background: #FFFFFF;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.wa-in::after {
  content: "";
  position: absolute;
  left: -5px; top: 0;
  width: 0; height: 0;
  border-right: 6px solid #FFFFFF;
  border-top: 6px solid transparent;
}

/* Typing dots */
.wa-typing {
  display: inline-flex; gap: 3px;
  padding: 0.5rem 0.75rem;
  background: #FFFFFF;
  border-radius: 10px;
  border-bottom-left-radius: 3px;
  align-self: flex-start;
  box-shadow: 0 1px 0.5px rgba(14,11,6,0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.wa-typing.show { opacity: 1; transform: none; }
.wa-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(14,11,6,0.35);
  animation: typingDot 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.35; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Input bar at bottom of phone */
.wa-input {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.55rem 0.65rem;
  background: #F0F0F0;
  display: flex; align-items: center; gap: 0.4rem;
  border-top: 1px solid rgba(14,11,6,0.06);
}
.wa-input-bar {
  flex: 1;
  height: 28px;
  background: #fff;
  border-radius: 14px;
  display: flex; align-items: center;
  padding: 0 0.65rem;
  font-size: 0.64rem;
  color: rgba(14,11,6,0.45);
}
.wa-input-send {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.7rem;
  flex-shrink: 0;
}

/* Floating badge annotations beside the phone */
.phone-badge {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 18px 40px -18px rgba(14,11,6,0.25), 0 2px 8px rgba(14,11,6,0.05);
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.phone-badge.show { opacity: 1; transform: translate3d(0, 0, 0); }
.phone-badge-label {
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.phone-badge-value {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.phone-badge-value .accent { color: var(--oxblood); }
.phone-badge-1 { top: 60px; right: -10px; transform: translate3d(0,10px,0) rotate(3deg); }
.phone-badge-1.show { transform: rotate(3deg); }
.phone-badge-2 { bottom: 100px; left: -20px; transform: translate3d(0,10px,0) rotate(-2deg); }
.phone-badge-2.show { transform: rotate(-2deg); }
.phone-badge-3 { top: 280px; right: -30px; transform: translate3d(0,10px,0) rotate(1.5deg); }
.phone-badge-3.show { transform: rotate(1.5deg); }

@media (max-width: 900px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 3rem; }
  .phone-stage { min-height: 560px; }
  .phone-mockup { width: 270px; height: 550px; transform: rotateY(0); animation: none; }
  .phone-badge { display: none; }
}

/* =================================================================
   BENTO — What Nexura ships
   ================================================================= */

.bento-section {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
}
.bento-section .section-inner { max-width: var(--max); margin: 0 auto; }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  perspective: 1500px;
}
.bento-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  overflow: hidden;
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  will-change: transform;
  transform-style: preserve-3d;
  cursor: default;
}
.bento-card:hover {
  border-color: var(--line);
  box-shadow: 0 28px 56px -28px rgba(14,11,6,0.28), 0 4px 12px rgba(14,11,6,0.06);
  transform: perspective(1500px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateZ(10px);
}
.bento-card .bento-label {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.bento-card .bento-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
  color: var(--ink);
}
.bento-card .bento-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 34ch;
}
.bento-visual {
  margin-top: auto;
  position: relative;
  flex: 1;
  min-height: 140px;
  display: flex; align-items: center; justify-content: center;
}

/* Bento cell sizes */
.bento-1 { grid-column: span 3; grid-row: span 2; }
.bento-2 { grid-column: span 3; grid-row: span 1; }
.bento-3 { grid-column: span 3; grid-row: span 1; }
.bento-4 { grid-column: span 2; grid-row: span 1; }
.bento-5 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(200px, auto); }
  .bento-1 { grid-column: span 2; grid-row: span 1; }
  .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5 { grid-column: span 1; }
}

/* Bento visuals — stylised mini UIs */

/* Instagram grid preview */
.viz-ig {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 14px 32px -18px rgba(14,11,6,0.28);
}
.viz-ig-tile {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}
.viz-ig-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%);
}
.viz-ig-tile.t1 { background-image: url('images/table-spread.png'); }
.viz-ig-tile.t2 { background-image: url('images/cafe-handoff.png'); }
.viz-ig-tile.t3 { background-image: url('images/latte-art.png'); }
.viz-ig-tile.t4 { background-image: url('images/restaurant-alive.png'); }
.viz-ig-tile.t5 { background-image: url('images/scallops.png'); background-color: #1a1a1a; }
.viz-ig-tile.t6 { background-image: url('images/wagyu-plate.png'); background-color: #1a1a1a; }

/* Google Business card */
.viz-gbp {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 0.9rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 14px 32px -18px rgba(14,11,6,0.24);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.82rem;
  color: #202124;
}
.viz-gbp-title { font-weight: 500; font-size: 0.95rem; color: #1a0dab; letter-spacing: -0.01em; }
.viz-gbp-stars { display: flex; align-items: center; gap: 0.3rem; margin-top: 0.25rem; color: #70757a; font-size: 0.74rem; }
.viz-gbp-stars .s { color: #FBBC04; letter-spacing: 1px; }
.viz-gbp-meta {
  display: flex; gap: 0.6rem; margin-top: 0.4rem; align-items: center;
  font-size: 0.72rem; color: #5f6368;
}
.viz-gbp-meta .dot { width: 3px; height: 3px; background: #5f6368; border-radius: 50%; }
.viz-gbp-meta .open { color: #137333; font-weight: 500; }
.viz-gbp-meta .open::before { content: "● "; color: #137333; }

/* Email preview */
.viz-email {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 0.9rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 14px 32px -18px rgba(14,11,6,0.22);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
  color: #202124;
}
.viz-email-from {
  display: flex; align-items: center; gap: 0.45rem;
  margin-bottom: 0.4rem;
}
.viz-email-avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--oxblood), var(--amber));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.62rem; letter-spacing: -0.02em;
}
.viz-email-name { font-weight: 500; font-size: 0.74rem; }
.viz-email-time { margin-left: auto; font-size: 0.65rem; color: #5f6368; }
.viz-email-subject { font-weight: 600; color: #202124; margin-bottom: 0.2rem; letter-spacing: -0.005em; }
.viz-email-preview { color: #5f6368; font-size: 0.7rem; line-height: 1.45; }
.viz-email-preview em { font-style: normal; color: var(--oxblood); font-weight: 500; }

/* Review reply */
.viz-review {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 0.9rem;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 14px 32px -18px rgba(14,11,6,0.22);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.76rem;
}
.viz-review-head { display: flex; gap: 0.5rem; align-items: center; }
.viz-review-avatar { width: 22px; height: 22px; border-radius: 50%; background: #D1A981; color: #fff; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 600; }
.viz-review-stars { color: #FBBC04; letter-spacing: 1px; font-size: 0.78rem; margin: 0.35rem 0; }
.viz-review-body { color: #202124; font-size: 0.7rem; line-height: 1.45; }
.viz-review-reply {
  margin-top: 0.55rem; padding: 0.55rem 0.65rem;
  background: rgba(124, 47, 34, 0.05);
  border-left: 2px solid var(--oxblood);
  border-radius: 0 6px 6px 0;
  font-size: 0.68rem; color: var(--ink);
  line-height: 1.5;
}
.viz-review-reply .label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--oxblood); margin-bottom: 0.2rem;
}

/* Monthly report visual (optional fifth cell) */
.viz-report {
  display: flex; align-items: center; gap: 1rem; justify-content: center;
  width: 100%; max-width: 320px;
}
.viz-report-row {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
}
.viz-report-stat {
  display: flex; align-items: baseline; gap: 0.5rem;
  padding: 0.4rem 0.7rem;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(14,11,6,0.04);
}
.viz-report-stat .num { font-weight: 600; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--ink); }
.viz-report-stat .lbl { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.06em; }
.viz-report-stat .delta { font-size: 0.68rem; font-weight: 600; color: #137333; margin-left: 0.2rem; }
.viz-report-stat .delta.down { color: #c5221f; }

/* =================================================================
   MANIFESTO — big-type pull quote
   ================================================================= */

.manifesto {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(124, 47, 34, 0.06) 0%, transparent 50%),
    var(--paper);
  padding: clamp(6rem, 12vw, 10rem) var(--pad-x);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  text-align: center;
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto blockquote {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 24ch;
  margin: 0 auto;
  text-wrap: balance;
  position: relative;
}
.manifesto blockquote em {
  font-style: italic;
  font-weight: 500;
  color: var(--oxblood);
}
.manifesto blockquote::before {
  content: "\201C";
  position: absolute;
  top: -0.8em; left: -0.3em;
  font-family: var(--sans);
  font-size: 5em;
  color: var(--line);
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
}
.manifesto cite {
  display: block;
  margin-top: 2.25rem;
  font-family: var(--body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.manifesto cite::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: var(--muted); margin-right: 0.8rem;
  vertical-align: middle;
}

/* =================================================================
   Context strip — "Message → Drafts → Approved → Live"
   ================================================================= */

.context-strip {
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
  background: var(--cream);
  border-bottom: 1px solid var(--line-2);
}
.context-strip .wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.context-strip .eyebrow { margin-bottom: 0; white-space: nowrap; }
.flow {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0.65rem;
}
.flow .pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.flow .pill:hover { border-color: var(--oxblood); transform: translateY(-1px); }
.flow .pill .num {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.flow .arr { color: var(--muted); font-size: 0.9rem; }
@media (max-width: 820px) {
  .context-strip .wrap { grid-template-columns: 1fr; gap: 1rem; }
}

/* =================================================================
   Subpage product hero variants (services / pricing / founders)
   ================================================================= */

/* Services viz — "Today's work" task checklist + floating tiles */
.viz-tasklist {
  position: relative;
  width: 340px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow:
    0 48px 90px -40px rgba(14,11,6,0.35),
    0 10px 24px -12px rgba(14,11,6,0.1),
    inset 0 1px 0 rgba(255,255,255,0.7);
  transform: rotateY(-7deg) rotateX(3deg);
  transform-style: preserve-3d;
  animation: heroPhoneFloat 9s ease-in-out infinite;
  will-change: transform;
}
.viz-tasklist-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-2);
  margin-bottom: 0.9rem;
}
.viz-tasklist-head .eyebrow { margin-bottom: 0; font-size: 0.66rem; letter-spacing: 0.16em; }
.viz-tasklist-head .date {
  font-family: var(--body);
  font-size: 0.78rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.viz-task {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 0.65rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line-3);
  align-items: center;
}
.viz-task:first-of-type { border-top: 0; padding-top: 0; }
.viz-task .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  position: relative;
  flex-shrink: 0;
}
.viz-task.done .check {
  background: var(--oxblood);
  border-color: var(--oxblood);
}
.viz-task.done .check::after {
  content: "";
  position: absolute;
  left: 4px; top: 2px;
  width: 4px; height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.viz-task .label {
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 500;
}
.viz-task.done .label { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--line); }
.viz-task .meta {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.viz-task.active .check {
  background: #fff;
  border-color: var(--oxblood);
}
.viz-task.active .check::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--oxblood);
  animation: pulse 1.8s ease-in-out infinite;
}

/* Pricing viz — three tier cards fanned */
.viz-tiers {
  position: relative;
  width: 360px; height: 440px;
  transform-style: preserve-3d;
}
.viz-tier-card {
  position: absolute;
  width: 260px;
  padding: 1.4rem 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  box-shadow:
    0 36px 80px -36px rgba(14,11,6,0.3),
    0 6px 16px rgba(14,11,6,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.viz-tier-card:hover {
  box-shadow: 0 48px 100px -40px rgba(14,11,6,0.4);
}
.viz-tier-card .tier-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.viz-tier-card .tier-price {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 2.25rem;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.viz-tier-card .tier-price .per {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin-left: 0.3rem;
  vertical-align: super;
}
.viz-tier-card .tier-desc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.viz-tier-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.viz-tier-card ul li {
  font-size: 0.76rem;
  color: var(--ink-2);
  padding-left: 1rem;
  position: relative;
}
.viz-tier-card ul li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--oxblood);
}
.viz-tier-card.t1 {
  top: 40px; left: 0;
  transform: rotate(-5deg) translateZ(0);
  z-index: 1;
}
.viz-tier-card.t2 {
  top: 10px; left: 45px;
  transform: rotate(0deg) translateZ(30px);
  z-index: 3;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.viz-tier-card.t2 .tier-name,
.viz-tier-card.t2 .tier-price { color: var(--paper); }
.viz-tier-card.t2 .tier-desc { color: rgba(247,242,230,0.7); }
.viz-tier-card.t2 .tier-price .per { color: rgba(247,242,230,0.7); }
.viz-tier-card.t2 ul li { color: rgba(247,242,230,0.88); }
.viz-tier-card.t2 ul li::before { background: var(--amber-soft); }
.viz-tier-card.t2::after {
  content: "Most chosen";
  position: absolute;
  top: -10px; right: 14px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(184, 132, 50, 0.3);
}
.viz-tier-card.t3 {
  top: 50px; right: 0;
  transform: rotate(4deg) translateZ(10px);
  z-index: 2;
}

/* Founder preview cards */
.viz-founders {
  position: relative;
  width: 400px; height: 440px;
  transform-style: preserve-3d;
}
.viz-founder-card {
  position: absolute;
  width: 215px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 0.8rem 0.8rem 1.1rem;
  box-shadow: 0 36px 80px -36px rgba(14,11,6,0.3), 0 6px 16px rgba(14,11,6,0.07);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.viz-founder-card:hover {
  box-shadow: 0 48px 100px -40px rgba(14,11,6,0.4);
}
.viz-founder-photo {
  aspect-ratio: 4/5;
  border-radius: 12px;
  background: var(--bone);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  position: relative;
  overflow: hidden;
}
.viz-founder-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.viz-founder-card .role {
  font-family: var(--body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.viz-founder-card h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.viz-founder-card.f1 {
  top: 0; left: 0;
  transform: rotate(-5deg) translateZ(20px);
  z-index: 2;
}
.viz-founder-card.f2 {
  top: 50px; right: 0;
  transform: rotate(5deg) translateZ(40px);
  z-index: 3;
}

/* =================================================================
   Instagram-feed phone mockup (replaces split photo)
   ================================================================= */

.viz-ig-phone {
  position: relative;
  width: 320px;
  margin: 0 auto;
  background: linear-gradient(165deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 46px;
  padding: 12px;
  box-shadow:
    0 60px 90px -30px rgba(14,11,6,0.45),
    0 20px 40px -20px rgba(14,11,6,0.35);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.8s var(--ease);
  animation: heroPhoneFloat 10s ease-in-out infinite;
  will-change: transform;
}
.viz-ig-phone-screen {
  aspect-ratio: 9/19.5;
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}
.viz-ig-notch {
  position: absolute;
  top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px;
  background: #0a0a0a;
  border-radius: 20px;
  z-index: 10;
}
.viz-ig-topbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 46px 14px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.viz-ig-topbar .brand {
  font-family: -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #262626;
  letter-spacing: -0.01em;
}
.viz-ig-topbar .icons { display: flex; gap: 0.75rem; color: #262626; font-size: 0.9rem; }

.viz-ig-stories {
  display: flex; gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}
.viz-ig-story {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: conic-gradient(from 225deg, #FEDA75, #FA7E1E, #D62976, #962FBF, #4F5BD5);
  padding: 2px;
  flex-shrink: 0;
}
.viz-ig-story::after {
  content: "";
  display: block; width: 100%; height: 100%;
  border-radius: 50%;
  background: center / cover;
  border: 2px solid #fff;
}
.viz-ig-story.s1::after { background-image: url('images/table-spread.png'); }
.viz-ig-story.s2::after { background-image: url('images/latte-art.png'); }
.viz-ig-story.s3::after { background-image: url('images/cafe-handoff.png'); }
.viz-ig-story.s4::after { background-image: url('images/restaurant-alive.png'); }
.viz-ig-story.s5::after { background-image: url('images/scallops.png'); }

.viz-ig-post {
  padding: 0.55rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.viz-ig-post .head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0 0.75rem 0.55rem;
}
.viz-ig-post .head .av {
  width: 28px; height: 28px; border-radius: 50%;
  background-size: cover; background-position: center;
  background-image: url('images/restaurant-alive.png');
}
.viz-ig-post .head .name {
  font-family: -apple-system, "Segoe UI", sans-serif;
  font-size: 0.78rem; font-weight: 600; color: #262626;
}
.viz-ig-post .head .meta {
  font-size: 0.68rem; color: #8e8e8e;
}
.viz-ig-post .img {
  width: 100%; aspect-ratio: 4/4;
  background-image: url('images/table-spread.png');
  background-size: cover; background-position: center;
}
.viz-ig-post .actions {
  display: flex; gap: 0.7rem;
  padding: 0.5rem 0.75rem 0.2rem;
  font-size: 0.85rem;
  color: #262626;
}
.viz-ig-post .actions .heart { color: #ed4956; }
.viz-ig-post .caption {
  padding: 0 0.75rem 0.15rem;
  font-family: -apple-system, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  color: #262626;
  line-height: 1.4;
}
.viz-ig-post .caption strong { font-weight: 700; }
.viz-ig-post .caption .brand { font-weight: 600; color: var(--oxblood); }
.viz-ig-post .likes {
  padding: 0 0.75rem 0.4rem;
  font-size: 0.72rem; font-weight: 600; color: #262626;
}

/* =================================================================
   EDITORIAL DISPLAY — Fraunces serif on headlines only.
   Component titles deliberately stay grotesk (var --sans) for contrast.
   Appended last so it wins over the per-component font-family rules above.
   ================================================================= */
.display,
.hero-product-copy h1,
.hero-cinematic h1,
.page-head h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
}
/* Serif reads cramped at grotesk tracking — relax it. Specificity matched so
   the per-size .display rules don't win the cascade. */
h1.display, h2.display, h3.display,
.hero-product-copy h1, .hero-cinematic h1, .page-head h1 {
  letter-spacing: -0.018em;
}
/* Italic accent word — the editorial signature. */
.hero-product-copy h1 .accent,
.hero-cinematic h1 .accent {
  font-style: italic;
  font-weight: 400;
}

/* Founder portraits: sources are only ~280px, so cap the frame to avoid
   upscaling them into blur, and drop the hover-zoom that magnifies it.
   Swap in ~1000px+ square images to safely display them larger. */
.founder-photo {
  max-width: 300px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.founder:hover .founder-photo img { transform: none; }
