@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0c0a0f;
  --card: #14111a;
  --text: #e2dcd0;
  --muted: #958d9e;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.12);
  --warm: #e8d5a3;
  --line: #221d2b;
  --focus: rgba(232, 213, 163, 0.75);
}

@keyframes meshGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(circle at 10% 20%, rgba(35, 18, 45, 0.5) 0%, transparent 45%),
              radial-gradient(circle at 90% 80%, rgba(15, 34, 27, 0.5) 0%, transparent 45%),
              var(--bg);
  background-size: 200% 200%;
  animation: meshGlow 25s ease infinite;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a{color:var(--accent);text-underline-offset:.18em}
a:focus-visible,button:focus-visible,input:focus-visible,video:focus-visible{outline:3px solid var(--focus);outline-offset:3px;border-radius:6px}
video,img{max-width:100%;height:auto}
p,li,h1,h2,h3,a,span,strong,small{overflow-wrap:break-word}
.sr-only,.visually-hidden{position:absolute!important;clip-path:inset(50%)!important;overflow:hidden!important;width:1px!important;height:1px!important;margin:-1px!important;padding:0!important;border:0!important;white-space:nowrap!important}
.container{max-width:800px;margin:0 auto;padding:24px 20px;width:100%}
.wide-container{max-width:1080px}
h1{font-family:'Cormorant Garamond', Georgia, serif;font-size:2.4em;color:var(--accent);text-align:center;margin:48px 0 12px;font-weight:400;letter-spacing:-0.5px}
h2{font-family:'Cormorant Garamond', Georgia, serif;font-size:1.6em;color:var(--warm);margin:40px 0 16px;font-weight:400;border-bottom:1px solid #1a1a22;padding-bottom:10px}
h3{font-family:'Cormorant Garamond', Georgia, serif;font-size:1.25em;color:var(--warm);margin:24px 0 8px;font-weight:400}
p{margin:12px 0;color:var(--muted)}
.hero-text{text-align:center;padding:40px 20px}
.hero-text h1{font-size:2.6em;margin-bottom:4px}
.hero-text .sub{color:var(--muted);font-size:1.1em;margin-bottom:24px}

.card,.speech-card,.moment-card,.path-card,.info-card,.pipeline-step,.lane-card,.download-item {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  background: linear-gradient(145deg, var(--card), rgba(16, 16, 24, 0.5));
}
.card:hover,.speech-card:hover,.moment-card:hover,.path-card:hover,.info-card:hover,.pipeline-step:hover,.lane-card:hover,.download-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 110, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.card{border:1px solid rgba(255,255,255,.04);border-radius:12px;padding:28px;margin:20px 0}
.card h3{margin-top:0}
.cta{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:12px 28px;border-radius:8px;background:var(--accent);color:var(--bg);text-decoration:none;font-weight:600;font-size:1.05em;line-height:1.25;text-align:center;margin:8px 8px 8px 0;border:none;cursor:pointer;font-family:inherit;transition:background .2s ease, transform .15s ease}
.cta:hover{background:var(--warm);transform:translateY(-1px)}
.cta:active{transform:translateY(1px)}
.cta-secondary{background:transparent;border:2px solid var(--accent);color:var(--accent)}
.cta-secondary:hover{background:var(--accent);color:var(--bg)}
.speech-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(min(100%,320px),1fr));gap:20px;align-items:start}
.speech-card{border:1px solid rgba(255,255,255,.04);border-radius:12px;padding:24px;min-width:0}
.speech-card h3{color:var(--accent);margin:0 0 4px 0}
.speech-card .role{color:var(--muted);font-size:.9em;margin-bottom:12px}
.speech-card .quote {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  color: var(--warm);
  padding: 12px 16px;
  border-left: 3px solid var(--accent);
  margin: 12px 0;
  font-size: 0.98em;
  background: var(--accent-dim);
  border-radius: 0 6px 6px 0;
}
.speech-card video{display:block;width:100%;aspect-ratio:16/9;object-fit:contain;border-radius:8px;margin:10px 0;background:#000}
.timeline{position:relative;padding-left:40px}
.timeline::before{content:'';position:absolute;left:16px;top:0;bottom:0;width:1px;background:var(--accent);opacity:.3}
.timeline-item{position:relative;margin-bottom:32px}
.timeline-item::before{content:'';position:absolute;left:-28px;top:8px;width:10px;height:10px;border-radius:50%;background:var(--accent);box-shadow:0 0 8px var(--accent);transition:box-shadow 0.2s ease}
.timeline-item:hover::before{box-shadow:0 0 12px var(--accent)}
.timeline-item .time{color:var(--accent);font-size:.85em;margin-bottom:4px}
.timeline-item h3{margin:0 0 4px 0}
.timeline-item p{color:var(--muted);font-size:.9em;margin:4px 0}
.timeline-item video{display:block;width:100%;aspect-ratio:16/9;object-fit:contain;border-radius:8px;margin:10px 0;background:#000}
.gate{text-align:center;padding:60px 20px;display:none}
.gate input{padding:14px 20px;border-radius:8px;border:1px solid #333;background:#111;color:#fff;font-size:1.1em;width:200px;max-width:100%;text-align:center;margin:12px;transition:border-color .2s ease, box-shadow .2s ease}
.gate input:focus{border-color:var(--accent);box-shadow:0 0 10px rgba(201,169,110,.35);outline:none}
.gate-error{color:#e05555;margin-top:12px;display:none}
.nav-links{text-align:center;padding:18px 20px;display:flex;gap:8px 12px;justify-content:center;flex-wrap:wrap}
.nav-links a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;color:var(--muted);text-decoration:none;font-size:.95em;line-height:1.25;padding:10px 16px;border-radius:999px;transition:background .2s ease, color .2s ease}
.nav-links a:hover,.nav-links a.active{color:var(--accent);background:rgba(201,169,110,.08)}
.stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:16px;text-align:center;margin:24px 0}
.stat-num{font-family:'Cormorant Garamond', Georgia, serif;font-size:2.2em;color:var(--accent);font-weight:600}
.stat-label{color:var(--muted);font-size:.85em;margin-top:4px}
footer{text-align:center;color:var(--muted);padding:60px 20px 40px;font-size:.85em}
.lede{text-align:center;color:var(--muted);max-width:680px;margin:0 auto 32px;font-size:1.05em}
.review-hero{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(min(100%,260px),.8fr);gap:24px;align-items:stretch;background:var(--card);border:1px solid rgba(255,255,255,.04);border-radius:12px;padding:28px;margin:20px 0 36px}
.review-hero h2{margin-top:0}
.review-stats{display:grid;gap:12px}
.review-stats div{border:1px solid #24242e;border-radius:8px;padding:16px;background:#0b0b12;min-width:0}
.review-stats span{display:block;color:var(--accent);font-size:1.8em;line-height:1.1}
.review-stats small{display:block;color:var(--muted);line-height:1.4;margin-top:6px}
.pipeline-grid,.lane-grid,.output-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr));gap:16px;margin:16px 0 32px}
.pipeline-step,.lane-card,.output-grid div{background:var(--card);border:1px solid #1f1f28;border-radius:8px;padding:18px;min-width:0}
.pipeline-step strong{display:block;color:var(--accent);font-weight:400;margin-bottom:8px}
.pipeline-step p,.lane-card p{font-size:.9em;margin:0;color:var(--muted);line-height:1.6}
.lane-card h3{margin-top:0}
.lane-card span{display:inline-block;margin-top:14px;color:var(--accent);font-size:.8em;border:1px solid #2a2a34;border-radius:999px;padding:3px 10px}
.table-wrap{overflow-x:auto;background:var(--card);border-radius:8px;border:1px solid #1f1f28;margin:16px 0 32px}
.review-table{width:100%;border-collapse:collapse;min-width:760px;font-size:.88em}
.review-table th,.review-table td{text-align:left;vertical-align:top;padding:14px 16px;border-bottom:1px solid #20202a}
.review-table th{color:var(--warm);font-weight:400;background:#0b0b12}
.review-table td{color:var(--muted);line-height:1.5}
.review-table strong{color:var(--accent);font-weight:400}
.review-table span{color:var(--muted)}
.split-section{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:24px;margin:16px 0 32px}
.compact-list{background:var(--card);border-radius:8px;padding:18px 18px 18px 38px;color:var(--muted);font-size:.92em}
.compact-list li{margin:6px 0}
.output-grid div{color:var(--warm);min-height:64px;display:flex;align-items:center}
.btn-row{display:flex;gap:10px;flex-wrap:wrap;margin:10px 0}
.btn-small{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 18px;border-radius:6px;font-size:.9em;line-height:1.2;text-align:center;text-decoration:none;cursor:pointer;transition:border-color .2s ease, color .2s ease, transform .15s ease}
.btn-small:hover{transform:translateY(-1px)}
.btn-small:active{transform:translateY(1px)}
.btn-download{background:var(--card);color:var(--accent);border:1px solid #222}
.btn-download:hover{border-color:var(--accent)}
.btn-share{background:var(--card);color:var(--muted);border:1px solid #222;transition:transform .15s ease, color .2s ease}
.btn-share:hover{color:var(--accent);border-color:var(--accent)}
.btn-share:active{transform:scale(1.15)}
.btn-share.liked{transform:scale(1.2);color:var(--accent);border-color:var(--accent)}
.hero-panel{min-height:70vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:80px 20px;background:linear-gradient(rgba(8,8,13,.38),rgba(8,8,13,.95)),var(--bg)}
.hero-panel .inner{max-width:760px}
.hero-panel h1{font-family:'Cormorant Garamond', Georgia, serif;font-size:3.5em;margin:0 0 12px;font-weight:400}
.hero-panel p{font-size:1.15em;color:var(--warm);max-width:680px;margin:12px auto 24px}
.eyebrow{color:var(--accent);text-transform:uppercase;letter-spacing:.12em;font-size:.78em;margin-bottom:10px}
.path-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,240px),1fr));gap:16px;margin:24px 0}
.path-card{border:1px solid #1f1f28;border-radius:12px;padding:22px;min-height:190px;display:flex;flex-direction:column;justify-content:space-between}
.path-card h3{margin-top:0;color:var(--accent)}
.path-card p{font-size:.94em;line-height:1.6;margin:8px 0 18px}
.path-card.priority{border-color:rgba(201,169,110,.55);background:linear-gradient(180deg,rgba(201,169,110,.10),var(--card))}
.section-intro{margin:52px 0 18px}
.section-intro h2{margin-bottom:8px}
.section-intro p{max-width:700px}
.action-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.text-link{color:var(--accent);text-decoration:none;font-size:.92em}
.text-link:hover{text-decoration:underline}
.family-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,180px),1fr));gap:12px;margin:18px 0}
.family-strip a{display:flex;align-items:center;min-height:52px;background:var(--card);border:1px solid #20202a;border-radius:8px;padding:12px 16px;text-decoration:none;color:var(--warm);line-height:1.35;transition:border-color .2s ease, transform .2s cubic-bezier(0.16, 1, 0.3, 1)}
.family-strip a:hover{transform:translateY(-2px);border-color:var(--accent)}
.note-card{background:#0b0b12;border:1px solid #20202a;border-radius:8px;padding:16px;color:var(--muted);font-size:.92em;line-height:1.6}
.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,220px),1fr));gap:14px;margin:20px 0 34px}
.info-card{border:1px solid #20202a;border-radius:10px;padding:18px;min-width:0}
.info-card h3{margin:0 0 8px;color:var(--accent)}
.info-card p{font-size:.9em;line-height:1.55;margin:0;color:var(--muted)}
.info-card ul{margin:10px 0 0 20px;color:var(--muted);font-size:.88em;line-height:1.55}
.info-card li{margin:4px 0}
.context-band{background:#0b0b12;border:1px solid #20202a;border-radius:10px;padding:20px;margin:24px 0 34px}
.context-band h2{margin-top:0}
.context-band p{font-size:.94em;line-height:1.65}
.jump-row{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin:22px 0 34px}
.jump-row a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;border:1px solid #262632;border-radius:999px;padding:10px 16px;color:var(--accent);text-decoration:none;font-size:.9em;line-height:1.2;background:#0b0b12;transition:background .2s ease, color .2s ease, transform .15s ease}
.jump-row a:hover{background:var(--accent);color:var(--bg);transform:translateY(-1px)}
.moment-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:16px;margin:18px 0 34px}
.moment-card{border:1px solid #20202a;border-radius:10px;padding:18px;min-width:0}
.moment-card h3{margin-top:0;color:var(--accent)}
.moment-card .meta{color:var(--warm);font-size:.85em;margin:4px 0 10px}
.moment-card p{font-size:.9em;line-height:1.55;margin:8px 0}
.moment-card video{display:block;width:100%;aspect-ratio:16/9;object-fit:contain;border-radius:8px;margin:10px 0;background:#000}
.download-list{display:grid;gap:12px;margin:18px 0 34px}
.download-item{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:14px;align-items:center;border:1px solid #20202a;border-radius:10px;padding:16px}
.download-item strong{display:block;color:var(--accent);font-weight:400}
.download-item span{display:block;color:var(--muted);font-size:.86em;margin-top:4px;line-height:1.45}

@media(max-width:640px){.download-item{grid-template-columns:1fr}.download-item .cta,.download-item .btn-small{width:100%}.jump-row{justify-content:flex-start}.jump-row a{flex:1 1 auto}.nav-links{justify-content:center;padding-inline:16px;gap:8px}.nav-links a{flex:0 1 auto;font-size:.9em;padding:8px 10px}}
@media(max-width:760px){.review-hero{grid-template-columns:1fr}.review-table{font-size:.82em}.table-wrap{margin-inline:-4px}}
@media(max-width:600px){body{font-size:16px}.container{padding:20px 16px}h1{font-size:1.8em;margin-top:36px}h2{font-size:1.35em}.hero-text{padding:28px 0}.card,.speech-card,.review-hero,.path-card,.moment-card{padding:20px}.speech-grid{grid-template-columns:1fr}.hero-panel{min-height:62vh;padding:56px 16px}.hero-panel h1{font-size:2.5em}.cta{width:100%;margin-right:0}.action-row .cta{width:auto;flex:1 1 180px}.timeline{padding-left:28px}.timeline::before{left:10px}.timeline-item::before{left:-22px}.compact-list{padding-left:30px}}

