/* =========================================================
   8HUP — HOME PAGE (REDESIGN)
   Bolder. Editorial. Cinematic.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --char: #0e0e0e;
  --char-2: #161616;
  --char-3: #1f1f1f;
}

/* override body for home — dark cinematic */
body.home {
  background: var(--char);
  color: var(--paper);
}

body.home::before {
  opacity: 0.7;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* dark navbar */
body.home .nav {
  background: rgba(14, 14, 14, 0.7);
  border-bottom: 1px solid rgba(244, 241, 234, 0.08);
}
body.home .nav-links a { color: var(--paper); }
body.home .nav-links a::after { background: var(--accent); }
body.home .brand { color: var(--paper); }
body.home .nav-cta {
  background: var(--accent);
  color: var(--char);
}
body.home .nav-cta:hover {
  background: var(--paper);
}
body.home .nav-toggle span { background: var(--paper); }

/* ---------- HERO (V2) ---------- */
.h2-hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 80px 0 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* atmospheric background grid */
.h2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,241,234,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 50%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 50%, black 0%, transparent 75%);
  pointer-events: none;
}

/* glow */
.h2-hero::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  right: -150px; top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(212,255,58,0.08) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.h2-hero .container { position: relative; z-index: 3; }

.h2-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}

.h2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.7);
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.h2-eyebrow .live-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,255,58,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,255,58,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(212,255,58,0.05); }
}

.h2-headline {
  font-family: 'Instrument Serif', 'Fraunces', serif;
  font-size: clamp(72px, 10vw, 156px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 40px;
}
.h2-headline .line {
  display: block;
  overflow: hidden;
}
.h2-headline .line-inner {
  display: inline-block;
  animation: rise 1s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}
.h2-headline .line:nth-child(1) .line-inner { animation-delay: 0.1s; }
.h2-headline .line:nth-child(2) .line-inner { animation-delay: 0.25s; padding-left: 0.4em; }
.h2-headline .line:nth-child(3) .line-inner { animation-delay: 0.4s; padding-left: 0.8em; }
.h2-headline .ital {
  font-style: italic;
  color: var(--accent);
}
.h2-headline .strike {
  position: relative;
  color: rgba(244,241,234,0.4);
}
.h2-headline .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: strikeIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) 1.4s forwards;
}
@keyframes strikeIn {
  to { transform: scaleX(1); }
}
@keyframes rise {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.h2-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 44px;
  max-width: 540px;
}
.h2-meta-block {
  border-top: 1px solid rgba(244,241,234,0.15);
  padding-top: 16px;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.7s backwards;
}
.h2-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  margin-bottom: 8px;
}
.h2-meta-value {
  font-family: 'Instrument Serif', serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--paper);
}
.h2-meta-value em { color: var(--accent); font-style: italic; }

.h2-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) 0.85s backwards;
}
.h2-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.h2-btn-primary {
  background: var(--accent);
  color: var(--char);
}
.h2-btn-primary:hover {
  background: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,255,58,0.2);
}
.h2-btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244,241,234,0.25);
}
.h2-btn-secondary:hover {
  background: rgba(244,241,234,0.05);
  border-color: var(--paper);
}
.h2-btn .arr {
  display: inline-block;
  transition: transform 0.3s ease;
}
.h2-btn:hover .arr { transform: translateX(6px); }

/* ---------- VAULT WIDGET (the "memorable" element) ---------- */
.vault-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.5s backwards;
}

.vault-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--char-2);
  border: 1px solid rgba(244,241,234,0.1);
  border-radius: 18px;
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(244,241,234,0.05) inset,
    0 30px 80px -20px rgba(0,0,0,0.6);
  z-index: 2;
}
.vault-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212,255,58,0.4), transparent 40%, transparent 60%, rgba(212,255,58,0.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.vault-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(244,241,234,0.08);
  margin-bottom: 22px;
}
.vault-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
}
.vault-tag .tag-num { color: var(--accent); }
.vault-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(212,255,58,0.1);
  border: 1px solid rgba(212,255,58,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.vault-status .dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse2 1.6s ease-in-out infinite;
}
@keyframes pulse2 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.vault-title {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.vault-sub {
  font-size: 13px;
  color: rgba(244,241,234,0.55);
  margin-bottom: 24px;
}

.progress-shell {
  margin-bottom: 24px;
}
.progress-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}
.progress-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.55);
}
.progress-pct {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.02em;
}
.progress-pct .small { font-size: 18px; color: rgba(244,241,234,0.4); }
.progress-bar {
  height: 4px;
  background: rgba(244,241,234,0.08);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  border-radius: 100px;
  animation: fill 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}
@keyframes fill {
  to { width: 67%; }
}

.milestones-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  margin-bottom: 12px;
}
.milestone-list {
  list-style: none;
  margin: 0; padding: 0;
}
.milestone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(244,241,234,0.06);
  font-size: 13px;
  color: rgba(244,241,234,0.85);
}
.milestone:first-child { border-top: none; }
.milestone .check {
  width: 18px; height: 18px;
  border: 1px solid rgba(244,241,234,0.2);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
}
.milestone.done .check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--char);
}
.milestone.done {
  color: rgba(244,241,234,0.45);
}
.milestone.done .text { text-decoration: line-through; }
.milestone .date {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(244,241,234,0.4);
  letter-spacing: 0.05em;
}

/* floating chips around the vault card */
.float-chip {
  position: absolute;
  background: var(--char-2);
  border: 1px solid rgba(244,241,234,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(244,241,234,0.75);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
  z-index: 3;
  white-space: nowrap;
}
.float-chip .num {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 2px;
}
.float-chip-1 {
  top: 8%; left: -8%;
  animation: float 6s ease-in-out infinite, fadeUp 1s 1s backwards;
}
.float-chip-2 {
  bottom: 14%; right: -6%;
  animation: float 7s ease-in-out infinite reverse, fadeUp 1s 1.15s backwards;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* trust strip below hero */
.trust-strip {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,241,234,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  animation: fadeUp 1s 1.1s backwards;
}
.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-strip .tick {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--char);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

@media (max-width: 980px) {
  .h2-grid { grid-template-columns: 1fr; gap: 60px; }
  .vault-stage { aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; }
  .h2-meta { grid-template-columns: 1fr 1fr; }
}

/* ---------- STATS MARQUEE ---------- */
.stats-marquee {
  background: var(--paper);
  color: var(--char);
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marq-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: marqMove 35s linear infinite;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.marq-track .star {
  color: var(--accent-deep);
  font-style: italic;
  font-size: 0.7em;
}
.marq-track .it { font-style: italic; color: var(--muted); }
@keyframes marqMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- HOW IT WORKS (V2 — diagonal staircase) ---------- */
.how-section {
  background: var(--char);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: "01 02 03 04";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Instrument Serif', serif;
  font-size: clamp(200px, 30vw, 480px);
  font-style: italic;
  color: rgba(244,241,234,0.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.how-section .container { position: relative; z-index: 2; }

.how-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  margin-bottom: 28px;
}
.how-eyebrow::before {
  content: "";
  width: 24px; height: 1px; background: var(--accent);
}
.how-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.how-title .it { font-style: italic; color: var(--accent); }
.how-head p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244,241,234,0.6);
  max-width: 420px;
}

.how-stairs {
  position: relative;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 60px;
  padding: 36px 0;
  border-top: 1px solid rgba(244,241,234,0.1);
  align-items: center;
  transition: padding-left 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.how-step:last-child { border-bottom: 1px solid rgba(244,241,234,0.1); }
.how-step::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.how-step:hover { padding-left: 24px; }
.how-step:hover::before { width: 100%; }
.how-step:hover .step-arrow { opacity: 1; transform: translateX(0); }

.step-num-big {
  font-family: 'Instrument Serif', serif;
  font-size: 56px;
  font-style: italic;
  color: rgba(244,241,234,0.25);
  line-height: 1;
  font-weight: 400;
  transition: color 0.3s;
}
.how-step:hover .step-num-big { color: var(--accent); }

.step-title-h {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.05;
}
.step-title-h .it { font-style: italic; color: rgba(244,241,234,0.55); }

.step-desc-h {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,241,234,0.6);
  max-width: 380px;
}

.step-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-12px, -50%);
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 28px;
  color: var(--accent);
}

@media (max-width: 900px) {
  .how-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .how-step { grid-template-columns: 50px 1fr; gap: 24px; padding: 28px 0; }
  .step-desc-h { grid-column: 2; }
  .step-num-big { font-size: 40px; }
}

/* ---------- VAULT RACK (Plans V2) ---------- */
.rack-section {
  background: var(--paper);
  color: var(--char);
  padding: 140px 0;
  position: relative;
}
.rack-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.rack-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.rack-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--char);
}
.rack-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--char);
}
.rack-title .it { font-style: italic; color: var(--muted); }
.rack-head p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 440px;
}

.rack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.rack-tile {
  background: var(--paper);
  border: 1px solid var(--char);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  min-height: 380px;
  overflow: hidden;
}
.rack-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px -12px rgba(0,0,0,0.18);
}
.rack-tile.featured {
  background: var(--char);
  color: var(--paper);
  border-color: var(--char);
  transform: translateY(-12px);
}
.rack-tile.featured:hover { transform: translateY(-18px); }

.rack-tile::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--char);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.rack-tile.featured::before { background: var(--accent); }
.rack-tile:hover::before { transform: scaleX(1); }

.rack-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.rack-tile.featured .rack-num { color: var(--accent); }

.rack-name {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.rack-price {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.rack-price .cur { font-size: 22px; vertical-align: super; margin-right: 2px; }
.rack-price .free { font-style: italic; color: var(--muted); }
.rack-tile.featured .rack-price .free { color: rgba(244,241,234,0.5); }

.rack-period {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.rack-tile.featured .rack-period { border-bottom-color: rgba(244,241,234,0.15); }

.rack-feats {
  list-style: none;
  flex: 1;
  margin: 0;
  padding: 0;
}
.rack-feats li {
  font-size: 13px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.rack-feats li::before {
  content: "+";
  color: var(--char);
  font-weight: 500;
  font-size: 14px;
  width: 14px;
  flex-shrink: 0;
}
.rack-tile.featured .rack-feats li::before { color: var(--accent); }

.rack-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: padding-left 0.3s;
}
.rack-tile.featured .rack-cta { border-top-color: rgba(244,241,234,0.2); color: var(--accent); }
.rack-tile:hover .rack-cta { padding-left: 8px; }

.rack-note {
  margin-top: 32px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .rack { grid-template-columns: repeat(2, 1fr); }
  .rack-tile { min-height: auto; }
  .rack-tile.featured { transform: none; }
  .rack-tile.featured:hover { transform: translateY(-8px); }
  .rack-tile:nth-child(5) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .rack { grid-template-columns: 1fr; }
  .rack-tile:nth-child(5) { grid-column: span 1; }
  .rack-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
}

/* ---------- BENTO FEATURES ---------- */
.bento-section {
  background: var(--char);
  padding: 140px 0;
}
.bento-head {
  text-align: center;
  margin-bottom: 70px;
}
.bento-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244,241,234,0.5);
  margin-bottom: 28px;
}
.bento-eyebrow::before, .bento-eyebrow::after {
  content: ""; width: 30px; height: 1px; background: rgba(244,241,234,0.3);
}
.bento-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
  max-width: 900px;
  margin: 0 auto;
}
.bento-title .it { font-style: italic; color: var(--accent); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.bento-cell {
  background: var(--char-2);
  border: 1px solid rgba(244,241,234,0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bento-cell:hover {
  border-color: rgba(212,255,58,0.4);
  transform: translateY(-4px);
}
.bento-cell:hover .bento-icon-wrap {
  background: var(--accent);
  color: var(--char);
  transform: rotate(-8deg);
}

.bento-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(244,241,234,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  flex-shrink: 0;
}
.bento-icon-wrap svg { width: 20px; height: 20px; }

.bento-cell h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.bento-cell p {
  font-size: 13px;
  color: rgba(244,241,234,0.55);
  line-height: 1.5;
  margin: 0;
}
.bento-cell .bento-tag {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(244,241,234,0.3);
}

/* layout */
.b-1 { grid-column: span 3; grid-row: span 2; }
.b-2 { grid-column: span 3; grid-row: span 1; }
.b-3 { grid-column: span 2; grid-row: span 1; }
.b-4 { grid-column: span 2; grid-row: span 2; }
.b-5 { grid-column: span 2; grid-row: span 1; }
.b-6 { grid-column: span 4; grid-row: span 1; }

/* feature 1 visual — large vault illustration */
.b-1 {
  background: linear-gradient(135deg, var(--char-2) 0%, var(--char-3) 100%);
}
.b-1 .b-vis {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  opacity: 0.9;
}
.b-1 .b-vis svg { width: 100%; height: 100%; }

/* feature 4 visual — analytics chart */
.b-4 {
  background: var(--accent);
  color: var(--char);
}
.b-4 .bento-icon-wrap {
  background: var(--char);
  color: var(--accent);
  border-color: var(--char);
}
.b-4:hover .bento-icon-wrap {
  background: var(--paper);
  color: var(--char);
}
.b-4 h3 { color: var(--char); }
.b-4 p { color: rgba(0,0,0,0.65); }
.b-4 .bento-tag { color: rgba(0,0,0,0.4); }
.b-4 .b-chart {
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 12px;
}
.b-4 .b-chart span {
  flex: 1;
  background: var(--char);
  border-radius: 3px 3px 0 0;
  animation: chartGrow 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) backwards;
}
.b-4 .b-chart span:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.b-4 .b-chart span:nth-child(2) { height: 50%; animation-delay: 0.15s; }
.b-4 .b-chart span:nth-child(3) { height: 35%; animation-delay: 0.2s; }
.b-4 .b-chart span:nth-child(4) { height: 70%; animation-delay: 0.25s; }
.b-4 .b-chart span:nth-child(5) { height: 60%; animation-delay: 0.3s; }
.b-4 .b-chart span:nth-child(6) { height: 90%; animation-delay: 0.35s; }
.b-4 .b-chart span:nth-child(7) { height: 75%; animation-delay: 0.4s; }
.b-4 .b-chart span:nth-child(8) { height: 100%; animation-delay: 0.45s; }
@keyframes chartGrow { from { height: 0 !important; } }

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .b-1, .b-2, .b-3, .b-4, .b-5, .b-6 {
    grid-column: span 2; grid-row: span 1;
  }
  .b-1 .b-vis { display: none; }
}

/* ---------- FAQ V2 ---------- */
.faq-v2 {
  background: var(--paper);
  color: var(--char);
  padding: 140px 0;
}
.faq-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-side .eyebrow-mono {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.faq-side .eyebrow-mono::before {
  content: ""; width: 24px; height: 1px; background: var(--char);
}
.faq-side h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--char);
  margin-bottom: 24px;
}
.faq-side h2 .it { font-style: italic; color: var(--muted); }
.faq-side p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}
.faq-side .faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--char);
  color: var(--paper);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}
.faq-side .faq-cta:hover {
  background: var(--accent);
  color: var(--char);
}

.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-row {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 24px 0;
  cursor: pointer;
  transition: padding 0.3s;
}
.faq-row:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.faq-row:hover { padding-left: 12px; }
.faq-q-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-q-text {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--char);
  line-height: 1.25;
  flex: 1;
}
.faq-toggle {
  width: 36px; height: 36px;
  border: 1px solid var(--char);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-family: var(--font-mono);
  font-weight: 500;
}
.faq-row:hover .faq-toggle {
  background: var(--char);
  color: var(--accent);
}
.faq-a-row {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}

@media (max-width: 900px) {
  .faq-v2-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--char);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "8HUP";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Instrument Serif', serif;
  font-size: clamp(220px, 32vw, 520px);
  font-weight: 400;
  font-style: italic;
  color: rgba(212,255,58,0.06);
  letter-spacing: -0.05em;
  line-height: 0.85;
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.cta-eyebrow::before, .cta-eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--accent); opacity: 0.5;
}
.cta-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(50px, 8vw, 130px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 36px;
}
.cta-headline .it { font-style: italic; color: var(--accent); }
.cta-sub {
  font-size: 17px;
  color: rgba(244,241,234,0.6);
  margin: 0 auto 40px;
  max-width: 540px;
  line-height: 1.55;
}
.cta-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
