:root {
  --c-blue: #487c91;
  --c-yellow: #fff064;
  --c-orange: #c28043;
  --c-neutral: #797262;
  --c-ink: #12232c;
  --c-paper: #f8f4e7;
  --radius: 12px;
  --max: 1160px;
  --header-offset: 86px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: #230105;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

/* Extra top offset when jumping to anchor targets under sticky header. */
[id] {
  scroll-margin-top: var(--header-offset);
}

body {
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--c-yellow);
  background:
    radial-gradient(circle at 18% 14%, rgba(138, 64, 234, 0.4) 0%, rgba(138, 64, 234, 0) 29%),
    radial-gradient(circle at 82% 18%, rgba(228, 58, 102, 0.7) 0%, rgba(228, 58, 102, 0.26) 16%, rgba(228, 58, 102, 0) 35%),
    radial-gradient(circle at 74% 22%, rgba(226, 82, 154, 0.34) 0%, rgba(226, 82, 154, 0) 19%),
    radial-gradient(circle at 22% 82%, rgba(210, 48, 108, 0.2) 0%, rgba(210, 48, 108, 0) 25%),
    radial-gradient(circle at 58% 58%, rgba(128, 6, 39, 0.16) 0%, rgba(128, 6, 39, 0) 31%),
    linear-gradient(138deg, #5f35b7 0%, #9a35b2 15%, #d34b7f 31%, #cc1540 49%, #8f0920 69%, #4b030c 85%, #1d0105 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.16) 10%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.1) 8%, rgba(255, 255, 255, 0) 24%),
    radial-gradient(circle at 60% 76%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.08) 12%, rgba(255, 255, 255, 0) 32%);
  mix-blend-mode: screen;
}

.grain {
  display: none;
}

.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Hide animated/background FX near viewport edges (overscroll bounce zone). */
.grain,
.bg-canvas {
  --fx-edge-hide: 120px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 var(--fx-edge-hide),
    #000 calc(100% - var(--fx-edge-hide)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 var(--fx-edge-hide),
    #000 calc(100% - var(--fx-edge-hide)),
    transparent 100%
  );
}

.site-header {
  position: relative;
  z-index: 6;
}

.section,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(255, 240, 100, 0.35);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  backdrop-filter: blur(8px);
  background: rgba(15, 31, 39, 0.34);
  position: sticky;
  top: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(3.64rem, 5.46vw, 5.2rem);
  transition: height 180ms ease;
}

.site-header.is-scrolled .brand img {
  height: clamp(2.45rem, 3.7vw, 3.5rem);
}

.header-eyebrow {
  margin: 0;
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-yellow);
  font-size: 0.78rem;
  line-height: 1.3;
  opacity: 0.92;
}

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.site-nav a {
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-yellow);
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.floating-contact-cta {
  display: none;
}

@media (min-width: 761px) {
  .floating-contact-cta {
    display: none !important;
  }
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5.5rem 0 1.2rem;
}

/* Alternate section panels:
   1 hero (no panel), 2 panel, 3 no panel, 4 panel, ... */
main > .section:nth-of-type(even) {
  position: relative;
  padding: 5.5rem 0 1.4rem;
}

main > .section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 100%;
  transform: translateX(-50%);
  background: rgba(12, 25, 33, 0.35);
  border-top: 1px solid rgba(248, 244, 231, 0.2);
  border-bottom: 1px solid rgba(248, 244, 231, 0.2);
  backdrop-filter: blur(3px);
  box-shadow: 0 0 0 100vmax rgba(12, 25, 33, 0.35);
  clip-path: inset(0 -100vmax);
  pointer-events: none;
}

.hero {
  padding-top: 5rem;
  text-align: center;
}

.hero-video {
  position: relative;
  margin: 0 0 1.5rem;
}

.hero-video video {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(248, 244, 231, 0.18);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  background: rgba(7, 16, 24, 0.9);
}

.hero-video-toggle {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(248, 244, 231, 0.45);
  border-radius: 50%;
  background: rgba(7, 16, 24, 0.72);
  color: var(--c-yellow);
  padding: 0;
  font: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-video-toggle:hover {
  background: rgba(18, 35, 44, 0.9);
}

.hero-video-toggle-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-video-toggle[aria-pressed="false"] .hero-video-toggle-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8f4e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/><line x1='23' y1='9' x2='17' y2='15'/><line x1='17' y1='9' x2='23' y2='15'/></svg>");
}

.hero-video-toggle[aria-pressed="true"] .hero-video-toggle-icon {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8f4e7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/><path d='M15.54 8.46a5 5 0 0 1 0 7.07'/><path d='M19.07 4.93a10 10 0 0 1 0 14.14'/></svg>");
}

.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;
}

.hero-copy-block {
  max-width: 100%;
  margin: 0 auto;
}

.eyebrow {
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--c-yellow);
  margin: 0 0 1rem;
  line-height: 1.05;
}

h1 {
  font-family: "Sofia Sans Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.9rem, 4.4vw, 3.9rem);
  max-width: 19ch;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  font-family: "Sofia Sans Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  max-width: none;
  width: 100%;
}

h3 {
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p,
li,
label,
blockquote {
  color: var(--c-yellow);
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
}

.hero-copy {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.hero-kicker {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--c-yellow);
  color: var(--c-ink);
  box-shadow: 0 8px 22px rgba(255, 240, 100, 0.28);
}

.btn-secondary {
  background: rgba(255, 240, 100, 0.15);
  border-color: rgba(255, 240, 100, 0.45);
  color: var(--c-yellow);
}

.btn-ghost {
  border-color: rgba(248, 244, 231, 0.45);
  color: var(--c-yellow);
  background: rgba(255, 255, 255, 0.04);
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card,
.offer,
.stats article,
.testimonials blockquote {
  background: rgba(14, 30, 38, 0.45);
  border: 1px solid rgba(248, 244, 231, 0.2);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: left;
}

.offer {
  display: flex;
  flex-direction: column;
}

.offer-a {
  border-color: rgba(255, 240, 100, 0.42);
}

.offer-b {
  border-color: rgba(194, 128, 67, 0.6);
}

.offer ul {
  margin: 0 0 1.2rem;
  padding-left: 1.2rem;
}

.offer .btn {
  margin-top: auto;
}

.approach-note {
  position: relative;
  margin-top: 1.15rem;
  margin-bottom: 0.2rem;
  width: 100%;
  max-width: none;
  padding: 1.15rem 1.2rem;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  color: #fff064;
  text-align: center;
  opacity: 1;
  font-size: clamp(1.12rem, 1.95vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.approach-note p {
  margin: 0;
}

.approach-note .approach-note-lead {
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.05;
  width: 100%;
}

.approach-note .approach-note-meta {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: #fff064;
}

.approach-layer {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none;
  clip-path: none;
}

.featured-formats > .eyebrow,
.featured-formats > h2 {
  text-align: center;
}

.featured-formats > h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.featured-formats-grid {
  margin-top: 1.4rem;
}

.featured-format {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  background: rgba(14, 30, 38, 0.45);
  border: 1px solid rgba(248, 244, 231, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.featured-format:hover,
.featured-format:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 240, 100, 0.44);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  outline: none;
}

.featured-format-link {
  color: inherit;
  text-decoration: none;
}

.featured-format-media {
  margin: 0;
}

.featured-format-media img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.featured-format-media-muted img {
  filter: saturate(0.72) contrast(0.95) brightness(1.06);
}

.featured-format-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
}

.featured-format-copy p,
.featured-format-copy h3 {
  margin: 0;
}

.featured-format-copy .btn {
  margin-top: auto;
  align-self: flex-start;
}

.detail-page {
  min-height: 100vh;
}

.detail-main {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.detail-shell {
  display: grid;
  gap: 1.4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--c-yellow);
  text-decoration: none;
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
}

.back-link::before {
  content: "←";
  font-size: 1rem;
}

.back-link:hover {
  opacity: 1;
}

.detail-panel {
  padding: 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(248, 244, 231, 0.2);
  background: rgba(10, 23, 34, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.detail-kicker {
  margin: 0 0 0.7rem;
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-yellow);
}

.detail-panel h1 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  color: var(--c-yellow);
  margin-bottom: 0.9rem;
  max-width: 16ch;
}

.conference-experience-page .detail-panel strong {
  color: var(--c-yellow);
}

.detail-lead {
  color: var(--c-yellow);
  font-size: clamp(1.08rem, 1.55vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.detail-media {
  margin: 0 0 1.15rem;
}

.detail-media img {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 16px;
}

.detail-media-muted img {
  filter: saturate(0.72) contrast(0.95) brightness(1.06);
}

.detail-media-full img {
  max-height: none;
  object-fit: contain;
}

.detail-body {
  display: grid;
  gap: 0.9rem;
  color: var(--c-yellow);
}

.detail-body p {
  margin: 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.detail-aside {
  display: grid;
  gap: 1rem;
}

.detail-card {
  padding: 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(248, 244, 231, 0.18);
  background: rgba(248, 244, 231, 0.05);
}

.detail-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.detail-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.detail-inline-logo {
  display: block;
  max-width: 160px;
  height: auto;
  background: rgba(248, 244, 231, 0.96);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
}

.detail-link-emphasis {
  color: var(--c-yellow);
  text-decoration: underline;
  text-underline-offset: 0.14em;
  text-decoration-thickness: 0.08em;
}

.detail-list-plain {
  list-style: none;
}

.conference-results {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.conference-results-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(248, 244, 231, 0.16);
  background:
    linear-gradient(180deg, rgba(18, 35, 44, 0.9) 0%, rgba(12, 24, 33, 0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.conference-results-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: rgba(248, 244, 231, 0.88);
}

.conference-results-table th,
.conference-results-table td {
  padding: 1rem 1.15rem;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid rgba(248, 244, 231, 0.12);
  border-bottom: 1px solid rgba(248, 244, 231, 0.1);
}

.conference-results-table thead th {
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-yellow);
  background: rgba(248, 244, 231, 0.03);
}

.conference-results-table tbody th {
  width: 170px;
  color: var(--c-yellow);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
}

.conference-results-label-sm {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem) !important;
  line-height: 1.1 !important;
}

.conference-results-table tbody td {
  font-size: 0.95rem;
  line-height: 1.45;
}

.conference-results-table tr > *:last-child {
  border-right: 0;
}

.conference-results-table tbody tr:last-child > * {
  border-bottom: 0;
}

.conference-results-table strong {
  font-weight: 900;
  color: #ffffff;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.tension-subcopy {
  margin: -0.2rem auto 1.1rem;
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  color: rgba(248, 244, 231, 0.82);
}

.collision-section {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.collision-media {
  margin: 0;
}

.collision-media img {
  display: block;
  width: min(100%, 960px);
  margin: 0 auto;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(248, 244, 231, 0.2);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.collision-copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.collision-copy h2 {
  margin-bottom: 0.7rem;
}

.collision-emphasis {
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
}

.transition-band {
  padding-top: 2.2rem;
  padding-bottom: 2.2rem;
}

.transition-band p {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--c-yellow);
  border-top: 1px solid rgba(255, 240, 100, 0.45);
  border-bottom: 1px solid rgba(255, 240, 100, 0.45);
}

.tension-illustration {
  margin: 1.5rem auto;
  display: flex;
  justify-content: center;
}

.approach-note img {
  display: block;
  width: min(100%, 840px);
  height: auto;
  border-radius: 18px;
}

.tension-illustration img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border-radius: 18px;
}

.tension h2,
#formats-signature h2,
.proofs h2,
.contact h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}


.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0 1.4rem;
}

.logos img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(248, 244, 231, 0.2);
  background: rgba(248, 244, 231, 0.95);
  padding: 0.5rem;
}

.stats strong {
  display: block;
  color: var(--c-yellow);
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.stats span {
  opacity: 0.95;
}

.testimonials cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  color: var(--c-yellow);
  font-family: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.founder {
  display: grid;
  gap: 1rem;
}

.founder-copy {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(248, 244, 231, 0.2);
  background: rgba(14, 30, 38, 0.45);
  overflow: auto;
}

.founder-inline-media {
  float: right;
  margin: 0 0 1rem 1rem;
  width: min(42%, 240px);
}

.founder-inline-media img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  object-position: 80% 28%;
  border-radius: var(--radius);
  border: 1px solid rgba(248, 244, 231, 0.2);
}

.founder-copy h2 {
  text-align: left;
}

.founder-copy a {
  color: var(--c-yellow);
}

.founder-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1rem;
}

.founder-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 240, 100, 0.42);
  background: rgba(255, 240, 100, 0.08);
}

.founder-links svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(248, 244, 231, 0.22);
  background: rgba(8, 20, 28, 0.55);
}

.form-status.is-success {
  color: var(--c-yellow);
  border-color: rgba(255, 240, 100, 0.45);
}

.form-status.is-error {
  color: #ffd9bf;
  border-color: rgba(194, 128, 67, 0.55);
}

.form-note {
  margin: 0.6rem 0 0;
  color: rgba(248, 244, 231, 0.8);
  font-size: 0.95rem;
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.form-modal[hidden],
.form-status[hidden] {
  display: none !important;
}

.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
}

.form-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 240, 100, 0.4);
  background: rgba(10, 23, 34, 0.98);
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.form-modal-brand {
  margin: 0 0 1rem;
  font-family: "Sofia Sans Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-yellow);
}

.form-modal-panel p {
  margin: 0 0 1rem;
  color: var(--c-yellow);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
}

body.has-form-modal {
  overflow: hidden;
}

.contact-form {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  text-align: left;
}

label {
  display: grid;
  gap: 0.35rem;
}

.label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18rem;
}

.required-mark {
  display: inline;
  color: var(--c-yellow);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(248, 244, 231, 0.38);
  border-radius: 12px;
  background: rgba(8, 20, 28, 0.45);
  color: var(--c-yellow);
  padding: 0.72rem 0.82rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 240, 100, 0.62);
  outline-offset: 1px;
}

.full {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 0.4rem;
}

.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 2.2rem auto 2rem;
  border-top: 1px solid rgba(248, 244, 231, 0.22);
  color: rgba(248, 244, 231, 0.78);
  padding-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1000px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .collision-media img {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 0;
    flex-wrap: wrap;
    top: 0;
  }
  .site-header.is-scrolled {
    padding: 0.45rem 0.9rem;
    gap: 0.55rem;
  }
  .founder-inline-media {
    float: none;
    width: min(100%, 220px);
    margin: 0 auto 1rem;
  }
  .hero {
    padding-top: 2.2rem;
  }
  .brand-lockup {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
  .site-header.is-scrolled .brand-lockup {
    gap: 0.12rem;
  }
  .site-header.is-scrolled .brand img {
    height: 2rem;
  }
  .header-eyebrow {
    font-size: 0.68rem;
    line-height: 1.2;
  }
  .site-header.is-scrolled .header-eyebrow {
    font-size: 0.5rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
    opacity: 0.82;
  }
  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }
  .site-header.is-scrolled > .btn {
    display: none;
  }
  .floating-contact-cta {
    position: fixed;
    right: 0.9rem;
    bottom: 0.9rem;
    z-index: 20;
    display: inline-flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 160ms ease, transform 160ms ease;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 10px 28px rgba(255, 240, 100, 0.24);
  }
  .site-header.is-scrolled + .floating-contact-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .grid-3,
  .grid-2,
  .contact-form {
    grid-template-columns: 1fr;
  }
  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .collision-section {
    gap: 1rem;
  }

}

@media (max-width: 900px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .conference-results-table {
    min-width: 680px;
  }
}
