/* =============================================================================
   MyApollo v3 — Home page styles
   Sits on top of v3-tokens.css + v3-components.css. Page-only flourishes go here.
   ============================================================================= */

.v3-home {
  background: var(--bg);
  position: relative;
}

/* ── Ambient background layers (restored from v2, modernized) ─────────── */
.v3-bg-base {
  position: fixed; inset: 0; z-index: -4;
  background:
    radial-gradient(ellipse at 15% 45%, rgba(201, 168, 76, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(184, 92, 92, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(201, 168, 76, 0.03) 0%, transparent 40%),
    var(--bg);
  pointer-events: none;
}
[data-theme="light"] .v3-bg-base {
  background:
    radial-gradient(ellipse at 15% 45%, rgba(201, 168, 76, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(184, 92, 92, 0.08) 0%, transparent 50%),
    var(--bg);
}

/* Floating Greek letters — Α Ω Θ Σ */
.v3-bg-greek {
  position: fixed; inset: 0; z-index: -3;
  pointer-events: none; overflow: hidden;
}
.v3-gk {
  position: absolute;
  font-family: var(--font-display);
  color: var(--gold);
  opacity: 0.04;
  font-weight: 300;
  user-select: none;
  line-height: 1;
}
.v3-gk-1 { font-size: 32vw; top: -10%; right: -6%; transform: rotate(-12deg); }
.v3-gk-2 { font-size: 20vw; bottom: -5%; left: -4%; transform: rotate(8deg); }
.v3-gk-3 { font-size: 14vw; top: 30%; left: 45%; transform: rotate(-6deg); opacity: 0.025; }
.v3-gk-4 { font-size: 9vw;  top: 65%; right: 8%; transform: rotate(18deg); opacity: 0.022; }
[data-theme="light"] .v3-gk { color: #1a1814; opacity: 0.05; }

/* Subtle gold grid */
.v3-bg-grid {
  position: fixed; inset: 0; z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
[data-theme="light"] .v3-bg-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
}

/* Vertical gold gutter lines */
.v3-gvl {
  position: fixed; width: 1px; height: 100vh; top: 0;
  background: linear-gradient(180deg, transparent 5%, rgba(201, 168, 76, 0.08) 50%, transparent 95%);
  z-index: -1; pointer-events: none;
}
.v3-gvl-l { left: 18%; }
.v3-gvl-r { right: 18%; }
@media (max-width: 768px) { .v3-gvl { display: none; } }

/* ── Greek meander divider (between sections) ─────────────────────────── */
.v3-meander {
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 8px,
    transparent 8px 12px,
    var(--gold) 12px 14px,
    transparent 14px 18px
  );
  opacity: 0.18;
  margin: 0;
}

/* Greek section banner — appears before each major section */
.v3-sg {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  letter-spacing: 0.6em;
  font-weight: 500;
  color: var(--gold);
  opacity: 0.32;
  text-transform: uppercase;
  padding: var(--sp-5) 0 0;
  user-select: none;
}
@media (max-width: 720px) {
  .v3-sg { letter-spacing: clamp(0.32em, 2.6vw, 0.6em); }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.v3-hero {
  padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.v3-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
@media (min-width: 960px) {
  .v3-hero__grid { grid-template-columns: 1.15fr 1fr; gap: 64px; }
}
.v3-hero__title {
  font: var(--font-display-xl);
  letter-spacing: -0.012em;
}
.v3-hero__title em { font-style: italic; color: var(--gold-light); }
.v3-hero__sub {
  font: var(--font-body-lg);
  color: var(--ink-dim);
  max-width: 50ch;
  margin-top: var(--sp-4);
}
.v3-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.v3-hero__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--r-pill);
  font: 500 0.8125rem/1 var(--font-body);
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.v3-hero__ribbon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.18);
  animation: v3-pulse 2.4s var(--ease) infinite;
}
@keyframes v3-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
@media (prefers-reduced-motion: reduce) {
  .v3-hero__ribbon-dot { animation: none; }
}

/* Photo card on the right */
.v3-hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line-2);
  background: var(--surface-2);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  max-width: 480px;
  margin-inline: auto;
  width: 100%;
}
.v3-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v3-hero__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,12,10,0.78) 100%);
  z-index: 1;
}
.v3-hero__photo-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-5);
  z-index: 2;
  color: var(--ink);
}
.v3-hero__photo-meta .v3-display-md { color: var(--cream); }
.v3-hero__rating {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--gold);
  border-radius: var(--r-pill);
  font: 600 0.875rem/1 var(--font-body);
  color: var(--gold-light);
}
/* Gold corner accent */
.v3-hero__corner {
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 56px;
  z-index: 2;
  pointer-events: none;
}
.v3-hero__corner::before,
.v3-hero__corner::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.v3-hero__corner::before { top: 16px; left: 16px; width: 24px; height: 1px; }
.v3-hero__corner::after  { top: 16px; left: 16px; width: 1px; height: 24px; }

/* ── Trust band ────────────────────────────────────────────────────────── */
.v3-trust-band {
  padding: var(--sp-5) 0 var(--sp-7);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.v3-trust-band__inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  align-items: center;
}

/* ── Section frame ─────────────────────────────────────────────────────── */
.v3-section {
  padding: clamp(56px, 8vw, 96px) 0;
}
.v3-section__head {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}
.v3-section__head .v3-kicker { color: var(--gold); }
.v3-section__head h2 {
  font: var(--font-display-lg);
  letter-spacing: -0.005em;
}

/* ── Stat stack ────────────────────────────────────────────────────────── */
.v3-stat {
  display: grid;
  gap: 4px;
}
.v3-stat__num {
  font: var(--font-display-md);
  color: var(--cream);
}
.v3-stat__lbl {
  font: var(--font-body-sm);
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Bio band ──────────────────────────────────────────────────────────── */
.v3-bio {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (min-width: 960px) {
  .v3-bio { grid-template-columns: 1fr 1fr; }
}
.v3-bio__quote {
  font: var(--font-italic-accent);
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: var(--sp-4);
  margin-top: var(--sp-5);
}

/* ── How it works ──────────────────────────────────────────────────────── */
.v3-how {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .v3-how { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
}
.v3-how__tile {
  position: relative;
  padding-top: var(--sp-7);
}
.v3-how__numeral {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-5);
  font: 700 4rem/1 var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
  pointer-events: none;
}
.v3-how__tile h3 {
  font: var(--font-display-md);
  margin-bottom: var(--sp-2);
}
.v3-how__tile p {
  color: var(--ink-dim);
  max-width: 32ch;
}

/* ── Two-paths binary (Book / Apply) ──────────────────────────────────── */
.v3-paths {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) {
  .v3-paths { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}
.v3-paths__tile {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: clamp(28px, 4vw, 44px);
  min-height: 280px;
}
.v3-paths__tile h3 {
  font: var(--font-display-lg);
  letter-spacing: -0.005em;
}
.v3-paths__tile h3 em {
  font-style: italic;
  color: var(--gold-light);
}
.v3-paths__tile p {
  color: var(--ink-dim);
  max-width: 40ch;
}
.v3-paths__cta {
  margin-top: auto;
}
.v3-paths--rose .v3-paths__tile h3 em { color: #d68080; }

/* ── PLOT advertising band ─────────────────────────────────────────────────
   Distinct from MyApollo's gold/rose palette. Borrowed from the actual /plot
   product (magenta → cyan), so visually it reads as a separate sister product.
   ───────────────────────────────────────────────────────────────────────── */
.v3-plot {
  --plot-magenta: #ff3ea5;
  --plot-cyan:    #2ee5ff;
  --plot-purple:  #6a3cff;
  --plot-lime:    #c5ff3a;
  position: relative;
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 62, 165, 0.30), transparent 50%),
    radial-gradient(circle at 82% 80%, rgba(46, 229, 255, 0.26), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(106, 60, 255, 0.22), transparent 60%),
    var(--surface-2);
  border: 1px solid rgba(255, 62, 165, 0.28);
  box-shadow: var(--shadow-card);
}
.v3-plot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, black 0%, transparent 90%);
}
.v3-plot__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 768px) {
  .v3-plot__inner { grid-template-columns: 1.4fr 1fr; gap: var(--sp-7); }
}
.v3-plot__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 62, 165, 0.18);
  border: 1px solid rgba(255, 62, 165, 0.4);
  color: #ffe8f3;
  font: 700 0.6875rem/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.v3-plot__kicker::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--plot-magenta);
  box-shadow: 0 0 12px var(--plot-magenta);
}
.v3-plot__title {
  /* PLOT uses Bricolage Grotesque; we don't load it on this page to keep the
     font budget tight, so use heavy DM Sans + tight tracking to evoke it. */
  font: 800 clamp(2.5rem, 6vw, 4.25rem)/0.95 var(--font-body);
  letter-spacing: -0.04em;
  margin-top: var(--sp-3);
  background: linear-gradient(135deg, #ffe8f3 0%, #b9f7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v3-plot__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--plot-magenta) 0%, var(--plot-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v3-plot__tag {
  font: var(--font-body-lg);
  color: rgba(255,255,255,0.78);
  margin-top: var(--sp-3);
  max-width: 44ch;
}
.v3-plot__chips {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.v3-plot__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.82);
  font: 500 0.8125rem/1 var(--font-body);
}
.v3-plot__cta {
  margin-top: var(--sp-6);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; min-height: 44px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--plot-magenta) 0%, var(--plot-purple) 100%);
  color: white;
  font: 600 0.9375rem/1 var(--font-body);
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(255, 62, 165, 0.32);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
}
.v3-plot__cta:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 62, 165, 0.5);
}

/* PLOT phone mockup on the right */
.v3-plot__phone {
  display: none;
  margin-inline: auto;
  width: 240px;
  aspect-ratio: 9 / 18;
  border-radius: 36px;
  background: linear-gradient(180deg, #0a0014 0%, #1a0030 100%);
  border: 1px solid rgba(255, 62, 165, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 32px 64px rgba(0,0,0,0.5),
    0 0 60px rgba(46, 229, 255, 0.16);
}
@media (min-width: 768px) { .v3-plot__phone { display: block; } }
.v3-plot__phone::before {
  content: "PLOT";
  position: absolute; top: 28%; left: 0; right: 0;
  text-align: center;
  font: 800 2.5rem/1 var(--font-body);
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--plot-magenta) 0%, var(--plot-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.v3-plot__phone::after {
  content: "what's the plot tonight?";
  position: absolute; top: calc(28% + 50px); left: 0; right: 0;
  text-align: center;
  font: 400 0.7rem/1.4 var(--font-body);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
/* Floating dots inside the phone */
.v3-plot__phone .dot {
  position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  opacity: 0.7;
}
.v3-plot__phone .dot:nth-child(1) { top: 18%; left: 22%; background: var(--plot-magenta); box-shadow: 0 0 12px var(--plot-magenta); }
.v3-plot__phone .dot:nth-child(2) { top: 70%; right: 26%; background: var(--plot-cyan);   box-shadow: 0 0 12px var(--plot-cyan); }
.v3-plot__phone .dot:nth-child(3) { top: 80%; left: 30%;  background: var(--plot-lime);   box-shadow: 0 0 12px var(--plot-lime); }

/* ── Footer ────────────────────────────────────────────────────────────── */
.v3-foot {
  border-top: 1px solid var(--line);
  padding: var(--sp-7) 0;
  color: var(--ink-dim);
}
.v3-foot__cols {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .v3-foot__cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.v3-foot h4 {
  font: 700 0.6875rem/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: var(--sp-3);
}
.v3-foot ul li + li { margin-top: 8px; }
.v3-foot a:hover { color: var(--ink); }
.v3-foot__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-3);
  font: var(--font-body-sm);
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: var(--sp-5);
}
.v3-foot__bottom a:hover { color: var(--ink); }

/* Ask AI mini-row */
.v3-ai-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.v3-ai-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  background: var(--glass-bg);
  border: 1px solid var(--line-2);
  font: 500 0.8125rem/1 var(--font-body);
  color: var(--ink-dim);
  transition: border-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.v3-ai-pill:hover { border-color: var(--gold); color: var(--ink); }

/* ── Scroll-reveal helper ──────────────────────────────────────────────── */
.v3-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.v3-reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .v3-reveal { opacity: 1; transform: none; transition: none; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Logo / nav (richer treatment, restored from v2)
   ────────────────────────────────────────────────────────────────────────── */
.v3-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.v3-logo__wm {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.04em;
  text-shadow: 0 0 18px rgba(201, 168, 76, 0.3);
  line-height: 1;
}
.v3-logo__wm em {
  font-weight: 300;
  opacity: 0.55;
  font-style: normal;
}
.v3-logo__sep {
  width: 1px; height: 18px;
  background: var(--line-2);
}
.v3-logo__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.63rem;
  font-weight: 700;
  font-family: var(--font-body);
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.28);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.v3-logo__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ec27b;
  box-shadow: 0 0 8px rgba(78, 194, 123, 0.7);
  animation: v3-logo-pulse 2.4s var(--ease) infinite;
}
@keyframes v3-logo-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) {
  .v3-logo__dot { animation: none; }
}
@media (max-width: 720px) {
  .v3-logo__wm { font-size: 1.15rem; }
  .v3-logo__sep, .v3-logo__badge { display: none; }
}

/* Footer Greek tag — ΑΠΟΛΛΩΝ */
.v3-fgk {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.18;
  letter-spacing: 0.6em;
  text-align: center;
  margin-bottom: var(--sp-5);
  user-select: none;
}

/* ──────────────────────────────────────────────────────────────────────────
   Prominent "Continue with Google" nav button
   ────────────────────────────────────────────────────────────────────────── */
.v3-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 12px;
  min-height: 40px;
  border-radius: var(--r-pill);
  background: var(--cream);
  color: #1a1814;
  border: 1px solid var(--line-2);
  font: 600 0.875rem/1 var(--font-body);
  letter-spacing: 0.005em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18), 0 0 0 1px rgba(201,168,76,0.18);
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background var(--t-base) var(--ease);
  white-space: nowrap;
}
.v3-google-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.28), 0 0 0 1px var(--gold);
  background: #fffaef;
}
.v3-google-btn__g {
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.v3-google-btn__label-short { display: none; }
@media (max-width: 1024px) {
  .v3-google-btn__label { display: none; }
  .v3-google-btn__label-short { display: inline; }
}
@media (max-width: 720px) {
  .v3-google-btn { padding: 8px 12px 8px 10px; min-height: 36px; font-size: 0.8125rem; }
}

/* ──────────────────────────────────────────────────────────────────────────
   Photo card chrome (richer Iain hero card)
   ────────────────────────────────────────────────────────────────────────── */
.v3-hero__photo {
  background:
    linear-gradient(135deg, rgba(201,168,76,0.06) 0%, transparent 40%),
    var(--surface-2);
}
.v3-hero__photo::after {
  /* Inner gold rim */
  content: "";
  position: absolute; inset: 8px;
  border-radius: calc(var(--r-xl) - 6px);
  border: 1px solid rgba(201, 168, 76, 0.14);
  pointer-events: none;
  z-index: 1;
}
.v3-hero__corner {
  width: 72px; height: 72px;
}
.v3-hero__corner::before { width: 32px; left: 18px; top: 18px; }
.v3-hero__corner::after  { height: 32px; left: 18px; top: 18px; }
.v3-hero__photo-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: var(--sp-3);
}
.v3-hero__photo-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font: 500 0.6875rem/1 var(--font-body);
  letter-spacing: 0.04em;
  color: rgba(245,240,230,0.78);
  padding: 5px 10px;
  background: rgba(15,14,12,0.5);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Make every bento card explicitly glass */
.v3-bento {
  background:
    linear-gradient(180deg, rgba(245,240,230,0.04) 0%, rgba(245,240,230,0.01) 100%),
    var(--surface-2);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.v3-glass {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

/* ──────────────────────────────────────────────────────────────────────────
   Ask AI cards (icons restored, rich glass treatment)
   ────────────────────────────────────────────────────────────────────────── */
.v3-ai-section {
  padding: var(--sp-7) 0;
}
.v3-ai-head {
  text-align: center;
  margin-bottom: var(--sp-6);
}
.v3-ai-kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font: 700 0.6875rem/1 var(--font-body);
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.v3-ai-title {
  font: var(--font-display-lg);
  letter-spacing: -0.01em;
}
.v3-ai-sub {
  color: var(--ink-dim);
  font: var(--font-body-md);
  margin-top: var(--sp-2);
}
.v3-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}
@media (min-width: 720px) {
  .v3-ai-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
}
.v3-ai-card {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(245,240,230,0.04) 0%, rgba(245,240,230,0.01) 100%),
    var(--surface-2);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--ink);
  transition: transform var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
  text-decoration: none;
}
.v3-ai-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,0.32), 0 0 0 1px rgba(201,168,76,0.2);
}
.v3-ai-card__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: white;
  box-shadow: 0 6px 16px rgba(0,0,0,0.32) inset, 0 0 0 1px rgba(255,255,255,0.05);
}
.v3-ai-card__icon--gpt { background: linear-gradient(135deg, #10a37f 0%, #0d7a5f 100%); }
.v3-ai-card__icon--gem { background: linear-gradient(135deg, #4285f4 0%, #1a5fc9 100%); }
.v3-ai-card__icon--cla { background: linear-gradient(135deg, #d97757 0%, #b25a3e 100%); }
.v3-ai-card__icon--grk { background: linear-gradient(135deg, #18181a 0%, #2c2c30 100%); border: 1px solid rgba(255,255,255,0.12); }
.v3-ai-card__label {
  display: flex; flex-direction: column; gap: 2px;
}
.v3-ai-card__name {
  font: 700 0.95rem/1.1 var(--font-body);
  color: var(--ink);
}
.v3-ai-card__sub {
  font: 500 0.75rem/1 var(--font-body);
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

/* "Verify us" section header band */
.v3-ai-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08), transparent 60%),
    var(--bg);
}

/* ──────────────────────────────────────────────────────────────────────────
   Theme toggle button polish (glass)
   ────────────────────────────────────────────────────────────────────────── */
#v3-theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--glass-bg);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  padding: 0;
}
#v3-theme-toggle:hover { border-color: var(--gold); }

/* =============================================================================
   V3 APPLE-STYLE MODERNIZATION LAYER
   FOMO ticker · live hero chip · live counters · recent bookings feed ·
   expanded scrolling testimonials wall · countdown.
   ============================================================================= */

/* ── FOMO ticker (sticky under nav) ────────────────────────────────────── */
.v3-fomo {
  position: sticky;
  top: 64px;
  z-index: 60;
  background: linear-gradient(90deg,
    rgba(184, 92, 92, 0.10),
    rgba(201, 168, 76, 0.10),
    rgba(184, 92, 92, 0.10));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  overflow: hidden;
  font-family: var(--font-body);
}
.v3-fomo__track {
  display: flex;
  gap: 3rem;
  padding: 9px 0;
  white-space: nowrap;
  width: max-content;
  animation: v3FomoSlide 42s linear infinite;
}
.v3-fomo:hover .v3-fomo__track { animation-play-state: paused; }
.v3-fomo__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: var(--font-body-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.v3-fomo__item strong { color: var(--gold); font-weight: 700; }
.v3-fomo__item i { color: var(--gold); font-size: 0.78rem; }
.v3-fomo__dot-r {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 8px var(--rose);
  animation: v3Blink 1.4s infinite alternate;
}
.v3-fomo__dot-g {
  width: 6px; height: 6px; border-radius: 50%;
  background: #7fb069; box-shadow: 0 0 8px #7fb069;
}
@keyframes v3FomoSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes v3Blink { 0%,100% { opacity: 0.45; } 50% { opacity: 1; } }

/* ── Live hero chip ───────────────────────────────────────────────────── */
.v3-live-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.v3-live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 8px;
  background: rgba(127, 176, 105, 0.10);
  border: 1px solid rgba(127, 176, 105, 0.30);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ec48a;
}
.v3-live-chip__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7fb069;
  box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.65);
  animation: v3LivePulse 1.8s infinite;
}
@keyframes v3LivePulse {
  0%   { box-shadow: 0 0 0 0 rgba(127,176,105,0.55); }
  70%  { box-shadow: 0 0 0 11px rgba(127,176,105,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,176,105,0); }
}
.v3-live-now {
  font: var(--font-body-sm);
  font-weight: 600;
  color: var(--ink-dim);
}
.v3-live-now strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ── Apple-style mosaic (live now section) ────────────────────────────── */
.v3-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--sp-3);
}
.v3-mtile {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: var(--sp-6);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.v3-mtile:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 28px rgba(201,168,76,0.05);
}
.v3-mtile--wide  { grid-column: span 4; }
.v3-mtile--half  { grid-column: span 3; }
.v3-mtile--third { grid-column: span 2; }
.v3-mtile--tall  { grid-column: span 3; min-height: 380px; }
.v3-mtile--glow::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% -15%, rgba(201,168,76,0.18) 0%, transparent 55%);
  pointer-events: none;
}
.v3-mtile--rose::before {
  background: radial-gradient(ellipse at 85% -15%, rgba(184,92,92,0.20) 0%, transparent 55%);
}
.v3-mtile__eyebrow {
  font: var(--font-body-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.v3-mtile--rose .v3-mtile__eyebrow { color: var(--rose); }
.v3-mtile__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 4.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--sp-2);
}
.v3-mtile__num small {
  font-size: 0.3em;
  color: var(--ink-dim);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 0.4em;
}
.v3-mtile--rose .v3-mtile__num { color: var(--rose); }
.v3-mtile__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.v3-mtile__body {
  font: var(--font-body-sm);
  color: var(--ink-dim);
  margin-bottom: var(--sp-3);
}
.v3-mtile__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: var(--font-body-sm);
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--t-base) var(--ease);
}
.v3-mtile__link:hover { gap: 12px; }
.v3-mtile__link i { font-size: 0.7rem; }

/* ── Recent bookings feed ─────────────────────────────────────────────── */
.v3-feed {
  padding: var(--sp-5);
}
.v3-feed__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--sp-4);
}
.v3-feed__title {
  display: inline-flex; align-items: center; gap: 8px;
  font: var(--font-body-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.v3-feed__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #7fb069;
  box-shadow: 0 0 0 0 rgba(127, 176, 105, 0.65);
  animation: v3LivePulse 1.8s infinite;
}
.v3-feed__list {
  display: flex; flex-direction: column;
  gap: 7px;
  max-height: 280px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(180deg, #000 75%, transparent);
  -webkit-mask-image: linear-gradient(180deg, #000 75%, transparent);
}
.v3-feed__row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  font: var(--font-body-sm);
  animation: v3FeedIn 0.5s var(--ease);
}
@keyframes v3FeedIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.v3-feed__avi {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.74rem; font-weight: 700; color: #0d0c0a;
  flex-shrink: 0;
}
.v3-feed__txt {
  flex: 1; color: var(--ink); font-weight: 500; line-height: 1.3;
}
.v3-feed__txt em { font-style: normal; color: var(--gold); font-weight: 600; }
.v3-feed__time {
  font-size: 0.7rem; color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* ── Scarcity / slots card ────────────────────────────────────────────── */
.v3-slots__head {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--sp-3);
}
.v3-slots__head .v3-fomo__dot-r { width: 8px; height: 8px; }
.v3-slots__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--sp-3);
  color: var(--ink);
}
.v3-slots__bar {
  height: 8px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: var(--sp-2);
}
.v3-slots__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 999px;
  width: 0;
  transition: width 1.2s var(--ease);
  box-shadow: 0 0 12px rgba(184, 92, 92, 0.4);
}
.v3-slots__meta {
  display: flex; justify-content: space-between;
  font-size: 0.74rem; color: var(--ink-dim); font-weight: 600;
}
.v3-slots__meta strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.v3-countdown {
  display: flex; gap: var(--sp-2); margin-top: var(--sp-3);
}
.v3-cd-cell {
  flex: 1; text-align: center;
  padding: var(--sp-3) var(--sp-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.03);
}
.v3-cd-num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.v3-cd-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-top: 4px;
  font-weight: 600;
}

/* ── Testimonials wall (Apple-style marquee) ──────────────────────────── */
.v3-wall {
  padding: var(--sp-8) 0;
  overflow: hidden;
}
.v3-wall__head {
  text-align: center;
  margin-bottom: var(--sp-6);
}
.v3-wall__mask {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  margin-top: var(--sp-3);
}
.v3-wall__track {
  display: flex; gap: var(--sp-3);
  width: max-content;
  padding: 6px 0;
  animation: v3WallSlide 64s linear infinite;
}
.v3-wall__track--rev { animation: v3WallSlideRev 74s linear infinite; }
.v3-wall__mask:hover .v3-wall__track { animation-play-state: paused; }
@keyframes v3WallSlide    { from { transform: translateX(0);     } to { transform: translateX(-50%); } }
@keyframes v3WallSlideRev { from { transform: translateX(-50%); } to { transform: translateX(0);     } }
.v3-wall__card {
  flex-shrink: 0;
  width: 340px;
  padding: var(--sp-5) var(--sp-5);
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex; flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.v3-wall__card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.4);
}
.v3-wall__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.18em; }
.v3-wall__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--ink);
}
.v3-wall__meta {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line);
}
.v3-wall__avi {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.74rem; font-weight: 700; color: #0d0c0a;
  flex-shrink: 0;
}
.v3-wall__name {
  font-size: 0.8rem; font-weight: 700; color: var(--ink); line-height: 1.2;
}
.v3-wall__city {
  font-size: 0.66rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── Big Apple-style section heading helpers ──────────────────────────── */
.v3-apple-eyebrow {
  text-align: center;
  font: var(--font-body-sm);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.v3-apple-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-align: center;
  max-width: 940px;
  margin: 0 auto var(--sp-4);
  color: var(--ink);
}
.v3-apple-headline em { font-style: italic; font-weight: 400; color: var(--gold); }
.v3-apple-headline .v3-dim { color: var(--ink-dim); }
.v3-apple-sub {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  text-align: center;
  max-width: 660px;
  margin: 0 auto var(--sp-7);
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ── Responsive (tablet ≤ 992, mobile ≤ 600) ──────────────────────────── */
@media (max-width: 992px) {
  .v3-mosaic { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .v3-mtile--wide, .v3-mtile--half, .v3-mtile--tall { grid-column: span 2; }
  .v3-mtile--third { grid-column: span 1; }
  .v3-mtile { padding: var(--sp-4); min-height: 200px; }
  .v3-wall__card { width: 280px; padding: var(--sp-4); }
  .v3-fomo { top: 64px; }
  .v3-fomo__track { gap: 2rem; animation-duration: 30s; }
  .v3-fomo__item { font-size: 0.7rem; }
}
@media (max-width: 600px) {
  .v3-mosaic { grid-template-columns: 1fr; }
  .v3-mtile--wide, .v3-mtile--half, .v3-mtile--tall, .v3-mtile--third { grid-column: span 1; }
  .v3-mtile { min-height: 180px; padding: var(--sp-4); }
  .v3-wall__card { width: 260px; }
  .v3-countdown { gap: var(--sp-1); }
  .v3-cd-cell { padding: var(--sp-2) 4px; }
  .v3-cd-num { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .v3-fomo__track, .v3-wall__track, .v3-wall__track--rev { animation: none !important; }
  .v3-live-chip__dot, .v3-feed__dot, .v3-feed__row { animation: none !important; }
}
