:root {
  --ink: #06111f;
  --ink-2: #0a1728;
  --ink-3: #10233a;
  --paper: #f5f7fb;
  --white: #ffffff;
  --blue: #2f6bff;
  --blue-2: #5b8cff;
  --cyan: #64e7ff;
  --violet: #8a7dff;
  --text: #0d1b2a;
  --muted: #667487;
  --line: rgba(10, 29, 49, .14);
  --line-dark: rgba(255, 255, 255, .13);
  --shell: min(1200px, calc(100vw - 56px));
  --radius: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img, svg, canvas { display: block; }
::selection { background: var(--cyan); color: var(--ink); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000; transform: translateY(-150%);
  background: #fff; color: #000; padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(6,17,31,.78);
  border-color: rgba(255,255,255,.09);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: var(--shell); height: 80px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; font-family: "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 700; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; display:block; object-fit:contain; }
.brand-mark.small { width: 37px; height: 28px; }
.primary-nav { display: flex; align-items: center; gap: 28px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 500; }
.primary-nav a { transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a.active { color: #fff; }
.nav-cta { padding: 10px 15px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #fff !important; }
.nav-cta:hover { background: rgba(255,255,255,.08); }
.menu-button { display: none; background: none; border: 0; padding: 8px; }
.menu-button > span:not(.sr-only) { display:block; width: 24px; height: 1px; margin: 5px 0; background:#fff; transition:.25s ease; }

.hero {
  position: relative; min-height: 100svh; overflow: hidden; color: #fff;
  background:
    radial-gradient(circle at 73% 33%, rgba(47,107,255,.16), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #071421 52%, #0a1730 100%);
}
#signal-canvas { position:absolute; inset:0; width:100%; height:100%; opacity:.72; }
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size:64px 64px; mask-image:linear-gradient(to bottom,black 0%,black 70%,transparent 100%); }
.hero-glow { position:absolute; border-radius:50%; filter:blur(1px); opacity:.55; pointer-events:none; }
.hero-glow-a { width:420px;height:420px;right:12%;top:18%; background:radial-gradient(circle,rgba(100,231,255,.15),transparent 65%); }
.hero-glow-b { width:560px;height:560px;right:-120px;bottom:-200px; background:radial-gradient(circle,rgba(138,125,255,.14),transparent 66%); }
.hero-content { position:relative; z-index:2; min-height:calc(100svh - 70px); display:grid; grid-template-columns:minmax(0,1.7fr) minmax(280px,.65fr); gap:80px; align-items:center; padding-top:112px; padding-bottom:100px; }
.hero-main { max-width:900px; }
.eyebrow, .section-kicker { display:block; margin:0 0 23px; font-size:11px; letter-spacing:.18em; font-weight:600; color:var(--blue); }
.hero .eyebrow { color:var(--cyan); }
.hero h1 { margin:0; max-width:960px; font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; font-size:clamp(62px,7.7vw,122px); line-height:.89; letter-spacing:-.064em; font-weight:600; }
.hero h1 span { color:transparent; background:linear-gradient(100deg,#fff 5%,#9edcff 42%,#738bff 78%,#a39aff 100%); -webkit-background-clip:text; background-clip:text; }
.hero-copy { max-width:760px; margin:34px 0 0; font-size:clamp(18px,1.55vw,23px); line-height:1.55; color:rgba(255,255,255,.70); }
.hero-actions { margin-top:42px; display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.button { display:inline-flex; align-items:center; justify-content:center; gap:20px; min-height:51px; padding:0 20px; font-size:13px; font-weight:600; border-radius:3px; transition:transform .25s var(--ease), background .25s ease, color .25s ease; }
.button:hover { transform:translateY(-2px); }
.button-primary { background:#fff; color:var(--ink); }
.button-primary:hover { background:var(--cyan); }
.button-dark { background:var(--ink); color:#fff; }
.button-light { background:#fff; color:var(--ink); }
.text-action { display:inline-flex; align-items:center; gap:9px; color:rgba(255,255,255,.83); font-size:13px; border-bottom:1px solid rgba(255,255,255,.26); padding-bottom:5px; }
.hero-side { align-self:end; margin-bottom:90px; padding:24px 0 0 26px; border-left:1px solid rgba(255,255,255,.17); }
.status-line { display:flex; align-items:center; gap:9px; margin-bottom:34px; font-size:10px; letter-spacing:.18em; color:rgba(255,255,255,.45); }
.status-dot { width:7px;height:7px;border-radius:50%;background:var(--cyan);box-shadow:0 0 18px rgba(100,231,255,.8); }
.profile-block { padding:0 0 23px; margin-bottom:23px; border-bottom:1px solid rgba(255,255,255,.10); }
.profile-block .label { display:block; margin-bottom:8px; color:rgba(255,255,255,.37); font-size:9px; letter-spacing:.17em; }
.profile-block strong { display:block; margin-bottom:5px; font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; font-size:16px; font-weight:600; }
.profile-block > span:last-child { color:rgba(255,255,255,.48); font-size:12px; }
.profile-block.compact { border:0; margin-bottom:0; }
.chips { display:flex;flex-wrap:wrap;gap:7px; }
.chips span { padding:6px 9px;border:1px solid rgba(255,255,255,.11);border-radius:999px;font-size:10px;color:rgba(255,255,255,.62); }
.hero-bottom { position:absolute; z-index:3; left:50%; transform:translateX(-50%); bottom:24px; display:grid; grid-template-columns:1fr 1fr 1fr; font-size:9px; letter-spacing:.16em; color:rgba(255,255,255,.34); }
.hero-bottom span:nth-child(2) { text-align:center; }
.hero-bottom a { text-align:right; color:rgba(255,255,255,.54); }

.ticker { overflow:hidden; background:var(--blue); color:#fff; padding:14px 0; }
.ticker-track { width:max-content; display:flex; align-items:center; gap:25px; animation:ticker 38s linear infinite; font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; font-size:10px; font-weight:600; letter-spacing:.14em; }
.ticker i { width:4px;height:4px;background:var(--cyan);border-radius:50%; }
@keyframes ticker { to { transform:translateX(-50%); } }

.section { padding:130px 0; }
.editorial-grid { display:grid;grid-template-columns:210px minmax(0,1fr);gap:58px; }
.section-index { display:flex;gap:14px;align-items:flex-start;color:var(--muted);font-size:10px;letter-spacing:.14em;padding-top:8px; }
.section-index span { color:var(--blue);font-weight:600; }
.section-index p { margin:0; }
.statement { max-width:980px; margin:0; font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; font-size:clamp(42px,5.5vw,78px); line-height:1.04; letter-spacing:-.045em; font-weight:600; }
.statement em { font-style:normal;color:var(--blue); }
.statement.smaller { font-size:clamp(36px,4.4vw,63px); }
.copy-columns { max-width:900px;margin-top:58px;display:grid;grid-template-columns:1fr 1fr;gap:52px; }
.copy-columns p, .personal-copy > p:last-child { margin:0;color:var(--muted);font-size:16px;line-height:1.8; }

.principles { background:#fff; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-title { display:grid;grid-template-columns:1.4fr .6fr;gap:70px;align-items:end;margin-bottom:70px; }
.section-title h2, .journey-intro h2, .expertise-head h2, .ideas-head h2, .speaking-intro h2, .closing h2, .ai-copy h2 { margin:0;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-weight:600;letter-spacing:-.045em;line-height:1.02;font-size:clamp(44px,5.5vw,75px); }
.section-title > p, .journey-intro > p, .expertise-head > p, .ideas-head > p { margin:0;color:var(--muted);max-width:410px;justify-self:end;line-height:1.7; }
.principle-list { border-top:1px solid var(--line); }
.principle-row { display:grid;grid-template-columns:80px minmax(260px,.85fr) minmax(300px,1fr);gap:38px;padding:34px 0;border-bottom:1px solid var(--line);align-items:start; }
.principle-num { color:var(--blue);font-size:11px;letter-spacing:.12em; }
.principle-row h3 { margin:0;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:24px;line-height:1.2;letter-spacing:-.025em; }
.principle-row p { margin:0;color:var(--muted);line-height:1.72; }

.ai-section { position:relative; overflow:hidden; background:linear-gradient(125deg,#07111e 0%,#091a2e 55%,#0c1641 100%); color:#fff; }
.ai-section:before { content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:56px 56px;mask-image:radial-gradient(circle at 20% 50%,black,transparent 63%); }
.ai-layout { position:relative;z-index:1;display:grid;grid-template-columns:.85fr 1.15fr;gap:110px;align-items:center; }
.ai-graphic { position:relative;aspect-ratio:1;max-width:470px;width:100%;justify-self:center; }
.ai-core { position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);width:112px;height:112px;border-radius:50%;display:grid;place-items:center;background:rgba(8,20,45,.82);border:1px solid rgba(100,231,255,.45);box-shadow:0 0 70px rgba(47,107,255,.25); }
.ai-core span { font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:34px;font-weight:600; }
.ai-core small { position:absolute;top:72%;font-size:7px;letter-spacing:.17em;color:rgba(255,255,255,.46); }
.ai-ring { position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);border-radius:50%;border:1px solid rgba(100,231,255,.17); }
.ring-1 { width:54%;height:54%;animation:spin 17s linear infinite; border-style:dashed; }
.ring-2 { width:82%;height:82%;border-color:rgba(138,125,255,.17);animation:spinBack 29s linear infinite; }
.ring-1:after,.ring-2:after { content:"";position:absolute;width:7px;height:7px;background:var(--cyan);border-radius:50%;box-shadow:0 0 16px var(--cyan);top:-4px;left:50%; }
.ring-2:after { background:var(--violet);box-shadow:0 0 16px var(--violet);top:55%;left:-4px; }
.orb { position:absolute;border-radius:50%;filter:blur(.2px); }
.orb-1 { width:14px;height:14px;background:var(--cyan);right:9%;top:28%;box-shadow:0 0 35px rgba(100,231,255,.75); }
.orb-2 { width:8px;height:8px;background:var(--blue-2);left:8%;top:67%;box-shadow:0 0 28px rgba(91,140,255,.8); }
.orb-3 { width:5px;height:5px;background:#fff;right:32%;bottom:4%;box-shadow:0 0 15px #fff; }
.axis { position:absolute;background:linear-gradient(90deg,transparent,rgba(255,255,255,.10),transparent); }
.axis-x { height:1px;left:0;right:0;top:50%; }
.axis-y { width:1px;top:0;bottom:0;left:50%;background:linear-gradient(transparent,rgba(255,255,255,.10),transparent); }
@keyframes spin { to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes spinBack { to { transform:translate(-50%,-50%) rotate(-360deg); } }
.section-kicker.light { color:var(--cyan); }
.ai-copy h2 { color:#fff; }
.ai-lead { max-width:680px;color:rgba(255,255,255,.66);font-size:19px;line-height:1.7;margin:28px 0 44px; }
.ai-points { border-top:1px solid var(--line-dark); }
.ai-points > div { display:grid;grid-template-columns:45px 1fr;gap:18px;padding:20px 0;border-bottom:1px solid var(--line-dark); }
.ai-points span { font-size:10px;letter-spacing:.12em;color:var(--cyan); }
.ai-points p { margin:0;color:rgba(255,255,255,.58);font-size:14px;line-height:1.65; }
.ai-points strong { color:#fff;font-weight:500; }

.experience { background:var(--paper); }
.journey-intro { display:grid;grid-template-columns:1fr .7fr;gap:70px;align-items:end;margin-bottom:70px; }
.journey-intro h2 { font-size:clamp(42px,5vw,70px); }
.timeline { border-top:1px solid var(--line); }
.timeline-item { display:grid;grid-template-columns:150px 280px minmax(0,1fr);gap:38px;padding:35px 0;border-bottom:1px solid var(--line); }
.timeline-meta { display:flex;flex-direction:column;gap:7px;color:var(--muted);font-size:9px;letter-spacing:.13em; }
.timeline-meta span:first-child { color:var(--blue);font-weight:600; }
.timeline-role h3 { margin:0 0 7px;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:28px;letter-spacing:-.03em; }
.timeline-role p { margin:0;color:var(--muted);font-size:13px; }
.timeline-copy { margin:0;color:var(--muted);line-height:1.72; }

.expertise { background:#fff; }
.expertise-head { display:grid;grid-template-columns:1.2fr .55fr;gap:80px;align-items:end;margin-bottom:65px; }
.expertise-grid { display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-left:1px solid var(--line); }
.expertise-item { min-height:260px;padding:28px 24px;border-right:1px solid var(--line);border-bottom:1px solid var(--line);transition:background .25s ease, transform .25s ease; }
.expertise-item:hover { background:#f4f7ff; transform:translateY(-2px); }
.expertise-item > span { display:block;color:var(--blue);font-size:10px;letter-spacing:.14em;margin-bottom:55px; }
.expertise-item h3 { margin:0 0 14px;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:19px;letter-spacing:-.02em;line-height:1.25; }
.expertise-item p { margin:0;color:var(--muted);font-size:13px;line-height:1.65; }

.ideas { background:var(--ink);color:#fff; }
.ideas-head { display:grid;grid-template-columns:1.2fr .55fr;gap:80px;align-items:end;margin-bottom:70px; }
.ideas-head > p { color:rgba(255,255,255,.48); }
.idea-list { border-top:1px solid var(--line-dark); }
.idea-row { display:grid;grid-template-columns:70px 140px minmax(0,1fr) 40px;gap:26px;padding:28px 0;border-bottom:1px solid var(--line-dark);align-items:start;transition:padding .25s var(--ease),background .25s ease; }
.idea-row:hover { padding-left:14px;padding-right:14px;background:rgba(255,255,255,.025); }
.idea-number { color:var(--cyan);font-size:10px;letter-spacing:.14em; }
.idea-type { color:rgba(255,255,255,.34);font-size:9px;letter-spacing:.15em; }
.idea-row h3 { margin:0 0 8px;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:24px;letter-spacing:-.025em;font-weight:500; }
.idea-row p { margin:0;color:rgba(255,255,255,.47);max-width:760px;font-size:14px;line-height:1.65; }
.idea-arrow { justify-self:end;color:rgba(255,255,255,.4); }

.speaking { background:#edf2f8; }
.speaking-layout { display:grid;grid-template-columns:.8fr 1.2fr;gap:110px;align-items:start; }
.speaking-intro { position:sticky;top:130px; }
.speaking-intro h2 span { color:var(--blue); }
.speaking-intro > p { max-width:510px;color:var(--muted);line-height:1.75;margin:28px 0 34px; }
.topic-list { border-top:1px solid var(--line); }
.topic { display:grid;grid-template-columns:52px 1fr;column-gap:24px;padding:26px 0;border-bottom:1px solid var(--line); }
.topic > span { grid-row:1 / span 2;color:var(--blue);font-size:10px;letter-spacing:.12em; }
.topic h3 { margin:0 0 7px;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:22px;letter-spacing:-.025em; }
.topic p { margin:0;color:var(--muted);font-size:13px;line-height:1.6; }

.personal { background:#fff; }
.personal-copy > p:last-child { max-width:680px;margin-top:42px; }

.closing { padding:120px 0;background:linear-gradient(120deg,#0a1830 0%,#10234a 52%,#1c2f6c 100%);color:#fff;position:relative;overflow:hidden; }
.closing:after { content:"";position:absolute;width:500px;height:500px;border-radius:50%;right:-120px;top:-180px;background:radial-gradient(circle,rgba(100,231,255,.17),transparent 66%); }
.closing-layout { position:relative;z-index:1;display:grid;grid-template-columns:1.2fr .55fr;gap:110px;align-items:end; }
.closing h2 { font-size:clamp(50px,6vw,86px); }
.closing h2 span { color:var(--cyan); }
.closing-side p { color:rgba(255,255,255,.58);line-height:1.7;margin:0 0 30px; }

.site-footer { background:#050c16;color:#fff;padding:38px 0 30px;border-top:1px solid rgba(255,255,255,.07); }
.footer-grid { display:grid;grid-template-columns:1.2fr .8fr .6fr;gap:40px;align-items:end; }
.footer-brand { display:flex;gap:14px;align-items:center; }
.footer-brand strong { display:block;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:14px; }
.footer-brand span { color:rgba(255,255,255,.37);font-size:10px; }
.footer-links { display:flex;gap:18px;flex-wrap:wrap;color:rgba(255,255,255,.52);font-size:11px; }
.footer-links a:hover { color:#fff; }
.footer-meta { text-align:right;display:flex;flex-direction:column;gap:5px;color:rgba(255,255,255,.3);font-size:9px;letter-spacing:.08em; }

.reveal { opacity:0; transform:translateY(22px); transition:opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 1040px) {
  :root { --shell:min(100% - 40px, 1000px); }
  .hero-content { grid-template-columns:1fr;gap:55px;align-content:center;padding-top:140px; }
  .hero-side { align-self:auto;margin:0;max-width:620px;display:grid;grid-template-columns:repeat(3,1fr);gap:22px;border-left:0;border-top:1px solid rgba(255,255,255,.14);padding:24px 0 0; }
  .status-line { grid-column:1/-1;margin-bottom:0; }
  .profile-block { border-bottom:0;margin-bottom:0;padding-bottom:0; }
  .editorial-grid { grid-template-columns:150px 1fr;gap:35px; }
  .ai-layout { gap:55px; }
  .timeline-item { grid-template-columns:105px 230px 1fr;gap:24px; }
  .expertise-grid { grid-template-columns:repeat(2,1fr); }
  .speaking-layout { gap:65px; }
}

@media (max-width: 780px) {
  :root { --shell:calc(100vw - 34px); }
  .site-header .nav-shell { height:68px; }
  .brand-name { font-size:14px; }
  .menu-button { display:block;z-index:102; }
  .primary-nav {
    position:fixed;inset:0;background:rgba(6,17,31,.98);display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:25px;padding:80px 9vw;font-family:"Avenir Next","SF Pro Display",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;font-size:28px;opacity:0;visibility:hidden;transform:translateY(-10px);transition:.25s ease;
  }
  .primary-nav.open { opacity:1;visibility:visible;transform:none; }
  .primary-nav .nav-cta { font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;font-size:13px;margin-top:12px; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity:0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .hero { min-height:auto; }
  .hero-content { min-height:auto;display:block;padding-top:150px;padding-bottom:130px; }
  .hero h1 { font-size:clamp(54px,14vw,82px);line-height:.92; }
  .hero-copy { font-size:17px;margin-top:28px; }
  .hero-side { margin-top:70px;display:block;border-top:1px solid rgba(255,255,255,.12); }
  .profile-block { padding:0 0 18px;margin-bottom:18px;border-bottom:1px solid rgba(255,255,255,.09); }
  .hero-bottom { display:none; }
  .section { padding:90px 0; }
  .editorial-grid { display:block; }
  .section-index { margin-bottom:35px; }
  .statement { font-size:clamp(38px,10.5vw,58px); }
  .copy-columns { grid-template-columns:1fr;gap:20px;margin-top:38px; }
  .section-title, .journey-intro, .expertise-head, .ideas-head { grid-template-columns:1fr;gap:28px;margin-bottom:50px; }
  .section-title > p, .journey-intro > p, .expertise-head > p, .ideas-head > p { justify-self:start; }
  .principle-row { grid-template-columns:40px 1fr;gap:18px; }
  .principle-row p { grid-column:2; }
  .ai-layout { grid-template-columns:1fr;gap:65px; }
  .ai-graphic { max-width:370px; }
  .ai-copy h2 { font-size:clamp(45px,11vw,68px); }
  .timeline-item { grid-template-columns:55px 1fr;gap:18px; }
  .timeline-copy { grid-column:2; }
  .expertise-grid { grid-template-columns:1fr; }
  .expertise-item { min-height:auto; }
  .expertise-item > span { margin-bottom:35px; }
  .idea-row { grid-template-columns:42px 1fr 22px;gap:16px; }
  .idea-type { grid-column:2;grid-row:1; }
  .idea-number { grid-row:1 / span 2; }
  .idea-row > div { grid-column:2; }
  .idea-arrow { grid-column:3;grid-row:1 / span 2; }
  .speaking-layout { grid-template-columns:1fr;gap:55px; }
  .speaking-intro { position:static; }
  .closing-layout { grid-template-columns:1fr;gap:45px; }
  .footer-grid { grid-template-columns:1fr;gap:30px; }
  .footer-meta { text-align:left; }
}

@media (max-width: 480px) {
  .hero-actions { align-items:flex-start;flex-direction:column;gap:20px; }
  .hero h1 { font-size:50px; }
  .section-title h2, .journey-intro h2, .expertise-head h2, .ideas-head h2, .speaking-intro h2, .closing h2 { font-size:42px; }
  .statement, .statement.smaller { font-size:38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1;transform:none; }
  #signal-canvas { display:none; }
}
