@font-face {
  font-family: "PP Mori";
  src: url("https://framerusercontent.com/assets/Yle421vptkrI34g70VTVJvFTo.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Mori";
  src: url("https://framerusercontent.com/assets/82rNIwX4JZZWNDRYKjwhp5fA7c.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "ABC Diatype Mono";
  src: url("https://framerusercontent.com/assets/4nqyxQ3V7eDcwbBG7UprfFgbYLI.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #0c0c0e;
  --bg-deep: #070709;
  --panel: #101013;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f6f6f5;
  --muted: rgba(255, 255, 255, 0.64);
  --dim: rgba(255, 255, 255, 0.48);
  --max: 1512px;
  --header-h: 80px;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "PP Mori", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin: 0; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2147483647;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  translate: 0 -180%;
}

.skip-link:focus { translate: 0; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.frame {
  width: min(100%, var(--max));
  margin-inline: auto;
  box-shadow: inset 1px 0 0 var(--line), inset -1px 0 0 var(--line);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: #0c0c0e;
  isolation: isolate;
}

.site-header.is-scrolled { background: #08080a; }

.header-shell {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 20px 40px;
}

.brand {
  width: 203px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
  color: #fff;
}

.brand-word {
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-mark {
  width: 21px;
  height: 18px;
  fill: currentColor;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  transition: color 180ms ease;
}

.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: translate 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.pill:hover { translate: 0 -1px; }
.pill:focus-visible, .menu-toggle:focus-visible, .claim-submit:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.pill-light { background: #fff; color: #0c0c0e; }
.pill-light:hover { background: #e9e9e7; }
.pill-muted { background: rgba(255, 255, 255, 0.08); color: #fff; }
.pill-muted:hover { background: rgba(255, 255, 255, 0.14); }
.pill-arrow { padding: 8px 8px 8px 20px; }

.pill-arrow i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0c0c0e;
  color: #fff;
  font-style: normal;
  font-size: 18px;
  transition: translate 180ms ease;
}

.pill-arrow:hover i { translate: 2px 0; }
.pill-arrow.subtle-arrow i { background: transparent; }

.menu-toggle {
  width: 48px;
  height: 40px;
  display: none;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 18px;
  width: 12px;
  height: 1px;
  background: #fff;
  transition: rotate 200ms ease, top 200ms ease, opacity 200ms ease;
}

.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 20px; width: 7px; left: 23px; }
.menu-toggle span:nth-child(3) { top: 26px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; rotate: 45deg; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; rotate: -45deg; }

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  display: none;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding: clamp(20px, 3vw, 36px) clamp(24px, 4vw, 56px) max(32px, env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #08080b;
  background-image: radial-gradient(circle at 85% 0%, rgba(115, 74, 190, 0.12), transparent 35%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  isolation: isolate;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 260ms;
}

.mobile-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu nav,
.mobile-menu-actions {
  width: min(100%, 760px);
  margin-inline: auto;
  opacity: 0;
  translate: 0 -10px;
  transition: opacity 220ms ease, translate 260ms cubic-bezier(.2, .75, .25, 1);
}

.mobile-menu.is-open nav,
.mobile-menu.is-open .mobile-menu-actions {
  opacity: 1;
  translate: 0;
}

.mobile-menu.is-open .mobile-menu-actions { transition-delay: 45ms; }
.mobile-menu nav { display: grid; gap: 8px; }

.mobile-menu nav a {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #111115;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 500;
  line-height: 1.15;
  transition: background-color 180ms ease, border-color 180ms ease, translate 180ms ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: #19191f;
  border-color: rgba(255, 255, 255, 0.18);
  translate: 3px 0;
}

.mobile-menu nav a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.mobile-menu-actions {
  margin-top: auto;
  padding-top: clamp(24px, 5vh, 48px);
  display: flex;
  gap: 12px;
}
.mobile-menu-actions .pill { flex: 1; }

/* Hero */
.hero {
  min-height: 1128px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 54% 68%, rgba(106, 57, 202, 0.34), transparent 29%),
    radial-gradient(circle at 47% 66%, rgba(87, 173, 173, 0.26), transparent 31%),
    var(--bg);
}

.hero-ambient {
  position: absolute;
  z-index: 0;
  inset: 42% -24% auto;
  width: 148%;
  height: 760px;
  object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.48;
  filter: saturate(0.88) brightness(0.76) contrast(1.08);
}

.hero-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 1%, transparent 30%, transparent 68%, var(--bg) 98%);
  pointer-events: none;
}

.hero-shell {
  min-height: 1128px;
  position: relative;
  z-index: 2;
  padding: 144px 48px 0;
}

.seeker-wordmark { width: 100%; height: auto; }

.hero-bottom {
  position: relative;
  z-index: 3;
  margin-top: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.hero-buttons { display: flex; gap: 16px; }
.hero-tagline { max-width: 290px; font-size: 28px; font-weight: 500; line-height: 1.42; letter-spacing: -0.02em; }

.hero-device {
  position: absolute;
  z-index: 1;
  width: 1757px;
  max-width: none;
  left: 50%;
  bottom: -132px;
  translate: -50% 0;
  pointer-events: none;
}

/* Claim control */
.claim-section {
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 25% 0%, rgba(111, 73, 214, .08), transparent 34%),
    var(--bg);
}
.claim-frame { min-height: 256px; display: flex; align-items: stretch; }

.claim-copy {
  flex: 0 0 33.333%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.claim-kicker, .claim-field-head > label {
  color: var(--dim);
  font-family: "ABC Diatype Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.claim-copy h2 { font-size: 48px; line-height: 1; letter-spacing: -0.045em; font-weight: 500; }
.claim-form { min-width: 0; flex: 1 1 auto; padding: 40px 48px; display: flex; align-items: center; }
.claim-field-wrap { width: 100%; min-width: 0; display: grid; gap: 16px; }

.claim-field-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.claim-field-head > label { flex: none; padding-top: 4px; }

.claim-context {
  position: relative;
  width: min(100%, 440px);
  padding-left: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.018em;
}

.claim-context::before {
  content: "â†³";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-family: "ABC Diatype Mono", monospace;
  font-size: 14px;
  letter-spacing: 0;
}

.claim-control {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.claim-input-shell {
  position: relative;
  overflow: hidden;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.claim-input-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  translate: -110% 0;
  background: linear-gradient(100deg, transparent 32%, rgba(183,168,255,.13) 48%, rgba(117,240,208,.09) 56%, transparent 72%);
}

.claim-input-shell:focus-within { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.065); }
.claim-control.is-verifying .claim-input-shell { border-color: rgba(170, 153, 255, .58); background: rgba(139, 112, 255, .06); box-shadow: 0 0 30px rgba(124,95,255,.1); }
.claim-control.is-valid .claim-input-shell { border-color: rgba(117, 240, 208, .5); box-shadow: 0 0 28px rgba(117,240,208,.08); }
.claim-control.is-invalid .claim-input-shell { border-color: rgba(255, 132, 115, .42); }
.claim-control.is-connecting .claim-input-shell { border-color: rgba(117, 240, 208, .34); background: rgba(117,240,208,.035); }

.claim-status-dot { width: 18px; height: 18px; flex: none; display: grid; place-items: center; border-radius: 50%; background: transparent; }
.claim-status-dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--dim); }
.claim-control.is-verifying .claim-status-dot { border: 2px solid rgba(255,255,255,.18); border-top-color: #b9aaff; border-right-color: #b9aaff; animation: claim-spin .72s linear infinite; }
.claim-control.is-verifying .claim-status-dot::after { display: none; }
.claim-control.is-verifying .claim-input-shell::after { animation: claim-field-scan 1.05s ease-in-out infinite; }
.claim-control.is-valid .claim-status-dot::after { background: #75f0d0; box-shadow: 0 0 14px rgba(117,240,208,.65); }
.claim-control.is-invalid .claim-status-dot::after { background: #ff8473; }
.claim-control.is-connecting .claim-status-dot { animation: claim-pulse 1.2s ease-in-out infinite; }

.claim-control input {
  min-width: 0;
  flex: 1;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 17px;
  transition: padding-right 180ms ease;
}

.claim-control input::placeholder { color: var(--dim); }
.claim-control input:disabled { opacity: 1; color: rgba(255,255,255,.72); -webkit-text-fill-color: rgba(255,255,255,.72); cursor: wait; }
.claim-control.is-verifying input { padding-right: 96px; }

.claim-inline-status {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 14px;
  translate: 0 -50%;
  display: none;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(185,170,255,.2);
  border-radius: 999px;
  background: rgba(12,12,14,.76);
  color: #c4b8ff;
  font-family: "ABC Diatype Mono", monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.claim-inline-loader { width: 11px; height: 11px; border: 1.5px solid rgba(255,255,255,.2); border-top-color: #b9aaff; border-right-color: #b9aaff; border-radius: 50%; animation: claim-spin .68s linear infinite; }
.claim-control.is-verifying .claim-inline-status { display: inline-flex; }
.claim-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 208px;
  min-width: 208px;
  height: 64px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0c0c0e;
  cursor: pointer;
  transition: opacity 180ms ease, background-color 180ms ease, color 180ms ease, translate 180ms ease, box-shadow 180ms ease;
}

.claim-submit > span { position: relative; z-index: 1; }
.claim-submit [data-claim-label] { white-space: nowrap; }
.claim-submit.is-connecting [data-claim-label] { font-size: 15px; letter-spacing: -.01em; }
.claim-submit:not(:disabled):hover { background: #e9e9e7; translate: 0 -1px; }
.claim-submit:disabled { cursor: not-allowed; background: rgba(255,255,255,.1); color: rgba(255,255,255,.42); }
.claim-arrow { font-size: 20px; }
.claim-button-loader { width: 22px; height: 22px; display: none; border: 2px solid rgba(12,12,14,.2); border-top-color: #0c0c0e; border-right-color: #0c0c0e; border-radius: 50%; animation: claim-spin .78s linear infinite; }

.claim-submit.is-connecting:disabled {
  background: #f2f2ef;
  color: #0c0c0e;
  cursor: wait;
  box-shadow: 0 0 32px rgba(188,172,255,.16);
}

.claim-submit.is-connecting::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  translate: -120% 0;
  background: linear-gradient(105deg, transparent 25%, rgba(180,161,255,.34) 48%, rgba(117,240,208,.2) 58%, transparent 78%);
  animation: claim-shimmer 1.65s ease-in-out infinite;
}

.claim-submit.is-connecting .claim-arrow { display: none; }
.claim-submit.is-connecting .claim-button-loader { display: block; }

.claim-meta { display: flex; justify-content: space-between; gap: 24px; color: var(--dim); font-size: 12px; line-height: 1.4; }
.claim-feedback { text-align: right; }
.claim-feedback:empty { display: none; }
.claim-control.is-verifying + .claim-meta .claim-feedback { color: #b9aaff; }
.claim-control.is-valid + .claim-meta .claim-feedback { color: #75f0d0; }
.claim-control.is-connecting + .claim-meta .claim-feedback { color: rgba(255,255,255,.72); }

.claim-device-note {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(117,240,208,.22);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(117,240,208,.065), rgba(117,240,208,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025), 0 12px 34px rgba(0,0,0,.08);
  color: rgba(255,255,255,.64);
  text-align: left;
  animation: claim-note-in 360ms cubic-bezier(.2,.8,.2,1) both;
}

.claim-device-note[hidden] { display: none; }
.claim-device-note svg { width: 17px; height: 24px; flex: none; fill: none; stroke: #75f0d0; stroke-width: 1.2; filter: drop-shadow(0 0 8px rgba(117,240,208,.25)); }
.claim-device-copy { display: grid; gap: 3px; }
.claim-device-copy strong { color: #75f0d0; font-family: "ABC Diatype Mono", monospace; font-size: 10px; font-weight: 400; letter-spacing: .09em; text-transform: uppercase; }
.claim-device-copy > span { font-size: 12px; line-height: 1.4; }

@keyframes claim-spin { to { rotate: 360deg; } }
@keyframes claim-pulse { 0%, 100% { opacity: .45; scale: .78; } 50% { opacity: 1; scale: 1; } }
@keyframes claim-shimmer { 0% { translate: -120% 0; } 62%, 100% { translate: 120% 0; } }
@keyframes claim-field-scan { 0% { translate: -110% 0; } 72%, 100% { translate: 110% 0; } }
@keyframes claim-note-in { from { opacity: 0; translate: 0 8px; } to { opacity: 1; translate: 0; } }

/* Shared section rules */
.section { border-bottom: 1px solid var(--line); }
.section-frame { position: relative; overflow: hidden; }
.section-intro { min-height: 256px; border-bottom: 1px solid var(--line); }
.split-intro { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.split-intro > * { padding: 96px 48px 48px; }
.split-intro h2 { font-size: 48px; line-height: 1.08; letter-spacing: -0.04em; font-weight: 500; }
.split-intro .intro-spacer { border-inline: 1px solid var(--line); }
.split-intro p { color: var(--muted); font-size: 18px; line-height: 1.35; }

/* Explore */
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.platform-card { min-width: 0; height: 640px; position: relative; overflow: hidden; border-right: 1px solid var(--line); background: var(--panel); }
.platform-card:last-child { border-right: 0; }

.card-index, .tile-number {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--dim);
  font-family: "ABC Diatype Mono", monospace;
  font-size: 13px;
}

.card-media {
  position: absolute;
  isolation: isolate;
  inset: 0 0 112px;
  overflow: hidden;
  background-color: var(--bg);
  background-image: url("https://framerusercontent.com/images/vmmO1DQtrPmx3396rFtilY4WpY.png?width=1008&height=1056");
  background-position: center;
  background-size: cover;
}
.card-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: url("https://framerusercontent.com/images/sYqk0YQSLKmBVhhhR8l7Vbv3GgI.png?width=1008&height=1056");
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.developers-pattern {
  position: absolute;
  inset: 0;
  background-image: url("https://framerusercontent.com/images/sYqk0YQSLKmBVhhhR8l7Vbv3GgI.png?width=1008&height=1056");
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.card-media img { position: relative; z-index: 3; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; transition: scale 600ms cubic-bezier(.2,.8,.2,1), filter 300ms ease; }
.platform-card:hover .card-media img { scale: 1.035; filter: brightness(1.1); }

.card-caption {
  position: absolute;
  inset: auto 0 0;
  height: 112px;
  display: grid;
  grid-template-columns: 1fr 112px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.card-caption > span { padding: 28px 48px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.card-caption strong { font-size: 24px; font-weight: 500; }
.card-caption small { color: var(--dim); font-size: 17px; }
.card-caption i { border-left: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); font-size: 28px; font-style: normal; }
.platform-card:hover .card-caption i, .news-card:hover i { color: #000; background: #fff; }

/* Film */
.cinematic { padding: 0; }
.cinematic-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.cinematic video { width: 100%; height: 100%; object-fit: cover; }
.cinematic-frame::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.16); pointer-events: none; transition: opacity 240ms ease; }
.cinematic-frame.is-playing::after { opacity: 0; }
.cinematic-line { position: absolute; z-index: 2; left: 50%; bottom: 80px; translate: -50% 0; width: 100%; text-align: center; font-size: clamp(48px, 5.2vw, 76px); line-height: 1; letter-spacing: -.045em; color: rgba(255,255,255,.78); pointer-events: none; }

/* Section labels */
.eyebrow-row {
  height: 88px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.eyebrow-row span {
  display: flex;
  align-items: center;
  padding: 0 48px;
  color: var(--dim);
  font-family: "ABC Diatype Mono", monospace;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  grid-row: 1;
  grid-column: 1;
}

.eyebrow-row::before, .eyebrow-row::after { content: ""; border-left: 1px solid var(--line); }
.eyebrow-row::before { grid-column: 2; }
.eyebrow-row::after { grid-column: 3; }
.eyebrow-right span { grid-column: 3; }

/* Seeker phone */
.seeker-lead {
  height: 336px;
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid var(--line);
}

.seeker-copy { padding: 72px 48px; border-right: 1px solid var(--line); }
.seeker-copy h2 { max-width: 840px; font-size: clamp(64px, 6.1vw, 88px); line-height: 1; letter-spacing: -0.052em; font-weight: 400; }
.seeker-actions { position: relative; z-index: 4; padding: 48px; align-self: end; display: flex; flex-wrap: wrap; gap: 8px; }

.seeker-value-grid {
  height: 880px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 408px 472px;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(90deg, transparent calc(33.333% - .5px), var(--line) calc(33.333% - .5px), var(--line) calc(33.333% + .5px), transparent calc(33.333% + .5px)),
    linear-gradient(90deg, transparent calc(66.666% - .5px), var(--line) calc(66.666% - .5px), var(--line) calc(66.666% + .5px), transparent calc(66.666% + .5px)),
    linear-gradient(transparent 407px, var(--line) 407px, var(--line) 408px, transparent 408px);
}

.phone-stage { position: absolute; z-index: 1; left: 7.36%; top: -203px; width: 92.64%; pointer-events: none; }
.phone-stage img { width: 100%; filter: drop-shadow(0 30px 45px rgba(0,0,0,.44)); }
.phone-glow { position: absolute; inset: 32% 10% 15%; border-radius: 50%; background: radial-gradient(circle, rgba(253,143,58,.42), rgba(105,57,201,.25) 44%, transparent 70%); filter: blur(120px); }

.value-card { position: relative; z-index: 2; padding: 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 70px; }
.value-secure { grid-column: 1; grid-row: 1; }
.value-open { grid-column: 2; grid-row: 2; }
.feature-symbol { width: 100px; height: 80px; fill: none; stroke: #fff; stroke-width: 5; }
.hardware-symbol { width: 46px; stroke-width: 4; }
.value-card h3 { margin-bottom: 12px; font-size: 24px; font-weight: 500; }
.value-card p { color: var(--muted); max-width: 390px; font-size: 19px; line-height: 1.45; }
.seeker-grid-spacer { height: 64px; border-bottom: 1px solid var(--line); }

.feature-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 560px); background: var(--bg); }
.feature-tile { position: relative; min-width: 0; padding: 48px 0; overflow: hidden; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-tile:nth-child(3), .feature-tile:nth-child(5) { border-right: 0; }
.feature-tile-tall { grid-row: span 2; }
.tile-number { top: 0; }
.tile-image { flex: 1; min-height: 0; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%); mask-image: linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%); }
.tile-image img { width: 100%; height: 100%; object-fit: cover; }
.tile-image-tall img { object-position: center center; }
.feature-tile h3 { width: min(100%, 400px); margin-top: auto; padding: 0 40px; font-size: 24px; line-height: 32px; font-weight: 500; }
.feature-tile h3 span { color: var(--muted); }

/* Flywheel */
.flywheel-heading { height: 212px; display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.flywheel-heading h2, .flywheel-heading p { padding: 48px; }
.flywheel-heading h2 { border-right: 1px solid var(--line); font-size: 48px; line-height: 1.08; letter-spacing: -.04em; font-weight: 500; }
.flywheel-heading p { max-width: 520px; color: var(--muted); font-size: 18px; line-height: 1.45; }
.flywheel-layout { height: 1132px; display: grid; grid-template-columns: 2fr 1fr; }
.flywheel-visual { height: 1132px; position: relative; overflow: hidden; border-right: 1px solid var(--line); background: #020604; }
.flywheel-visual::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.13) 1px, transparent 1.25px); background-size: 12px 12px; opacity: .36; mix-blend-mode: screen; pointer-events: none; }
.flywheel-visual video { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: lighten; }
.flywheel-list { min-width: 0; }
.flywheel-item { height: 232px; padding: 40px 48px; display: flex; flex-direction: column; gap: 8px; border-bottom: 1px solid var(--line); }
.flywheel-item:nth-child(3) { height: 204px; }
.flywheel-item small { color: var(--dim); font-family: "ABC Diatype Mono", monospace; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.flywheel-item h3 { max-width: 340px; font-size: 20px; line-height: 1.4; font-weight: 500; }
.flywheel-item p { color: var(--muted); font-size: 15px; line-height: 1.46; }

/* Developers */
.developers-layout { height: 560px; display: grid; grid-template-columns: 1fr 2fr; }
.developers-copy { padding: 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.developers-copy h2 { font-size: 48px; letter-spacing: -.04em; font-weight: 500; }
.developers-copy p { margin-top: auto; max-width: 390px; color: var(--muted); font-size: 18px; line-height: 1.45; }
.developers-copy .pill { align-self: flex-start; }
.developers-visual {
  position: relative;
  height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background-color: var(--bg);
  background-image: url("https://framerusercontent.com/images/vmmO1DQtrPmx3396rFtilY4WpY.png?width=1008&height=1056");
  background-position: center;
  background-size: cover;
}
.developers-pattern { -webkit-mask-image: none; mask-image: none; }
.developers-visual::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(107,73,255,.16); filter: blur(110px); }
.developers-visual img { position: relative; z-index: 2; width: 640px; height: 640px; max-width: 75%; object-fit: contain; mix-blend-mode: screen; }

/* News */
.news-heading { height: 148px; padding: 48px; border-bottom: 1px solid var(--line); }
.news-heading h2 { font-size: 48px; letter-spacing: -.04em; font-weight: 500; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.news-card { min-width: 0; border-right: 1px solid var(--line); }
.news-card:last-child { border-right: 0; }
.news-card > img { width: 100%; height: 360px; object-fit: cover; transition: filter 250ms ease, scale 550ms ease; }
.news-card:hover > img { filter: brightness(1.12); }
.news-card > div { height: 112px; display: grid; grid-template-columns: 1fr 88px; border-top: 1px solid var(--line); }
.news-card h3 { padding: 24px 32px; font-size: 20px; line-height: 1.28; font-weight: 500; }
.news-card i { display: grid; place-items: center; border-left: 1px solid var(--line); font-size: 28px; font-style: normal; color: var(--muted); transition: color 180ms ease, background-color 180ms ease; }

/* Footer */
.site-footer { border-bottom: 1px solid var(--line); }
.footer-frame { overflow: hidden; }
.newsletter { height: 756px; position: relative; overflow: hidden; padding: 80px 48px; display: flex; flex-direction: column; justify-content: space-between; }
.footer-visual { position: absolute; z-index: 0; inset: auto 0 0; width: 100%; height: 390px; object-fit: cover; -webkit-mask-image: linear-gradient(to bottom, transparent, #000 36%); mask-image: linear-gradient(to bottom, transparent, #000 36%); }
.newsletter::after { content: ""; position: absolute; z-index: 1; inset: auto -10% -230px; height: 500px; background: radial-gradient(ellipse at center, rgba(255,241,221,.66), rgba(255,126,70,.55) 28%, rgba(105,57,202,.3) 51%, transparent 72%); filter: blur(20px); pointer-events: none; }
.footer-orb { display: none; }
.newsletter h2 { position: relative; z-index: 2; font-size: clamp(64px, 8vw, 118px); line-height: .95; letter-spacing: -.05em; font-weight: 400; }
.newsletter-content { position: relative; z-index: 2; max-width: 520px; }
.newsletter-content h3 { max-width: 440px; margin-bottom: 24px; color: var(--muted); font-size: 20px; line-height: 1.4; font-weight: 500; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input { min-width: 0; flex: 1; height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 99px; outline: 0; background: rgba(255,255,255,.16); color: #fff; }
.newsletter-form input::placeholder { color: var(--dim); }
.newsletter-form input:focus { border-color: #fff; }
.form-note { margin-top: 18px; color: var(--dim); font-size: 13px; line-height: 1.45; }
.form-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-links { height: 460px; display: grid; grid-template-columns: 41.4% 58.6%; border-top: 1px solid var(--line); }
.footer-main-links { height: 460px; min-height: 0; padding: 40px 36px 80px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; border-right: 1px solid var(--line); }
.footer-main-links a { color: var(--dim); font-size: 48px; line-height: 1.06; letter-spacing: -.04em; transition: color 180ms ease, translate 180ms ease; }
.footer-main-links a:hover { color: #fff; translate: 8px 0; }
.footer-columns { height: 460px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.footer-columns > div { height: 460px; min-height: 0; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; border-right: 1px solid var(--line); background: var(--bg); }
.footer-columns > div:first-child { justify-content: flex-start; }
.footer-columns > div:first-child h3 { margin-bottom: auto; }
.footer-columns > div:nth-child(2), .footer-columns > div:nth-child(3) { margin-top: 0; min-height: 0; }
.footer-columns > div:last-child { border-right: 0; }
.footer-columns h3 { margin: 0 0 26px; font-size: 21px; font-weight: 500; }
.footer-columns a, .footer-columns button { display: block; margin-top: 14px; color: var(--dim); font-family: "ABC Diatype Mono", monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-columns button { padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.footer-columns a:hover, .footer-columns button:hover { color: #fff; }
.footer-bottom { height: 100px; min-height: 100px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: inset 0 1px 0 var(--line); }
.footer-logo-cell { min-width: 0; display: flex; align-items: center; padding: 0 48px; }
.footer-brand { margin: 0; }
.social-links { min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 40px; padding: 0 48px; border-left: 1px solid var(--line); }
.social-links a { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: #fff; transition: opacity 180ms ease; }
.social-links a:hover { opacity: .62; }
.social-links a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; border-radius: 2px; }
.social-icon { width: 24px; height: 18px; flex: none; fill: currentColor; }
.social-icon-discord { height: 18px; }
.social-icon-x { height: 18px; }
.social-icon-youtube { height: 18px; }

/* OneTrust-shaped consent UI */
.onetrust-pc-dark-filter {
  position: fixed;
  inset: 0;
  z-index: 2147483645;
  background: rgba(0,0,0,.5);
}

#onetrust-banner-sdk {
  position: fixed;
  z-index: 2147483646;
  inset: auto 0 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) auto auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  background: #1a1a1a;
  box-shadow: 0 -2px 18px rgba(0,0,0,.35);
  font-family: Arial, sans-serif;
}

#onetrust-banner-sdk p { max-width: 820px; color: #fff; font-size: 13px; line-height: 1.35; }
#onetrust-banner-sdk a { color: #fff; text-decoration: underline; }
.cookie-settings { border: 0; background: transparent; color: #fff; text-decoration: underline; cursor: pointer; }
.cookie-choice, .cookie-save { min-width: 150px; height: 42px; padding: 0 20px; border: 1px solid #fff; background: transparent; color: #fff; cursor: pointer; font-weight: 700; }
.cookie-choice:last-child, .cookie-save { background: #fff; color: #111; }

#onetrust-pc-sdk {
  position: fixed;
  z-index: 2147483646;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: min(92vw, 720px);
  max-height: 82vh;
  overflow: auto;
  padding: 0 30px 30px;
  background: #fff;
  color: #1a1a1a;
  border-radius: 2px;
  font-family: Arial, sans-serif;
}

#onetrust-pc-sdk[hidden], #onetrust-banner-sdk[hidden], .onetrust-pc-dark-filter[hidden], #onetrust-consent-sdk[hidden] { display: none !important; }
.preference-head { min-height: 76px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #ddd; }
.preference-head h2 { font-size: 22px; }
.preference-head button { border: 0; background: transparent; color: #333; font-size: 32px; cursor: pointer; }
#onetrust-pc-sdk > p { padding: 22px 0; color: #555; line-height: 1.45; }
.preference-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px 0; border-block: 1px solid #ddd; }
.preference-row span { display: grid; gap: 6px; }
.preference-row small { color: #666; }
.preference-row b { color: #146c43; white-space: nowrap; }
.cookie-save { display: block; margin: 24px 0 0 auto; }

/* Reveal motion uses translate, preserving component transforms. */
.reveal {
  opacity: 0;
  translate: 0 28px;
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), translate 700ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible { opacity: 1; translate: 0; }
.hero-device.reveal { translate: -50% 28px; }
.hero-device.reveal.is-visible { translate: -50% 0; }

/* Tablet */
@media (max-width: 1199px) {
  :root { --header-h: 80px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: flex; }
  .header-shell { justify-content: space-between; padding-inline: 40px; }
  .header-actions { margin-left: auto; }

  .hero, .hero-shell { min-height: 880px; }
  .hero-shell { padding: 144px 48px 0; }
  .hero-bottom { flex-direction: column-reverse; align-items: flex-start; gap: 32px; }
  .hero-tagline { max-width: none; }
  .hero-device { width: 1344px; bottom: -292px; left: 42%; }
  .hero-device.reveal { translate: -50% 28px; }
  .hero-device.reveal.is-visible { translate: -50% 0; }
  .hero-ambient { top: 46%; }

  .claim-frame { flex-direction: column; }
  .claim-copy { min-height: 160px; flex: none; border-right: 0; border-bottom: 1px solid var(--line); }
  .claim-form { min-height: 192px; flex: none; }

  .split-intro { grid-template-columns: 1fr; }
  .split-intro > * { padding: 48px; }
  .split-intro .intro-spacer { display: none; }
  .split-intro h2 { height: 148px; display: flex; align-items: center; }
  .split-intro p { min-height: 144px; border-top: 1px solid var(--line); }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { height: 560px; border-right: 0; border-bottom: 1px solid var(--line); }

  .seeker-lead { height: 280px; grid-template-columns: 1fr; grid-template-rows: 184px 96px; }
  .seeker-copy { padding: 48px; border-right: 0; }
  .seeker-copy h2 { font-size: 60px; }
  .seeker-actions { padding: 24px 48px; align-self: center; }

  .seeker-value-grid {
    height: 631px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 307px 324px;
    background-image:
      linear-gradient(90deg, transparent calc(50% - .5px), var(--line) calc(50% - .5px), var(--line) calc(50% + .5px), transparent calc(50% + .5px)),
      linear-gradient(transparent 306px, var(--line) 306px, var(--line) 307px, transparent 307px);
  }

  .phone-stage { left: 7.56%; top: -507px; width: 92.56%; }
  .value-secure { grid-column: 1 / -1; grid-row: 1; }
  .value-open { grid-column: 2; grid-row: 2; }
  .value-card { padding: 48px; }
  .value-secure p { max-width: 360px; }
  .seeker-grid-spacer { display: none; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 1120px 560px 560px; }
  .feature-tile, .feature-tile-tall { height: auto; min-height: 0; grid-row: auto; }
  .feature-tile-tall { grid-column: 1 / -1; }
  .feature-tile-tall .tile-image { flex: none; height: 896px; }
  .feature-tile:nth-child(3), .feature-tile:nth-child(5) { border-right: 0; }
  .feature-tile:nth-child(2), .feature-tile:nth-child(4) { border-right: 1px solid var(--line); }

  .flywheel-layout { height: 1282px; grid-template-columns: 1fr; grid-template-rows: 150px 1132px; }
  .flywheel-visual { height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .flywheel-visual video { object-position: center 44%; }
  .flywheel-list { display: grid; }
  .flywheel-item { height: 232px; }
  .flywheel-item:nth-child(3) { height: 204px; }

  .developers-layout { height: 844px; grid-template-columns: 1fr; grid-template-rows: 444px 400px; }
  .developers-copy { height: 444px; }
  .developers-visual { height: 400px; border-left: 0; border-top: 1px solid var(--line); }
  .developers-visual img { height: 460px; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .news-card > img { height: 360px; }
  .newsletter { height: 640px; }
  .footer-links { height: auto; grid-template-columns: 1fr; }
  .footer-main-links { height: 360px; min-height: 360px; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-columns { height: auto; }
  .footer-columns > div, .footer-columns > div:nth-child(2), .footer-columns > div:nth-child(3) { height: auto; margin-top: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-columns > div:first-child h3 { margin-bottom: 26px; }
  .footer-columns > div:nth-child(1) { min-height: 220px; }
  .footer-columns > div:nth-child(2) { min-height: 260px; }
  .footer-columns > div:nth-child(3) { min-height: 439px; }

  #onetrust-banner-sdk { grid-template-columns: 1fr auto auto; }
  #onetrust-banner-sdk p { grid-column: 1 / -1; }
}

/* Phone */
@media (max-width: 767px) {
  :root { --header-h: 72px; }
  .header-shell { padding: 16px 20px; gap: 12px; }
  .brand { width: 203px; }
  .brand-word { font-size: 16px; }
  .brand-mark { width: 21px; height: 18px; }
  .header-order, .header-stake { display: none; }
  .mobile-menu { padding: 16px 20px max(24px, env(safe-area-inset-bottom)); }
  .mobile-menu nav { gap: 7px; }
  .mobile-menu nav a { min-height: 56px; padding: 12px 16px; font-size: clamp(18px, 6vw, 22px); }
  .mobile-menu-actions { padding-top: 24px; }

  .hero, .hero-shell { min-height: 700px; }
  .hero-shell { padding: 120px 20px 0; }
  .hero-bottom { align-items: stretch; gap: 24px; margin-top: 18px; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 10px; }
  .hero-buttons .pill { width: 100%; min-height: 48px; }
  .hero-tagline { text-align: center; font-size: 20px; line-height: 1.4; }
  .hero-device { width: 200%; bottom: -131px; left: 50%; }
  .hero-device.reveal { translate: -50% 28px; }
  .hero-device.reveal.is-visible { translate: -50% 0; }
  .hero-ambient { inset: 40% -80% auto; width: 260%; height: 430px; opacity: .62; filter: saturate(1.12) brightness(.9) contrast(1.04); }

  .claim-frame { min-height: 0; }
  .claim-copy { min-height: 120px; padding: 28px 20px; }
  .claim-copy h2 { font-size: 32px; line-height: 1.1; }
  .claim-form { min-height: 220px; padding: 24px 20px 28px; align-items: flex-start; }
  .claim-field-wrap { gap: 12px; }
  .claim-field-head { flex-direction: column; gap: 10px; }
  .claim-field-head > label { padding-top: 0; }
  .claim-context { width: 100%; max-width: 350px; padding-left: 22px; font-size: 16px; line-height: 1.4; }
  .claim-control { flex-direction: column; gap: 8px; }
  .claim-input-shell { min-height: 52px; padding: 0 16px; }
  .claim-control input { height: 50px; font-size: 16px; }
  .claim-submit { width: 100%; min-width: 0; height: 48px; flex: none; padding-inline: 18px; }
  .claim-meta { flex-direction: column; gap: 4px; font-size: 11px; }
  .claim-feedback { text-align: left; }
  .claim-inline-status { padding: 5px 8px; font-size: 9px; }
  .claim-device-note { border-radius: 16px; }

  .split-intro > * { padding: 40px 20px; }
  .split-intro h2 { height: 120px; font-size: 32px; line-height: 40px; }
  .split-intro p { min-height: 176px; display: flex; align-items: center; font-size: 18px; line-height: 24px; }
  .platform-card { height: 560px; }
  .card-caption { grid-template-columns: 1fr 56px; }
  .card-caption > span { padding: 24px 48px; }
  .card-caption strong { font-size: 24px; line-height: 32px; }
  .card-caption small { font-size: 17px; line-height: 24px; }
  .card-caption i { background: #fff; color: #0c0c0e; }

  .cinematic-frame { aspect-ratio: 16 / 9; }
  .cinematic-line { bottom: 54px; font-size: 20px; }

  .eyebrow-row { height: 66px; display: block; }
  .eyebrow-row span { height: 100%; padding: 0 20px; }
  .eyebrow-row::before, .eyebrow-row::after { display: none; }
  .eyebrow-right span { justify-content: flex-end; padding-right: 48px; }
  .seeker-lead { height: 367px; display: block; }
  .seeker-copy { height: 255px; padding: 40px 20px 20px; }
  .seeker-copy h2 { font-size: clamp(42px, 13vw, 60px); line-height: 1.05; }
  .seeker-actions { height: 112px; padding: 16px 20px 40px; display: grid; grid-template-columns: 1fr 1fr; }
  .seeker-actions .pill { width: 100%; }

  .seeker-value-grid {
    height: 696px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 348px 348px;
    background-image: linear-gradient(transparent 347px, var(--line) 347px, var(--line) 348px, transparent 348px);
  }

  .phone-stage { left: -4.62%; top: -202px; width: 115.13%; }
  .value-secure { grid-column: 1; grid-row: 1; }
  .value-open { grid-column: 1; grid-row: 2; }
  .value-card { padding: 32px 20px 40px; gap: 24px; }
  .feature-symbol { height: 62px; }
  .value-card h3 { font-size: 24px; }
  .value-card p { max-width: 350px; font-size: 19px; line-height: 1.45; }

  .feature-grid { grid-template-columns: 1fr; grid-template-rows: 928px repeat(4, 464px); }
  .feature-tile, .feature-tile-tall { min-height: 0; border-right: 0 !important; }
  .feature-tile-tall { grid-column: auto; }
  .feature-tile-tall .tile-image { flex: 1; height: auto; }
  .feature-tile h3 { width: 100%; padding-inline: 20px; font-size: 24px; line-height: 32px; }

  .flywheel-heading { height: 228px; grid-template-columns: 1fr; grid-template-rows: 132px 96px; }
  .flywheel-heading h2 { padding: 40px 24px; border-right: 0; border-bottom: 1px solid var(--line); font-size: 48px; line-height: 52px; }
  .flywheel-heading p { padding: 24px 20px; font-size: 16px; line-height: 24px; }
  .flywheel-layout { height: 1620px; grid-template-rows: 400px 1220px; }
  .flywheel-visual { height: 400px; }
  .flywheel-item { height: 254px; padding: 40px 24px; }
  .flywheel-item:nth-child(3) { height: 204px; }

  .developers-layout { height: 800px; grid-template-rows: 400px 400px; }
  .developers-copy { height: 400px; padding: 40px 20px; }
  .developers-copy h2 { font-size: 32px; line-height: 1.15; }
  .developers-copy p { font-size: 18px; line-height: 24px; }
  .developers-visual { height: 400px; }
  .developers-visual img { width: 420px; height: 420px; max-width: 100%; }

  .news-heading { height: 132px; padding: 40px 20px; }
  .news-heading h2 { font-size: 48px; line-height: 52px; }
  .news-card > img { height: 360px; }
  .news-card > div { height: 112px; grid-template-columns: 1fr 112px; }
  .news-card h3 { padding: 24px 20px; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; font-size: 20px; }
  .news-card i { background: #fff; color: #0c0c0e; }

  .site-footer .eyebrow-row { height: 88px; display: grid; grid-template-columns: 2fr 1fr; }
  .site-footer .eyebrow-row span { grid-column: 1; grid-row: 1; }
  .site-footer .eyebrow-row::after { display: block; grid-column: 2; grid-row: 1; border-left: 1px solid var(--line); }
  .newsletter { height: 560px; padding: 60px 20px; justify-content: flex-start; gap: 48px; }
  .newsletter h2 { font-size: 24px; line-height: 32px; letter-spacing: -.02em; }
  .newsletter-content { width: 100%; max-width: none; }
  .newsletter-content h3 { max-width: 270px; font-size: 18px; line-height: 24px; }
  .newsletter-form { flex-direction: row; }
  .newsletter-form .pill { width: auto; flex: none; }
  .footer-visual { height: 360px; }
  .footer-main-links { height: 356px; min-height: 356px; padding: 32px 8px; gap: 12px; }
  .footer-main-links a { font-size: 32px; }
  .footer-columns { grid-template-columns: 1fr; }
  .footer-columns > div, .footer-columns > div:nth-child(2), .footer-columns > div:nth-child(3) { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 8px 28px; }
  .footer-columns > div:nth-child(1) { min-height: 172px; }
  .footer-columns > div:nth-child(2) { min-height: 206px; }
  .footer-columns > div:nth-child(3) { min-height: 342px; }
  .footer-bottom { height: 121px; min-height: 121px; grid-template-columns: 1fr; grid-template-rows: 57px 64px; }
  .footer-logo-cell { width: 100%; height: 57px; padding: 20px; }
  .footer-brand { width: 203px; height: auto; margin: 0; padding: 0; }
  .footer-brand .brand-word { font-size: 16px; }
  .footer-brand .brand-mark { width: 21px; height: 18px; }
  .social-links { width: 100%; height: 64px; min-height: 64px; justify-content: flex-start; gap: 40px; padding: 20px; border-left: 0; border-top: 1px solid var(--line); }

  #onetrust-banner-sdk {
    left: 1px;
    right: 1px;
    min-height: 294px;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }
  #onetrust-banner-sdk p { grid-column: auto; font-size: 13px; }
  .cookie-settings, .cookie-choice { width: 100%; height: 42px; }
  #onetrust-pc-sdk { width: calc(100vw - 24px); padding-inline: 20px; }
  .preference-row { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (max-width: 420px) {
  .mobile-menu-actions { display: grid; grid-template-columns: 1fr; }
  .mobile-menu-actions .pill { width: 100%; min-height: 48px; }
}

@media (max-width: 380px) {
  .header-shell { padding-inline: 14px; }
  .brand { width: 174px; }
  .brand-word { font-size: 14px; }
  .brand-mark { width: 18px; height: 16px; }
  .menu-toggle { width: 44px; }
  .menu-toggle span { left: 16px; }
  .menu-toggle span:nth-child(2) { left: 21px; }
  .mobile-menu { padding-inline: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu nav,
  .mobile-menu-actions,
  .mobile-menu nav a,
  .menu-toggle span { transition: none; }
}

@media (max-width: 374px) {
  .brand { width: 184px; }
  .brand-word { font-size: 14px; }
  .seeker-copy h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-device.reveal { opacity: 1; translate: 0; }
  .hero-device.reveal { translate: -50% 0; }
}