/* ================================================
   AI Writing theme — applied to The Impossible Experience
   ================================================ */

:root {
  --bg: #050714;
  --bg-2: #0a0e22;
  --card: #0d1224;
  --card-2: #0f1530;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.10);
  --text: #E6E9F2;
  --text-dim: #A8AEC1;
  --muted: #6B7185;

  --cyan: #7CE8E1;
  --cyan-2: #87C5F2;
  --purple: #8B7CFF;
  --purple-2: #6B5FE8;
  --pink: #C58BFF;

  --grad-text: linear-gradient(90deg, #DDE2EE 0%, #DDE2EE 35%, #7CE8E1 55%, #87C5F2 70%, #8B7CFF 100%);
  --grad-cyan: linear-gradient(90deg, #7CE8E1 0%, #87C5F2 50%, #8B7CFF 100%);
  --grad-light: linear-gradient(180deg, #E6E9F2 0%, #9CA3B5 100%);
  --grad-btn: linear-gradient(135deg, #8B7CFF 0%, #6B5FE8 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  /* `overflow-x: clip` instead of `hidden` — `hidden` establishes a scroll
     container which silently breaks position: sticky on every descendant
     (including the navbar). `clip` prevents horizontal overflow without
     creating a scroll container, so sticky positioning works correctly. */
  overflow-x: clip;
  width: 100%;
}
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
}
/* Belt-and-suspenders: stop any descendant from creating horizontal overflow.
   The cosmetic orbs / wide images / SVGs sometimes peek past the viewport. */
img, svg, video, picture { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ===== Background ===== */
.bg-orbs {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.45; }
.orb-cyan {
  width: 600px; height: 600px; left: -200px; top: 100px;
  background: radial-gradient(circle, #1a8a8a 0%, transparent 70%);
  animation: float 18s ease-in-out infinite;
}
.orb-purple {
  width: 500px; height: 500px; right: -150px; top: 80px;
  background: radial-gradient(circle, #5a3a9e 0%, transparent 70%);
  animation: float 22s ease-in-out infinite reverse;
}
.orb-cyan-2 {
  width: 700px; height: 700px; left: 30%; top: 1500px;
  background: radial-gradient(circle, #1a6e8a 0%, transparent 70%);
  opacity: 0.25; animation: float 28s ease-in-out infinite;
}
.orb-purple-2 {
  width: 600px; height: 600px; right: 20%; top: 2800px;
  background: radial-gradient(circle, #4a2e8a 0%, transparent 70%);
  opacity: 0.3; animation: float 24s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 30px) scale(0.95); }
}
.bg-dots {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.13) 1.05px, transparent 1.05px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 80%, transparent 100%);
  opacity: 0.7;
  animation: dotDrift 90s linear infinite;
}
@keyframes dotDrift {
  from { background-position: 0 0; }
  to   { background-position: 0 28px; }
}

/* ===== Gradient text ===== */
.gradient-text-cyan {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Italic letterforms slant rightward; extra padding prevents clipping the final glyph */
  padding-right: 0.08em;
  margin-right: -0.04em;
}
.gradient-text-light {
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.08em;
  margin-right: -0.04em;
}
/* Heavier padding for italic gradient text (more dramatic slant).
   box-decoration-break: clone applies padding to each wrapped line fragment,
   not just the end of the element, so the italic slant has room at every line break. */
em.gradient-text-cyan,
em.gradient-text-light,
.serif-italic.gradient-text-cyan,
.serif-italic.gradient-text-light,
em .gradient-text-cyan,
em .gradient-text-light,
.serif-italic .gradient-text-cyan,
.serif-italic .gradient-text-light {
  padding-right: 0.18em;
  margin-right: -0.08em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.text-white { color: #fff; }

/* ===== Trigger Ticker ===== */
.ticker {
  background: linear-gradient(90deg, rgba(139,124,255,0.18), rgba(124,232,225,0.18));
  border-bottom: 1px solid rgba(139,124,255,0.25);
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
  z-index: 50;
}
.ticker-inner {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  padding: 10px 0;
  animation: ticker 32s linear infinite;
  width: max-content;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 0;
  /* backdrop-filter on .navbar would make it a containing block for any
     position:fixed descendant (like our mobile nav drawer), shrinking the drawer
     to navbar size. Apply blur via ::before so the navbar stays transparent to
     fixed positioning. */
  background: rgba(5, 7, 20, 0.72);
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}
.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
  letter-spacing: -0.01em;
}
.logo-icon { display: flex; }
.logo-text { color: #fff; }
.logo-text-accent {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex; align-items: center; gap: 28px; margin: 0 auto;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(139, 124, 255, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(139, 124, 255, 0.7);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(139, 124, 255, 0.6);
}
.btn-ghost:hover {
  border-color: rgba(139, 124, 255, 1);
  background: rgba(139, 124, 255, 0.08);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(38px, 5.6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
}
.hero-italic {
  font-style: italic;
  font-weight: 600;
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-cta.center { justify-content: center; }
.hero-meta {
  margin-bottom: 50px;
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Hero portrait card */
.hero-preview.hero-portrait {
  margin: 60px auto 0;
  max-width: 1100px;
  background: linear-gradient(180deg, rgba(20,25,55,0.85) 0%, rgba(13,18,36,0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  overflow: hidden;
  text-align: left;
  align-items: stretch;
  box-shadow:
    0 50px 120px -20px rgba(8, 12, 30, 0.9),
    0 0 80px -20px rgba(124, 232, 225, 0.15),
    0 0 120px -40px rgba(139, 124, 255, 0.2);
  transform: perspective(1400px) rotateX(4deg);
  transition: transform 0.4s ease;
  will-change: transform;
}
.portrait-imgwrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.portrait-imgwrap img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  transform: scale(1.08) translate3d(0, var(--scroll-y, 0px), 0);
  transition: transform 0.1s linear;
  will-change: transform;
}
.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,7,20,0.6) 100%),
              radial-gradient(circle at 30% 30%, rgba(139,124,255,0.18), transparent 60%);
  pointer-events: none;
}
.portrait-info {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.portrait-eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.portrait-quote {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  letter-spacing: -0.01em;
}
.portrait-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.portrait-stats > div {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  padding: 4px 0 4px 14px;
}
.portrait-stats strong {
  font-size: 24px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  line-height: 1;
}
.portrait-stats span {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ===== Trusted ===== */
.trusted { padding: 60px 0 30px; }
.trusted-title {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 38px;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.logo-item-img {
  flex: 1;
  max-width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}
.logo-item-img img {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(1) opacity(0.55);
  transition: filter 0.25s, transform 0.25s;
}
.logo-item-img:hover img {
  filter: brightness(0) invert(1) opacity(1);
  transform: scale(1.05);
}
/* Mobile: split the press logos onto 2 rows of 3 instead of one cramped line */
@media (max-width: 700px) {
  .logos-row { gap: 26px 14px; }
  .logo-item-img { flex: 0 1 27%; max-width: 27%; }
}

/* ===== Section heading ===== */
.section-title {
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title.align-left { text-align: left; }
.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 17px;
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Feature grid (Pillars + Experience cards) ===== */
.features { padding: 100px 0 80px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: linear-gradient(180deg, rgba(15, 21, 48, 0.7) 0%, rgba(10, 14, 34, 0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 124, 255, 0.3);
  box-shadow: 0 20px 60px -20px rgba(139, 124, 255, 0.25);
}
.pillar-card .pillar-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.feature-art {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-art-experience {
  position: relative;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
}
.big-num {
  font-size: 80px;
  font-weight: 800;
  line-height: 0.85;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.art-decor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  align-items: flex-end;
}
.art-decor .chip { font-size: 11px; padding: 7px 11px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 28, 60, 0.7);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--text-dim);
  width: fit-content;
  max-width: 100%;
}
.chip svg { color: var(--cyan); flex-shrink: 0; }
.chip-r { align-self: flex-end; }

.spin {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.feature-text {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}
.features-foot {
  text-align: center;
  margin-top: 50px;
  font-size: 17px;
  color: var(--text-dim);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
  font-style: italic;
}

/* ===== The Lie section ===== */
.narrative { padding: 80px 0; }
.lie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}
.lie-col {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.lie-col-old { border-color: rgba(255, 100, 100, 0.18); }
.lie-col-old::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(255, 90, 90, 0.1), transparent 60%);
  pointer-events: none;
}
.lie-col-new::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% -20%, rgba(124, 232, 225, 0.14), transparent 60%);
  pointer-events: none;
}
.lie-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.lie-tag-old {
  background: rgba(255, 100, 100, 0.1);
  color: #FF8B8B;
  border: 1px solid rgba(255, 100, 100, 0.25);
}
.lie-tag-new {
  background: rgba(124, 232, 225, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(124, 232, 225, 0.3);
}
.lie-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.lie-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
}
.lie-col-old .lie-list li {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 100, 100, 0.5);
  text-decoration-thickness: 2px;
  opacity: 0.7;
}
.lie-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 16px; height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
}
.lie-col-new .lie-list li::before {
  background: var(--grad-cyan);
  height: 6px; width: 6px; border-radius: 50%;
  top: 9px;
}
.lie-list-truth li { color: var(--text); }
.lie-list-truth li strong { color: #fff; }
.lie-foot {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--muted);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* ===== Manifesto ===== */
.manifesto {
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.manifesto-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 32px;
}
.manifesto-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 18px;
  letter-spacing: 0;
}
.manifesto-body {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 760px;
  margin: 14px auto;
  line-height: 1.7;
}
.manifesto-body em { color: #fff; font-style: italic; }
.manifesto-emphasis {
  font-size: 56px;
  font-weight: 800;
  margin: 28px auto;
  letter-spacing: -0.02em;
}
.manifesto-large {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 600;
  color: #fff;
  margin-top: 40px;
  line-height: 1.4;
}
.manifesto-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-cyan);
  margin: 50px auto;
  border-radius: 2px;
}

/* ===== Use case / split layouts ===== */
.usecase { padding: 80px 0; }
.usecase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.usecase-text {
  color: var(--text-dim);
  font-size: 16px;
  margin: 24px 0 28px;
  line-height: 1.75;
}
.usecase-text.small { font-size: 14px; opacity: 0.85; }
.usecase.reverse .usecase-grid > .usecase-right { order: -1; }

/* Stage / video card */
.stage-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px -30px rgba(8, 12, 30, 0.9), 0 0 80px -30px rgba(124, 232, 225, 0.2);
  aspect-ratio: 4 / 5;
  background: #000;
}
.stage-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.stage-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, transparent 40%, rgba(5,7,20,0.7) 100%);
  pointer-events: none;
}
.play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--grad-cyan);
  color: #0a1530;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(124, 232, 225, 0.18), 0 12px 40px -10px rgba(124, 232, 225, 0.5);
  cursor: pointer;
  pointer-events: auto;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(124, 232, 225, 0.18), 0 12px 40px -10px rgba(124, 232, 225, 0.5); }
  50% { box-shadow: 0 0 0 14px rgba(124, 232, 225, 0.08), 0 12px 40px -10px rgba(124, 232, 225, 0.7); }
}
.stage-caption {
  position: absolute;
  bottom: 20px; left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.stage-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* Check list */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px;
}
.check-list li {
  position: relative;
  padding-left: 36px;
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}
.check-list li strong { color: #fff; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--grad-cyan);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 9px;
  width: 10px; height: 5px;
  border-left: 2px solid #0a1530;
  border-bottom: 2px solid #0a1530;
  transform: rotate(-45deg);
}

/* ===== Is this for you ===== */
.forwhom { padding: 100px 0; }
.forwhom-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 40px;
}
.forwhom-col {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
}
.forwhom-no { border-color: rgba(255, 100, 100, 0.15); }
.forwhom-yes { border-color: rgba(124, 232, 225, 0.2); }
.forwhom-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.tag-no {
  background: rgba(255, 100, 100, 0.1);
  color: #FF8B8B;
  border: 1px solid rgba(255, 100, 100, 0.25);
}
.tag-yes {
  background: rgba(124, 232, 225, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(124, 232, 225, 0.3);
}
.forwhom-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.forwhom-col li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim);
}
.forwhom-no li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0;
  color: #FF8B8B;
  font-weight: 700;
  font-size: 16px;
}
.forwhom-yes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 18px;
}

/* ===== Testimonials ===== */
.testimonials { padding: 100px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: linear-gradient(180deg, rgba(15, 21, 48, 0.7) 0%, rgba(10, 14, 34, 0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 232, 225, 0.25);
}
.stars {
  width: 88px;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 4px 14px rgba(255, 180, 50, 0.3));
}
.quote {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 500;
}
.person {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.avatar-1 { background: linear-gradient(135deg, #6E7CE8 0%, #B97CFF 100%); }
.avatar-2 { background: linear-gradient(135deg, #E8C97C 0%, #B97C5A 100%); }
.avatar-3 { background: linear-gradient(135deg, #5A6E8A 0%, #2A3550 100%); }
.avatar-4 { background: linear-gradient(135deg, #E87C7C 0%, #B95A5A 100%); }
.avatar-5 { background: linear-gradient(135deg, #5A8AE8 0%, #2A3A6E 100%); }
.avatar-6 { background: linear-gradient(135deg, #C58BFF 0%, #7CE8E1 100%); }
.person-name { font-weight: 700; color: #fff; font-size: 15px; }
.person-role { color: var(--text-dim); font-size: 14px; margin-top: 2px; }

/* ===== About Robert / stats ===== */
.about-robert { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-stack {
  position: relative;
  height: 460px;
}
.cover {
  position: absolute;
  width: 200px;
  border-radius: 12px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.7);
  border: 1px solid var(--border-strong);
  transition: transform 0.35s, z-index 0s;
}
.cover:hover { transform: translateY(-8px) scale(1.05) rotate(0deg) !important; z-index: 5; }
.cover.c1 { top: 0; left: 0; transform: rotate(-6deg); }
.cover.c2 { top: 30px; left: 180px; transform: rotate(4deg); z-index: 2; }
.cover.c3 { top: 200px; left: 70px; transform: rotate(-3deg); z-index: 3; }
.cover.c4 { top: 220px; left: 240px; transform: rotate(7deg); z-index: 4; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}
.stat {
  background: rgba(15, 21, 48, 0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}
.stat-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 8px;
}

/* ===== Event Details ===== */
.event-details { padding: 100px 0; }
.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.detail-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.detail-card:hover { transform: translateY(-4px); border-color: rgba(124, 232, 225, 0.3); }
.detail-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(124, 232, 225, 0.06);
  border: 1px solid rgba(124, 232, 225, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 8px;
  font-weight: 600;
}
.detail-value {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.detail-price {
  border-color: rgba(139, 124, 255, 0.4);
  background: linear-gradient(180deg, rgba(139,124,255,0.1) 0%, rgba(10,14,34,0.5) 100%);
}
.detail-price .detail-value {
  font-size: 24px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.center-cta { text-align: center; margin-top: 30px; }

/* ===== Excuses ===== */
.excuses { padding: 80px 0; text-align: center; }
.excuses-lead {
  font-size: 22px;
  color: #fff;
  margin: 30px 0;
  font-weight: 600;
}
.excuses-lead strong {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 28px;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.compare-card {
  background: rgba(15, 21, 48, 0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.45;
  transition: border-color 0.25s, transform 0.25s;
}
.compare-card:hover {
  border-color: rgba(139, 124, 255, 0.35);
  transform: translateY(-3px);
}
.excuses-body {
  max-width: 760px;
  margin: 18px auto;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}
.excuses-body strong { color: #fff; }

/* ===== Risk-free promise ===== */
.promise { padding: 60px 0; }
.promise-card {
  background: linear-gradient(180deg, rgba(20,28,60,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 60px 52px;
  position: relative;
  overflow: hidden;
}
.promise-card::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: rgba(124, 232, 225, 0.18);
  filter: blur(80px);
  border-radius: 50%;
  top: -120px; right: -60px;
  pointer-events: none;
}
.promise-badge {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: rgba(124, 232, 225, 0.08);
  border: 1px solid rgba(124, 232, 225, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.promise-body {
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.7;
  margin: 14px 0;
  position: relative;
  z-index: 1;
}
.promise-body strong { color: #fff; }
.promise-card .check-list { position: relative; z-index: 1; }

/* ===== Two paths ===== */
.paths { padding: 100px 0; }
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  margin-top: 40px;
}
.path-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.path-1 { opacity: 0.7; }
.path-2 {
  border-color: rgba(124, 232, 225, 0.3);
  background: linear-gradient(180deg, rgba(20,40,60,0.7) 0%, rgba(15,30,50,0.5) 100%);
}
.path-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(124,232,225,0.15), transparent 60%);
  pointer-events: none;
}
.path-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.path-2 .path-num {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.path-card p {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.path-card .btn { position: relative; z-index: 1; }
.paths-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 18px;
  color: var(--text-dim);
  font-style: italic;
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: rgba(15, 21, 48, 0.4);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(124, 232, 225, 0.3); }
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 24px;
  font-weight: 300;
  color: var(--text-dim);
  transition: transform 0.25s, color 0.25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--cyan); }
.faq-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Closing CTA ===== */
.cta { padding: 80px 0; }
.cta-card {
  background: linear-gradient(180deg, rgba(20, 28, 60, 0.7) 0%, rgba(10, 14, 34, 0.5) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 70px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before, .cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-card::before {
  width: 320px; height: 320px;
  background: rgba(124, 232, 225, 0.2);
  top: -100px; left: -50px;
}
.cta-card::after {
  width: 320px; height: 320px;
  background: rgba(139, 124, 255, 0.25);
  bottom: -100px; right: -50px;
}
.cta-card .section-title { margin-bottom: 14px; position: relative; z-index: 1; }
.cta-card .section-subtitle { margin-bottom: 32px; position: relative; z-index: 1; }
.cta-card .hero-cta { margin-bottom: 0; position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.cta-meta {
  margin-top: 24px;
  color: var(--text-dim);
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* ===== P.S. ===== */
.ps-section { padding: 80px 0 100px; }
.ps-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.ps-image {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px -30px rgba(8,12,30,0.9);
}
.ps-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ps-title {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.ps-body {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 12px 0;
}
.ps-emphasis { font-size: 26px; font-weight: 700; margin: 20px 0; }
.ps-sign { color: #fff; font-size: 17px; font-style: italic; margin-top: 28px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-col .logo { margin-bottom: 16px; }
.muted { color: var(--text-dim); font-size: 14px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.socials { display: flex; gap: 16px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.2s;
}
.socials a:hover {
  color: #fff;
  border-color: var(--purple);
  background: rgba(139, 124, 255, 0.1);
}

/* ===== Reveal animation ===== */
.section-title, .hero-title, .hero-subtitle, .hero-cta, .feature-card, .testimonial,
.usecase-card, .lie-col, .forwhom-col, .path-card, .detail-card,
.compare-card, .stage-card, .promise-card, .ps-grid, .stat, .cover, .manifesto-title, .manifesto-body {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hero preview: opacity + scale reveal, transform handed off to JS for tilt */
.hero-preview {
  opacity: 0;
  transform: perspective(1400px) rotateX(8deg) scale(0.92) translateY(40px);
  transition: opacity 1s ease, transform 1.1s cubic-bezier(0.22,1,0.36,1);
}
.hero-preview.in {
  opacity: 1;
  transform: perspective(1400px) rotateX(4deg) scale(1) translateY(0);
}
.cover.in.c1 { transform: rotate(-6deg) !important; }
.cover.in.c2 { transform: rotate(4deg) !important; }
.cover.in.c3 { transform: rotate(-3deg) !important; }
.cover.in.c4 { transform: rotate(7deg) !important; }
.feature-card.in:nth-child(2) { transition-delay: 0.1s; }
.feature-card.in:nth-child(3) { transition-delay: 0.2s; }
.testimonial.in:nth-child(2) { transition-delay: 0.06s; }
.testimonial.in:nth-child(3) { transition-delay: 0.12s; }
.testimonial.in:nth-child(4) { transition-delay: 0.18s; }
.testimonial.in:nth-child(5) { transition-delay: 0.24s; }
.testimonial.in:nth-child(6) { transition-delay: 0.30s; }
.detail-card.in:nth-child(2) { transition-delay: 0.08s; }
.detail-card.in:nth-child(3) { transition-delay: 0.16s; }
.detail-card.in:nth-child(4) { transition-delay: 0.24s; }
.compare-card.in:nth-child(2) { transition-delay: 0.06s; }
.compare-card.in:nth-child(3) { transition-delay: 0.12s; }
.compare-card.in:nth-child(4) { transition-delay: 0.18s; }
.stat.in:nth-child(2) { transition-delay: 0.08s; }
.stat.in:nth-child(3) { transition-delay: 0.16s; }
.stat.in:nth-child(4) { transition-delay: 0.24s; }

/* ============================================
   /the-method — RS Method brand-truth page
   ============================================ */

/* Italic accent — Plus Jakarta Sans italic (class name is legacy from a brief Cormorant
   experiment Robert rejected; keep the name, ditch the serif). */
.serif-italic {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* Eyebrow */
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
  display: inline-block;
}
.eyebrow.center { display: block; text-align: center; }

/* Nav: gradient pill Begin button at the right */
.nav-begin {
  background: var(--grad-btn);
  font-weight: 600;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow:
    0 8px 26px -8px rgba(139, 124, 255, 0.5),
    0 0 0 1px rgba(255,255,255,0.06) inset;
}
.nav-begin:hover {
  box-shadow:
    0 14px 36px -10px rgba(139, 124, 255, 0.7),
    0 0 0 1px rgba(255,255,255,0.1) inset;
}

/* CTA arrow flourish */
.btn .arrow { margin-left: 8px; transition: transform 0.25s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* Body class scope so the method page can deviate where needed */
.page-method .hero { padding: 70px 0 80px; text-align: left; }

/* Hero — method */
.hero-method-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.hero-method-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-method-title {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.018em;
  background: var(--grad-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 38px;
  max-width: 620px;
}
.hero-method-title .line {
  display: block;
  margin-top: 14px;
}
.hero-method-title em.serif-italic {
  font-size: 1.04em;
  font-weight: 600;
  -webkit-text-fill-color: initial;
}
.hero-cta-left { justify-content: flex-start; margin-bottom: 0; }
.hero-cta-spaced { margin-top: 1.5em; }

/* Hero portrait — softer treatment than the TIE page card */
.hero-method-photo { position: relative; }
.portrait-method {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 50px 120px -30px rgba(8,12,30,0.95),
    0 0 100px -30px rgba(124,232,225,0.18),
    0 0 140px -50px rgba(139,124,255,0.22);
  aspect-ratio: 4 / 5;
  background: #000;
  transform: perspective(1400px) rotateX(2deg);
  transition: transform 0.4s ease;
  will-change: transform;
}
.portrait-method img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.14);
  will-change: transform;
}
.portrait-method .portrait-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(5,7,20,0.55) 100%),
    radial-gradient(circle at 30% 30%, rgba(139,124,255,0.16), transparent 60%);
  pointer-events: none;
}
.portrait-caption {
  margin-top: 18px;
  text-align: right;
  font-size: 18px;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* Narrow container for prose-heavy sections */
.container.narrow {
  max-width: 820px;
}

/* Prose */
.prose {
  margin: 0 auto;
}
.prose p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
  margin: 0 0 22px;
  font-weight: 400;
}
.prose p:last-child { margin-bottom: 0; }
.prose em.serif-italic {
  font-size: 1.05em;
  color: #fff;
}
.prose.center-text p { text-align: center; }
/* Generic centering utility. Inherits to descendant text only where the
   descendant doesn't set its own text-align (e.g. .section-title.align-left,
   inline text-align:left, and self-centering elements are unaffected). */
.center-text { text-align: center; }

/* Section titles — method tone */
.page-method .section-title {
  margin-bottom: 50px;
}
.page-method .section-title.center { text-align: center; }

/* Built For */
.builtfor { padding: 100px 0; }

/* Pull-quote */
.pullquote {
  margin: 60px auto;
  padding: 36px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  text-align: center;
  position: relative;
}
.pullquote p {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.45;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
}
.pullquote p .gradient-text-cyan { font-weight: 500; }
.pullquote-attrib {
  margin-top: 22px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}

/* Mechanism */
.mechanism { padding: 100px 0; }
.mechanism-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 70px;
  line-height: 1.7;
}
.mechanism-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.movement {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.movement-marker {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.movement-body p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-dim);
  margin: 0 0 18px;
}
.movement-body p:last-child { margin-bottom: 0; }
.mechanism-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent 100%);
  align-self: stretch;
}

/* What the Work Produces */
.produces { padding: 100px 0; }

/* Doorways */
.doorways { padding: 100px 0; }
.doorways-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.doorway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doorway-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.5) 0%, rgba(10,14,34,0.3) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.doorway-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,232,225,0.25);
  box-shadow: 0 24px 60px -20px rgba(124,232,225,0.18);
}
.doorway-divider {
  width: 36px;
  height: 2px;
  background: var(--grad-cyan);
  border-radius: 2px;
  margin-bottom: 22px;
}
.doorway-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.doorway-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.doorway-blurb {
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}
.doorway-link {
  display: inline-flex;
  align-items: center;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: flex-start;
}
.doorway-link .arrow {
  margin-left: 8px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.25s;
  display: inline-block;
}
.doorway-link:hover .arrow { transform: translateX(4px); }
.doorway-card-quiet {
  background: linear-gradient(180deg, rgba(20,18,40,0.55) 0%, rgba(10,14,34,0.35) 100%);
  border-color: rgba(139,124,255,0.18);
}

/* Not yet */
.notyet {
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.notyet-glow {
  position: absolute;
  width: 600px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124,232,225,0.16) 0%, rgba(139,124,255,0.10) 35%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.notyet > .container { position: relative; z-index: 1; }
.notyet .prose { max-width: 640px; margin: 0 auto 40px; }
.notyet .prose p { text-align: center; font-size: 18px; }
.center-cta { text-align: center; margin-top: 30px; }

/* Soft close */
.softclose {
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
}
.softclose-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 50px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.softclose .prose { max-width: 640px; margin: 0 auto; }
.softclose .prose p { text-align: center; font-size: 18px; color: var(--text-dim); }

.signature {
  margin: 60px auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sign-line {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sign-tagline {
  font-size: 18px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Reveal hooks for below-the-fold elements.
   Hero content (.hero-method-text, .hero-method-photo) intentionally NOT in this list:
   it must be visible immediately for above-the-fold content / LCP / no-JS visitors. */
.prose, .pullquote, .movement,
.doorway-card, .softclose-title, .signature, .doorways-intro, .mechanism-intro, .notyet {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22,1,0.36,1);
}
.in.prose, .in.pullquote, .in.movement,
.in.doorway-card, .in.softclose-title, .in.signature, .in.doorways-intro,
.in.mechanism-intro, .in.notyet {
  opacity: 1;
  transform: translateY(0);
}
.doorway-card.in:nth-child(2) { transition-delay: 0.1s; }
.doorway-card.in:nth-child(3) { transition-delay: 0.2s; }

/* Method page italic accents — Plus Jakarta Sans italic instead of serif */
.page-method .serif-italic {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.page-method .hero-method-title em.serif-italic {
  font-size: 1em;
  font-weight: 600;
}

/* Logo image (replaces text wordmark) */
.logo-img {
  height: 30px;
  width: auto;
  display: block;
}
.logo-img-footer { height: 36px; }

/* (Removed previous object-position offset — vertical photo sits naturally centered) */

/* ============================================
   /robert + /by-invitation — additional sections
   ============================================ */

/* Tighter prose under hero subhead */
.prose-tight p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text-dim);
}
.prose-tight em.serif-italic { color: #fff; }

.prose-large p {
  font-size: 21px;
  line-height: 1.75;
  font-weight: 400;
  color: var(--text);
}
.prose-large em.serif-italic { color: #fff; font-weight: 600; }

/* Stacked pullquote (multi-line philosophy quote on /robert) */
.pullquote-stacked p {
  display: block;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.4;
  margin: 14px 0;
}
.pullquote-stacked p:not(.gradient-text-cyan) { color: #fff; }

/* Doorways — extra footer line on /robert */
.doorways-foot {
  text-align: center;
  margin-top: 50px;
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
}
.doorways-foot em.serif-italic { color: #fff; }

/* Note from Robert — softer, glow-backed Voice 2 section */
.note-section {
  padding: 100px 0 60px;
  position: relative;
  text-align: center;
}
.note-glow {
  position: absolute;
  width: 700px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124,232,225,0.10) 0%, rgba(139,124,255,0.08) 40%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.note-section > .container { position: relative; z-index: 1; }
.note-prose p {
  font-size: 18.5px;
  line-height: 1.8;
  text-align: center;
  color: var(--text);
  margin: 0 auto 18px;
  max-width: 620px;
}
.note-prose em.serif-italic { color: #fff; }
.note-italic {
  font-size: clamp(22px, 2.6vw, 30px) !important;
  margin: 28px auto !important;
  font-weight: 600;
}

/* ============================================
   /by-invitation — restrained + dignified
   ============================================ */

.page-invitation .hero-method { padding: 90px 0 80px; }
.hero-quiet .hero-method-title-quiet {
  font-size: clamp(46px, 5.6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 32px;
}
.lead-italic em.serif-italic {
  font-size: 1.15em;
  color: #fff;
  font-weight: 600;
}

/* Three-line stack — "Two days. Robert. You." */
.container-section {
  padding: 100px 0;
}
.threeline-stack {
  text-align: center;
  margin: 30px auto 60px;
}
.threeline-stack > div {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 12px 0;
  color: #fff;
}
.threeline-stack > div:nth-child(2) {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Investment figure — bold, no gradient */
.investment {
  padding: 100px 0;
  text-align: center;
}
.invest-figure {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(56px, 8vw, 104px);
  letter-spacing: -0.03em;
  color: #fff;
  margin: 50px 0 60px;
  line-height: 1;
}
.investment .prose { max-width: 620px; margin: 0 auto; text-align: center; }
.investment .prose p { text-align: center; font-size: 17px; }

/* For Everyone Else — softer tonal shift */
.for-everyone-else {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124,232,225,0.025) 50%, transparent 100%);
}
.for-everyone-else .prose { max-width: 640px; margin: 30px auto; }
.for-everyone-else .prose p { text-align: center; font-size: 17px; }

.doorway-link-large {
  font-size: 16.5px;
  margin-top: 10px;
}

/* Apply section — soft glow, single CTA */
.apply {
  padding: 100px 0;
  position: relative;
  text-align: center;
}
.apply-glow {
  position: absolute;
  width: 600px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(139,124,255,0.16) 0%, rgba(124,232,225,0.08) 40%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.apply > .container { position: relative; z-index: 1; }
.apply .prose { max-width: 580px; margin: 30px auto; }
.apply .prose p { text-align: center; font-size: 18px; }

/* Reveal hooks for new elements */
.threeline-stack, .invest-figure, .lead-italic {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22,1,0.36,1);
}
.threeline-stack.in, .invest-figure.in, .lead-italic.in {
  opacity: 1;
  transform: translateY(0);
}
.threeline-stack > div { display: inline-block; }

/* ============================================
   Home / Events / Stories / Begin / Contact
   shared and page-specific sections
   ============================================ */

/* Scroll cue under hero */
.scroll-cue {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  opacity: 0.7;
  font-style: italic;
}

/* Smaller secondary line under the hero h1 — used on index hero */
.hero-method-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: #E6E9F2;
  font-weight: 400;
  margin: 14px 0 30px;
  max-width: 560px;
}
.hero-method-sub em.serif-italic { font-style: italic; }

/* Centered scroll cue at the bottom of the index hero */
.scroll-cue-centered {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-dim, #A8AEC1);
  font-size: 13.5px;
  letter-spacing: 0.06em;
  z-index: 3;
  transition: color 0.25s ease;
}
.scroll-cue-centered:hover { color: #fff; }
.scroll-cue-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 232, 225, 0.55) 60%, rgba(139, 124, 255, 0.85) 100%);
  animation: scrollCueBob 2.4s ease-in-out infinite;
}
.scroll-cue-label { opacity: 0.85; }
@keyframes scrollCueBob {
  0%, 100% { transform: translateY(-3px); opacity: 0.55; }
  50%      { transform: translateY(3px);  opacity: 1; }
}
@media (max-width: 980px) {
  .scroll-cue-centered { position: static; transform: none; margin: 28px auto 8px; }
}

/* Mechanism CTA — tight, with a small vertical line above */
.mechanism-cta {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* Typographic hero — used on Events, Stories, Begin, Contact */
.hero-typographic { padding: 100px 0 60px; text-align: center; }
.hero-typographic-title {
  font-size: clamp(40px, 5.6vw, 76px) !important;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05 !important;
  margin-bottom: 24px !important;
}
.hero-typographic-title em.serif-italic {
  font-style: italic;
  font-weight: 600;
}
.hero-typographic-subhead {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero-typographic-subhead em.serif-italic { color: #fff; font-weight: 500; }

.hero-glow { position: relative; }
.hero-glow-bg {
  position: absolute;
  width: 800px; height: 600px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124,232,225,0.10) 0%, rgba(139,124,255,0.08) 40%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow > .container { position: relative; z-index: 1; }

/* Builtfor as standalone pull-quote (home avatar quote) */
.builtfor-quote { padding: 80px 0; }
.pullquote-large p {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}

/* Doorways — large variant for Events page */
.doorways-large { padding: 80px 0 100px; }
.doorway-grid-large {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doorway-card-rich {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.doorway-photo {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0e22;
  position: relative;
}
.doorway-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
/* Universal: image inside a doorway / begin / contact card is clickable.
   The anchor fills the visual area so the whole region is a click target. */
.doorway-photo a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.begin-card-art > a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-icon > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.doorway-card-rich:hover .doorway-photo img { transform: scale(1.05); }
.doorway-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,18,36,0.6) 100%);
  pointer-events: none;
}
.doorway-photo-large { aspect-ratio: 4/3; }
/* Universal: title text inside a doorway card is clickable. Inherits the
   title's color/weight and adds a subtle hover. */
.doorway-title a,
.doorway-title-link {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(to right, rgba(124,232,225,0.5), rgba(139,124,255,0.5));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease, color 0.2s ease;
}
.doorway-title a:hover,
.doorway-title-link:hover {
  background-size: 100% 1px;
}
.doorway-card:hover .doorway-title a,
.doorway-card:hover .doorway-title-link {
  background-size: 100% 1px;
}
.doorway-card-rich .doorway-divider,
.doorway-card-rich .doorway-eyebrow,
.doorway-card-rich .doorway-title,
.doorway-card-rich .doorway-blurb,
.doorway-card-rich .doorway-link,
.doorway-card-rich .doorway-pill,
.doorway-card-rich .doorway-date,
.doorway-card-rich .doorway-price {
  margin-left: 30px;
  margin-right: 30px;
}
.doorway-card-rich .doorway-divider { margin-top: 30px; }
.doorway-card-rich .doorway-link { margin-bottom: 30px; margin-top: auto; padding-top: 14px; }

/* Pill eyebrow tag */
.doorway-pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124,232,225,0.08);
  border: 1px solid rgba(124,232,225,0.25);
  color: var(--cyan);
  width: fit-content;
  margin-top: 28px !important;
  margin-bottom: 16px !important;
}

.doorway-title-large {
  font-size: 28px !important;
  margin-bottom: 14px !important;
}
.doorway-date {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 18px !important;
  line-height: 1.55;
}
.doorway-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px !important;
  font-weight: 600;
}
.price-special {
  font-size: 20px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.price-strike {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-strong {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.doorway-card-rich .doorway-blurb { margin-bottom: 14px !important; flex: 0 0 auto; }
.doorway-subtitle {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* Tighter doorway photo on home (smaller cards) */
.page-home .doorway-photo { aspect-ratio: 16/10; }
.page-home .doorway-card .doorway-photo {
  width: calc(100% + 64px);
  margin: 0 -32px 22px;
  border-radius: 18px 18px 0 0;
}
.page-home .doorway-card { padding-top: 0; overflow: hidden; }
.page-home .doorway-card .doorway-divider { margin-top: 0; margin-left: 28px; margin-right: 28px; }
.page-home .doorway-card .doorway-eyebrow,
.page-home .doorway-card .doorway-title,
.page-home .doorway-card .doorway-blurb,
.page-home .doorway-card .doorway-link {
  margin-left: 28px;
  margin-right: 28px;
}
.page-home .doorway-card .doorway-link { margin-bottom: 28px; margin-top: 8px; }

/* Cover frame (home Robert preview) */
.cover-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px -30px rgba(8,12,30,0.9);
  max-width: 380px;
  margin: 0 auto;
}
.cover-frame img { width: 100%; display: block; }
.usecase-grid-method { gap: 80px; }
.usecase-right-photo { display: flex; justify-content: center; }

/* Tighter "see all" CTA spacing */
.center-cta-tight { margin-top: 40px; }

/* ============================================
   STORIES PAGE
   ============================================ */
.stories-section, .stories-preview { padding: 80px 0 100px; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-grid-large { gap: 28px; }
.story-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.story-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,232,225,0.25);
  box-shadow: 0 20px 50px -20px rgba(124,232,225,0.18);
}
.story-poster {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.2), rgba(0,0,0,0.55) 80%);
  z-index: 1;
}
.story-play {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-cyan);
  color: #0a1530;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(124,232,225,0.18), 0 12px 30px -8px rgba(124,232,225,0.5);
  transition: transform 0.25s;
  cursor: pointer;
}
.story-card:hover .story-play { transform: scale(1.08); }
.story-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
}
.story-frame {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 3;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  font-style: italic;
}
.story-quote {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.6;
  padding: 24px 26px 16px;
  font-weight: 400;
}
.story-card-large .story-quote { font-size: 18px; padding: 26px 28px 18px; }

/* Photo poster variant (real face image) */
.story-poster-photo {
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: #0a0e22;
  cursor: pointer;
}
.story-poster-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.6s ease, filter 0.3s ease;
  z-index: 0;
}
.story-card:hover .story-poster-photo img { transform: scale(1.04); }
.story-poster-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,28,0) 35%, rgba(8,12,28,0.55) 100%);
  z-index: 1;
}
.story-poster-photo .story-play,
.story-poster-photo .story-tag { z-index: 2; }

/* Inline video poster variant */
.story-poster-video {
  background: #0a0e22;
  overflow: hidden;
}
.story-poster-video .story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  z-index: 0;
}
.story-poster-video::before { display: none; }
.story-poster-video .story-tag { z-index: 2; pointer-events: none; }
.story-name {
  padding: 0 26px 8px;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.story-card-large .story-name { padding: 0 28px 14px; }
.story-card .doorway-link {
  padding: 0 28px 28px;
  font-size: 14px;
}

/* Written stories tile grid */
.written-stories { padding: 80px 0; }
.story-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.story-tile {
  background: linear-gradient(180deg, rgba(15,21,48,0.5) 0%, rgba(10,14,34,0.3) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.story-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(139,124,255,0.25);
}
.story-tile .quote {
  font-size: 18px;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 18px;
  font-weight: 500;
}
.tile-attrib {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.story-tile:nth-child(4),
.story-tile:nth-child(5) {
  grid-column: span 1;
}

/* Browse everything */
.browse-everything { padding: 60px 0; }
.prose-lead { font-size: 18px; color: var(--text-dim); margin: 30px 0; }
.browse-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin: 30px auto 0;
}
.browse-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: rgba(15,21,48,0.4);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.browse-link:hover {
  border-color: rgba(124,232,225,0.3);
  background: rgba(124,232,225,0.05);
  transform: translateY(-2px);
}
.browse-link .arrow {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  transition: transform 0.25s;
}
.browse-link:hover .arrow { transform: translateX(4px); }

/* What now section */
.whatnow {
  padding: 80px 0;
  text-align: center;
}
.whatnow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 36px auto;
  max-width: 640px;
  text-align: left;
}
.whatnow-list li a,
.whatnow-list li > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: rgba(15,21,48,0.45);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.25s, transform 0.25s;
}
/* Hover lift only on the still-interactive <a> rows; static <div> rows
   (informational, non-clickable) keep the card look but don't react. */
.whatnow-list li a:hover {
  border-color: rgba(124,232,225,0.3);
  transform: translateY(-2px);
}
.whatnow-list strong { color: #fff; font-weight: 700; }
.whatnow-list .arrow {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.whatnow-or {
  margin-top: 32px;
  font-size: 16px;
  color: var(--text-dim);
  font-style: italic;
}

/* ============================================
   BEGIN PAGE
   ============================================ */
.begin-section { padding: 80px 0 100px; }
.begin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 75%;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .begin-grid { max-width: 100%; }
}
.begin-grid-large { gap: 36px; }
.begin-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.35s;
}
.begin-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,232,225,0.3);
  box-shadow: 0 30px 70px -20px rgba(124,232,225,0.2);
}
.begin-card-art {
  width: 100%;
  aspect-ratio: 1/1;
  background: radial-gradient(circle at center, rgba(124,232,225,0.10), rgba(10,14,34,0.6) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.begin-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.begin-card:hover .begin-card-art img { transform: scale(1.03); }
.begin-card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,28,0) 60%, rgba(8,12,28,0.55) 100%);
  pointer-events: none;
}
.begin-card-art-large {
  aspect-ratio: 4/3;
  padding: 36px 48px;
}
.begin-card-art-large img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
.begin-card-art-quiz {
  background: radial-gradient(circle at center, rgba(139,124,255,0.16), rgba(10,14,34,0.6) 70%);
}
.begin-card-art-quiz img { object-position: center 20%; }
.begin-card-art-large.begin-card-art-quiz {
  padding: 28px 40px;
}
.begin-card-art-large.begin-card-art-quiz img {
  max-height: 96%;
}

/* Wide (16:9) art variant — fills edge-to-edge for landscape sources */
.begin-card-art-wide {
  aspect-ratio: 16 / 9;
  padding: 0;
  background: #000;
}
.begin-card-art-wide picture,
.begin-card-art-wide picture img,
.begin-card-art-wide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.begin-card-art-wide.begin-card-art-quiz { padding: 0; background: #000; }
.begin-card-art-wide.begin-card-art-quiz img { max-height: 100%; }

.closer-prose {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: #E6E9F2;
  margin: 16px 0 26px;
  max-width: 520px;
}
.closer-ps-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.08em;
}

/* =========================================
   STORIES — Google Reviews banner + Video Library + Testimonial Wall
   ========================================= */

.google-reviews { padding: 90px 0 70px; }
.google-summary-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 900px;
  margin: 40px auto 0;
  padding: 32px 36px;
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.google-summary-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,232,225,0.32);
  box-shadow: 0 28px 60px -20px rgba(124,232,225,0.2);
}
.google-summary-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.google-summary-rating {
  display: flex;
  align-items: center;
  gap: 14px;
}
.google-summary-logo {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}
.google-summary-stars {
  font-size: 28px;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #FFC93C 0%, #FFA500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.google-summary-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.google-summary-meta {
  font-size: 14px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}
.google-summary-cta {
  font-weight: 600;
  font-size: 15px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.08em;
  white-space: nowrap;
}
.google-summary-cta .arrow {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google-reviews-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 14.5px;
  margin: 50px auto 28px;
  max-width: 640px;
  letter-spacing: 0.01em;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.google-review-card {
  background: rgba(15,21,48,0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 22px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.google-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,232,225,0.28);
  box-shadow: 0 14px 36px -16px rgba(124,232,225,0.2);
}
.google-review-stars {
  font-size: 15px;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #FFC93C 0%, #FFA500 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.google-review-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  flex: 1;
}
.google-review-author {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  font-weight: 600;
}

/* Video Library — institute videos */
.video-library { padding: 80px 0 90px; }
.video-library-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 15px;
  margin: 8px auto 36px;
  max-width: 640px;
  font-style: italic;
}
.video-library-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 8px;
}
.library-video {
  background: linear-gradient(180deg, rgba(15,21,48,0.6) 0%, rgba(10,14,34,0.4) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.library-video:hover {
  transform: translateY(-4px);
  border-color: rgba(124,232,225,0.25);
  box-shadow: 0 18px 44px -18px rgba(124,232,225,0.18);
}
.library-video-el {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  display: block;
  object-fit: cover;
}
.library-video-meta {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.library-video-quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
}
.library-video-name {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Testimonial Wall — 29 institute text quotes */
.testi-wall-section { padding: 80px 0 90px; }
.testi-wall {
  column-count: 3;
  column-gap: 20px;
  max-width: 1180px;
  margin: 20px auto 0;
  padding: 0 12px;
}
.testi-wall-card {
  break-inside: avoid;
  margin: 0 0 20px;
  padding: 22px 24px 20px;
  background: rgba(15,21,48,0.5);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: block;
  transition: transform 0.25s, border-color 0.25s;
}
.testi-wall-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124,232,225,0.25);
}
.testi-wall-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
}
.twc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.twc-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(124, 232, 225, 0.25);
  flex-shrink: 0;
  background: #0a0e22;
}
.testi-wall-card footer {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .video-library-grid { grid-template-columns: repeat(3, 1fr); }
  .google-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-wall { column-count: 2; }
}
@media (max-width: 760px) {
  .google-summary-card { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px 24px; }
  .google-summary-rating { gap: 10px; }
  .google-summary-stars { font-size: 24px; }
  .google-summary-number { font-size: 28px; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .video-library-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testi-wall { column-count: 1; }
}
@media (max-width: 480px) {
  .video-library-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* Coupon / price callout — used near Who Am I masterclass CTAs */
.coupon-callout {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-dim);
}
.coupon-callout-center {
  justify-content: center;
  text-align: center;
}
.coupon-price {
  font-weight: 600;
  color: #fff;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.coupon-divider { color: rgba(255,255,255,0.35); }
.coupon-free {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding-right: 0.08em;
}
.coupon-free strong {
  font-weight: 700;
  letter-spacing: 0.02em;
}
.coupon-note {
  font-size: 12.5px;
  color: var(--text-dim);
  font-style: italic;
  opacity: 0.85;
}

/* Inline coupon-code pill — pure visual, not interactive */
.coupon-pill {
  display: inline-block;
  background: rgba(124, 232, 225, 0.08);
  border: 1px solid rgba(124, 232, 225, 0.5);
  color: #7CE8E1;
  border-radius: 999px;
  padding: 1px 10px 2px;
  margin: 0 3px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  vertical-align: baseline;
}

/* Mid-page CTA strip used on Who Am I page (4 placements) */
.midcta { padding: 60px 0 50px; text-align: center; }
.midcta-flush { padding: 0; margin: 38px auto 0; max-width: 720px; }
.midcta .coupon-callout { margin-top: 18px; }

@media (max-width: 560px) {
  .coupon-callout { gap: 4px 10px; font-size: 13.5px; }
  .coupon-note { width: 100%; }
  .midcta { padding: 40px 0 30px; }
}
.begin-card-body {
  padding: 30px 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.begin-card-feature .begin-card-body { padding: 36px 40px 40px; gap: 16px; }
.begin-card .doorway-pill { margin: 0 0 4px !important; }
.begin-card .doorway-title-large { margin: 0 !important; font-size: 30px !important; }
.begin-card .doorway-subtitle { margin: 0 0 8px; }
.begin-card .prose-tight p { font-size: 15.5px; line-height: 1.7; margin-bottom: 14px; }
.begin-card .btn { align-self: flex-start; margin-top: 14px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,232,225,0.25);
  box-shadow: 0 20px 50px -20px rgba(124,232,225,0.18);
}
.contact-card-primary {
  border-color: rgba(139,124,255,0.3);
  background: linear-gradient(180deg, rgba(20,28,60,0.7) 0%, rgba(10,14,34,0.5) 100%);
  position: relative;
  overflow: hidden;
}
.contact-card-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(124,232,225,0.12), transparent 60%);
  pointer-events: none;
}
.contact-card-primary > * { position: relative; z-index: 1; }
.contact-card-quiet {
  background: linear-gradient(180deg, rgba(15,21,48,0.4) 0%, rgba(10,14,34,0.3) 100%);
}
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(124,232,225,0.06);
  border: 1px solid rgba(124,232,225,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.contact-icon-whatsapp {
  background: rgba(37,211,102,0.08);
  border-color: rgba(37,211,102,0.25);
}
.contact-blurb {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
}
.contact-blurb strong { color: #fff; }
.contact-blurb em.serif-italic { color: #fff; }
.contact-card .btn { align-self: flex-start; margin-top: 14px; }
.contact-email {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 14px;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: border-color 0.2s, color 0.2s;
}
.contact-email:hover {
  border-color: var(--cyan);
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Where we are */
.where-we-are { padding: 80px 0; text-align: center; }
.address-block {
  margin: 30px auto 36px;
  padding: 26px 32px;
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(15,21,48,0.4);
}
.address-line {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 4px 0;
}
.where-prose { max-width: 640px; margin: 0 auto; }
.where-prose p { font-size: 15px; color: var(--text-dim); }

/* ============================================
   HOME — Mentoring strip + Footer bridge
   ============================================ */
.mentoring-strip {
  padding: 80px 0;
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(124,232,225,0.025) 50%, transparent 100%);
}
.mentoring-glow {
  position: absolute;
  width: 700px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124,232,225,0.10) 0%, rgba(139,124,255,0.06) 50%, transparent 75%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.mentoring-strip > .container { position: relative; z-index: 1; }
.mentoring-strip .softclose-title { margin-bottom: 24px; font-size: clamp(30px,4vw,52px); }
.mentoring-strip .prose { max-width: 580px; margin: 0 auto 28px; }
.mentoring-strip .prose p { text-align: center; color: var(--text-dim); font-size: 16px; }

.begin-preview { padding: 80px 0; }

.footer-bridge {
  padding: 40px 0 60px;
  text-align: center;
}
.bridge-line {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
}
.bridge-link {
  display: inline-block;
  margin-left: 6px;
  font-style: normal;
  color: #fff;
  font-weight: 600;
}
.bridge-link .arrow {
  display: inline-block;
  transition: transform 0.25s;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bridge-link:hover .arrow { transform: translateX(4px); }

/* Reveal hooks for new elements */
.story-card, .story-tile, .begin-card, .contact-card, .address-block, .cover-frame {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease, transform 1s cubic-bezier(0.22,1,0.36,1);
}
.story-card.in, .story-tile.in, .begin-card.in, .contact-card.in,
.address-block.in, .cover-frame.in {
  opacity: 1;
  transform: translateY(0);
}
.story-card.in:nth-child(2), .story-tile.in:nth-child(2),
.begin-card.in:nth-child(2), .contact-card.in:nth-child(2) { transition-delay: 0.08s; }
.story-card.in:nth-child(3), .story-tile.in:nth-child(3),
.contact-card.in:nth-child(3) { transition-delay: 0.16s; }
.story-tile.in:nth-child(4) { transition-delay: 0.24s; }
.story-tile.in:nth-child(5) { transition-delay: 0.32s; }

/* ============================================
   STOREFRONT — product grid
   ============================================ */
.storefront-section { padding: 70px 0 100px; }
.storefront-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.store-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.6) 0%, rgba(10,14,34,0.4) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.35s;
}
.store-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,232,225,0.3);
  box-shadow: 0 24px 60px -20px rgba(124,232,225,0.18);
}
.store-card-feature {
  border-color: rgba(139,124,255,0.3);
  background: linear-gradient(180deg, rgba(22,18,46,0.7) 0%, rgba(10,14,34,0.45) 100%);
}
.store-card-art {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(124,232,225,0.10), transparent 60%),
    #0a0e22;
}
.store-card-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}
.store-card-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,7,20,0.6) 100%);
  pointer-events: none;
  z-index: 2;
}
.store-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s ease;
}
.store-card:hover .store-img { transform: scale(1.05); }
/* Hide the gridded ::before pattern when there's a real image */
.store-card-art:has(.store-img)::before { display: none; }
.store-emblem {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-align: center;
  padding: 16px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  background-clip: padding-box;
}
.store-emblem {
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.35));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.store-art-1 .store-emblem,
.store-art-2 .store-emblem,
.store-art-3 .store-emblem,
.store-art-4 .store-emblem,
.store-art-5 .store-emblem,
.store-art-6 .store-emblem,
.store-art-7 .store-emblem,
.store-art-8 .store-emblem,
.store-art-9 .store-emblem,
.store-art-10 .store-emblem,
.store-art-11 .store-emblem,
.store-art-12 .store-emblem,
.store-art-13 .store-emblem {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border: 1px solid rgba(255,255,255,0.12);
}
.store-art-1  { background: radial-gradient(ellipse at center, rgba(139,124,255,0.16), #0a0e22 70%); }
.store-art-2  { background: radial-gradient(ellipse at center, rgba(124,232,225,0.14), #0a0e22 70%); }
.store-art-3  { background: radial-gradient(ellipse at center, rgba(231,124,255,0.14), #0a0e22 70%); }
.store-art-4  { background: radial-gradient(ellipse at center, rgba(124,200,255,0.14), #0a0e22 70%); }
.store-art-5  { background: radial-gradient(ellipse at center, rgba(255,180,124,0.10), #0a0e22 70%); }
.store-art-6  { background: radial-gradient(ellipse at center, rgba(139,124,255,0.18), #0a0e22 70%); }
.store-art-7  { background: radial-gradient(ellipse at center, rgba(124,255,180,0.12), #0a0e22 70%); }
.store-art-8  { background: radial-gradient(ellipse at center, rgba(180,124,255,0.16), #0a0e22 70%); }
.store-art-9  { background: radial-gradient(ellipse at center, rgba(255,124,180,0.10), #0a0e22 70%); }
.store-art-10 { background: radial-gradient(ellipse at center, rgba(124,232,200,0.12), #0a0e22 70%); }
.store-art-11 { background: radial-gradient(ellipse at center, rgba(255,200,124,0.10), #0a0e22 70%); }
.store-art-12 { background: radial-gradient(ellipse at center, rgba(124,180,255,0.16), #0a0e22 70%); }
.store-art-13 { background: radial-gradient(ellipse at center, rgba(255,200,124,0.14), #0a0e22 70%); }

.store-card-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.store-title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.store-desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-dim);
  flex: 1;
}
.store-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.store-price {
  font-weight: 700;
  font-size: 16px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.store-price-flex {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.store-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.store-link .arrow {
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.25s;
}
.store-card:hover .store-link .arrow { transform: translateX(4px); }

.store-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease, transform 1s cubic-bezier(0.22,1,0.36,1);
}
.store-card.in { opacity: 1; transform: translateY(0); }
.store-card.in:nth-child(3n+2) { transition-delay: 0.06s; }
.store-card.in:nth-child(3n+3) { transition-delay: 0.12s; }

@media (max-width: 980px) {
  .storefront-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .storefront-grid { grid-template-columns: 1fr; }
}

/* Active state on the gradient pill nav-begin */
.nav-begin.active {
  box-shadow:
    0 14px 36px -10px rgba(139, 124, 255, 0.7),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}

/* Responsive overrides for new layouts */
@media (max-width: 1000px) {
  .doorway-grid-large { grid-template-columns: 1fr; }
  .story-grid, .story-tile-grid, .begin-grid, .contact-grid { grid-template-columns: 1fr; }
  .story-tile-grid { grid-template-columns: 1fr 1fr; }
  .usecase-grid-method { grid-template-columns: 1fr; gap: 40px; }
  .usecase-right-photo { order: -1; }
}
@media (max-width: 600px) {
  .story-tile-grid { grid-template-columns: 1fr; }
  .hero-typographic { padding: 60px 0 40px; }
  .doorway-card-rich .doorway-divider,
  .doorway-card-rich .doorway-eyebrow,
  .doorway-card-rich .doorway-title,
  .doorway-card-rich .doorway-blurb,
  .doorway-card-rich .doorway-link,
  .doorway-card-rich .doorway-pill,
  .doorway-card-rich .doorway-date,
  .doorway-card-rich .doorway-price {
    margin-left: 22px;
    margin-right: 22px;
  }
  .begin-card-feature .begin-card-body { padding: 28px 24px 32px; }
  .contact-card { padding: 28px 24px; }
}

/* ===== Responsive ===== */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .feature-grid, .testimonial-grid, .doorway-grid { grid-template-columns: 1fr; }
  .usecase-grid, .lie-grid, .forwhom-grid, .paths-grid, .about-grid, .faq-grid, .ps-grid,
  .hero-method-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .mechanism-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .mechanism-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent 100%);
  }
  .page-method .hero { padding: 50px 0 60px; }
  .hero-method-title { font-size: clamp(26px, 5vw, 36px); }
  .softclose-title { font-size: clamp(30px, 6vw, 48px); }
  .portrait-caption { text-align: left; }
  .hero-portrait { grid-template-columns: 1fr; }
  .portrait-imgwrap { border-radius: 18px 18px 0 0; min-height: 360px; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-stack { height: 480px; max-width: 480px; margin: 0 auto; }
  .usecase.reverse .usecase-grid > .usecase-right { order: 0; }
  .hero { padding: 60px 0 40px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; }
  .btn-lg { width: 100%; }
  .details-grid, .compare-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .portrait-info { padding: 32px 24px; }
  .portrait-quote { font-size: 22px; }
  .promise-card { padding: 40px 24px; }
  .cover { width: 130px; }
  .cover.c2 { left: 130px; }
  .cover.c3 { left: 30px; }
  .cover.c4 { left: 160px; }
  .about-stack { height: 380px; }
  .manifesto-emphasis { font-size: 40px; }
}

/* ============================================
   Mobile sweep, May 2026
   Tighter section spacing + horizontal overflow guard
   ============================================ */
@media (max-width: 700px) {
  /* Cut the chunky section padding roughly in half on mobile */
  .hero, .hero-method, .hero-typographic { padding-top: 40px; padding-bottom: 40px; }
  .features, .narrative, .manifesto, .builtfor, .builtfor-quote,
  .produces, .doorways, .doorways-large, .mechanism,
  .testimonials, .about-robert, .event-details, .excuses,
  .promise, .paths, .faq, .cta, .ps-section,
  .container-section, .investment, .for-everyone-else, .apply, .softclose,
  .stories-section, .stories-preview, .written-stories,
  .browse-everything, .whatnow, .mentoring-strip, .begin-preview,
  .begin-section, .contact-section, .where-we-are,
  .footer-bridge, .note-section, .storefront-section, .trusted {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  /* Tighten gaps between vertically stacked content blocks */
  .section-title { margin-bottom: 24px; }
  .section-subtitle { margin-bottom: 36px; }
  .hero-cta { margin-bottom: 16px; }
  .signature { margin: 36px auto 24px; }

  /* Slightly less whitespace inside cards on mobile */
  .doorway-card, .feature-card, .testimonial, .lie-col,
  .forwhom-col, .path-card, .promise-card, .store-card,
  .begin-card, .contact-card { padding: 24px; }
  .doorway-card-rich .doorway-divider,
  .doorway-card-rich .doorway-eyebrow,
  .doorway-card-rich .doorway-title,
  .doorway-card-rich .doorway-blurb,
  .doorway-card-rich .doorway-link,
  .doorway-card-rich .doorway-pill,
  .doorway-card-rich .doorway-date,
  .doorway-card-rich .doorway-price { margin-left: 22px; margin-right: 22px; }

  /* Section grid gaps */
  .feature-grid, .doorway-grid, .testimonial-grid,
  .storefront-grid, .begin-grid, .contact-grid,
  .story-grid, .story-tile-grid, .details-grid,
  .compare-grid, .paths-grid, .lie-grid, .forwhom-grid,
  .stats-grid, .doorway-grid-large { gap: 18px; }

  /* Container padding tightened a touch */
  .container { padding-left: 18px; padding-right: 18px; }

  /* Pull-quote breathing room */
  .pullquote { margin: 36px auto; padding: 24px 0; }

  /* Footer */
  .footer { padding: 50px 0 24px; }
  .footer-inner { gap: 28px; margin-bottom: 36px; }

  /* Hero portrait card — avoid being too tall on phones */
  .hero-portrait, .hero-method-grid { gap: 28px; }

  /* Stop tilted cover stack from causing horizontal scroll */
  .about-stack { overflow: hidden; }
}

/* Even tighter at small phone widths */
@media (max-width: 430px) {
  .hero, .hero-method, .hero-typographic { padding-top: 32px; padding-bottom: 32px; }
  .features, .narrative, .manifesto, .builtfor, .doorways, .testimonials,
  .event-details, .promise, .paths, .faq, .cta, .softclose,
  .stories-section, .mentoring-strip, .begin-section, .contact-section,
  .storefront-section { padding-top: 40px; padding-bottom: 40px; }
  .hero-method-title { font-size: clamp(24px, 6vw, 32px) !important; }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
}

/* ============================================
   Storefront cards: whole image + title are clickable
   ============================================ */
/* The image wrapper anchor must fill the .store-card-art (16:10 aspect box)
   so the absolutely-positioned .store-img inside still covers correctly. */
.store-card-art > a {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  color: inherit;
  text-decoration: none;
}
.store-title-link {
  display: inline;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.store-title-link:hover {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.15em;
  margin-right: -0.06em;
}
/* Keep the per-image hover zoom working when image is wrapped in <a> */
.store-card:hover .store-card-art a img,
.store-card:hover .store-card-art > img { transform: scale(1.05); }

/* ============================================
   Bonus card image (e.g., Five Forms of Abundance)
   ============================================ */
/* Bonus image — full-bleed inside the card.
   <picture> can default to display:contents which makes width/margin on it
   unreliable. We size and position the inner <img> instead. */
.bonus-card-img {
  display: block;
  margin: 0 0 24px;
}
.bonus-card-img img {
  display: block;
  width: calc(100% + 72px);
  height: auto;
  margin: -40px -36px 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  max-width: none;
}
/* Cards with a bleed image must clip at their rounded corners */
.path-card:has(.bonus-card-img),
.doorway-card:has(.bonus-card-img) { overflow: hidden; }

/* Silver pricing card (.feature-card) has overflow:hidden globally, which
   clips the "Most Members Start Here" pill positioned at top:-14px.
   Override for any feature-card containing that floating pill. */
.feature-card:has(> .doorway-pill[style*="top: -14px"]),
.feature-card:has(> .doorway-pill[style*="top:-14px"]) {
  overflow: visible;
}

/* Keep doorway pills on one line so they never truncate */
.doorway-pill {
  white-space: nowrap;
}

/* 2-column doorway grid (e.g., four-pillars on RSCI Masterclass).
   Class replaces the inline grid-template-columns: 1fr 1fr.
   Stacks to 1 column on mobile so cards aren't squished. */
.doorway-grid.doorway-grid-2col {
  grid-template-columns: 1fr 1fr;
}
/* Same idea for .feature-grid (base is 3-col): a 2-col variant as a class, not
   an inline style, so it can collapse to 1 column on mobile. */
.feature-grid.feature-grid-2col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 700px) {
  .doorway-grid.doorway-grid-2col { grid-template-columns: 1fr !important; }
  .feature-grid.feature-grid-2col { grid-template-columns: 1fr !important; }
  /* Bonus card image edges match the smaller card padding on mobile */
  .bonus-card-img img {
    width: calc(100% + 48px);
    margin: -24px -24px 0;
  }
}

/* ============================================
   Hamburger menu + mobile drawer
   ============================================ */

/* Hamburger button — hidden on desktop, shown on mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
  position: relative;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Close button — visible inside the mobile drawer only */
.nav-close {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 220;
}

/* Backdrop behind the drawer.
   Kept transparent (no dim/blur) so only the drawer area is visible — but it
   still captures clicks when nav-open is active for click-outside-to-close.
   CRITICAL: pointer-events: none until open, otherwise the invisible overlay
   blocks every click on the page. */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 150;
  pointer-events: none;
  touch-action: none;
}

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav-close { display: inline-flex; }
  .nav-backdrop { display: block; }

  /* The nav-links list becomes a full-height drawer that slides in from the right */
  .nav-links {
    display: flex;            /* override the existing display:none */
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(82vw, 360px);
    padding: 80px 28px 32px;
    margin: 0;
    background: linear-gradient(180deg, rgba(13,18,36,0.98) 0%, rgba(5,7,20,0.98) 100%);
    border-left: 1px solid var(--border-strong);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,0.6);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }
  .nav-links li {
    list-style: none;
    width: 100%;
  }
  .nav-links a {
    display: block;
    padding: 14px 4px;
    font-size: 19px;
    font-weight: 600;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.005em;
  }
  .nav-links a:hover, .nav-links a.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(124,232,225,0.05), transparent);
    padding-left: 8px;
  }
  .nav-links a.active {
    color: var(--cyan);
  }

  /* Drawer slides in, backdrop becomes clickable (still invisible).
     Body becomes position:fixed so iOS Safari can't rubber-band-scroll behind
     the open drawer. The JS captures scrollY before lock and restores after. */
  .nav-links { overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  body.nav-open .nav-links { transform: translateX(0); }
  body.nav-open .nav-backdrop { pointer-events: auto; }
  body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }
  html:has(body.nav-open) { overflow: hidden; overscroll-behavior: none; }

  /* Hamburger morphs into X when open (visual feedback) */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* On very small phones, drawer covers more of the screen */
@media (max-width: 430px) {
  .nav-links { width: 88vw; padding: 76px 22px 28px; }
  .nav-links a { font-size: 17px; padding: 13px 4px; }
}

/* Mobile nav element ordering: hamburger pinned at far right, Begin to its left */
@media (max-width: 1000px) {
  .nav-inner { gap: 14px; }
  .nav-actions { order: 2; margin-left: auto; }
  .nav-toggle { order: 3; margin-left: 0; }
  .logo { order: 1; }
  /* Shrink Begin button slightly on mobile so everything fits */
  .nav-begin { padding: 9px 18px; font-size: 13px; }
}
@media (max-width: 430px) {
  .nav-begin { padding: 8px 14px; font-size: 12px; }
  .logo-img { height: 26px; }
}

/* Floating pricing pill (e.g., "Most Members Start Here" on RSCI Masterclass)
   sits at top:-14px hanging above the card. Without a solid background the
   card's rounded border shows through behind the pill. Give it the page bg
   so the card border visually breaks behind the pill. */
.doorway-pill[style*="top: -14px"],
.doorway-pill[style*="top:-14px"] {
  background: var(--bg);
  border: 1px solid rgba(124, 232, 225, 0.4);
}

/* =========================================
   THE IMPOSSIBLE EXPERIENCE — funnel-style page
   Centered single-column layout, intense copy
   ========================================= */

.page-tie-funnel { background: var(--bg, #050714); }

/* Container — narrower than brand default, GHL-funnel-style */
.tie-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.tie-section {
  padding: 70px 0;
  position: relative;
}
.tie-section-tight { padding: 30px 0; }

/* HERO */
.tie-hero {
  padding: 110px 0 60px;
  text-align: center;
  position: relative;
}
.tie-hero .tie-container { max-width: 1100px; }
.tie-trigger {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(139, 124, 255, 0.10);
  border: 1px solid rgba(139, 124, 255, 0.30);
  color: #C8BFFF;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  font-weight: 500;
}
.tie-hero-title {
  font-size: clamp(34px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 auto 22px;
  max-width: 920px;
}
.tie-hero-sub {
  font-size: clamp(17px, 1.8vw, 21px);
  color: var(--text-dim, #A8AEC1);
  letter-spacing: 0.04em;
  margin: 0 auto 36px;
  font-weight: 500;
}
.tie-cta-row {
  display: flex;
  justify-content: center;
  margin: 36px 0 48px;
}
.tie-cta {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 800;
  padding: 18px 36px;
}
.tie-hero-image {
  margin: 0 auto;
  max-width: 1100px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}
.tie-hero-image img { width: 100%; height: auto; display: block; }

/* SECTION TITLES — bold, all-caps, centered (matches GHL-funnel aesthetic) */
.tie-section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  letter-spacing: 0.01em;
  color: #fff;
  margin: 0 auto 28px;
  max-width: 820px;
}
.tie-section-lead {
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-dim, #A8AEC1);
  margin: 0 auto 36px;
  max-width: 720px;
  font-weight: 500;
}

/* PROSE — body paragraphs, centered for funnel feel */
.tie-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.tie-prose-center { text-align: center; }
.tie-prose p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-dim, #A8AEC1);
  margin: 0 0 18px;
}
.tie-prose-emphasis {
  color: #fff !important;
  font-weight: 700;
  font-size: 20px !important;
  margin-top: 28px !important;
  margin-bottom: 18px !important;
}
.tie-prose-bold {
  color: #fff !important;
  font-weight: 800;
  font-size: 22px !important;
  margin-top: 22px !important;
}

/* PRESS BAND (As featured in) — full-width white stripe on desktop with logos
   in a single row, card-style on mobile so it doesn't run edge-to-edge cramped. */
.tie-press-band {
  background: #fff;
  padding: 24px 0;
  width: 100%;
}
.tie-press-band-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}
.tie-press-logo {
  display: block;
  height: auto;
  max-height: 44px;
  width: auto;
  flex-shrink: 1;
  object-fit: contain;
}

/* Mobile: stack to a 3×2 grid card with rounded corners */
@media (max-width: 800px) {
  .tie-press-band {
    background: transparent;
    padding: 48px 24px;
  }
  .tie-press-band-inner {
    background: #fff;
    border-radius: 14px;
    padding: 26px 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 16px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.30);
  }
  .tie-press-logo {
    max-height: 32px;
    margin: 0 auto;
  }
}
@media (max-width: 460px) {
  .tie-press-band-inner { grid-template-columns: repeat(2, 1fr); }
}

/* Divider image (full-width image between sections) */
.tie-divider-image {
  max-width: 540px;
  margin: 0 auto 46px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  box-shadow: 0 20px 50px rgba(0,0,0,0.40);
}
.tie-divider-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* BULLET LIST (for live demos + promise) */
.tie-bullet-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tie-bullet-list li {
  position: relative;
  padding: 16px 22px 16px 56px;
  background: linear-gradient(180deg, rgba(15,21,48,0.55) 0%, rgba(10,14,34,0.35) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  color: var(--text, #E6E9F2);
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
}
.tie-bullet-list li::before {
  content: "→";
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 18px;
}

/* EXPERIENCE GRID (3 numbered cards) */
.tie-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 auto 48px;
  max-width: 1000px;
}
.tie-experience-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.tie-experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 232, 225, 0.30);
}
.tie-experience-num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.24em;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.tie-experience-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
}
.tie-experience-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim, #A8AEC1);
  margin: 0;
}

/* LEAVE LIST (what you'll leave with) */
.tie-leave-list {
  list-style: none;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tie-leave-list li {
  position: relative;
  padding: 18px 22px 18px 56px;
  background: linear-gradient(180deg, rgba(15,21,48,0.55) 0%, rgba(10,14,34,0.35) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 12px;
  color: var(--text, #E6E9F2);
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
}
.tie-leave-list li::before {
  content: "✓";
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 18px;
}
.tie-leave-list li strong {
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* =========================================
   APPLICATION FORM (PTP apply page)
   ========================================= */
.app-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
.app-fieldset {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 21, 48, 0.55) 0%, rgba(10, 14, 34, 0.40) 100%);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.app-legend {
  padding: 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) {
  .app-fieldset { padding: 22px 18px 18px; }
  .app-row { grid-template-columns: 1fr; gap: 18px; }
}
.app-field { display: flex; flex-direction: column; gap: 8px; }
.app-field label,
.app-field .app-label {
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #E6E9F2;
}
.app-field input[type="text"],
.app-field input[type="email"],
.app-field input[type="tel"],
.app-field input[type="url"],
.app-field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 18, 36, 0.65);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.app-field textarea { resize: vertical; min-height: 84px; }
.app-field input:focus,
.app-field textarea:focus {
  outline: none;
  border-color: rgba(124, 232, 225, 0.6);
  background: rgba(13, 18, 36, 0.85);
  box-shadow: 0 0 0 3px rgba(124, 232, 225, 0.10);
}
.app-field input::placeholder,
.app-field textarea::placeholder { color: rgba(168, 174, 193, 0.55); }
.app-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.app-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 18, 36, 0.5);
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.app-radio:hover { border-color: rgba(124, 232, 225, 0.4); }
.app-radio input { accent-color: #7CE8E1; }
.app-radio input:checked + span { color: #7CE8E1; font-weight: 600; }
.app-radio:has(input:checked) {
  border-color: rgba(124, 232, 225, 0.6);
  background: rgba(124, 232, 225, 0.07);
}
.app-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.app-fineprint {
  font-size: 13px;
  color: var(--text-dim, #A8AEC1);
  text-align: center;
  margin: 0;
}
.app-error {
  font-size: 14px;
  color: #ff7a7a;
  text-align: center;
  margin: 6px 0 0;
  max-width: 520px;
}
/* Wrapper around the GHL iframe so the embed sits cleanly inside the page. */
.app-frame-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}
.app-iframe { display: block; width: 100%; border: none; background: transparent; }

/* Calendar iframe wrap (Sara booking page + future bookings) */
.cal-frame-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}
.cal-iframe { display: block; width: 100%; border: none; background: transparent; }

/* =========================================
   WATCH ROBERT SIMIC (hub + video pages)
   ========================================= */
.wrs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .wrs-grid { grid-template-columns: 1fr; gap: 28px; max-width: 480px; }
}
.wrs-grid-mini {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
}
@media (max-width: 980px) { .wrs-grid-mini { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wrs-grid-mini { grid-template-columns: 1fr; max-width: 360px; } }

/* Subtle gradient divider between the two WRS sections */
.wrs-section-divider {
  width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 232, 225, 0.45), rgba(139, 124, 255, 0.45), transparent);
  border: 0;
  margin: 30px auto 0;
}

.wrs-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.65) 0%, rgba(10,14,34,0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.wrs-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 232, 225, 0.25);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}
.wrs-card-art {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050714;
}
.wrs-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.wrs-card:hover .wrs-card-art img { transform: scale(1.04); }
.wrs-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.wrs-card-play svg {
  width: 56px;
  height: 56px;
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  opacity: 0.92;
  background: rgba(13, 18, 36, 0.55);
  border-radius: 50%;
  padding: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.wrs-card:hover .wrs-card-play svg {
  background: rgba(124, 232, 225, 0.95);
  color: #050714;
  transform: scale(1.06);
}
.wrs-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.wrs-card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.wrs-card-title a { color: inherit; text-decoration: none; }
.wrs-card-title a:hover { color: #7CE8E1; }
.wrs-card-blurb {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim, #A8AEC1);
  margin: 0;
  flex: 1;
}
.wrs-card-mini { background: transparent; border: 1px solid rgba(255,255,255,0.06); }
.wrs-card-mini .wrs-card-title { padding: 14px 16px; font-size: 15px; margin: 0; }
.wrs-card-mini .wrs-card-play svg { width: 40px; height: 40px; padding: 10px; }

/* Video player + share row on single video pages */
.wrs-video-wrap {
  margin: 0 auto 28px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124, 232, 225, 0.18);
  background: #000;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.5);
}
.wrs-video { display: block; width: 100%; height: auto; }

.wrs-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 0 0;
}
.wrs-share-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim, #A8AEC1);
  font-weight: 600;
  margin-right: 6px;
}
.wrs-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 18, 36, 0.55);
  color: #E6E9F2;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  padding: 0;
}
.wrs-share-btn:hover {
  background: rgba(124, 232, 225, 0.95);
  color: #050714;
  border-color: rgba(124, 232, 225, 0.95);
  transform: translateY(-2px);
}
.wrs-share-btn:active { transform: translateY(0); }

.wrs-transcript {
  padding: 30px 32px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15,21,48,0.6) 0%, rgba(10,14,34,0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.wrs-transcript p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 14px;
  color: var(--text, #E6E9F2);
}
.wrs-transcript p:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .wrs-transcript { padding: 22px 18px; }
  .wrs-transcript p { font-size: 15.5px; }
}

/* Footer left-column contact CTA (phone + Aria chat nudge) */
.footer-contact {
  margin: 18px 0 4px;
  font-size: 14.5px;
  color: #E6E9F2;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") no-repeat center;
  color: var(--cyan, #7CE8E1);
  opacity: 0.85;
}
.footer-phone {
  color: #E6E9F2;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.2s ease, border-color 0.2s ease;
}
/* Override .footer-col a { display: block } so the underline only sits
   under the link's actual text, not stretched across the column. */
.footer-col .footer-phone,
.footer-col .footer-aria-link { display: inline; margin: 0; }
.footer-phone:hover {
  color: #7CE8E1;
  border-bottom-color: rgba(124, 232, 225, 0.5);
}
.footer-aria-nudge {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--text-dim, #A8AEC1);
  letter-spacing: 0.01em;
}
.footer-aria-link {
  color: #7CE8E1;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 232, 225, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}
.footer-aria-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.footer-aria-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 2px;
}
.footer-aria-link:hover .footer-aria-arrow {
  transform: translateX(3px);
}

/* =========================================
   LEGAL PAGES (terms, privacy)
   ========================================= */
.page-legal .section-subtitle {
  text-align: left;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 28px 0 12px;
  max-width: none;
}
.page-legal .builtfor { padding: 50px 0; }
.page-legal .builtfor + .builtfor { padding-top: 0; }
.page-legal .prose p { font-size: 16.5px; line-height: 1.75; }
.page-legal .prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: #E6E9F2;
}
.page-legal .check-list { margin: 12px 0 22px; }
.page-legal .check-list li { font-size: 16px; }
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 700px) {
  .toc-list { grid-template-columns: 1fr 1fr; gap: 10px 28px; }
}
.toc-list li {
  counter-increment: toc;
  padding: 4px 0;
  font-size: 15px;
}
.toc-list li::before {
  content: counter(toc, decimal) ". ";
  color: var(--text-dim, #A8AEC1);
  margin-right: 6px;
  font-weight: 600;
}
.toc-list a {
  color: #E6E9F2;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 232, 225, 0.0);
  transition: color 0.2s, border-color 0.2s;
}
.toc-list a:hover {
  color: #7CE8E1;
  border-bottom-color: rgba(124, 232, 225, 0.4);
}
.page-legal .prose a {
  color: #7CE8E1;
  text-decoration: none;
  border-bottom: 1px solid rgba(124, 232, 225, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.page-legal .prose a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.app-success {
  background: linear-gradient(180deg, rgba(124, 232, 225, 0.08) 0%, rgba(139, 124, 255, 0.06) 100%);
  border: 1px solid rgba(124, 232, 225, 0.25);
  border-radius: 16px;
  padding: 38px 28px;
  text-align: center;
}
.app-success h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.app-success p { color: #E6E9F2; margin: 0 0 8px; }
.app-success p.serif-italic { color: var(--text-dim, #A8AEC1); margin-top: 14px; }

/* PRESS COVERS — 4 magazine covers, staggered overlap (desktop-only) */
.tie-press-covers-section {
  padding: 64px 0 48px;
  background: transparent;
}
.tie-press-covers {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.tie-press-covers figure {
  margin: 0;
  width: 320px;
  flex: 0 0 320px;
  position: relative;
  transition: transform 0.35s ease;
}
/* horizontal overlap between siblings */
.tie-press-covers figure + figure {
  margin-left: -56px;
}
/* vertical stagger: 1st & 3rd drop, 2nd & 4th sit high */
.tie-press-covers figure:nth-child(odd)  { margin-top: 64px; }
.tie-press-covers figure:nth-child(even) { margin-top: 0;    }
/* z-index ascends left → right so each cover overlaps the previous */
.tie-press-covers figure:nth-child(1) { z-index: 1; }
.tie-press-covers figure:nth-child(2) { z-index: 2; }
.tie-press-covers figure:nth-child(3) { z-index: 3; }
.tie-press-covers figure:nth-child(4) { z-index: 4; }
.tie-press-covers figure:hover {
  transform: translateY(-6px);
  z-index: 5;
}
.tie-press-covers img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55), 0 4px 14px rgba(0, 0, 0, 0.35);
}
/* hide on mobile / narrow tablet */
@media (max-width: 1000px) {
  .tie-press-covers-section { display: none; }
}

/* PRESS COVERS — mobile-only swipe carousel */
.tie-press-covers-mobile {
  display: none;
}
@media (max-width: 1000px) {
  .tie-press-covers-mobile {
    display: block;
    padding: 36px 0 28px;
  }
  .tie-press-covers-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 24px;
    padding: 10px 24px 22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tie-press-covers-track::-webkit-scrollbar { display: none; }
  .tie-press-covers-track figure {
    margin: 0;
    flex: 0 0 72%;
    max-width: 280px;
    scroll-snap-align: center;
  }
  .tie-press-covers-track img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.35);
  }
  .tie-press-covers-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
  }
  .tie-press-covers-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    transition: background 0.25s, transform 0.25s;
  }
  .tie-press-covers-dots span.is-active {
    background: var(--cyan, #7CE8E1);
    transform: scale(1.25);
  }
}

/* IS THIS FOR YOU? — yes/no grid */
.tie-yesno-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.tie-yesno {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 18px;
  padding: 34px 30px;
}
.tie-yesno-no { border-color: rgba(255, 100, 100, 0.18); }
.tie-yesno-yes { border-color: rgba(124, 232, 225, 0.25); }
.tie-yesno-head {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.tie-yesno-no .tie-yesno-head { color: #FF8B8B; }
.tie-yesno-yes .tie-yesno-head {
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tie-yesno ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tie-yesno li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dim, #A8AEC1);
}
.tie-yesno-no li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0;
  color: #FF8B8B;
  font-weight: 700;
  font-size: 15px;
}
.tie-yesno-yes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 17px;
}

/* TESTIMONIALS */
.tie-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.tie-testimonial {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 30px 26px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.tie-testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 232, 225, 0.25);
}
.tie-stars {
  color: #F4C25A;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 8px rgba(244, 194, 90, 0.35));
}
.tie-testimonial-quote {
  font-size: 18px;
  line-height: 1.55;
  color: #fff;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 22px;
}
.tie-testimonial-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-dim, #A8AEC1);
}

/* EVENT DETAILS */
.tie-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.tie-detail-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 18px;
  padding: 30px 22px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.tie-detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 232, 225, 0.30);
}
.tie-detail-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: rgba(124, 232, 225, 0.07);
  border: 1px solid rgba(124, 232, 225, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tie-detail-price .tie-detail-icon {
  background: rgba(139, 124, 255, 0.08);
  border-color: rgba(139, 124, 255, 0.30);
}
.tie-detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim, #A8AEC1);
  margin-bottom: 10px;
  font-weight: 700;
}
.tie-detail-value {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.tie-detail-price .tie-detail-value {
  font-size: 22px;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* PATHS */
.tie-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 28px;
}
.tie-path {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 18px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
}
.tie-path-1 { opacity: 0.72; }
.tie-path-2 {
  border-color: rgba(124, 232, 225, 0.30);
  background: linear-gradient(180deg, rgba(20,40,60,0.72) 0%, rgba(15,30,50,0.5) 100%);
}
.tie-path-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(124,232,225,0.16), transparent 60%);
  pointer-events: none;
}
.tie-path-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim, #A8AEC1);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.tie-path-2 .tie-path-num {
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tie-path p {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 22px;
  position: relative; z-index: 1;
}
.tie-cta-inline {
  font-size: 13.5px;
  letter-spacing: 0.05em;
  font-weight: 800;
  position: relative; z-index: 1;
}
.tie-paths-foot {
  text-align: center;
  font-size: 18px;
  color: var(--text-dim, #A8AEC1);
  margin: 0;
}

/* CLOSING IMAGE */
.tie-closing-wrap {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  box-shadow: 0 30px 80px rgba(0,0,0,0.40);
}
.tie-closing-wrap img { width: 100%; height: auto; display: block; }

/* ===== Mobile ===== */
@media (max-width: 980px) {
  .tie-hero { padding: 90px 0 50px; }
  .tie-experience-grid { grid-template-columns: 1fr; max-width: 520px; }
  .tie-yesno-grid { grid-template-columns: 1fr; }
  .tie-testimonials { grid-template-columns: 1fr; max-width: 520px; }
  .tie-details-grid { grid-template-columns: repeat(2, 1fr); }
  .tie-paths-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .tie-section { padding: 50px 0; }
  .tie-container { padding: 0 18px; }
  .tie-hero { padding: 80px 0 40px; }
  .tie-trigger { font-size: 12px; padding: 8px 16px; margin-bottom: 22px; }
  .tie-press-strip-wrap { padding: 22px 18px; }
  .tie-press-strip-img { max-width: 100%; }
  .tie-divider-image { margin-bottom: 32px; }
  .tie-cta { font-size: 14px; padding: 16px 28px; }
  .tie-bullet-list li, .tie-leave-list li { padding: 14px 18px 14px 48px; font-size: 15.5px; }
  .tie-bullet-list li::before, .tie-leave-list li::before { left: 18px; }
  .tie-prose p { font-size: 16.5px; }
}
@media (max-width: 460px) {
  .tie-details-grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* Honour brand voice: reset any em-dashes-in-rendered-content to a softer hyphen
   only via author's content. (CSS cannot transform text content; this is intentionally
   noted for the user.) */

/* =========================================
   TIE — split hero (text left, portrait right)
   ========================================= */
/* Hero: full-width landscape hero photo as background (Robert sits center-right
   in the source image, so background-position: center-right anchors his face
   in the right half). A left-to-right dark gradient overlay makes the text on
   the left fully readable. Decorative SVG waves layer on top of everything. */
.tie-hero-v2 {
  padding: 0;
  position: relative;
  min-height: min(88vh, 820px);
  overflow: hidden;
  background-image: url('img/tie-hero-lines.webp');
  background-size: cover;
  /* For cover-sized images larger than the container, percentages BELOW 100%
     push the visible window leftward in the image, which makes the image's
     right-side subject (Robert) appear further right in the container.
     ~72% lands Robert in the right portion with comfortable space from the
     text on the left. */
  background-position: 72% center;
  background-repeat: no-repeat;
  background-color: #050714;
}
/* Subtle dark veil on the leftmost portion only — extra insurance for text
   legibility since the new hero image already has the dark left baked in. */
.tie-hero-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(5, 7, 20, 0.45) 0%,
    rgba(5, 7, 20, 0.20) 30%,
    rgba(5, 7, 20, 0.00) 55%);
  pointer-events: none;
  z-index: 1;
}
.tie-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(88vh, 820px);
  padding: 120px 28px 80px clamp(28px, 8vw, 110px);
}
.tie-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  width: 100%;
  text-align: left;
}
.tie-hero-text > * { text-align: left; }
.tie-hero-text .tie-hero-meta { justify-content: flex-start; }
.tie-hero-text .tie-hero-title { margin-left: 0; margin-right: auto; }
.tie-hero-text .tie-hero-sub::before,
.tie-hero-text .tie-hero-sub::after { display: inline; }
.tie-hero-trigger {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  opacity: 0.92;
  margin-bottom: 24px;
  line-height: 1.4;
}
.tie-hero-meta {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  line-height: 1.4;
}
.tie-meta-sep { color: var(--text-muted, #6B7185); }
.tie-meta-accent { font-weight: 500; }
.tie-hero-title {
  font-size: clamp(38px, 5.4vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 640px;
}
.tie-hero-title .serif-italic { font-style: italic; }
.tie-hero-sub {
  font-size: 17px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.tie-hero-sub::before { content: "— "; opacity: 0.5; }
.tie-hero-sub::after { content: " —"; opacity: 0.5; }
.tie-hero-brandline {
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin: 0 0 38px;
}
.tie-cta-row-left { justify-content: flex-start; margin: 0; flex-direction: column; align-items: flex-start; gap: 12px; }
.tie-cta-ghost {
  padding: 18px 34px;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 800;
}
.tie-cta-caption {
  font-size: 14px;
  color: var(--text-dim, #A8AEC1);
  letter-spacing: 0.02em;
}
/* Mobile-only photo: hidden on desktop, shown stacked below text on mobile */
.tie-hero-mobile-photo {
  display: none;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  max-height: 560px;
  background-image: url('img/RS-hero-mobile.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.tie-hero-mobile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg, #050714) 100%);
  pointer-events: none;
}

/* Mobile collapse: drop the desktop background image and use the stacked
   mobile-photo div instead. Text overlay becomes hard to read on a tall narrow
   viewport, so we stack: text on top, photo below. */
@media (max-width: 980px) {
  .tie-hero-v2 {
    background-image: none;
    min-height: auto;
  }
  .tie-hero-v2::after { display: none; }
  .tie-hero-inner {
    padding: 100px 24px 32px;
    min-height: auto;
    display: block;
  }
  .tie-hero-text { max-width: 100%; }
  .tie-hero-waves { opacity: 0.5; }
  .tie-hero-mobile-photo { display: block; }
}
@media (max-width: 600px) {
  .tie-hero-trigger { font-size: 11.5px; letter-spacing: 0.16em; }
  .tie-hero-meta { font-size: 14px; }
  .tie-hero-brandline { font-size: 19px; margin-bottom: 30px; }
  .tie-cta-ghost { font-size: 13px; padding: 16px 26px; }
  .tie-hero-mobile-photo { height: 60vh; min-height: 380px; }
}

/* =========================================
   PAGE HERO — reusable full-width bg + stacked mobile (TIE-style).
   Each page can override --hero-bg / --hero-bg-mobile / --hero-bg-pos /
   --hero-bg-mobile-pos inline on the <section> to swap the image.
   ========================================= */
.page-hero-bg {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  background-image: url('img/tie-hero-lines.webp');
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  background-color: #050714;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(5, 7, 20, 0.55) 0%,
    rgba(5, 7, 20, 0.25) 35%,
    rgba(5, 7, 20, 0.00) 60%);
  pointer-events: none;
  z-index: 1;
}
.page-hero-bg-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: min(78vh, 720px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 28px 80px clamp(28px, 7vw, 96px);
}
.page-hero-bg-text {
  max-width: 600px;
  width: 100%;
  text-align: left;
}
.page-hero-bg-text > *,
.page-hero-bg-text .hero-typographic-title,
.page-hero-bg-text .hero-typographic-subhead,
.page-hero-bg-text .section-title {
  text-align: left;
}
.page-hero-bg-text .eyebrow,
.page-hero-bg-text .eyebrow.center {
  justify-content: flex-start;
  text-align: left;
}
/* When the softclose block lives inside a page-hero-bg wrapper, left-align it
   so signature lines up with the title instead of centering. */
.page-hero-bg-text .softclose-title { text-align: left; margin-left: 0; }
.page-hero-bg-text .signature {
  align-items: flex-start;
  margin-left: 0;
  margin-right: 0;
}
.page-hero-bg-mobile-photo {
  display: none;
  width: 100%;
  height: 56vh;
  min-height: 340px;
  max-height: 520px;
  background-image: url('img/RS-hero-mobile.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.page-hero-bg-mobile-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg, #050714) 100%);
  pointer-events: none;
}
@media (max-width: 980px) {
  .page-hero-bg {
    background-image: none;
    min-height: auto;
  }
  .page-hero-bg::after { display: none; }
  .page-hero-bg-inner {
    padding: 100px 24px 32px;
    min-height: auto;
    display: block;
  }
  .page-hero-bg-text { max-width: 100%; }
  .page-hero-bg-mobile-photo { display: block; }
}

/* Per-page hero background overrides. Add new .hero-<page> modifiers here. */
.page-hero-bg.hero-stories {
  background-image: url('img/stories-hero.webp');
  background-position: 70% center;
}
.page-hero-bg.hero-stories .page-hero-bg-mobile-photo {
  background-image: url('img/rs-desert-hero-mobile.webp');
  background-position: center center;
}
.page-hero-bg.hero-tie {
  background-image: url('img/tie-closer.webp');
  background-position: 75% center;
  min-height: 0 !important;
}
.page-hero-bg.hero-tie .page-hero-bg-inner {
  min-height: 0 !important;
  padding-top: 28px;
  padding-bottom: 28px;
}
.page-hero-bg.hero-tie .closer-prose {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.5;
  margin: 14px 0 22px;
  max-width: 560px;
}
.page-hero-bg.hero-tie .closer-prose + .closer-prose { margin-top: 38px; }
.page-hero-bg.hero-tie .closer-ps-label {
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.32em;
  margin-bottom: 6px;
  display: inline-block;
}
.page-hero-bg.hero-tie .closer-prose br + br { display: none; }
.page-hero-bg.hero-tie .softclose-title {
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 14px rgba(5,7,20,0.9)) drop-shadow(0 0 6px rgba(5,7,20,0.7));
}
.page-hero-bg.hero-tie .signature { margin-top: 18px; }
.page-hero-bg.hero-tie .page-hero-bg-mobile-photo {
  background-image: url('img/tie-closer-mobile.webp');
  background-position: center center;
  height: 30vh;
  min-height: 180px;
  max-height: 280px;
}
.page-hero-bg.hero-sara {
  background-image: url('img/sara-hero.webp');
  background-position: 70% center;
}
.page-hero-bg.hero-underwater {
  background-image: url('img/underwater-hero.webp');
  background-position: 25% center;
  min-height: min(72vh, 640px);
}
.page-hero-bg.hero-underwater::after {
  background: linear-gradient(90deg,
    rgba(5, 7, 20, 0.10) 0%,
    rgba(5, 7, 20, 0.20) 35%,
    rgba(5, 7, 20, 0.70) 75%,
    rgba(5, 7, 20, 0.85) 100%);
}
.page-hero-bg.hero-underwater .page-hero-bg-inner {
  justify-content: flex-end;
  min-height: min(72vh, 640px);
}
.page-hero-bg.hero-underwater .page-hero-bg-text {
  margin-left: auto;
  max-width: 540px;
}
.page-hero-bg.hero-underwater .page-hero-bg-mobile-photo {
  background-image: url('img/underwater-hero-mobile.webp');
  background-position: center center;
}
.underwater-quote {
  font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: 0.005em;
}
.page-hero-bg.hero-underwater .signature { align-items: flex-start; margin: 0; }
.page-hero-bg.hero-underwater .sign-line { color: #E6E9F2; }
.page-hero-bg.hero-sara .page-hero-bg-mobile-photo {
  background-image: url('img/sara-hero-mobile-c.webp');
  background-position: center center;
}
.page-hero-bg.hero-realignment {
  background-image: url('img/tgr-hero.webp');
  background-position: 60% center;
  min-height: min(72vh, 640px);
}
.page-hero-bg.hero-realignment::after {
  background: linear-gradient(90deg,
    rgba(5, 7, 20, 0.20) 0%,
    rgba(5, 7, 20, 0.35) 35%,
    rgba(5, 7, 20, 0.78) 75%,
    rgba(5, 7, 20, 0.90) 100%);
}
.page-hero-bg.hero-realignment .page-hero-bg-mobile-photo {
  background-image: url('img/tgr-hero-mobile.webp');
  background-position: center center;
}

/* Thank-you variant — Robert in contemplation, dark portrait. Image is already
   near-black so the overlay only needs to lift legibility on the LEFT (text)
   side without dimming Robert on the right. */
.page-hero-bg.hero-realignment-thanks {
  background-image: url('img/realignment-hero.webp');
  background-position: 75% center;
  min-height: min(72vh, 640px);
}
.page-hero-bg.hero-realignment-thanks::after {
  background: linear-gradient(90deg,
    rgba(5, 7, 20, 0.92) 0%,
    rgba(5, 7, 20, 0.72) 35%,
    rgba(5, 7, 20, 0.30) 65%,
    rgba(5, 7, 20, 0.10) 100%);
}
.page-hero-bg.hero-realignment-thanks .page-hero-bg-mobile-photo {
  background-image: url('img/realignment-hero-mobile.webp');
  background-position: center top;
}

@media (max-width: 980px) {
  /* Desktop bg must drop on mobile — override per-page rules with same selector. */
  .page-hero-bg.hero-stories,
  .page-hero-bg.hero-sara,
  .page-hero-bg.hero-underwater,
  .page-hero-bg.hero-realignment,
  .page-hero-bg.hero-realignment-thanks,
  .page-hero-bg.hero-tie { background-image: none; }
  .page-hero-bg.hero-underwater .page-hero-bg-text { max-width: 100%; margin-left: 0; }
}

/* =========================================
   THE GREAT REALIGNMENT — page-specific
   ========================================= */
.realignment-prose { max-width: 720px; margin: 0 auto; }
.realignment-prose p { color: var(--text-dim); font-size: 17px; line-height: 1.78; margin: 0 0 18px; }
.realignment-prose p:last-child { margin-bottom: 0; }
.realignment-prose em { color: #fff; font-style: italic; font-weight: 500; }

.realignment-questions {
  margin: 44px 0;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.realignment-questions p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.55;
  margin: 0 0 14px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.18em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.realignment-questions p:last-child { margin-bottom: 0; }

.realignment-pull {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.realignment-pull em {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  padding-right: 0.18em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
.realignment-pull-divider {
  width: 48px; height: 1px;
  background: var(--grad-cyan);
  margin: 0 auto 30px;
}
.realignment-pull-divider.after { margin: 30px auto 0; }

/* Daily arc */
.realignment-days { padding: 100px 0; }
.realignment-day {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.realignment-day:last-child { border-bottom: 0; }
.realignment-day-meta { padding-top: 16px; border-top: 1px solid rgba(124, 232, 225, 0.45); }
.realignment-day-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.realignment-day-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--text-dim);
  margin-top: 8px;
  font-weight: 500;
}
.realignment-day-body h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.25;
}
.realignment-day-body p {
  color: var(--text-dim);
  font-size: 16.5px;
  line-height: 1.8;
  margin: 0 0 14px;
}
.realignment-day-body p:last-child { margin: 0; }
.realignment-day-body em {
  font-style: italic;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.18em;
}

/* Inclusions list */
.realignment-inclusions {
  max-width: 740px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.realignment-inclusions li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: baseline;
}
.realignment-inclusions li:last-child { border-bottom: 0; }
.realignment-inclusions .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.realignment-inclusions .item {
  font-size: 16.5px;
  color: var(--text-dim);
  line-height: 1.65;
}
.realignment-inclusions .item strong { color: #fff; font-weight: 600; }

/* Testimonials — 5-up landscape (16:9) video grid */
.realignment-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.realignment-testi-grid.row-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 22px auto 0;
}
.realignment-testi {
  position: relative;
  background: #0a0e22;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.realignment-testi video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}
.realignment-testi-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 12px;
  background: linear-gradient(to top, rgba(5,7,20,0.94) 0%, rgba(5,7,20,0.55) 55%, rgba(5,7,20,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.realignment-testi-meta .quote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 6px;
}
.realignment-testi-meta .name {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Application form (GHL iframe embed) — wrapper card */
.application-frame {
  max-width: 760px;
  margin: 0 auto;
  background: #0d1224;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px -50px rgba(124,232,225,0.18);
}
.application-frame iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: transparent;
}
.application-note {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 13px;
  color: #6B7185;
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .application-frame { border-radius: 14px; }
  .application-frame iframe { min-height: 800px; }
}

/* YouTube documentary — click-to-load facade (no iframe until clicked) */
.realignment-yt {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0e22;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px -40px rgba(124,232,225,0.25);
}
.realignment-yt-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0a0e22;
  transition: filter 0.3s ease, transform 0.4s ease;
}
.realignment-yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 2;
  pointer-events: none;
}
.realignment-yt-play svg { transition: transform 0.25s ease; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5)); }
.realignment-yt-play svg circle { transition: fill 0.25s ease, stroke 0.25s ease; }
.realignment-yt:hover .realignment-yt-play svg { transform: scale(1.06); }
.realignment-yt:hover .realignment-yt-play svg circle { fill: rgba(124,232,225,0.35); stroke: rgba(255,255,255,0.85); }
.realignment-yt:hover .realignment-yt-poster { filter: brightness(0.78); }
.realignment-yt:focus-visible { outline: 2px solid rgba(124,232,225,0.7); outline-offset: 4px; }
.realignment-yt.playing { cursor: default; box-shadow: none; }
.realignment-yt iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Villa gallery */
.realignment-gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.realignment-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0a0e22;
  border-radius: 10px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  background-size: cover;
  background-position: center;
}
.realignment-gallery-item:hover { transform: scale(1.02); opacity: 0.95; }

/* "This is for you if" list */
.realignment-yes {
  list-style: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}
.realignment-yes li {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text-dim);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  text-align: left;
  display: flex;
  gap: 16px;
}
.realignment-yes li:last-child { border-bottom: 0; }
.realignment-yes li::before {
  content: "—";
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  flex-shrink: 0;
}

/* Thank-you page: "tell your inbox these emails are wanted" steps list */
.tp-inbox-steps {
  list-style: none;
  max-width: 560px;
  margin: 22px auto 24px;
  padding: 0;
  text-align: left;
}
.tp-inbox-steps li {
  position: relative;
  padding: 13px 0 13px 30px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.tp-inbox-steps li:last-child { border-bottom: 0; }
.tp-inbox-steps li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-cyan);
}
.tp-inbox-steps li strong { color: #fff; font-weight: 600; }

.realignment-raise-hand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.5;
  margin: 30px 0;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.18em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  text-align: center;
}
.realignment-price-note {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
  padding-top: 28px;
  margin-top: 50px;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.realignment-price-note strong { color: #fff; font-weight: 600; }

@media (max-width: 900px) {
  .realignment-day { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
  .realignment-testi-grid,
  .realignment-testi-grid.row-2 { grid-template-columns: 1fr; max-width: 520px; gap: 18px; }
  .realignment-testi { aspect-ratio: 16/9; }
  .realignment-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .realignment-gallery-grid { grid-template-columns: 1fr; }
}

/* Anchor-wrapped PR magazine covers — make the link fill the figure cleanly. */
.tie-press-covers figure a,
.tie-press-covers-track figure a {
  display: block;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
}
.tie-press-covers figure a:hover { transform: translateY(-2px); transition: transform 0.25s ease; }

/* =========================================
   TIE — Live Demos video grid, Surprise Bonuses, Stats
   ========================================= */
.tie-demos-heading {
  text-transform: none;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 880px;
}
.tie-demos-heading > span {
  display: block;
  line-height: 1.1;
}
.tie-demos-logo {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
}
@media (max-width: 700px) {
  .tie-demos-heading { gap: 14px; }
  .tie-demos-logo { max-width: 280px; }
}
.tie-demos-tap {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 auto 30px;
}
.tie-demos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.tie-demo-video { margin: 0; }
.tie-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(124, 232, 225, 0.35);
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}
.tie-video-frame:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 232, 225, 0.6);
}
.tie-video-frame video,
.tie-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tie-video-placeholder {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text-dim, #A8AEC1);
  text-align: center;
  padding: 24px;
  position: relative;
}
.tie-video-placeholder::before {
  content: "▶";
  display: block;
  font-size: 32px;
  color: #7CE8E1;
  margin-bottom: 12px;
  opacity: 0.85;
}

/* Surprise Bonuses */
.tie-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 900px;
  margin: 0 auto;
}
.tie-bonus-card {
  background: linear-gradient(180deg, rgba(15,21,48,0.7) 0%, rgba(10,14,34,0.5) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}
.tie-bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 232, 225, 0.30);
}
.tie-bonus-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim, #A8AEC1);
  font-weight: 700;
  margin-bottom: 12px;
}
.tie-bonus-value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* Stats grid */
.tie-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(15,21,48,0.55) 0%, rgba(10,14,34,0.35) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.08));
  border-radius: 18px;
}
.tie-stat { text-align: center; }
.tie-stat-num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
}
.tie-stat-label {
  font-size: 13px;
  color: var(--text-dim, #A8AEC1);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 800px) {
  .tie-demos-grid { grid-template-columns: 1fr; }
  .tie-bonus-grid { grid-template-columns: 1fr; max-width: 480px; }
  .tie-stats-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 18px; }
}
@media (max-width: 460px) {
  .tie-stats-grid { grid-template-columns: 1fr; }
}

/* =========================================
   TIE — Testimonial video cards (Recent Reviews)
   ========================================= */
.tie-testimonial-video {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.tie-testimonial-video .tie-testi-video,
.tie-testimonial-video .tie-testi-noplayback {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
}
.tie-testimonial-video .tie-testi-video {
  object-fit: cover;
}
.tie-testimonial-video .tie-testi-noplayback {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1; /* marko's source poster is square */
  background-color: #0d1224;
}
.tie-testimonial-video .tie-testimonial-name {
  margin: 22px 24px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
}
.tie-testimonial-video .tie-testimonial-quote {
  margin: 0 24px 16px;
  text-align: center;
  font-size: 15.5px;
  font-style: italic;
  color: var(--text-dim, #A8AEC1);
  line-height: 1.5;
}
.tie-testimonial-video .tie-stars {
  margin: 0 0 22px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 3px;
}

/* =========================================
   TIE — The Lie / YNB / Stacked demos / Tighter testimonials
   ========================================= */

/* The Lie section — left-aligned, strikethrough, red emphasis */
.tie-section-lie .tie-container { max-width: 760px; }
.tie-eyebrow-cyan {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 800;
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 24px;
  text-align: left;
}
.tie-lie-title {
  font-size: clamp(30px, 4.2vw, 46px);
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 28px;
}
.tie-red {
  color: #FF5A5A;
  font-style: italic;
  font-weight: 800;
}
.tie-lie-strike-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tie-lie-strike-list li {
  position: relative;
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding-left: 0;
}
.tie-lie-strike-list li::before,
.tie-lie-strike-list li::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,90,90,0.95), rgba(255,255,255,0.65));
  top: 50%;
  transform-origin: left center;
  pointer-events: none;
}
.tie-lie-strike-list li {
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.6);
  text-decoration-thickness: 2px;
}
.tie-lie-strike-list li::before, .tie-lie-strike-list li::after { display: none; }
.tie-lie-punch {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  font-style: italic;
  margin: 0 0 36px;
  line-height: 1.45;
}
.tie-lie-secret {
  text-align: left !important;
  color: #fff !important;
  font-weight: 800;
  margin: 18px 0 18px !important;
}
.tie-prose-left {
  max-width: 760px;
  margin: 0;
  text-align: left;
}
.tie-prose-left p { text-align: left; }

/* You're Not Broken — cyan heading, bigger demolition emphasis */
.tie-title-cyan {
  background: var(--grad-cyan, linear-gradient(90deg, #7CE8E1, #8B7CFF));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tie-ynb-prose {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.tie-ynb-line {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
  color: #fff;
  margin: 0 0 10px;
  font-style: italic;
}
.tie-ynb-line strong { font-weight: 800; }
.tie-ynb-itscode {
  font-size: clamp(24px, 3.2vw, 30px);
  margin: 14px 0;
}
.tie-ynb-demolition {
  text-align: center;
  margin: 60px auto 60px;
  max-width: 900px;
}
.tie-ynb-demolition p {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: #fff;
  font-weight: 600;
}
.tie-cd-big {
  font-weight: 900;
  font-style: italic;
  display: inline-block;
  font-size: 1.12em;
  letter-spacing: -0.005em;
  padding: 0 0.06em;
}
.tie-justresults {
  font-size: clamp(26px, 3.4vw, 36px) !important;
  font-weight: 900 !important;
  margin-top: 16px !important;
}

/* Demos — stacked vertical layout with cyan border */
.tie-demos-stack {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 860px;
  margin: 0 auto 36px;
}

/* REAL PEOPLE. REAL SHIFTS. REAL FAST. — testimonial carousel */
.tie-section-rp .tie-rp-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 38px;
}
.tie-section-rp .tie-rp-title > span { display: block; }
.tie-rp-carousel {
  position: relative;
  max-width: 420px;
  margin: 0 auto 32px;
}
.tie-rp-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tie-rp-track::-webkit-scrollbar { display: none; }
.tie-rp-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  padding: 0;
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tie-rp-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}
/* On viewports too short for 9:16 at 420px wide, let the slide get narrower so it fits */
@media (max-height: 820px) {
  .tie-rp-carousel { max-width: min(420px, calc(78vh * 9 / 16)); }
}
.tie-rp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 22px;
}
.tie-rp-btn {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(13, 18, 36, 0.6);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.15s ease;
}
.tie-rp-btn:hover {
  background: var(--cyan, #7CE8E1);
  color: #050714;
  border-color: var(--cyan, #7CE8E1);
}
.tie-rp-btn:active { transform: scale(0.94); }
.tie-rp-counter {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-dim, #A8AEC1);
  min-width: 48px;
  text-align: center;
}
.tie-rp-counter span { color: #fff; font-weight: 800; }
@media (max-width: 700px) {
  .tie-rp-btn { width: 46px; height: 46px; }
  .tie-rp-nav { gap: 22px; }
  .tie-rp-carousel { max-width: 100%; }
}
.tie-demo-video-stack {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(124, 232, 225, 0.6);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(124,232,225,0.15) inset;
  background: #000;
}
.tie-demo-video-stack video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

/* Testimonials — 3 fixed-width cards inside demos section */
.tie-section-demos .tie-testimonials {
  margin-top: 50px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.tie-section-demos .tie-testimonial-video {
  border: 1.5px solid rgba(124, 232, 225, 0.55);
  border-radius: 14px;
}
.tie-section-demos .tie-testimonial-video .tie-testimonial-name {
  margin: 18px 12px 8px;
  font-size: 13px;
  letter-spacing: 0.10em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tie-section-demos .tie-testimonial-video .tie-testimonial-quote {
  margin: 0 16px 14px;
  font-size: 14px;
}
.tie-section-demos .tie-testimonial-video .tie-stars {
  margin: 0 0 18px;
  font-size: 18px;
}
.tie-section-demos .tie-testi-video {
  aspect-ratio: 1 / 1;
}

@media (max-width: 800px) {
  .tie-section-demos .tie-testimonials { grid-template-columns: 1fr; max-width: 420px; }
  .tie-section-demos .tie-testi-video { aspect-ratio: 16 / 9; }
  .tie-ynb-demolition { margin: 40px auto; }
}

/* =========================================
   THE RS METHOD EXPERIENCE — page-specific
   ========================================= */

/* HERO */
.rsme-hero {
  position: relative;
  padding: 110px 0 90px;
  background-image:
    radial-gradient(ellipse at 50% 30%, rgba(124,232,225,0.10), transparent 60%),
    url('img/DNA-wide.webp');
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  overflow: hidden;
}
.rsme-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,7,20,0.55) 0%, rgba(5,7,20,0.80) 60%, rgba(5,7,20,0.95) 100%);
  z-index: 0;
}
.rsme-hero .container { position: relative; z-index: 1; }

/* Who Am I? variant — reuses the rsme-hero centred-graphic treatment, swaps the
   DNA figure for the gold fingerprint emblem (cropped from the masterclass key
   art, title text removed). Veil is radial + a touch stronger so the gold
   ghosts behind the text rather than competing with it. */
.rsme-hero.hero-whoami {
  background-image:
    radial-gradient(ellipse at 50% 44%, rgba(124,232,225,0.07), transparent 62%),
    url('img/who-am-i-hero-bg.webp');
}
.rsme-hero.hero-whoami::before {
  background: radial-gradient(ellipse at 50% 46%,
    rgba(5,7,20,0.60) 0%, rgba(5,7,20,0.82) 52%, rgba(5,7,20,0.96) 100%);
}
@media (max-width: 700px) {
  .rsme-hero.hero-whoami {
    background-image:
      radial-gradient(ellipse at 50% 44%, rgba(124,232,225,0.07), transparent 62%),
      url('img/who-am-i-hero-bg-mobile.webp');
  }
}
.rsme-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.rsme-hero-title {
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 18px 0 26px;
}
.rsme-hero-flagship {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim, #A8AEC1);
  margin: 28px 0 10px;
  font-weight: 600;
}
.rsme-hero-eventname {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 28px;
}
.rsme-hero-meta {
  font-size: 16px;
  font-weight: 600;
  color: #E6E9F2;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}
/* Separator between meta halves — a real break opportunity, so long meta
   lines wrap cleanly on narrow viewports instead of overflowing. */
.rsme-meta-sep {
  color: var(--text-muted, #6B7185);
  margin: 0 4px;
  font-weight: 400;
}
.rsme-hero-meta-sub {
  font-size: 14px;
  color: var(--text-dim, #A8AEC1);
  margin: 0 0 36px;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
}
.rsme-hero .hero-cta { justify-content: center; }
.rsme-hero-hybrid {
  margin: 26px 0 0;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted, #6B7185);
}

/* OPENING PULL */
.rsme-pull {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.45;
  font-weight: 500;
  color: #E6E9F2;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}
.rsme-pull em {
  color: #fff;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  padding-right: 0.18em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}

/* ACCESS 3-CARDS */
.rsme-access {
  padding: 90px 0 100px;
}
.rsme-access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.rsme-access-card {
  background: rgba(13, 18, 36, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.rsme-access-card:hover {
  border-color: rgba(124, 232, 225, 0.3);
  transform: translateY(-2px);
}
.rsme-access-num {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.rsme-access-card p {
  font-size: 19px;
  color: var(--text-dim, #A8AEC1);
  line-height: 1.5;
  margin: 0;
}
.rsme-access-card p strong { color: #fff; font-weight: 600; }
@media (max-width: 800px) {
  .rsme-access-grid { grid-template-columns: 1fr; max-width: 460px; }
}

/* "THE SECRET" LIST */
.rsme-secret {
  margin-top: 56px;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(124,232,225,0.05), rgba(139,124,255,0.05));
  border: 1px solid rgba(124,232,225,0.18);
  border-radius: 18px;
}
.rsme-secret-label {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 22px;
}
.rsme-secret-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rsme-secret-list li {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--text-dim, #A8AEC1);
  padding-left: 22px;
  position: relative;
}
.rsme-secret-list li::before {
  content: "→";
  position: absolute;
  left: 0; top: 0;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.rsme-secret-list li strong { color: #fff; font-weight: 600; }

/* YOU'RE NOT BROKEN BLOCK */
.rsme-pullquote {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: #E6E9F2;
  font-style: italic;
  font-weight: 400;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.rsme-pullquote em {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  padding-right: 0.18em;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: #fff;
}
.rsme-pullquote-large {
  font-size: clamp(20px, 2.4vw, 28px);
  max-width: 820px;
}
.rsme-broken-block {
  margin: 60px auto 0;
  text-align: center;
}
.rsme-broken-title {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
}
.rsme-justresults {
  margin: 50px auto 0;
  padding: 32px 28px;
  background: rgba(13, 18, 36, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  text-align: center;
  max-width: 720px;
}
.rsme-justresults > p:first-child {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.rsme-allinone {
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--text-dim, #A8AEC1);
  margin: 0 0 24px;
}
.rsme-not-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15.5px;
  color: var(--text-dim, #A8AEC1);
}
.rsme-then-deeper {
  font-size: 16px;
  color: #E6E9F2;
  margin: 0 0 8px;
  line-height: 1.55;
}
.rsme-only-measure {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TESTIMONIAL VIDEO GRID (3-up landscape) */
.rsme-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.rsme-testi-card {
  background: #0a0e22;
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rsme-testi-video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
  display: block;
}
.rsme-testi-meta {
  padding: 16px 18px 18px;
  text-align: left;
}
.rsme-testi-name {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.rsme-testi-quote {
  font-size: 15.5px;
  font-style: italic;
  color: #E6E9F2;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 900px) {
  .rsme-testi-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* 9-DELIVERABLE GRID */
.rsme-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.rsme-deliverable {
  background: rgba(13, 18, 36, 0.6);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.rsme-deliverable:hover {
  border-color: rgba(124, 232, 225, 0.3);
  transform: translateY(-2px);
  background: rgba(15, 21, 48, 0.7);
}
.rsme-deliverable-num {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.rsme-deliverable h3 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.01em;
}
.rsme-deliverable p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim, #A8AEC1);
  margin: 0;
}
@media (max-width: 980px) { .rsme-deliverables-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .rsme-deliverables-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* YES / NO GRID */
.rsme-yesno-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}
.rsme-yesno {
  background: rgba(13, 18, 36, 0.55);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 18px;
  padding: 32px 28px;
}
.rsme-yesno-no { border-color: rgba(255, 139, 139, 0.18); }
.rsme-yesno-yes { border-color: rgba(124, 232, 225, 0.28); }
.rsme-yesno-head {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 22px;
}
.rsme-yesno-no .rsme-yesno-head { color: #FF8B8B; }
.rsme-yesno-yes .rsme-yesno-head {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rsme-yesno ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rsme-yesno li {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-dim, #A8AEC1);
  padding-left: 22px;
  position: relative;
}
.rsme-yesno-no li::before {
  content: "✕";
  position: absolute;
  left: 0; top: 0;
  color: rgba(255, 139, 139, 0.7);
  font-weight: 700;
}
.rsme-yesno-yes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
@media (max-width: 820px) {
  .rsme-yesno-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* IMAGINE CLOSE */
.rsme-imagine-close {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  margin-top: 28px !important;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* EVENT DETAILS GRID */
.rsme-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.rsme-detail {
  background: rgba(13, 18, 36, 0.6);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 18px;
  padding: 36px 28px;
  text-align: center;
}
.rsme-detail-label {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.rsme-detail-value {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.rsme-detail-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim, #A8AEC1);
  display: block;
  margin-top: 4px;
}
@media (max-width: 800px) {
  .rsme-details-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* PRICING */
.rsme-regular-price {
  margin: 22px 0 4px;
  font-size: 15px;
  color: var(--text-dim, #A8AEC1);
  letter-spacing: 0.02em;
}
.rsme-regular-price::before {
  content: '';
  display: inline-block;
  width: 100%;
  text-decoration: line-through;
}
.rsme-special-note {
  font-size: 13px;
  color: var(--text-muted, #6B7185);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0;
}
.rsme-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.rsme-pricing-card {
  position: relative;
  background: rgba(13, 18, 36, 0.7);
  border: 1px solid var(--border, rgba(255,255,255,0.06));
  border-radius: 20px;
  padding: 40px 30px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.rsme-pricing-card:hover {
  border-color: rgba(124, 232, 225, 0.25);
  transform: translateY(-3px);
}
.rsme-pricing-card-featured {
  border-color: rgba(139, 124, 255, 0.45);
  background: linear-gradient(180deg, rgba(13,18,36,0.85) 0%, rgba(15,21,48,0.85) 100%);
  box-shadow: 0 30px 80px -40px rgba(139, 124, 255, 0.4);
}
.rsme-pricing-card-featured:hover {
  border-color: rgba(139, 124, 255, 0.7);
}
.rsme-pricing-pill {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--grad-btn, linear-gradient(135deg, #8B7CFF, #6B5FE8));
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
}
.rsme-pricing-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 18px;
  text-align: center;
}
.rsme-pricing-amount {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.1;
}
.rsme-pricing-x {
  font-size: 0.6em;
  font-weight: 500;
  vertical-align: middle;
  margin-left: 6px;
}
.rsme-pricing-terms {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted, #6B7185);
  letter-spacing: 0.04em;
  margin: 6px 0 26px;
}
.rsme-pricing-bonuses-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-dim, #A8AEC1);
  margin-bottom: 12px;
}
.rsme-pricing-bonuses {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.rsme-pricing-bonuses li {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-dim, #A8AEC1);
  padding-left: 22px;
  position: relative;
}
.rsme-pricing-bonuses li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.rsme-pricing-cta {
  align-self: stretch;
  text-align: center;
  justify-content: center;
}
.rsme-spots-note {
  text-align: center;
  max-width: 560px;
  margin: 50px auto 0;
  font-size: 15px;
  color: var(--text-dim, #A8AEC1);
  letter-spacing: 0.04em;
}
.rsme-spots-note em {
  color: #fff;
  font-style: italic;
}
@media (max-width: 1020px) {
  .rsme-pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .rsme-pricing-card-featured { transform: none; }
}

/* HERO MOBILE */
@media (max-width: 700px) {
  .rsme-hero { padding: 80px 0 70px; }
  .rsme-hero-title { font-size: 30px; }
  /* Explicit max-width + auto margins so the meta lines wrap within themselves
     on narrow phones instead of overflowing and getting clipped by the hero's
     overflow:hidden. 330px is safely under the smallest common phone width. */
  .rsme-hero-meta {
    font-size: 14px;
    max-width: 330px;
    margin: 0 auto 6px;
  }
  .rsme-hero-meta-sub {
    font-size: 12.5px;
    max-width: 330px;
    margin: 0 auto 36px;
  }
  .rsme-hero-flagship { max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* RSME thank-you, Sara direct-contact block */
.rsme-sara {
  margin: 32px auto 0;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rsme-sara-photo {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(124,232,225,0.35);
  box-shadow: 0 20px 54px -20px rgba(124,232,225,0.4);
}
.rsme-sara-name {
  margin-top: 18px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.rsme-sara-role {
  margin-top: 5px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rsme-sara-contact {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .rsme-sara-contact { flex-direction: column; width: 100%; }
  .rsme-sara-contact .btn { width: 100%; }
}
