/* keynotespeaker.ai | style adapted from Ken Sky Events site (Night Black #231F20, Moon White #FFFFFF) */
:root {
  --ink: #231f20;
  --ink-soft: #55504f;
  --ink-faint: #8f8a89;
  --paper: #ffffff;
  --paper-warm: #f6f5f4;
  --accent: #231f20;
  --accent-deep: #000000;
  --accent-glow: rgba(35, 31, 32, 0.28);
  --live: #ef4444;
  --radius: 22px;
  --shadow-sm: 0 2px 12px rgba(35, 31, 32, 0.05);
  --shadow-md: 0 12px 40px rgba(35, 31, 32, 0.1);
  --shadow-lg: 0 30px 80px rgba(35, 31, 32, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Archivo', 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Scroll progress hairline */
#progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--ink);
  z-index: 1000; transition: width 0.1s linear;
}

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  padding: 22px 0;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(10, 10, 20, 0.06);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: baseline; gap: 8px; text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-variation-settings: 'wdth' 120;
  font-weight: 800; font-size: 21px; letter-spacing: 0.02em; text-transform: uppercase;
  transition: transform 0.4s var(--ease);
}
.logo:hover { transform: scale(1.04); }
.logo .dot { color: var(--ink-faint); font-weight: 500; font-size: 14px; text-transform: none; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  text-decoration: none; color: var(--ink-soft); font-size: 15px; font-weight: 500;
  position: relative; transition: color 0.25s;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--accent); border-radius: 2px; transition: width 0.3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links a.btn-primary { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 100px;
  font-size: 16px; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 10px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 44px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
  background: var(--accent-deep);
}
.btn-primary:active { transform: translateY(-1px) scale(0.99); }
.btn-primary svg { transition: transform 0.35s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 1.5px rgba(10, 10, 20, 0.16);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 1.5px rgba(10, 10, 20, 0.32), var(--shadow-md);
}
.btn-nav { padding: 11px 22px; font-size: 14.5px; }
.vision .btn-primary {
  background: #fff; color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.vision .btn-primary:hover {
  background: #f0efee; color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

/* Reveal animations */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 140px 0 80px;
  background:
    radial-gradient(1000px 600px at 85% 10%, rgba(35, 31, 32, 0.05), transparent 60%),
    radial-gradient(800px 500px at 5% 90%, rgba(35, 31, 32, 0.04), transparent 60%),
    var(--paper);
  overflow: hidden;
}
.hero.hero-sub { min-height: 62vh; padding: 160px 0 70px; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; width: 100%;
  margin-top: 24px;
}
.hero .kicker {
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.05s forwards;
}
.hero h1 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 118;
  font-size: clamp(1.75rem, 3.15vw, 3.8rem);
  font-weight: 800; line-height: 1.08; letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span {
  display: block; transform: translateY(110%);
  animation: lineUp 1s var(--ease) forwards;
}
.hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #9b9695, #55504f);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .sub {
  font-size: 19px; color: var(--ink-soft); max-width: 500px;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.45s forwards;
}
.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.6s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Hero visual: AI console */
.console-shell {
  position: relative;
  opacity: 0; animation: fadeUp 1.1s var(--ease) 0.5s forwards;
}
.console {
  background: #0b0b12;
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04) inset;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.8s var(--ease);
}
.console-shell:hover .console { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.c-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px 18px;
}
.c-dots { display: flex; gap: 7px; }
.c-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.c-live {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
}
.c-live i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
}
.c-line {
  border-radius: 10px; padding: 14px 18px; margin-bottom: 12px;
  font-size: 14px; line-height: 1.5;
  opacity: 0; transform: translateY(10px);
  animation: chatIn 0.7s var(--ease) forwards;
}
.c-line.user {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9);
  margin-left: 14%;
}
.c-line.ai {
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.07);
  margin-right: 14%;
}
.c-line:nth-child(2) { animation-delay: 0.9s; }
.c-line:nth-child(3) { animation-delay: 1.7s; }
.c-line:nth-child(4) { animation-delay: 2.5s; }
@keyframes chatIn { to { opacity: 1; transform: translateY(0); } }
.c-live.green i { background: #34d399; animation: pulseGreen 1.6s ease-in-out infinite; }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  50% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); }
}
/* Automation rows: task runs, bar fills, impact stat lands */
.auto-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 15px 18px 13px; margin-bottom: 12px;
  opacity: 0; transform: translateY(10px);
  animation: chatIn 0.6s var(--ease) forwards;
}
.auto-row:nth-child(2) { animation-delay: 0.5s; }
.auto-row:nth-child(3) { animation-delay: 1.6s; }
.auto-row:nth-child(4) { animation-delay: 2.7s; }
.auto-row .task {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  color: rgba(255,255,255,0.88); font-size: 13.5px; font-weight: 500;
}
.auto-row .stat {
  color: #34d399; font-size: 12px; font-weight: 700; letter-spacing: 0.02em;
  white-space: nowrap; opacity: 0;
}
.auto-row .bar {
  height: 4px; border-radius: 3px; background: rgba(255,255,255,0.08);
  margin-top: 11px; overflow: hidden;
}
.auto-row .bar i {
  display: block; height: 100%; width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #34d399, #a7f3d0);
}
.auto-row:nth-child(2) .bar i { animation: fillBar 1.1s ease 0.7s forwards; }
.auto-row:nth-child(2) .stat { animation: statIn 0.5s ease 1.8s forwards; }
.auto-row:nth-child(3) .bar i { animation: fillBar 1.1s ease 1.8s forwards; }
.auto-row:nth-child(3) .stat { animation: statIn 0.5s ease 2.9s forwards; }
.auto-row:nth-child(4) .bar i { animation: fillBar 1.1s ease 2.9s forwards; }
.auto-row:nth-child(4) .stat { animation: statIn 0.5s ease 4s forwards; }
@keyframes fillBar { to { width: 100%; } }
@keyframes statIn { to { opacity: 1; } }
.c-meter {
  display: flex; gap: 4px; align-items: flex-end;
  height: 26px; padding: 16px 4px 0;
}
.c-meter i {
  flex: 1; background: linear-gradient(to top, #34d399, #a7f3d0);
  border-radius: 2px; opacity: 0.85;
  animation: meter 1.1s ease-in-out infinite alternate;
}
.c-meter i:nth-child(odd) { animation-duration: 0.9s; }
.c-meter i:nth-child(3n) { animation-duration: 1.3s; }
.c-meter i:nth-child(5n) { animation-duration: 0.75s; }
@keyframes meter { from { height: 22%; } to { height: 100%; } }
.float-card {
  position: absolute; right: -18px; bottom: -26px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-radius: 16px; padding: 16px 22px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card .num { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.float-card .lbl { font-size: 12.5px; color: var(--ink-faint); font-weight: 500; }

.scroll-cue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(10,10,20,0.22); border-radius: 14px;
  opacity: 0; animation: fadeUp 1s var(--ease) 1.2s forwards;
}
.scroll-cue::after {
  content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  border-radius: 3px; background: var(--accent); transform: translateX(-50%);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { opacity: 1; top: 8px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 8px; } }

/* Section scaffolding */
section { padding: 130px 0; position: relative; }
h2 {
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 118;
  font-size: clamp(1.7rem, 3.9vw, 3.2rem);
  font-weight: 800; letter-spacing: 0.005em; line-height: 1.12;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-head { max-width: 860px; margin-bottom: 64px; }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 18px; }

/* Stakes (dark) */
.stakes {
  background: #0b0b12; color: #fff;
  border-radius: 48px; margin: 0 20px;
  overflow: hidden;
}
.stakes::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 50% -10%, rgba(255,255,255,0.07), transparent 65%);
  pointer-events: none;
}
.stakes .wrap { position: relative; }
.stakes h2 { color: #fff; text-align: center; margin: 0 auto 70px; max-width: 760px; }
.stakes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stake-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 42px 34px;
  transition: transform 0.5s var(--ease), background 0.4s, border-color 0.4s;
}
.stake-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}
.stake-card .icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: rgba(239, 68, 68, 0.12);
  display: grid; place-items: center; margin-bottom: 26px;
  color: #f87171;
}
.stake-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.stake-card p { color: rgba(255,255,255,0.55); font-size: 15.5px; }
.stakes-close {
  text-align: center; margin-top: 80px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; letter-spacing: -0.02em;
  background: linear-gradient(100deg, #b8b4b3, #ffffff, #b8b4b3);
  background-size: 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Talks */
.talks { background: var(--paper-warm); border-radius: 48px; margin: 0 20px; }
.talks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.talk-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 44px 38px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 10, 20, 0.05);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.talk-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.talk-card .format {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 18px;
}
.talk-card h3 {
  font-family: var(--font-display); font-variation-settings: 'wdth' 116;
  font-size: 25px; font-weight: 800; text-transform: uppercase;
  line-height: 1.15; margin-bottom: 14px;
}
.talk-card p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.talk-card .go {
  margin-top: 28px; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
}
.talk-card:hover .go svg { transform: translateX(4px); }
.talk-card .go svg { transition: transform 0.35s var(--ease); }

/* Guide */
.guide-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 80px; align-items: center;
}
.stage-art {
  aspect-ratio: 4 / 5; border-radius: 28px; position: relative; overflow: hidden;
  background: linear-gradient(165deg, #1e1e22 0%, #2b2b31 45%, #141417 100%);
  box-shadow: var(--shadow-lg);
}
.stage-art .beam {
  position: absolute; top: -12%; left: 50%; width: 46%; height: 130%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), rgba(255,255,255,0.02) 70%);
  transform-origin: top center;
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0% 100%);
  transform: translateX(-50%) rotate(0deg);
  animation: beamSway 7s ease-in-out infinite;
  filter: blur(2px);
}
@keyframes beamSway {
  0%, 100% { transform: translateX(-50%) rotate(-6deg); }
  50% { transform: translateX(-50%) rotate(6deg); }
}
.stage-art .floor {
  position: absolute; bottom: 0; left: 0; right: 0; height: 34%;
  background: radial-gradient(60% 90% at 50% 100%, rgba(255,255,255,0.14), transparent 70%);
}
.stage-art .figure {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  width: 74px; height: 150px;
}
.stage-art .figure::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(145deg, #4a4a52, #2c2c31);
}
.stage-art .figure::after {
  content: ''; position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 100px; border-radius: 34px 34px 12px 12px;
  background: linear-gradient(145deg, #3f3f47, #26262b);
}
.guide-copy .quote {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem); font-weight: 600; line-height: 1.4;
  letter-spacing: -0.015em; margin: 26px 0 44px;
}
.cred-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cred {
  padding: 26px 22px; border-radius: 18px; background: var(--paper-warm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.cred:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cred .big { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; display: block; }
.cred .small { font-size: 13.5px; color: var(--ink-faint); font-weight: 500; }

/* Plan */
.plan { background: var(--paper-warm); border-radius: 48px; margin: 0 20px; }
.plan-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; margin-bottom: 70px; }
.plan-line {
  position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: rgba(35, 31, 32, 0.1); z-index: 0;
}
.plan-line i {
  display: block; height: 100%; width: 0;
  background: var(--ink);
  transition: width 1.6s var(--ease) 0.3s;
}
.plan-line.in i { width: 100%; }
.step { position: relative; z-index: 1; text-align: center; padding: 0 12px; }
.step .badge {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center; margin: 0 auto 30px;
  font-size: 28px; font-weight: 800; color: var(--accent);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.step:hover .badge {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 20px 50px rgba(35, 31, 32, 0.22);
}
.step h3 { font-size: 21px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.015em; }
.step p { color: var(--ink-soft); font-size: 15.5px; max-width: 300px; margin: 0 auto; }
.plan-cta { text-align: center; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; }
.t-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 44px 38px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 10, 20, 0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.t-card:hover { transform: translateY(-8px) rotate(-0.4deg); box-shadow: var(--shadow-lg); }
.t-card .mark {
  font-size: 54px; line-height: 1; font-weight: 800; color: var(--accent);
  height: 40px; opacity: 0.9;
}
.t-card blockquote { font-size: 19px; font-weight: 600; line-height: 1.45; letter-spacing: -0.01em; flex: 1; }
.t-card .who { margin-top: 26px; font-size: 14px; color: var(--ink-faint); font-weight: 500; }

/* Detail page: takeaways and body */
.detail-body { max-width: 800px; }
.detail-body p { font-size: 17.5px; color: var(--ink-soft); margin-bottom: 22px; }
.detail-body p strong { color: var(--ink); }
.detail-body .pull {
  font-size: clamp(1.3rem, 2.1vw, 1.6rem); font-weight: 600; line-height: 1.4;
  letter-spacing: -0.015em; color: var(--ink); margin: 38px 0;
  padding-left: 26px; border-left: 3px solid var(--ink);
}
.take-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 48px; max-width: 880px;
}
.take {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px; border-radius: 16px;
  transition: background 0.3s, transform 0.4s var(--ease);
  font-weight: 500; font-size: 16.5px;
}
.take:hover { background: var(--paper-warm); transform: translateX(6px); }
.take .check {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(35, 31, 32, 0.07);
  display: grid; place-items: center; color: var(--ink);
  margin-top: 2px;
}
.meta-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 34px; }
.meta {
  padding: 14px 24px; border-radius: 100px; background: var(--paper-warm);
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}

/* Vision / Contact (dark) */
.vision {
  background: #0b0b12; color: #fff;
  border-radius: 48px 48px 0 0; margin: 0 20px -1px;
  overflow: hidden; padding-bottom: 110px;
}
.vision::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 420px at 20% 0%, rgba(255,255,255,0.08), transparent 60%),
    radial-gradient(600px 400px at 90% 100%, rgba(255,255,255,0.05), transparent 60%);
  pointer-events: none;
}
.vision .wrap { position: relative; }
.vision h2 { color: #fff; max-width: 820px; }
.vision .lede { color: rgba(255,255,255,0.6); font-size: 18px; margin-top: 20px; max-width: 500px; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 70px; align-items: start; }
.form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 26px; padding: 42px;
  backdrop-filter: blur(12px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55); margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%; padding: 15px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-family: inherit; font-size: 15.5px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }
.vision-points { display: flex; flex-direction: column; gap: 34px; padding-top: 12px; }
.v-point { display: flex; gap: 20px; align-items: flex-start; }
.v-point .icon {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  display: grid; place-items: center; color: #fff;
}
.v-point h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.v-point p { color: rgba(255,255,255,0.55); font-size: 15px; }

/* Footer */
footer { background: #0b0b12; color: rgba(255,255,255,0.5); margin: 0 20px; border-radius: 0 0 48px 48px; padding: 40px 0 46px; }
.foot-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 38px;
}
footer .logo { color: #fff; }
.foot-links { display: flex; gap: 28px; }
.foot-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14.5px; transition: color 0.25s; }
.foot-links a:hover { color: #fff; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  display: grid; place-items: center; color: rgba(255,255,255,0.65);
  transition: all 0.3s var(--ease);
}
.socials a:hover { background: #fff; color: var(--ink); transform: translateY(-3px); border-color: #fff; }

/* Mobile sticky CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 950;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.85); backdrop-filter: blur(18px);
  box-shadow: 0 -4px 24px rgba(10,10,20,0.1);
  display: none;
  transform: translateY(110%); transition: transform 0.5s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; justify-content: center; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding-top: 120px; }
  .console { transform: none; }
  .guide-grid { grid-template-columns: 1fr; gap: 50px; }
  .stakes-grid, .talks-grid, .plan-steps { grid-template-columns: 1fr 1fr; }
  .plan-line { display: none; }
  .vision-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 680px) {
  .nav-links a:not(.btn) { display: none; }
  section { padding: 90px 0; }
  .stakes, .plan, .talks, .vision, footer { margin: 0 10px; border-radius: 32px; }
  .vision { border-radius: 32px 32px 0 0; }
  footer { border-radius: 0 0 32px 32px; }
  .stakes-grid, .talks-grid, .testi-grid, .plan-steps { grid-template-columns: 1fr; }
  .take-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cred-row { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
  .float-card { right: 4px; bottom: -20px; padding: 12px 16px; }
  .form-card { padding: 30px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
