:root {
  --ink: #0a0b10;
  --muted: #606575;
  --line: #e7e9ef;
  --panel: #ffffff;
  --soft: #f6f8fc;
  --blue: #111318;
  --cyan: #b9c0cc;
  --lime: #d7ff00;
  --orange: #ff7417;
  --paper: #fbfcff;
  --t3-green: var(--lime);
  --t3-green-soft: #fbfff0;
  --t3-green-line: #e3e8bc;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(24, 31, 51, 0.12);
  --surface-shadow: 0 10px 32px rgba(24, 31, 51, 0.05);
  --button-shadow: 0 14px 30px rgba(10, 11, 16, 0.16);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-body: 1.08rem;
  --text-card-title: 1.45rem;
  --text-section-title: clamp(2rem, 3vw, 3.1rem);
  --text-hero: clamp(3.1rem, 5vw, 4rem);
  --space-label-heading: 12px;
  --space-heading-body: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 6%, rgba(17, 19, 24, 0.05), transparent 24rem),
    radial-gradient(circle at 14% 36%, rgba(180, 185, 194, 0.08), transparent 20rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--t3-green);
  outline-offset: 3px;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(231, 233, 239, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 50px rgba(31, 35, 52, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: #424657;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.header-cta:hover {
  border-color: var(--t3-green-line);
  background: var(--t3-green-soft);
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 48px;
  align-items: center;
  min-height: 760px;
  padding: 78px 0 60px;
}

.eyebrow {
  margin: 0;
  color: #515763;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

main section .eyebrow {
  display: block;
  margin: 0;
  color: #515763;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

main section .eyebrow + h1,
main section .eyebrow + h2 {
  margin-top: var(--space-label-heading);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 1;
}

h2 {
  max-width: 780px;
  margin-bottom: var(--space-heading-body);
  font-size: var(--text-section-title);
  font-weight: 600;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: var(--text-card-title);
  font-weight: 600;
  line-height: 1.15;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 18px;
  color: #3e4352;
  font-size: var(--text-body);
}

.hero-secondary {
  font-size: var(--text-body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: var(--text-sm);
  font-weight: 600;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #050608, #242832);
  color: #fff;
  box-shadow: var(--button-shadow);
}

.button-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(20, 25, 40, 0.04);
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.proof-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #4f5567;
  font-size: var(--text-xs);
  font-weight: 500;
}

.product-stage {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.stage-glow {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.85;
}

.stage-glow-blue {
  top: 70px;
  right: 90px;
  width: 300px;
  height: 300px;
  background: rgba(17, 19, 24, 0.08);
}

.stage-glow-lime {
  right: 190px;
  bottom: 80px;
  width: 230px;
  height: 230px;
  background: rgba(215, 255, 0, 0.18);
}

.showcase-card,
.hero-tablet,
.hero-phone,
.hero-logo-float {
  position: absolute;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.showcase-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-tablet {
  top: 84px;
  left: 0;
  z-index: 2;
  width: 520px;
  min-height: 380px;
  padding: 16px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.72);
  transform: perspective(900px) rotateY(-8deg) rotateZ(-2deg);
  backdrop-filter: blur(18px);
}

.tablet-chrome {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 348px;
  overflow: hidden;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  background: #fff;
}

.tablet-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px 16px;
  border-right: 1px solid #edf0f5;
  background: #f7f9fc;
}

.tablet-sidebar span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #e9eef7;
}

.tablet-main {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  overflow: hidden;
}

.tablet-top,
.tablet-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tablet-top img {
  width: 150px;
}

.tablet-top span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #596172;
  font-size: 11px;
  font-weight: 800;
}

.tablet-metrics {
  align-items: stretch;
}

.tablet-metrics div {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcff;
}

.tablet-metrics span {
  display: block;
  color: #7a8190;
  font-size: 10px;
  font-weight: 800;
}

.tablet-metrics strong {
  display: block;
  margin-top: 5px;
  color: #10131e;
  font-size: 15px;
}

.tablet-chart {
  position: relative;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17, 19, 24, 0.06) 1px, transparent 1px),
    #fff;
  background-size: 38px 28px;
}

.tablet-chart span {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 58px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #111318, #8d96a5, #111318);
  transform: skewY(-9deg);
  box-shadow: 0 0 18px rgba(17, 19, 24, 0.16);
}

.tablet-screen-shot {
  height: 82px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  object-position: top left;
}

.hero-phone {
  top: 54px;
  right: 6px;
  z-index: 4;
  width: 200px;
  min-height: 430px;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(135deg, #1d2431, #05070c);
  transform: rotate(4deg);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.phone-device {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: 24px 16px 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 64% 18%, rgba(215, 255, 0, 0.14), transparent 8rem),
    linear-gradient(180deg, #111827, #070a12);
  color: #fff;
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 66px;
  height: 15px;
  border-radius: 999px;
  background: #05070c;
  transform: translateX(-50%);
}

.phone-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-brand img {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  object-fit: cover;
}

.phone-device p,
.phone-ui p {
  margin-bottom: 2px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-device h3,
.phone-ui h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.phone-timer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

.phone-timer strong {
  display: grid;
  min-height: 24px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.phone-leaderboard {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.phone-leaderboard span {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 7px;
}

.phone-button {
  display: grid;
  min-height: 25px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #d7ff00, #9ab800);
  color: #111318;
  font-size: 7px;
  font-weight: 900;
}

.hero-logo-float {
  left: 245px;
  bottom: 100px;
  z-index: 5;
  width: 190px;
  height: 190px;
  padding: 12px;
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.78);
  transform: rotate(-12deg);
  backdrop-filter: blur(14px);
}

.hero-logo-float img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 34px rgba(17, 19, 24, 0.16);
}

.hero-product {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(20, 28, 45, 0.16));
}

.hero-product-qc {
  top: 150px;
  right: 72px;
  z-index: 3;
  width: 700px;
}

.hero-product-audit {
  top: 292px;
  right: -20px;
  z-index: 5;
  width: 430px;
}

.hero-product-game {
  top: 18px;
  right: -58px;
  z-index: 1;
  width: 540px;
}

.hero-logo-float {
  left: 205px;
  bottom: 156px;
  z-index: 6;
  width: 142px;
  height: 142px;
}

.hero-laptop-device,
.hero-tablet-device {
  position: absolute;
  filter: drop-shadow(0 28px 70px rgba(20, 28, 45, 0.18));
}

.hero-laptop-device {
  left: 24px;
  top: 118px;
  z-index: 2;
  width: 500px;
  aspect-ratio: 16 / 9;
  transform: perspective(1000px) rotateY(-5deg) rotateZ(-1deg);
}

.hero-tablet-device {
  right: 86px;
  bottom: 42px;
  z-index: 3;
  width: 310px;
  aspect-ratio: 16 / 9;
  transform: rotate(-6deg);
}

.hero-phone {
  top: 72px;
  right: 30px;
  z-index: 5;
  width: 250px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(4deg);
}

.device-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.device-screen {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  background: #05070c;
}

.laptop-screen {
  left: 11.6%;
  top: 3.4%;
  width: 76.8%;
  height: 77%;
  border-radius: 8px;
}

.laptop-screen > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  filter: saturate(1.02);
}

.laptop-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.laptop-overlay img {
  width: 150px;
}

.laptop-overlay span {
  color: #5d6470;
  font-size: 11px;
  font-weight: 900;
}

.phone-screen-real {
  left: 32.2%;
  top: 2.6%;
  width: 35.5%;
  height: 94.4%;
  border-radius: 18px;
  transform: none;
}

.phone-ui {
  min-height: 100%;
  padding: 38px 10px 14px;
  background:
    radial-gradient(circle at 70% 22%, rgba(215, 255, 0, 0.16), transparent 7rem),
    linear-gradient(180deg, #111827, #070a12);
  color: #fff;
}

.phone-ui p {
  margin-bottom: 2px;
  color: var(--lime);
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-ui h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.tablet-screen-real {
  left: 11%;
  top: 8%;
  width: 78%;
  height: 78%;
  border-radius: 16px;
}

.tablet-screen-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tablet-game-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5, 6, 4, 0.78);
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo-float {
  left: 205px;
  bottom: 156px;
  z-index: 6;
  width: 142px;
  height: 142px;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-card {
  top: 58px;
  right: 22px;
  width: 250px;
  padding: 14px;
  background:
    radial-gradient(circle at 18% 8%, rgba(215, 255, 0, 0.16), transparent 8rem),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.08), transparent 9rem),
    linear-gradient(160deg, #111827, #05070c 70%);
  transform: rotate(4deg);
  z-index: 1;
}

.scan-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 80%);
  pointer-events: none;
}

.phone-screen {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(215, 255, 0, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 76% 4%, rgba(215, 255, 0, 0.18), transparent 6rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%),
    #090d15;
  color: #fff;
}

.phone-screen img {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 10px;
  object-fit: cover;
}

.phone-screen p {
  margin-bottom: 2px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-screen h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.score-grid span,
.leaderboard span {
  display: block;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.score-grid span {
  padding: 8px 0;
}

.leaderboard {
  display: grid;
  gap: 7px;
}

.leaderboard span {
  padding: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  text-align: left;
}

.token-ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.token-ticker span {
  display: grid;
  min-height: 30px;
  place-items: center;
  border: 1px solid rgba(215, 255, 0, 0.28);
  border-radius: 999px;
  background: rgba(215, 255, 0, 0.08);
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
}

.qc-card {
  top: 94px;
  left: 12px;
  z-index: 6;
  width: 380px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 116, 23, 0.08), transparent 35%),
    rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  transform: rotate(-2deg);
}

.qc-card .card-topline {
  color: #646a78;
}

.qc-logo {
  width: 190px;
  margin: 18px 0 14px;
}

.qc-proof-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 999px;
  background: rgba(255, 116, 23, 0.08);
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qc-mini-screen {
  width: 100%;
  height: 94px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  object-position: top left;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.dashboard div,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.dashboard div {
  padding: 10px;
}

.dashboard span,
.quote-panel span {
  display: block;
  color: #767d8c;
  font-size: 10px;
  font-weight: 700;
}

.dashboard strong,
.quote-panel strong {
  display: block;
  color: #10131e;
  font-size: 14px;
}

.quote-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 116, 23, 0.18);
  border-radius: 10px;
  background: #fff;
}

.quote-flow span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #f6f8fc;
  color: #10131e;
  font-size: 11px;
  font-weight: 900;
}

.quote-flow span:last-child {
  background: rgba(255, 116, 23, 0.1);
  color: var(--orange);
}

.skull-card {
  right: 60px;
  bottom: 26px;
  z-index: 2;
  width: 390px;
  height: 310px;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: rotate(-3deg);
}

.monitor-shell {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.32));
}

.monitor-frame {
  position: relative;
  overflow: hidden;
  height: 235px;
  padding: 12px;
  border: 7px solid #0b0e13;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 38%),
    #050604;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(215, 255, 0, 0.18);
}

.monitor-topbar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(5, 6, 4, 0.78);
  backdrop-filter: blur(10px);
}

.monitor-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.82;
}

.monitor-topbar strong,
.monitor-topbar em {
  color: var(--lime);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.monitor-topbar strong {
  color: #fff;
}

.monitor-frame img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.05);
}

.monitor-neck {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 64px;
  height: 46px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #151922, #080a0f);
  transform: translateX(-50%);
}

.monitor-base {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 170px;
  height: 30px;
  border-radius: 50% 50% 10px 10px;
  background: linear-gradient(180deg, #191d27, #07090d);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(215, 255, 0, 0.12);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  margin-bottom: 104px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.intro-strip h2 {
  max-width: 880px;
  margin-bottom: var(--space-heading-body);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--text-section-title);
  line-height: 1;
}

.intro-strip p {
  max-width: 820px;
  margin-bottom: 14px;
  color: #373c4c;
  font-size: var(--text-body);
}

.intro-strip span {
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.built-work {
  margin-bottom: 104px;
}

.built-work .work-heading {
  max-width: 920px;
}

.built-work .work-heading h2 {
  margin-bottom: 0;
  color: #050505;
  line-height: 1.04;
}

.built-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.built-card-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 14%, rgba(215, 255, 0, 0.055), transparent 11rem),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--surface-shadow);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.built-card-grid article:hover {
  border-color: var(--t3-green-line);
  background:
    radial-gradient(circle at 84% 14%, rgba(215, 255, 0, 0.11), transparent 11rem),
    var(--t3-green-soft);
  box-shadow: 0 14px 34px rgba(24, 31, 51, 0.07);
}

.built-card-grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--t3-green);
  border-radius: 8px;
  background: var(--t3-green);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 5px 16px rgba(20, 25, 40, 0.04);
}

.built-card-grid h3 {
  max-width: 260px;
  margin-bottom: 14px;
  font-size: var(--text-card-title);
}

.built-card-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 180px;
  min-height: 32px;
  margin-top: auto;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.card-link span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  place-items: center;
  border-radius: 999px;
  background: var(--t3-green);
  color: var(--ink);
  font-size: 10px;
  font-weight: inherit;
}

.card-link:hover {
  transform: translateY(-1px);
  border-color: var(--t3-green-line);
  background: var(--t3-green-soft);
  color: #000;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.07);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.services {
  padding-bottom: 104px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article,
.process-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 45px rgba(21, 28, 44, 0.05);
}

.service-icon {
  display: grid;
  min-width: 42px;
  width: fit-content;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--soft);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-grid p,
.process-grid p,
.case-content p,
.cta p {
  color: var(--muted);
}

.work {
  padding: 96px 0;
  background: #080a10;
  color: #fff;
}

.work-heading h2 {
  color: #fff;
}

.work-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.12rem;
}

.case-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 390px;
  margin: 22px auto;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.case-content h3 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.case-content p {
  max-width: 520px;
  font-size: 1.05rem;
}

.case-content a {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 900;
}

.case-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.case-stat-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 999px;
  background: rgba(255, 116, 23, 0.08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.dark-stat-row span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.lime-stat-row span {
  border-color: rgba(215, 255, 0, 0.32);
  background: rgba(215, 255, 0, 0.08);
  color: var(--lime);
}

.case-visual {
  position: relative;
  min-height: 260px;
  border-radius: 16px;
}

.case-t3 {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 24% 16%, rgba(215, 255, 0, 0.18), transparent 14rem),
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.08), transparent 19rem),
    linear-gradient(135deg, #141a2a, #05070b);
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
}

.t3-visual {
  display: grid;
  place-items: center;
}

.t3-visual img {
  width: min(330px, 78%);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 80px rgba(255, 255, 255, 0.12);
}

.t3-token-panel {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(215, 255, 0, 0.24);
  border-radius: 14px;
  background: rgba(5, 7, 11, 0.78);
  box-shadow: 0 0 38px rgba(215, 255, 0, 0.08);
  backdrop-filter: blur(16px);
}

.t3-token-panel span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.t3-token-panel strong {
  display: block;
  margin: 6px 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
}

.t3-token-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.35;
}

.mini-board {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  width: 210px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.mini-board::before {
  content: "THE ALPHA IS IN THE VISION";
  grid-column: 1 / -1;
  color: var(--lime);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.mini-board span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.case-poly {
  background:
    linear-gradient(90deg, rgba(215, 255, 0, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(215, 255, 0, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 34% 78%, rgba(255, 255, 255, 0.06), transparent 13rem),
    radial-gradient(circle at 78% 48%, rgba(215, 255, 0, 0.22), transparent 18rem),
    linear-gradient(135deg, #101507, #050604);
  background-size: 26px 26px, 26px 26px, auto, auto, auto;
}

.case-system {
  min-height: 280px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.1), transparent 16rem),
    linear-gradient(135deg, #111827, #07090f);
}

.case-chain {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 16rem),
    linear-gradient(135deg, #10131e, #06080d);
}

.case-audit {
  background:
    radial-gradient(circle at 75% 20%, rgba(0, 0, 0, 0.04), transparent 18rem),
    linear-gradient(135deg, #f7f7f4, #efeee9);
  color: var(--ink);
}

.case-audit .case-content p {
  color: #4e524d;
}

.case-audit .case-content a {
  color: var(--ink);
}

.case-token {
  background:
    radial-gradient(circle at 80% 18%, rgba(215, 255, 0, 0.14), transparent 16rem),
    linear-gradient(135deg, #101507, #050604);
}

.system-visual {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 22px 22px;
}

.system-visual span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-visual strong {
  max-width: 420px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.system-visual p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.audit-visual {
  position: relative;
  overflow: hidden;
  gap: 16px;
  border-color: rgba(10, 11, 16, 0.08);
  background: #fffdfa;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.08);
}

.audit-visual::after {
  display: none;
}

.audit-visual .audit-pill {
  justify-self: start;
  padding: 8px 14px;
  border: 1px solid #e2dfd8;
  border-radius: 999px;
  background: #fff;
  color: #4e524d;
  font-size: 14px;
}

.audit-visual strong {
  max-width: 460px;
  color: #101010;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
}

.audit-visual p {
  color: #4e524d;
  font-size: 1.05rem;
}

.audit-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.audit-list span {
  display: block;
  padding: 16px 18px;
  border: 1px solid #ebe8e1;
  border-radius: 16px;
  background: #fff;
  color: #151515;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.audit-list span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: #777873;
}

.audit-stat-row span {
  border-color: #e2dfd8;
  background: #fffdfa;
  color: #4e524d;
}

.poly-visual {
  min-height: 330px;
}

.poly-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(215, 255, 0, 0.34);
  border-radius: 8px;
  background: rgba(215, 255, 0, 0.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.poly-main-shot,
.poly-map-shot {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 0, 0.2);
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.poly-main-shot {
  right: 18px;
  bottom: 18px;
  width: 82%;
  height: 255px;
  filter: saturate(1.08) contrast(1.04);
}

.poly-map-shot {
  left: 8px;
  top: 48px;
  z-index: 2;
  width: 42%;
  height: 145px;
  transform: rotate(-5deg);
  filter: saturate(1.12);
}

.poly-skull-badge {
  position: absolute;
  right: 2px;
  top: 0;
  z-index: 3;
  width: 96px;
  filter: drop-shadow(0 0 28px rgba(215, 255, 0, 0.72));
}

.poly-tags {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.poly-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(215, 255, 0, 0.38);
  border-radius: 999px;
  background: rgba(5, 6, 4, 0.76);
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-qc {
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 116, 23, 0.16), transparent 16rem),
    linear-gradient(90deg, rgba(10, 11, 16, 0.028) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10, 11, 16, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #ffffff, #f4f7fb);
  background-size: auto, 24px 24px, 24px 24px, auto;
  color: var(--ink);
}

.case-qc .case-content p {
  color: #535a6b;
}

.case-qc .case-content a {
  color: var(--ink);
}

.qc-visual {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 116, 23, 0.1), transparent 10rem),
    #fff;
  box-shadow: var(--shadow);
}

.qc-logo-panel {
  display: grid;
  min-height: 170px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96), rgba(246, 248, 252, 0.72) 58%, rgba(246, 248, 252, 0) 78%),
    #f6f8fc;
  mask-image: radial-gradient(ellipse at center, #000 56%, rgba(0, 0, 0, 0.65) 72%, transparent 100%);
}

.qc-logo-panel img {
  width: min(330px, 72%);
}

.qc-screens {
  position: relative;
  min-height: 230px;
}

.qc-screens img {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 18px 55px rgba(21, 28, 44, 0.12);
}

.qc-screens img:nth-child(1) {
  left: 0;
  top: 18px;
  width: 58%;
  height: 150px;
}

.qc-screens img:nth-child(2) {
  right: 0;
  top: 0;
  width: 58%;
  height: 170px;
}

.qc-screens img:nth-child(3) {
  left: 18%;
  bottom: 0;
  z-index: 2;
  width: 64%;
  height: 120px;
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  padding: 16px;
}

.quote-panel strong:nth-of-type(2) {
  color: var(--orange);
}

.qc-speed-ribbon {
  justify-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #10131e, #2d3343);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.qc-workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.qc-workflow span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #10131e;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.process {
  padding: 104px 0;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: start;
  padding: 104px 0 0;
}

.ai-section h2 {
  margin-bottom: 0;
}

.ai-copy {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 10%, rgba(17, 19, 24, 0.05), transparent 12rem),
    #fff;
  box-shadow: var(--shadow);
}

.ai-copy p {
  margin: 0;
  color: #3e4352;
  font-size: 1.05rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid article span {
  display: block;
  margin-bottom: 38px;
  color: var(--blue);
  font-weight: 900;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 34px;
  padding: 42px;
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 20%, rgba(17, 19, 24, 0.06), transparent 24rem),
    radial-gradient(circle at 82% 30%, rgba(215, 255, 0, 0.08), transparent 17rem),
    #fff;
  box-shadow: var(--shadow);
}

.cta h2 {
  margin-bottom: var(--space-heading-body);
  font-size: var(--text-section-title);
  line-height: 1;
}

.cta p {
  margin-bottom: 0;
  font-size: var(--text-body);
  line-height: 1.65;
}

.testimonials-section {
  margin-bottom: 104px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 14%, rgba(215, 255, 0, 0.045), transparent 11rem),
    rgba(255, 255, 255, 0.94);
  box-shadow: var(--surface-shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: var(--t3-green-line);
  box-shadow: 0 14px 34px rgba(24, 31, 51, 0.07);
}

.testimonial-stars {
  color: #f5a623;
  font-size: var(--text-base);
  letter-spacing: 2px;
}

.testimonial-quote {
  flex: 1;
  margin: 0;
  color: #3e4352;
  font-size: var(--text-base);
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.testimonial-avatar {
  display: flex;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #050608, #242832);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.testimonial-author strong {
  display: block;
  color: var(--ink);
  font-size: var(--text-sm);
}

.testimonial-author span {
  display: block;
  color: var(--muted);
  font-size: var(--text-xs);
}

.send-message-section {
  margin-bottom: 34px;
}

.send-message-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
  padding: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 12%, rgba(215, 255, 0, 0.05), transparent 20rem),
    #fff;
  box-shadow: var(--shadow);
}

.send-message-heading {
  margin-bottom: var(--space-heading-body);
  font-size: var(--text-section-title);
  line-height: 1;
}

.send-message-body {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.7;
}

.send-message-perks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.send-message-perks li {
  color: #4a5063;
  font-size: var(--text-sm);
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row label {
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
}

.form-row .req {
  color: #e03e3e;
}

.form-row .opt {
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 400;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  background: #fafbfd;
  color: var(--ink);
  font-family: inherit;
  font-size: var(--text-base);
  line-height: 1.5;
  resize: vertical;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--t3-green-line);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(215, 255, 0, 0.14);
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-consent-row {
  margin-bottom: 4px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.5;
}

.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--t3-green);
  cursor: pointer;
}

.form-consent span {
  user-select: none;
}

.form-consent a {
  color: var(--ink);
  text-decoration: underline;
}

.form-submit {
  align-self: flex-start;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: #9aa0af;
  font-size: var(--text-xs);
}

.form-privacy {
  max-width: 620px;
  margin: 0;
  color: #6f7584;
  font-size: var(--text-xs);
  line-height: 1.55;
}

.form-privacy a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success[hidden] {
  display: none !important;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 32px;
  border: 1px solid rgba(215, 255, 0, 0.4);
  border-radius: 12px;
  background: rgba(215, 255, 0, 0.08);
  text-align: center;
}

.form-success-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--t3-green);
  color: #111318;
  font-size: 1.2rem;
  font-weight: 900;
}

.form-success strong {
  color: var(--ink);
  font-size: var(--text-body);
}

.form-success p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
}

.call-strip {
  margin-bottom: 34px;
}

.call-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 48px 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 20%, rgba(215, 255, 0, 0.06), transparent 20rem),
    radial-gradient(circle at 88% 70%, rgba(17, 19, 24, 0.04), transparent 18rem),
    #fff;
  box-shadow: var(--shadow);
}

.call-strip-copy {
  max-width: 720px;
}

.call-strip-heading {
  margin-bottom: var(--space-heading-body);
  font-size: var(--text-section-title);
  line-height: 1;
}

.call-strip-body {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.65;
}

.call-strip-btn {
  min-width: 200px;
}

.site-footer {
  display: grid;
  gap: 8px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: #6f7584;
  font-size: var(--text-sm);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .nav-toggle span + span {
    margin-top: 0;
  }

  body.nav-open .site-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav a {
    padding: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 58px;
  }

  .product-stage {
    min-height: 580px;
  }

  .service-grid,
  .built-card-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-band {
    grid-template-columns: 1fr;
  }

  .intro-strip,
  .ai-section,
  .send-message-inner,
  .cta {
    grid-template-columns: 1fr;
  }

  .send-message-inner {
    padding: 32px 28px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .case-band,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4rem);
    line-height: 0.95;
  }

  .hero {
    padding-top: 44px;
    gap: 24px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-stage {
    position: relative;
    display: block;
    min-height: 370px;
    overflow: hidden;
  }

  .hero-laptop-device,
  .hero-tablet-device,
  .hero-tablet,
  .hero-phone,
  .hero-logo-float,
  .game-card,
  .qc-card,
  .skull-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0 0 16px;
    transform: none;
  }

  .hero-product {
    position: absolute;
    inset: auto;
    max-width: none;
    margin: 0;
    filter: drop-shadow(0 18px 42px rgba(20, 28, 45, 0.14));
  }

  .hero-product-qc {
    top: 104px;
    left: -12%;
    z-index: 3;
    width: 112%;
  }

  .hero-product-audit {
    top: 188px;
    right: -4%;
    z-index: 5;
    width: 58%;
  }

  .hero-product-game {
    top: 22px;
    right: -16%;
    z-index: 1;
    width: 88%;
  }

  .hero-logo-float {
    max-width: 180px;
    aspect-ratio: 1;
  }

  .tablet-chrome {
    grid-template-columns: 44px 1fr;
  }

  .hero-phone {
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-laptop-device,
  .hero-tablet-device {
    max-width: 100%;
  }

  .service-grid,
  .built-card-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .send-message-inner {
    padding: 24px 18px;
  }

  .call-strip-inner {
    padding: 32px 24px;
  }

  .case-band {
    min-height: 0;
    padding: 28px;
  }

  .case-content h3 {
    font-size: 2.5rem;
  }

  .poly-main-shot,
  .poly-map-shot,
  .poly-skull-badge {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    transform: none;
  }

  .poly-skull-badge {
    width: 110px;
  }

  .poly-tags {
    position: relative;
    inset: auto;
  }

  .qc-screens {
    display: grid;
    gap: 10px;
    min-height: 0;
  }

  .qc-screens img {
    position: relative;
    inset: auto;
    width: 100% !important;
    height: auto !important;
  }

  .site-footer {
    flex-direction: column;
  }
}
