:root {
  --ink: #090b0d;
  --forest: #050608;
  --forest-2: #15191d;
  --lime: #62c8ff;
  --mint: #b9def1;
  --paper: #f2f3f4;
  --sand: #e4e7ea;
  --blue: #238ed0;
  --amber: #f0a34a;
  --white: #fff;
  --line: rgba(9, 11, 13, 0.16);
  --shell: min(1480px, calc(100vw - 80px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  margin: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; height: auto; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
::selection { background: var(--lime); color: var(--ink); }
[hidden] { display: none !important; }
.shell { margin-inline: auto; width: var(--shell); }
.skip-link {
  background: var(--lime);
  left: 20px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}
.skip-link:focus { top: 20px; }

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto;
  left: 0;
  padding: 24px max(40px, calc((100vw - 1480px) / 2));
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
}
.brand { align-items: center; display: inline-flex; gap: 12px; justify-self: start; position: relative; z-index: 52; }
.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--lime);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  height: 40px;
  justify-content: center;
  letter-spacing: -0.09em;
  width: 40px;
}
.brand-name { font-size: 15px; font-weight: 720; letter-spacing: -0.02em; }
.site-nav { align-items: center; display: flex; gap: 32px; }
.site-nav > a {
  font-size: 13px;
  font-weight: 620;
  opacity: .67;
  padding: 8px 0;
  position: relative;
}
.site-nav > a:not(.nav-contact)::after {
  background: currentColor;
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
  width: 100%;
}
.site-nav > a:hover,
.site-nav > a.is-active { opacity: 1; }
.site-nav > a:hover::after,
.site-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-contact {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 28px;
  opacity: 1;
  padding: 13px 15px;
}
.site-nav .nav-contact:hover { background: var(--forest); }
.site-header-dark,
body[data-page="speaker"] .site-header,
body[data-page="representation"] .site-header,
body[data-page="contact"] .site-header { color: var(--white); }
body[data-page="speaker"] .site-header .brand-mark,
body[data-page="representation"] .site-header .brand-mark,
body[data-page="contact"] .site-header .brand-mark {
  background: var(--lime);
  color: var(--ink);
}
body[data-page="speaker"] .site-header .nav-contact,
body[data-page="representation"] .site-header .nav-contact,
body[data-page="contact"] .site-header .nav-contact {
  background: var(--lime);
  color: var(--ink);
}
.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
}

.overline {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.overline > i {
  background: currentColor;
  border-radius: 50%;
  height: 7px;
  width: 7px;
}
.overline.light { color: var(--mint); }
.button-row { align-items: center; display: flex; flex-wrap: wrap; gap: 30px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 13px;
  font-weight: 720;
  gap: 44px;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 17px;
  transition: background .2s, color .2s, border .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--forest-2); }
.button-lime { background: var(--lime); color: var(--ink); }
.button-lime:hover { background: var(--white); }
.button-ghost { border-color: var(--line); }
.button.small { gap: 20px; min-height: 40px; padding: 8px 13px; }
.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
  padding: 0 0 7px;
}
.text-link span { margin-left: 22px; }
.light-link { border-color: rgba(255,255,255,.35); color: var(--white); }

.hero {
  min-height: 880px;
  overflow: hidden;
  padding: 140px 0 70px;
  position: relative;
}
.hero::before {
  background-image: radial-gradient(rgba(17,25,21,.24) .7px, transparent .7px);
  background-size: 18px 18px;
  content: "";
  inset: 0 53% 0 0;
  mask-image: linear-gradient(90deg, #000, transparent);
  opacity: .22;
  pointer-events: none;
  position: absolute;
}
.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 7vw, 110px);
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  position: relative;
}
.hero-copy { padding: 40px 0 0; position: relative; z-index: 2; }
.hero h1,
.subhero h1,
.contact-intro h1 {
  font-size: clamp(64px, 7.2vw, 118px);
  font-weight: 520;
  letter-spacing: -.078em;
  line-height: .88;
  margin: 38px 0 34px;
}
h1 em, h2 em {
  color: var(--forest);
  font-family: var(--serif);
  font-weight: 400;
}
.hero-lead {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.62;
  margin: 0 0 38px;
  max-width: 670px;
}
.hero-media { padding-left: 3vw; position: relative; }
.hero-photo {
  background: var(--sand);
  height: 670px;
  margin-left: auto;
  max-width: 600px;
  overflow: hidden;
  position: relative;
}
.hero-photo::before {
  border: 1px solid rgba(17,25,21,.14);
  border-radius: 50%;
  content: "";
  height: 570px;
  left: -90px;
  position: absolute;
  top: -70px;
  width: 570px;
  z-index: 1;
}
.hero-photo::after {
  background: linear-gradient(180deg, transparent 60%, rgba(12,51,40,.32));
  content: "";
  inset: 0;
  position: absolute;
}
.hero-photo img { height: 100%; object-fit: cover; object-position: 52% 32%; width: 100%; }
.hero-stamp {
  background: var(--lime);
  bottom: 42px;
  display: grid;
  font-family: var(--mono);
  padding: 18px;
  position: absolute;
  right: -16px;
  width: 165px;
  z-index: 3;
}
.hero-stamp strong { font-size: 24px; letter-spacing: -.05em; }
.hero-stamp span { font-size: 9px; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.hero-axis {
  align-items: center;
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  gap: 10px;
  margin-left: auto;
  margin-top: 15px;
  max-width: 600px;
}
.hero-axis i { background: var(--line); flex: 1; height: 1px; }

.credibility-bar { background: var(--forest); color: var(--white); }
.credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credibility-grid > div {
  border-left: 1px solid rgba(255,255,255,.15);
  display: grid;
  gap: 6px;
  padding: 25px 24px;
}
.credibility-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.credibility-grid strong { font-size: 13px; }
.credibility-grid span { font-family: var(--mono); font-size: 9px; opacity: .6; text-transform: uppercase; }

.section { padding: 120px 0; }
.section-head { margin-bottom: 72px; }
.split-head { display: grid; gap: 8vw; grid-template-columns: .42fr 1fr; }
.section h2,
.footer-cta h2 {
  font-size: clamp(45px, 5.2vw, 82px);
  font-weight: 520;
  letter-spacing: -.065em;
  line-height: 1.01;
  margin: 0;
}
.split-head h2 { max-width: 1000px; }
.role-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  min-height: 630px;
}
.role-card {
  background: var(--white);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.role-card:last-child { border-right: 1px solid var(--line); }
.role-number {
  font-family: var(--mono);
  font-size: 10px;
  left: 24px;
  position: absolute;
  top: 24px;
  z-index: 3;
}
.role-image { height: 46%; overflow: hidden; }
.role-image img {
  filter: saturate(.8);
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  transition: transform .5s ease, filter .5s ease;
  width: 100%;
}
.role-card:hover .role-image img { filter: saturate(1); transform: scale(1.025); }
.role-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 30px 24px;
}
.role-content > span { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; opacity: .55; text-transform: uppercase; }
.role-content h3 {
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 540;
  letter-spacing: -.045em;
  line-height: 1.1;
  margin: 45px 0 20px;
}
.role-content p { font-size: 14px; line-height: 1.7; margin: 0; opacity: .68; }
.role-content b {
  border-bottom: 1px solid var(--line);
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin-top: auto;
  padding-bottom: 9px;
}
.role-entrepreneur { background: var(--forest); color: var(--white); }
.role-entrepreneur .role-content p { opacity: .64; }
.role-entrepreneur .role-content b { border-color: rgba(255,255,255,.25); }
.role-representation { background: var(--lime); }

.dark-section { background: var(--forest); color: var(--white); overflow: hidden; }
.dark-section h2 em { color: var(--lime); }
.topic-marquee {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.15);
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex;
  gap: 24px;
  margin: 20px calc((100vw - var(--shell)) / -2) 70px;
  overflow: hidden;
  padding: 28px max(40px, calc((100vw - 1480px) / 2));
  white-space: nowrap;
}
.topic-marquee span { font-family: var(--serif); font-size: clamp(22px, 2.4vw, 38px); font-style: italic; }
.topic-marquee i { color: var(--lime); font-size: 8px; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.insight-grid article { border-left: 1px solid rgba(255,255,255,.15); min-height: 300px; padding: 25px 30px; }
.insight-grid article:last-child { border-right: 1px solid rgba(255,255,255,.15); }
.insight-grid article > span { color: var(--lime); font-family: var(--mono); font-size: 10px; }
.insight-grid h3 { font-size: 26px; font-weight: 520; letter-spacing: -.035em; margin: 80px 0 20px; }
.insight-grid p { font-size: 14px; line-height: 1.7; margin: 0; opacity: .62; }

.profile-grid { display: grid; gap: 9vw; grid-template-columns: .85fr 1.15fr; }
.profile-image { min-height: 650px; overflow: hidden; position: relative; }
.profile-image::after { border: 1px solid rgba(255,255,255,.45); content: ""; inset: 24px; position: absolute; }
.profile-image img { height: 100%; object-fit: cover; object-position: 50% center; width: 100%; }
.profile-copy { align-self: center; }
.profile-copy h2 { margin: 34px 0; }
.large-copy { font-size: clamp(19px, 1.8vw, 26px); letter-spacing: -.02em; line-height: 1.48; }
.profile-copy > p:not(.large-copy),
.builder-copy > p:not(.large-copy),
.panel-copy > p:not(.large-copy),
.dialogue-grid > div > p:not(.large-copy) { font-size: 15px; line-height: 1.75; opacity: .68; }
.profile-facts {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 44px;
}
.profile-facts > div { align-items: baseline; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 16px 0; }
.profile-facts strong { font-size: 13px; }
.profile-facts span { font-family: var(--mono); font-size: 10px; opacity: .56; text-transform: uppercase; }

.quote-section { background: var(--lime); }
.quote-inner { text-align: center; }
.quote-mark { display: block; font-family: var(--serif); font-size: 90px; height: 50px; line-height: 1; }
.quote-inner blockquote {
  font-family: var(--serif);
  font-size: clamp(40px, 6.2vw, 98px);
  font-style: italic;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 40px auto;
}
.quote-by { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.subhero {
  color: var(--white);
  min-height: 860px;
  overflow: hidden;
  padding: 145px 0 70px;
}
.subhero-grid { align-items: center; display: grid; gap: 7vw; grid-template-columns: 1fr 1fr; }
.subhero-copy h1 { font-size: clamp(58px, 6.1vw, 98px); margin-top: 36px; }
.subhero-copy h1 em { color: var(--lime); }
.subhero-copy > p { font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; margin: 0 0 38px; max-width: 690px; opacity: .8; }
.subhero-media { height: 630px; overflow: hidden; position: relative; }
.subhero-media > img { height: 100%; object-fit: cover; width: 100%; }
.speaker-hero { background: var(--forest); }
.stage-media > img { object-position: 55% center; }
.stage-media::after { background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); content: ""; inset: 0; position: absolute; }
.media-caption {
  bottom: 24px;
  display: flex;
  font-family: var(--mono);
  font-size: 9px;
  gap: 22px;
  left: 24px;
  letter-spacing: .09em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}
.speaker-proof { background: #050608; color: var(--white); }
.speaker-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.speaker-proof-grid > div { border-left: 1px solid rgba(255,255,255,.14); display: grid; gap: 6px; padding: 26px 28px; }
.speaker-proof-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.speaker-proof-grid strong { color: var(--lime); font-size: 13px; }
.speaker-proof-grid span { font-family: var(--mono); font-size: 9px; opacity: .55; text-transform: uppercase; }

.keynote-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.keynote-card {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 27px 34px 34px;
}
.keynote-card:nth-child(even),
.keynote-card:last-child { border-right: 1px solid var(--line); }
.keynote-card.featured {
  background: var(--lime);
  grid-column: 1 / -1;
  min-height: 520px;
}
.topic-index { font-family: var(--mono); font-size: 10px; opacity: .55; }
.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-left: auto; margin-top: -17px; }
.topic-tags b { border: 1px solid currentColor; border-radius: 30px; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; padding: 6px 9px; text-transform: uppercase; }
.keynote-card h3 { font-size: clamp(29px, 3vw, 48px); font-weight: 520; letter-spacing: -.05em; line-height: 1.06; margin: 80px 0 22px; max-width: 1050px; }
.keynote-card:not(.featured) h3 { font-size: clamp(26px, 2.4vw, 36px); margin-top: 70px; }
.keynote-card p { font-size: 14px; line-height: 1.72; margin: 0; max-width: 740px; opacity: .68; }
.keynote-card.featured p { font-size: 16px; max-width: 850px; }
.keynote-card ul { display: flex; flex-wrap: wrap; gap: 12px 30px; list-style: none; margin: auto 0 0; padding: 30px 0 0; }
.keynote-card li { font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.keynote-card li::before { content: "→"; margin-right: 8px; }

.format-section { background: var(--forest); color: var(--white); }
.format-grid { display: grid; gap: 10vw; grid-template-columns: .85fr 1.15fr; }
.format-intro { align-self: start; position: sticky; top: 50px; }
.format-intro h2 { margin: 38px 0 30px; }
.format-intro h2 em { color: var(--lime); }
.format-intro p { line-height: 1.72; max-width: 520px; opacity: .66; }
.format-intro .button { margin-top: 20px; }
.format-list { border-top: 1px solid rgba(255,255,255,.16); }
.format-list article { align-items: center; border-bottom: 1px solid rgba(255,255,255,.16); display: grid; gap: 20px; grid-template-columns: 40px .7fr 1fr; padding: 27px 5px; }
.format-list article > span { color: var(--lime); font-family: var(--mono); font-size: 9px; }
.format-list h3 { font-size: 24px; font-weight: 530; margin: 0; }
.format-list p { font-size: 13px; line-height: 1.5; margin: 0; opacity: .55; }

.panel-grid,
.builder-grid { align-items: center; display: grid; gap: 9vw; grid-template-columns: 1.1fr .9fr; }
.panel-photo,
.builder-image { height: 610px; overflow: hidden; }
.panel-photo img,
.builder-image img { height: 100%; object-fit: cover; width: 100%; }
.panel-copy h2,
.builder-copy h2 { margin: 35px 0; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.outcome-grid article { border-left: 1px solid var(--line); min-height: 310px; padding: 28px 30px; }
.outcome-grid article:last-child { border-right: 1px solid var(--line); }
.outcome-grid strong { color: var(--forest); font-family: var(--mono); font-size: 10px; }
.outcome-grid h3 { font-size: 30px; font-weight: 530; letter-spacing: -.04em; margin: 85px 0 18px; }
.outcome-grid p { font-size: 14px; line-height: 1.7; margin: 0; opacity: .65; }
.faq-section { background: var(--sand); }
.faq-grid { display: grid; gap: 10vw; grid-template-columns: .65fr 1.35fr; }
.faq-grid h2 { margin-top: 36px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-size: 18px; font-weight: 600; list-style: none; padding: 24px 42px 24px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--mono); position: absolute; right: 5px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { line-height: 1.7; margin: 0; max-width: 760px; opacity: .68; padding: 0 40px 26px 0; }

.light-subhero { color: var(--ink); }
.light-subhero .subhero-copy h1 em { color: var(--forest); }
.entrepreneur-hero { background: var(--sand); }
.portrait-wide > img { object-position: 50% 25%; }
.corner-label {
  background: var(--lime);
  bottom: 24px;
  display: grid;
  font-family: var(--mono);
  padding: 16px 18px;
  position: absolute;
  right: 0;
}
.corner-label strong { font-size: 18px; }
.corner-label span { font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.venture-section { padding-bottom: 0; }
.venture {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 5vw;
  grid-template-columns: 50px .65fr 1.2fr;
  padding: 65px 30px 90px;
}
.venture:last-child { border-bottom: 1px solid var(--line); }
.venture-index { font-family: var(--mono); font-size: 10px; opacity: .5; }
.venture-brand > span { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; opacity: .55; text-transform: uppercase; }
.venture-brand h3 { font-size: clamp(34px, 4vw, 60px); font-weight: 750; letter-spacing: -.07em; margin: 28px 0; }
.venture-brand h3 span { color: var(--blue); }
.venture-airgap .venture-brand h3 span { color: var(--forest); }
.venture-brand a { border-bottom: 1px solid var(--line); font-size: 12px; padding-bottom: 7px; }
.venture-copy > p:not(.large-copy) { font-size: 14px; line-height: 1.73; opacity: .66; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.tag-cloud span { border: 1px solid var(--line); border-radius: 30px; font-family: var(--mono); font-size: 8px; letter-spacing: .06em; padding: 7px 10px; text-transform: uppercase; }
.advisory-section { background: var(--forest); color: var(--white); }
.advisory-grid { display: grid; gap: 10vw; grid-template-columns: .85fr 1.15fr; }
.advisory-grid h2 { margin: 38px 0 25px; }
.advisory-grid h2 em { color: var(--lime); }
.advisory-grid > div:first-child > p { line-height: 1.72; max-width: 560px; opacity: .66; }
.advisory-grid .button { margin-top: 22px; }
.advisory-list { border-top: 1px solid rgba(255,255,255,.16); }
.advisory-list article { border-bottom: 1px solid rgba(255,255,255,.16); display: grid; gap: 20px; grid-template-columns: 42px .75fr 1fr; padding: 27px 5px; }
.advisory-list article > span { color: var(--lime); font-family: var(--mono); font-size: 9px; }
.advisory-list h3 { font-size: 21px; font-weight: 530; margin: 0; }
.advisory-list p { font-size: 13px; line-height: 1.52; margin: 0; opacity: .58; }
.builder-image img { object-position: 52% center; }

.representation-hero { background: #050608; }
.representation-media > img { object-position: 50% center; }
.dark-label { background: var(--white); color: var(--ink); }
.representation-role { background: #0a0d10; color: var(--white); }
.representation-role-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.representation-role-grid > div { border-left: 1px solid rgba(255,255,255,.14); display: grid; gap: 9px; padding: 26px 28px; }
.representation-role-grid > div:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.representation-role span { color: var(--lime); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.representation-role strong { font-size: 13px; line-height: 1.45; }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.policy-grid article { border-left: 1px solid var(--line); border-top: 1px solid var(--line); min-height: 360px; padding: 28px 34px; }
.policy-grid article:nth-child(even),
.policy-grid article:last-child { border-right: 1px solid var(--line); }
.policy-number { color: var(--forest); font-family: var(--mono); font-size: 10px; }
.policy-grid h3 { font-size: clamp(27px, 2.6vw, 40px); font-weight: 520; letter-spacing: -.045em; line-height: 1.1; margin: 75px 0 22px; }
.policy-grid p { font-size: 14px; line-height: 1.72; margin: 0; opacity: .66; }
.representation-quote { background: #050608; color: var(--white); }
.representation-quote-grid { align-items: center; display: grid; gap: 9vw; grid-template-columns: 1.05fr .95fr; }
.quote-photo { height: 600px; overflow: hidden; }
.quote-photo img { height: 100%; object-fit: cover; width: 100%; }
.representation-quote .position-statement {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(32px, 3.7vw, 58px);
  font-style: italic;
  letter-spacing: -.045em;
  line-height: 1.08;
  margin: 40px 0;
}
.representation-quote-grid > div:last-child > p { line-height: 1.7; opacity: .62; }
.dialogue-grid { display: grid; gap: 10vw; grid-template-columns: .8fr 1.2fr; }
.dialogue-grid h2 { margin-top: 35px; }
.dialogue-grid .button { margin-top: 25px; }

.contact-page { background: var(--forest); color: var(--white); min-height: 100vh; padding: 150px 0 110px; }
.contact-layout { display: grid; gap: 9vw; grid-template-columns: .75fr 1.25fr; }
.contact-intro { align-self: start; position: sticky; top: 50px; }
.contact-intro h1 { font-size: clamp(64px, 6.7vw, 105px); }
.contact-intro h1 em { color: var(--lime); }
.contact-intro > p { font-size: 17px; line-height: 1.7; max-width: 560px; opacity: .7; }
.contact-promise { border-top: 1px solid rgba(255,255,255,.16); margin-top: 55px; }
.contact-promise > div { border-bottom: 1px solid rgba(255,255,255,.16); display: grid; gap: 20px; grid-template-columns: 90px 1fr; padding: 16px 0; }
.contact-promise strong { color: var(--lime); font-size: 12px; }
.contact-promise span { font-size: 12px; line-height: 1.5; opacity: .55; }
.contact-form-wrap { background: var(--paper); color: var(--ink); padding: clamp(26px, 4vw, 56px); }
.form-status { margin-bottom: 35px; padding: 20px; }
.form-status.success { background: rgba(35,142,208,.12); border-left: 3px solid var(--blue); }
.form-status.error { background: rgba(180,60,60,.1); border-left: 3px solid #ac4040; }
.form-status p { margin-bottom: 0; }
.request-choice { border: 0; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; margin: 0 0 36px; padding: 0; }
.request-choice legend { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; margin-bottom: 13px; text-transform: uppercase; }
.request-choice label { cursor: pointer; position: relative; }
.request-choice input { opacity: 0; position: absolute; }
.request-choice label > span { border: 1px solid var(--line); display: grid; gap: 6px; min-height: 92px; padding: 17px; }
.request-choice input:checked + span { background: var(--lime); border-color: var(--lime); }
.request-choice strong { font-size: 13px; }
.request-choice small { font-size: 11px; line-height: 1.45; opacity: .6; }
.form-grid { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.contact-form label { display: grid; font-family: var(--mono); font-size: 9px; gap: 8px; letter-spacing: .06em; text-transform: uppercase; }
.contact-form label.full,
.form-grid .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: normal;
  min-height: 46px;
  outline: 0;
  padding: 10px 0;
  text-transform: none;
  width: 100%;
}
.contact-form textarea { border: 1px solid var(--line); line-height: 1.6; margin-top: 3px; min-height: 145px; padding: 14px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus { border-bottom-color: var(--forest); }
.contact-form textarea:focus { border-color: var(--forest); }
.form-divider { align-items: center; display: flex; font-family: var(--mono); font-size: 9px; gap: 15px; letter-spacing: .1em; margin: 45px 0 26px; text-transform: uppercase; }
.form-divider::after { background: var(--line); content: ""; flex: 1; height: 1px; }
.message-label { margin-top: 32px; }
.consent-check { align-items: start; display: flex !important; font-family: var(--sans) !important; font-size: 11px !important; letter-spacing: normal !important; line-height: 1.5; margin-top: 22px; text-transform: none !important; }
.consent-check input { flex: 0 0 auto; margin: 1px 7px 0 0; min-height: 0; width: auto; }
.consent-check a { border-bottom: 1px solid currentColor; }
.submit-button { border: 0; margin-top: 30px; min-width: 220px; }
.honeypot { height: 0; left: -9999px; overflow: hidden; position: absolute; width: 0; }

.legal-page { padding: 150px 0 110px; }
.legal-shell { max-width: 900px; }
.legal-page h1 { font-size: clamp(55px, 7vw, 100px); font-weight: 520; letter-spacing: -.07em; margin: 36px 0 70px; }
.legal-page h2 { font-size: 27px; font-weight: 560; letter-spacing: -.035em; margin: 48px 0 15px; }
.legal-page p { font-size: 15px; line-height: 1.78; opacity: .72; }
.legal-page a { border-bottom: 1px solid currentColor; }
.legal-date { font-family: var(--mono); font-size: 10px !important; margin-top: 60px; text-transform: uppercase; }

.footer-cta { background: var(--forest); color: var(--white); padding: 100px 0; }
.footer-cta-inner { align-items: end; display: grid; gap: 10vw; grid-template-columns: 1.1fr .9fr; }
.footer-cta h2 { font-size: clamp(58px, 7.4vw, 115px); margin-top: 32px; }
.footer-cta h2 em { color: var(--lime); }
.footer-cta-copy { padding-bottom: 10px; }
.footer-cta-copy p { line-height: 1.7; max-width: 500px; opacity: .66; }
.footer-cta-copy .button { margin-top: 20px; }
.site-footer { background: #050608; color: var(--white); padding: 32px 0; }
.footer-grid { align-items: center; display: grid; grid-template-columns: 1fr auto auto auto; gap: 40px; }
.brand-inverse .brand-mark { background: var(--lime); color: var(--ink); }
.footer-role, .footer-links { display: flex; font-family: var(--mono); font-size: 8px; gap: 18px; letter-spacing: .08em; opacity: .6; text-transform: uppercase; }
.footer-links a:hover { opacity: 1; }
.copyright { font-family: var(--mono); font-size: 8px; margin: 0; opacity: .45; text-transform: uppercase; }

.consent-banner {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  bottom: 20px;
  box-shadow: 0 14px 45px rgba(0,0,0,.15);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  left: 50%;
  max-width: 900px;
  padding: 20px 22px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 100;
}
.consent-banner strong { font-size: 13px; }
.consent-banner p { font-size: 11px; line-height: 1.5; margin: 5px 0 0; opacity: .66; }
.consent-actions { display: flex; gap: 8px; }

@media (max-width: 1100px) {
  :root { --shell: calc(100vw - 48px); }
  .site-header { padding-inline: 24px; }
  .site-nav { gap: 20px; }
  .hero-grid, .subhero-grid { gap: 40px; }
  .hero-photo { height: 600px; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .role-speaker { grid-row: span 2; }
  .profile-grid { gap: 60px; }
  .format-grid, .advisory-grid { gap: 60px; }
  .venture { gap: 35px; grid-template-columns: 40px .7fr 1fr; padding-inline: 10px; }
  .contact-layout { gap: 55px; grid-template-columns: .7fr 1.3fr; }
  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-role { justify-self: end; }
  .footer-links, .copyright { justify-self: start; }
  .copyright { justify-self: end; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 36px); }
  .site-header { padding: 18px; }
  body.menu-open .site-header { color: var(--ink); }
  body.menu-open .site-header .brand-mark {
    background: var(--ink);
    color: var(--lime);
  }
  .menu-toggle {
    align-items: center;
    display: flex;
    font-size: 11px;
    gap: 10px;
    justify-self: end;
    position: relative;
    z-index: 52;
  }
  .menu-toggle i, .menu-toggle i::after {
    background: currentColor;
    content: "";
    display: block;
    height: 1px;
    transition: transform .2s;
    width: 20px;
  }
  .menu-toggle i::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::after { transform: rotate(-90deg); }
  .site-nav {
    align-items: stretch;
    background: var(--paper);
    color: var(--ink);
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 0;
    justify-content: center;
    padding: 80px 30px;
    position: fixed;
    z-index: 51;
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { border-bottom: 1px solid var(--line); font-size: 24px; opacity: 1; padding: 18px 0; }
  .site-nav .nav-contact { margin-top: 24px; padding: 16px; }
  .hero { min-height: 0; padding-top: 125px; }
  .hero-grid, .subhero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero h1 { font-size: clamp(58px, 13vw, 88px); }
  .hero-media { padding: 20px 0 0; }
  .hero-photo { height: 680px; max-width: none; }
  .credibility-grid { grid-template-columns: 1fr 1fr; }
  .credibility-grid > div:nth-child(2) { border-right: 1px solid rgba(255,255,255,.15); }
  .section { padding: 85px 0; }
  .split-head { gap: 35px; grid-template-columns: 1fr; }
  .section-head { margin-bottom: 50px; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card { border-right: 1px solid var(--line); min-height: 470px; }
  .role-speaker { grid-row: auto; }
  .role-image { height: 300px; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-grid article { border-bottom: 1px solid rgba(255,255,255,.15); border-right: 1px solid rgba(255,255,255,.15); min-height: 240px; }
  .insight-grid h3 { margin-top: 55px; }
  .profile-grid { grid-template-columns: 1fr; }
  .profile-image { min-height: 600px; }
  .subhero { min-height: 0; padding-top: 125px; }
  .subhero-media { height: 640px; }
  .speaker-proof-grid, .representation-role-grid { grid-template-columns: 1fr; }
  .speaker-proof-grid > div, .representation-role-grid > div { border-bottom: 1px solid rgba(255,255,255,.14); border-right: 1px solid rgba(255,255,255,.14); }
  .keynote-grid, .policy-grid { grid-template-columns: 1fr; }
  .keynote-card.featured { grid-column: auto; }
  .keynote-card, .keynote-card:nth-child(even), .policy-grid article, .policy-grid article:nth-child(even) { border-right: 1px solid var(--line); }
  .format-grid, .advisory-grid { grid-template-columns: 1fr; }
  .format-intro, .contact-intro { position: static; }
  .panel-grid, .builder-grid, .representation-quote-grid { grid-template-columns: 1fr; }
  .panel-photo, .builder-image, .quote-photo { height: 540px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid article { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); min-height: 260px; }
  .outcome-grid h3 { margin-top: 55px; }
  .faq-grid { gap: 50px; grid-template-columns: 1fr; }
  .venture { grid-template-columns: 35px 1fr; }
  .venture-copy { grid-column: 2; }
  .advisory-list article { grid-template-columns: 35px .8fr 1fr; }
  .dialogue-grid { gap: 50px; grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-cta-inner { gap: 50px; grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid > * { justify-self: center !important; }
  .footer-role, .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 540px) {
  .brand-name { font-size: 14px; }
  .hero h1, .subhero h1, .contact-intro h1 { font-size: 15.2vw; }
  .hero-lead, .subhero-copy > p { font-size: 16px; }
  .button-row { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-photo, .subhero-media { height: 500px; }
  .hero-stamp { right: 0; }
  .credibility-grid { grid-template-columns: 1fr; }
  .credibility-grid > div { border-right: 1px solid rgba(255,255,255,.15); }
  .topic-marquee { padding-inline: 18px; }
  .profile-image, .panel-photo, .builder-image, .quote-photo { min-height: 0; height: 430px; }
  .profile-facts > div { align-items: start; flex-direction: column; gap: 5px; }
  .keynote-card, .keynote-card.featured { min-height: 440px; padding-inline: 23px; }
  .keynote-card h3, .keynote-card:not(.featured) h3 { margin-top: 55px; }
  .keynote-card ul { display: grid; }
  .format-list article, .advisory-list article { grid-template-columns: 30px 1fr; }
  .format-list p, .advisory-list p { grid-column: 2; }
  .venture { gap: 15px; grid-template-columns: 25px 1fr; padding: 50px 0 65px; }
  .policy-grid article { min-height: 330px; padding-inline: 23px; }
  .request-choice, .form-grid { grid-template-columns: 1fr; }
  .contact-form label.full, .form-grid .full { grid-column: auto; }
  .contact-form-wrap { margin-inline: -18px; }
  .contact-promise > div { grid-template-columns: 80px 1fr; }
  .footer-cta h2 { font-size: 16vw; }
  .consent-banner { align-items: stretch; grid-template-columns: 1fr; }
  .consent-actions { justify-content: flex-end; }
}

/* 2026 technical refresh: black, graphite and photo-derived stage blue */
.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

body {
  background:
    linear-gradient(rgba(9,11,13,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,11,13,.022) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.site-header {
  border-bottom: 1px solid transparent;
}

body[data-page="home"] .site-header {
  color: var(--white);
}

body[data-page="home"] .site-header .brand-mark,
body[data-page="home"] .site-header .nav-contact {
  background: var(--lime);
  color: var(--ink);
}

body[data-page="home"] .site-header .nav-contact:hover {
  background: var(--white);
}

.brand-mark,
.button,
.site-nav .nav-contact,
.corner-label,
.contact-form-wrap,
.consent-banner {
  border-radius: 2px;
}

.brand-mark {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}

.button {
  letter-spacing: .01em;
}

.button-dark {
  background: #050608;
}

.button-dark:hover {
  background: #20262c;
}

.button-signal {
  background: var(--lime);
  color: var(--ink);
}

.button-signal:hover {
  background: var(--white);
}

.overline > i {
  border-radius: 1px;
  box-shadow: 0 0 16px currentColor;
  transform: rotate(45deg);
}

.hero-home {
  background: #030405;
  color: var(--white);
  min-height: clamp(780px, 100svh, 1020px);
  padding: 0;
}

.hero-home::before {
  display: none;
}

.hero-slides,
.hero-slide,
.hero-overlay,
.hero-grid-lines {
  inset: 0;
  position: absolute;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-slide img {
  filter: saturate(.9) contrast(1.06);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-slide:nth-child(1) img { object-position: 52% center; }
.hero-slide:nth-child(2) img { object-position: 61% center; }
.hero-slide:nth-child(3) img { object-position: 58% center; }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2,3,4,.96) 0%, rgba(2,3,4,.82) 34%, rgba(2,3,4,.34) 66%, rgba(2,3,4,.22) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42), transparent 24%, transparent 70%, rgba(0,0,0,.75));
  z-index: 2;
}

.hero-grid-lines {
  background-image:
    linear-gradient(rgba(98,200,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98,200,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.85), transparent 68%);
  pointer-events: none;
  z-index: 3;
}

.hero-overlay-content {
  align-items: center;
  display: flex;
  min-height: clamp(780px, 100svh, 1020px);
  padding-bottom: 105px;
  padding-top: 135px;
  position: relative;
  z-index: 4;
}

.hero-home .hero-copy {
  max-width: 850px;
  padding: 0;
}

.hero-home h1 {
  color: var(--white);
  font-size: clamp(65px, 7.7vw, 126px);
  margin: 32px 0 30px;
  text-wrap: balance;
}

.split-head > *,
.outcome-grid article {
  min-width: 0;
}

.outcome-grid h3 {
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero-home h1 em {
  color: var(--lime);
  text-shadow: 0 0 45px rgba(98,200,255,.2);
}

.hero-home .hero-lead {
  color: rgba(255,255,255,.78);
  max-width: 720px;
}

.hero-home .overline {
  color: rgba(255,255,255,.72);
}

.hero-home .overline i {
  background: var(--lime);
  color: var(--lime);
}

.hero-slideshow-meta {
  align-items: center;
  bottom: 35px;
  display: grid;
  gap: 45px;
  grid-template-columns: minmax(0, 1fr) auto;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-slide-status {
  align-items: center;
  display: grid;
  gap: 15px;
  grid-template-columns: auto minmax(70px, 170px) minmax(0, 1fr);
  min-width: 0;
}

.hero-slide-status > span,
.hero-slide-status > strong,
.hero-controls button {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-slide-status > span {
  color: var(--lime);
}

.hero-slide-status > i {
  background: rgba(255,255,255,.22);
  height: 1px;
  overflow: hidden;
}

.hero-slide-status > i b {
  background: var(--lime);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

.hero-slideshow.is-running .hero-slide-status > i b {
  animation: hero-progress 7s linear forwards;
}

.hero-slide-status > strong {
  color: rgba(255,255,255,.66);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-controls {
  align-items: center;
  display: flex;
  gap: 8px;
}

.hero-controls > button {
  align-items: center;
  background: rgba(5,6,8,.58);
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  min-width: 38px;
}

.hero-controls > button:hover,
.hero-controls > button:focus-visible {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.hero-controls .hero-toggle {
  min-width: 72px;
  padding-inline: 11px;
}

.hero-dots {
  align-items: center;
  display: flex;
  gap: 6px;
  padding: 0 4px;
}

.hero-dots button {
  background: rgba(255,255,255,.42);
  border: 0;
  height: 3px;
  padding: 0;
  transition: background .2s, width .2s;
  width: 16px;
}

.hero-dots button.is-active {
  background: var(--lime);
  width: 34px;
}

@keyframes hero-progress {
  to { transform: scaleX(1); }
}

.credibility-bar,
.dark-section,
.format-section,
.advisory-section,
.contact-page,
.footer-cta {
  background-color: #050608;
  background-image:
    linear-gradient(rgba(98,200,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98,200,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
}

.speaker-hero,
.speaker-proof,
.representation-hero,
.representation-role,
.representation-quote,
.site-footer {
  background: #050608;
}

.role-card {
  border-color: rgba(9,11,13,.18);
  transition: box-shadow .3s ease, transform .3s ease;
}

.role-card:hover {
  box-shadow: 0 26px 70px rgba(0,0,0,.15);
  transform: translateY(-4px);
  z-index: 2;
}

.role-entrepreneur {
  background: #07090b;
}

.role-representation,
.quote-section,
.keynote-card.featured {
  background: var(--lime);
}

.section-head > .overline,
.profile-copy > .overline,
.builder-copy > .overline,
.panel-copy > .overline {
  color: var(--blue);
}

.dark-section h2 em,
.format-intro h2 em,
.advisory-grid h2 em,
.footer-cta h2 em,
.contact-intro h1 em {
  color: var(--lime);
}

.profile-image::after {
  border-color: rgba(98,200,255,.58);
  inset: 20px;
}

.venture-section {
  padding-bottom: 120px;
}

.venture {
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(0,0,0,.06);
  margin-bottom: 24px;
}

.venture:last-child {
  border-bottom: 1px solid var(--line);
}

.venture-creativebits {
  background:
    linear-gradient(rgba(98,200,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98,200,255,.045) 1px, transparent 1px),
    #080a0c;
  background-size: 40px 40px;
  color: var(--white);
}

.venture-creativebits .venture-copy > p:not(.large-copy) {
  opacity: .68;
}

.venture-creativebits .tag-cloud span,
.venture-creativebits .venture-brand a {
  border-color: rgba(255,255,255,.24);
}

.venture-index {
  color: var(--blue);
  opacity: 1;
}

.venture-brand {
  align-self: start;
}

.venture-logo-plate {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  height: 116px;
  justify-content: center;
  margin: 28px 0 24px;
  max-width: 360px;
  overflow: hidden;
  padding: 24px;
}

.creativebits-logo {
  background: #111418;
  border-color: rgba(255,255,255,.16);
}

.creativebits-logo img {
  image-rendering: auto;
  width: 202px;
}

.airgapnet-logo {
  background: var(--white);
}

.airgapnet-logo img {
  max-height: 58px;
  width: 100%;
}

.form-status.success {
  background: rgba(35,142,208,.12);
  border-left-color: var(--blue);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

@media (max-width: 820px) {
  .hero-home,
  .hero-overlay-content {
    min-height: max(760px, 100svh);
  }

  .hero-home {
    padding: 0;
  }

  .hero-overlay-content {
    align-items: center;
    padding-bottom: 145px;
    padding-top: 120px;
  }

  .hero-home h1 {
    font-size: clamp(58px, 13vw, 90px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2,3,4,.93), rgba(2,3,4,.52)),
      linear-gradient(180deg, rgba(0,0,0,.4), transparent 28%, rgba(0,0,0,.74));
  }

  .hero-slide:nth-child(1) img { object-position: 60% center; }
  .hero-slide:nth-child(2) img { object-position: 62% center; }
  .hero-slide:nth-child(3) img { object-position: 64% center; }

  .hero-slideshow-meta {
    align-items: end;
    bottom: 24px;
    gap: 16px;
    grid-template-columns: 1fr auto;
  }

  .hero-slide-status {
    gap: 10px;
    grid-template-columns: auto minmax(45px, 1fr);
  }

  .hero-slide-status > strong {
    grid-column: 1 / -1;
  }

  .hero-controls {
    align-self: end;
  }

  .hero-dots,
  .hero-controls > button:not(.hero-toggle) {
    display: none;
  }

  .hero-controls .hero-toggle {
    min-width: 68px;
  }

  .venture {
    margin-bottom: 18px;
  }
}

@media (max-width: 540px) {
  .hero-home,
  .hero-overlay-content {
    min-height: max(720px, 100svh);
  }

  .hero-overlay-content {
    padding-bottom: 145px;
    padding-top: 105px;
  }

  .hero-home h1 {
    font-size: 14.5vw;
    margin-block: 25px;
  }

  .hero-home .hero-lead {
    line-height: 1.52;
    margin-bottom: 28px;
  }

  .hero-home .button-row {
    gap: 18px;
  }

  .hero-slide-status > strong {
    max-width: 250px;
  }

  .venture-logo-plate {
    height: 98px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide { transform: none; transition: opacity .2s linear; }
  .hero-slide-status > i b { animation: none !important; }
  .button,
  .role-card,
  .role-image img { transition: none; }
}

/* Responsive media and mobile-first refinements */
.responsive-picture {
  display: block;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.responsive-picture > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.stage-media .responsive-picture > img {
  object-position: 55% center;
}

.portrait-wide .responsive-picture > img {
  object-position: 50% 25%;
}

.representation-media .responsive-picture > img {
  object-position: 50% center;
}

.entity-section {
  background: var(--sand);
}

.entity-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}

.entity-facts > div {
  border-left: 1px solid var(--line);
  min-height: 285px;
  padding: 28px 30px;
}

.entity-facts > div:last-child {
  border-right: 1px solid var(--line);
}

.entity-facts dt {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.entity-facts dd {
  font-size: clamp(18px, 1.55vw, 24px);
  letter-spacing: -.025em;
  line-height: 1.48;
  margin: 70px 0 0;
}

.subhero-copy h1,
.section h2,
.role-content h3,
.keynote-card h3,
.policy-grid h3 {
  hyphens: auto;
  overflow-wrap: break-word;
}

@media (hover: none) {
  .role-card:hover {
    box-shadow: none;
    transform: none;
  }

  .button:hover {
    transform: none;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    min-height: 44px;
    min-width: 64px;
    padding: 0;
  }

  .site-nav {
    min-height: 100dvh;
    overflow-y: auto;
    padding-bottom: max(40px, env(safe-area-inset-bottom));
    padding-top: max(90px, env(safe-area-inset-top));
  }

  .hero-home .hero-copy {
    max-width: 680px;
  }

  .hero-home .hero-lead {
    max-width: 620px;
  }

  .subhero {
    padding-bottom: 48px;
  }

  .subhero-copy {
    max-width: 720px;
  }

  .subhero-media {
    height: min(620px, 72svh);
  }

  .role-card {
    min-height: 0;
  }

  .role-content {
    min-height: 340px;
  }

  .entity-facts {
    grid-template-columns: 1fr;
  }

  .entity-facts > div,
  .entity-facts > div:last-child {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: 0;
  }

  .entity-facts dd {
    margin-top: 38px;
    max-width: 680px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 540px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  .site-header {
    padding: 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    height: 36px;
    width: 36px;
  }

  .site-nav {
    padding-inline: 22px;
  }

  .site-nav > a {
    font-size: 21px;
    padding-block: 15px;
  }

  .site-nav .nav-contact {
    min-height: 52px;
  }

  .hero-home,
  .hero-overlay-content {
    min-height: max(700px, 100svh);
  }

  .hero-overlay-content {
    padding-bottom: 142px;
    padding-top: 92px;
  }

  .hero-home .overline {
    font-size: 8px;
    line-height: 1.55;
    max-width: 310px;
  }

  .hero-home h1 {
    font-size: clamp(48px, 13.9vw, 68px);
    line-height: .91;
    margin-block: 23px;
  }

  .hero-home .hero-lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-home .button-row,
  .subhero .button-row {
    align-items: stretch;
    width: 100%;
  }

  .hero-home .button-row .button,
  .subhero .button-row .button {
    width: 100%;
  }

  .hero-home .button-row .text-link,
  .subhero .button-row .text-link {
    align-self: flex-start;
  }

  .hero-slideshow-meta {
    align-items: end;
  }

  .hero-slide-status > strong {
    line-height: 1.45;
    max-width: 240px;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section h2,
  .footer-cta h2 {
    font-size: clamp(39px, 11.7vw, 58px);
    line-height: 1;
  }

  .section h2 br,
  .subhero-copy h1 br {
    display: none;
  }

  .subhero {
    padding-bottom: 40px;
    padding-top: 104px;
  }

  .subhero-copy h1 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: .94;
    margin: 25px 0 27px;
  }

  .subhero-copy > p {
    font-size: 15px;
    line-height: 1.58;
    margin-bottom: 30px;
  }

  .subhero-media {
    height: 440px;
  }

  .media-caption {
    bottom: 16px;
    flex-wrap: wrap;
    gap: 8px 16px;
    left: 16px;
    right: 16px;
  }

  .credibility-grid > div,
  .speaker-proof-grid > div,
  .representation-role-grid > div {
    padding: 20px 18px;
  }

  .role-image {
    height: 250px;
  }

  .role-content {
    min-height: 330px;
    padding: 26px 22px 22px;
  }

  .role-content h3 {
    margin: 36px 0 17px;
  }

  .topic-marquee {
    margin-bottom: 48px;
    padding-block: 22px;
  }

  .insight-grid article {
    min-height: 220px;
    padding: 22px;
  }

  .profile-image,
  .panel-photo,
  .builder-image,
  .quote-photo {
    height: 410px;
  }

  .profile-copy h2,
  .panel-copy h2,
  .builder-copy h2 {
    margin-block: 27px;
  }

  .entity-facts > div {
    padding: 24px 22px 28px;
  }

  .entity-facts dd {
    font-size: 17px;
    line-height: 1.52;
    margin-top: 30px;
  }

  .keynote-card,
  .keynote-card.featured,
  .policy-grid article {
    min-height: 0;
    padding: 24px 21px 32px;
  }

  .keynote-card h3,
  .keynote-card:not(.featured) h3,
  .policy-grid h3 {
    margin-top: 52px;
  }

  .keynote-card ul {
    margin-top: 36px;
  }

  .format-list article,
  .advisory-list article {
    padding-block: 23px;
  }

  .venture-section {
    padding-bottom: 72px;
  }

  .venture {
    padding: 42px 14px 52px;
  }

  .venture-copy {
    padding-right: 4px;
  }

  .venture-logo-plate {
    padding: 20px 14px;
  }

  .creativebits-logo img {
    width: 180px;
  }

  .tag-cloud {
    gap: 7px;
  }

  .contact-page {
    padding: 108px 0 70px;
  }

  .contact-intro h1 {
    font-size: clamp(50px, 14.8vw, 68px);
    line-height: .92;
    margin-block: 28px;
  }

  .contact-form-wrap {
    margin-inline: -14px;
    padding: 25px 18px;
  }

  .request-choice label > span {
    min-height: 84px;
  }

  .submit-button {
    width: 100%;
  }

  .footer-cta {
    padding: 72px 0;
  }

  .footer-cta-inner {
    gap: 38px;
  }

  .footer-cta-copy .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: max(30px, env(safe-area-inset-bottom));
  }

  .consent-banner {
    bottom: max(10px, env(safe-area-inset-bottom));
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
    padding: 17px;
    width: calc(100% - 20px);
  }

  .consent-actions .button {
    flex: 1;
    justify-content: center;
    min-height: 44px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    font-size: 13px;
  }

  .hero-home h1 {
    font-size: 13.2vw;
  }

  .hero-home .hero-lead {
    font-size: 14px;
  }

  .hero-slide-status > strong {
    max-width: 205px;
  }

  .subhero-copy h1,
  .contact-intro h1 {
    font-size: 12.7vw;
  }

  .subhero-media {
    height: 390px;
  }

  .section h2,
  .footer-cta h2 {
    font-size: 11.2vw;
  }
}

/* 2026 image edition: readable microcopy, unique imagery and mobile-first flow */
.overline,
.role-number,
.role-content > span,
.hero-stamp span,
.hero-axis,
.media-caption,
.credibility-grid span,
.speaker-proof-grid span,
.profile-facts span,
.quote-by,
.topic-index,
.keynote-card li,
.format-list article > span,
.outcome-grid strong,
.venture-index,
.venture-brand > span,
.advisory-list article > span,
.representation-role span,
.policy-number,
.request-choice legend,
.contact-form label,
.form-divider,
.legal-date,
.entity-facts dt,
.footer-role,
.footer-links,
.copyright {
  font-size: 12px;
  line-height: 1.45;
}

.insight-grid article > span,
.format-list article > span,
.advisory-list article > span,
.policy-number,
.topic-index,
.role-number {
  font-size: 13px;
  font-weight: 750;
}

.hero-slide-status > span,
.hero-slide-status > strong,
.hero-controls button,
.topic-tags b,
.tag-cloud span,
.corner-label span {
  font-size: 11px;
  line-height: 1.45;
}

.button,
.text-link {
  font-size: 14px;
}

.role-content p,
.insight-grid p,
.keynote-card p,
.format-list p,
.outcome-grid p,
.venture-copy > p:not(.large-copy),
.advisory-list p,
.policy-grid p,
.representation-quote-grid > div:last-child > p,
.footer-cta-copy p {
  font-size: 15px;
  line-height: 1.7;
}

.request-choice small,
.consent-check,
.consent-banner p,
.contact-promise span {
  font-size: 13px !important;
  line-height: 1.55;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 16px;
}

.legal-date {
  font-size: 12px !important;
}

.brand-mark,
.menu-toggle {
  font-size: 12px;
}

.hero-slide:nth-child(4) img { object-position: 58% center; }
.hero-slide:nth-child(5) img { object-position: 55% center; }
.hero-slide:nth-child(6) img { object-position: 70% center; }
.hero-slide:nth-child(7) img { object-position: 56% center; }

.gallery-section {
  background:
    linear-gradient(rgba(98,200,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98,200,255,.04) 1px, transparent 1px),
    #050608;
  background-size: 48px 48px;
  color: var(--white);
}

.gallery-section .section-head > .overline {
  color: var(--lime);
}

.gallery-section h2 em {
  color: var(--lime);
}

.gallery-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-item {
  grid-column: span 4;
  height: 430px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-item:nth-child(1) { grid-column: span 8; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 5; }
.gallery-item:nth-child(5) { grid-column: span 3; }

.gallery-item::after {
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,.78));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gallery-item img {
  filter: saturate(.88) contrast(1.03);
  height: 100%;
  object-fit: cover;
  transition: filter .35s ease, transform .55s ease;
  width: 100%;
}

.gallery-item:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.018);
}

.gallery-item-portrait img,
.gallery-item-thoughtful img {
  object-position: 50% 28%;
}

.gallery-item figcaption {
  bottom: 20px;
  color: rgba(255,255,255,.9);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 650;
  left: 20px;
  letter-spacing: .045em;
  line-height: 1.45;
  max-width: calc(100% - 40px);
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.hero h1,
.subhero h1,
.contact-intro h1,
.section h2,
.footer-cta h2,
.role-content h3,
.keynote-card h3,
.policy-grid h3 {
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-lead,
.subhero-copy > p,
.role-content p,
.insight-grid p,
.profile-copy p,
.keynote-card p,
.format-list p,
.outcome-grid p,
.venture-copy p,
.advisory-list p,
.policy-grid p,
.entity-facts dd {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

@media (max-width: 820px) {
  .hero-slide:nth-child(4) img { object-position: 62% center; }
  .hero-slide:nth-child(5) img { object-position: 58% center; }
  .hero-slide:nth-child(6) img { object-position: 74% center; }
  .hero-slide:nth-child(7) img { object-position: 62% center; }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
    height: 360px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 2;
    height: 430px;
  }
}

@media (max-width: 540px) {
  .section h2 br,
  .subhero-copy h1 br {
    display: initial;
  }

  .hero-home .overline {
    font-size: 12px;
    letter-spacing: .075em;
    line-height: 1.5;
    max-width: 340px;
  }

  .hero-home .hero-lead {
    font-size: 15px;
  }

  .hero-slide-status > span,
  .hero-slide-status > strong,
  .hero-controls button {
    font-size: 11px;
  }

  .hero-slide-status > strong {
    max-width: min(270px, calc(100vw - 122px));
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: auto;
    height: 310px;
  }

  .gallery-item-portrait,
  .gallery-item-thoughtful {
    height: 390px !important;
  }

  .gallery-item figcaption {
    bottom: 16px;
    font-size: 12px;
    left: 16px;
    max-width: calc(100% - 32px);
  }

  .role-content p,
  .insight-grid p,
  .keynote-card p,
  .format-list p,
  .outcome-grid p,
  .venture-copy > p:not(.large-copy),
  .advisory-list p,
  .policy-grid p {
    font-size: 16px;
  }

  .footer-role,
  .footer-links,
  .copyright {
    font-size: 12px;
  }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  .gallery-item img {
    transition: none;
  }

  .gallery-item:hover img {
    transform: none;
  }
}

@media (max-width: 380px) {
  .section h2 {
    hyphens: auto;
    overflow-wrap: break-word;
  }
}
