:root {
  --ink: #0a2647;
  --navy: #143a66;
  --navy-2: #1c4e86;
  --line: #2c5c94;
  --blue: #2a66d6;
  --azure: #5b8def;
  --blue-deep: #16336b;
  --gold: #c9a24b;
  --gold-bright: #f0d793;
  --gold-cream: #fcefc4;
  --gold-deep: #9a7637;
  --white: #ffffff;
  --mist: #dce4f0;
  --slate: #8fa0bc;
  --paper: #f5f8fd;
  --muted: #b9c9de;
  --soft: #8fa6c4;
  --gold-grad: linear-gradient(
    180deg,
    #fcefc4 0%,
    #e8c878 28%,
    #c9a24b 52%,
    #a87e33 78%,
    #e2c06a 100%
  );
  --gold-btn: linear-gradient(
    180deg,
    #fcefc4 0%,
    #e8c878 35%,
    #c9a24b 55%,
    #a87e33 100%
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Hanken Grotesk", sans-serif;
  background: var(--ink);
  color: var(--mist);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.disp {
  font-family: "Archivo", sans-serif;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.08;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}
.eyb {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 26px;
  border-radius: 9px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.btn-gold {
  background: var(--gold-btn);
  color: var(--ink);
  box-shadow: 0 6px 22px rgba(201, 162, 75, 0.28);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 162, 75, 0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--azure);
  color: var(--azure);
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 20, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.wm {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.wm-1 {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}
.wm-2 {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 3px;
}
.nav-cta {
  padding: 11px 20px;
  font-size: 14px;
}

.sec {
  padding: 90px 0;
}
.sec-sm {
  padding: 64px 0;
}
.sec-head {
  max-width: 720px;
  margin-bottom: 50px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head .eyb {
  color: var(--azure);
  margin-bottom: 16px;
  display: block;
}
.sec-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 18px;
}
.sec-head p {
  font-size: 17px;
  color: var(--mist);
}

.hero {
  padding: 88px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  height: 960px;
  background: radial-gradient(
    circle,
    rgba(42, 102, 214, 0.22),
    transparent 62%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.16);
  pointer-events: none;
  animation: spin 70s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-in {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42, 102, 214, 0.12);
  border: 1px solid rgba(91, 141, 239, 0.35);
  color: var(--azure);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 26px;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--mist);
  max-width: 640px;
  margin-bottom: 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.stamp {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 16px;
  color: var(--slate);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.stamp span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stamp .tk {
  color: var(--gold);
}

.grid {
  display: grid;
  gap: 20px;
}
.g2 {
  grid-template-columns: repeat(2, 1fr);
}
.g3 {
  grid-template-columns: repeat(3, 1fr);
}
.g4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 141, 239, 0.5);
}
.card .ic {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(42, 102, 214, 0.16);
  border: 1px solid rgba(91, 141, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azure);
  font-family: "Archivo";
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}
.card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}

.quote-band {
  padding: 70px 0;
}
.bigq {
  font-family: "Archivo";
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 38px);
  color: var(--white);
  line-height: 1.25;
  max-width: 900px;
  letter-spacing: -0.5px;
}
.bigq .gold {
  display: inline;
}
.qattr {
  margin-top: 20px;
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.trap {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
}
.trap h3 {
  font-family: "Archivo";
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.trap p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
}
.trap.guess ul {
  list-style: none;
  margin-top: 6px;
}
.trap.guess li {
  font-size: 15px;
  color: var(--slate);
  padding: 4px 0 4px 18px;
  position: relative;
}
.trap.guess li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--azure);
}

.posgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}
.pos {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.pos .pn {
  font-family: "Archivo";
  font-weight: 900;
  font-size: 16px;
  color: var(--gold);
}
.pos h4 {
  font-size: 16px;
  color: var(--white);
  margin: 8px 0 8px;
  font-weight: 700;
}
.pos p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
.statband {
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 36px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.statband .big {
  font-family: "Archivo";
  font-weight: 900;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.9;
  flex-shrink: 0;
}
.statband p {
  font-size: 16px;
  color: var(--mist);
  max-width: 560px;
  line-height: 1.55;
}

.tcols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tcol {
  border-radius: 18px;
  padding: 32px 30px;
  border: 1px solid var(--line);
}
.tcol.start {
  background: rgba(120, 40, 40, 0.1);
  border-color: rgba(180, 80, 80, 0.3);
}
.tcol.finish {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  border-color: rgba(201, 162, 75, 0.35);
}
.tcol .lab {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tcol.start .lab {
  color: #e08a8a;
}
.tcol.finish .lab {
  color: var(--gold);
}
.tcol ul {
  list-style: none;
}
.tcol li {
  font-size: 16px;
  padding: 9px 0 9px 30px;
  position: relative;
  color: var(--mist);
}
.tcol.start li {
  color: var(--slate);
}
.tcol li::before {
  position: absolute;
  left: 0;
  top: 9px;
  font-family: "Archivo";
  font-weight: 800;
  font-size: 16px;
}
.tcol.start li::before {
  content: "✕";
  color: #c96b6b;
}
.tcol.finish li::before {
  content: "✓";
  color: var(--gold);
}

.vbox {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}
.vframe {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  background: #0e3056;
  position: relative;
  border: 1px solid var(--line);
}
.vframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vq {
  font-family: "Archivo";
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.vn {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.vr {
  font-size: 14px;
  color: var(--gold);
  margin-top: 3px;
}

.factory {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--ink), #0e3056 45%, var(--ink));
}
.factory .kicker {
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
  font-size: 13px;
}
.factory h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 20px;
}
.factory .sub {
  max-width: 760px;
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sub-1 {
  color: var(--mist);
  line-height: 1.75;
  margin-bottom: 24px;
  text-align: center;
}
.cathead {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  flex-wrap: wrap;
}
.cathead h3 {
  font-size: 20px;
  color: var(--white);
  margin: 0;
}
.catcount {
  margin-left: auto;
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.flaggrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.flag {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 20px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.flag .ready {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-btn);
  color: var(--ink);
  font-family: "Archivo";
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 2px 9px;
  border-radius: 999px;
  white-space: nowrap;
  width: fit-content;
}
.ready {
  margin-bottom: 12px;
}
.flag h3 {
  font-size: 0.98rem;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
  margin-bottom: 8px;
}
.flag h3 i {
  font-style: normal;
  color: var(--gold);
}
.flag p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0 0 12px 0;
}
.chiplabel {
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 42px 0 16px;
  display: inline-block;
  font-size: 13px;
}
.glance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
  margin-top: 20px;
}
.gcard {
  display: flex;
  gap: 16px;
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  border: 1px solid rgba(201, 162, 75, 0.3);
  border-top: 4px solid var(--gold);
  border-radius: 10px;
  padding: 22px 20px;
  align-items: flex-start;
}
.gcard .gnum {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
}
.gcard h3 {
  font-size: 0.98rem;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.3;
}
.gcard p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}
.proofstrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.proofstrip .check {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  border: 1px solid rgba(201, 162, 75, 0.2);
  border-left: 4px solid var(--gold);
  border-radius: 16px;
  color: var(--mist);
  padding: 20px 18px;
  font-size: 15px;
  line-height: 1.6;
}
.proofstrip .check span {
  color: var(--gold);
  margin-right: 10px;
}
.proofsec {
  background: var(--navy);
  padding: 90px 0;
}
.proofsec .kicker {
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: inline-block;
  font-size: 13px;
}
.proofsec h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 30px;
}
.proofcards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.pcard {
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 20px;
  padding: 28px 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pcard .layer {
  font-family: "Archivo";
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
}
.pcard h3 {
  font-size: clamp(26px, 3vw, 32px);
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}
.pcard p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.pcard p b {
  color: var(--gold);
}
.proofnote {
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  text-align: center;
  font-style: italic;
}
.vertline {
  margin-top: 24px;
  padding: 18px 24px;
  background: var(--gold);
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font-family: "Archivo";
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  font-size: 18px;
  font-style: italic;
}
.agentgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.agent {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--mist);
  display: flex;
  align-items: center;
  gap: 9px;
}
.agent::before {
  content: "✓";
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.agentmore {
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--gold);
  font-weight: 600;
  justify-content: center;
}
.agentmore::before {
  display: none;
}

.matband {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}
.step {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
}
.step .sn {
  font-family: "Archivo";
  font-weight: 900;
  font-size: 30px;
  color: rgba(91, 141, 239, 0.35);
  line-height: 1;
}
.step h4 {
  font-size: 16px;
  color: var(--white);
  margin: 10px 0 6px;
}
.step .sk {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}
.step.g .sn {
  color: rgba(201, 162, 75, 0.4);
}

.wgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.wrow {
  display: flex;
  gap: 14px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}
.wrow .wi {
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 900;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.wrow b {
  font-family: "Archivo";
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}
.wrow span.t {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.split.rev .ph-wrap {
  order: -1;
}
.ph-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-wrap.noimg::after {
  content: "Event photo";
  color: var(--slate);
  font-size: 14px;
  letter-spacing: 1px;
}
.split h3 {
  font-family: "Archivo";
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.split p {
  font-size: 16px;
  color: var(--mist);
  line-height: 1.65;
  margin-bottom: 14px;
}
.split .tag {
  display: inline-block;
  font-family: "Archivo";
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.proof {
  background: linear-gradient(180deg, var(--ink), #0e3056 60%, var(--ink));
}
.pgallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 34px 0;
}
.pgallery .ph-wrap {
  min-height: 280px;
}
.pquotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.pq {
  background: var(--navy);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  padding: 26px 28px;
}
.pq p {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 12px;
}
.pq .a {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}
.founder {
  font-size: 16px;
  color: var(--mist);
  font-style: italic;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.founder b {
  color: var(--white);
  font-style: normal;
  font-family: "Archivo";
  font-weight: 700;
  display: block;
  margin-top: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.member {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.ephoto {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  border: 1px solid var(--line);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ephoto span {
  position: absolute;
  color: var(--slate);
  font-size: 13px;
  letter-spacing: 1px;
}
.ephoto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.member .mn {
  font-family: "Archivo";
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
}
.member .mr {
  font-size: 13px;
  color: var(--gold);
  margin: 4px 0 9px;
  font-weight: 600;
}
.member .md {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
.founderblock {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, var(--navy), var(--ink));
  padding: 42px 38px;
}
.founderblock p {
  font-size: 18px;
  color: var(--mist);
  line-height: 1.6;
  margin-bottom: 16px;
}
.founderblock .fhi {
  font-family: "Archivo";
  font-weight: 700;
  color: var(--white);
  font-size: 21px;
}
.founderblock .fattr {
  margin-top: 18px;
  font-size: 15px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.final {
  padding: 104px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 820px;
  height: 820px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 75, 0.12),
    transparent 60%
  );
  pointer-events: none;
}
.final-in {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.final h2 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.final p {
  font-size: 18px;
  color: var(--mist);
  margin-bottom: 14px;
}
.cohorts {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 34px 0;
}
.cohort {
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 30px;
  min-width: 250px;
}
.cohort .ct {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.cohort .cd {
  font-size: 15px;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 600;
}
.cohort.wait {
  border-style: dashed;
}
.cohort.wait .cd {
  color: var(--slate);
}
.timenote {
  font-size: 15px;
  color: var(--slate);
  margin: 28px auto 0;
  max-width: 600px;
}
.bigstamp {
  font-family: "Archivo";
  font-weight: 900;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: 1px;
  margin-top: 36px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 46px 0;
  background: var(--ink);
}
.foot-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.foot-tag {
  font-size: 15px;
  color: var(--slate);
}
.foot-tag b {
  color: var(--gold);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.fade {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
  transform: translateY(20px);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
.d1 {
  animation-delay: 0.1s;
}
.d2 {
  animation-delay: 0.25s;
}
.d3 {
  animation-delay: 0.4s;
}
.d4 {
  animation-delay: 0.55s;
}
.d5 {
  animation-delay: 0.7s;
}

.shiftrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--navy);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: clamp(15px, 2vw, 18px);
}
.shiftrow .from {
  color: var(--slate);
}
.shiftrow .ar {
  color: var(--gold);
  font-family: "Archivo";
  font-weight: 800;
  flex-shrink: 0;
}
.shiftrow .to {
  color: var(--white);
  font-family: "Archivo";
  font-weight: 700;
  text-align: right;
}
.shiftrow.final {
  border-color: rgba(201, 162, 75, 0.4);
  background: linear-gradient(160deg, var(--navy-2), var(--navy));
}
.shiftrow.final .to {
  color: var(--gold);
}

@media (max-width: 900px) {
  .g2,
  .g3,
  .g4,
  .tcols,
  .posgrid,
  .steps,
  .wgrid,
  .team-grid,
  .flaggrid,
  .glance,
  .proofstrip,
  .split,
  .pgallery,
  .pquotes,
  .proofcards {
    grid-template-columns: 1fr;
  }
  .posgrid,
  .agentgrid {
    grid-template-columns: 1fr 1fr;
  }
  .vbox {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .vframe {
    max-width: 300px;
    margin: 0 auto;
  }
  .split.rev .ph-wrap {
    order: 0;
  }
  .nav-cta {
    display: none;
  }
  .hero::after {
    display: none;
  }
  .statband .big {
    font-size: 60px;
  }
  .hero {
    padding: 40px 0 80px;
  }
}

.maip-faq {
  background: var(--navy, #143a66);
  padding: 90px 0;
  font-family: "Hanken Grotesk", sans-serif;
}
.maip-faq .fwrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}
.maip-faq .fhead {
  text-align: center;
  margin-bottom: 46px;
}
.maip-faq .feyb {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--azure, #5b8def);
  display: block;
  margin-bottom: 14px;
}
.maip-faq .fhead h2 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin: 0;
}
.maip-faq .fhead h2 span {
  background: linear-gradient(180deg, #fcefc4, #c9a24b 55%, #a87e33);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c9a24b;
}
.maip-faq details {
  background: var(--ink, #0a2647);
  border: 1px solid var(--line, #2c5c94);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.maip-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 26px;
  position: relative;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  color: #fff;
  line-height: 1.35;
}
.maip-faq summary::-webkit-details-marker {
  display: none;
}
.maip-faq summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #c9a24b;
}
.maip-faq details[open] summary::after {
  content: "\2212";
}
.maip-faq details[open] summary {
  border-bottom: 1px solid var(--line, #2c5c94);
}
.maip-faq .fbody {
  padding: 18px 26px 26px;
  color: var(--mist, #dce4f0);
  font-size: 16px;
  line-height: 1.65;
}
.maip-faq .fbody p {
  margin: 0 0 12px;
}
.maip-faq .fbody p:last-child {
  margin: 0;
}
.maip-faq .fbody b {
  color: #fff;
}
.maip-faq .fbody ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.maip-faq .fbody li {
  margin: 7px 0;
  color: var(--slate, #8fa0bc);
}
.maip-faq .fbody .note {
  font-size: 14px;
  color: var(--slate, #8fa0bc);
  border-left: 3px solid #c9a24b;
  padding-left: 14px;
  margin-top: 16px;
}
.maip-faq .fcta {
  text-align: center;
  margin-top: 34px;
  font-size: 16px;
  color: var(--mist, #dce4f0);
}
.maip-faq .fcta a {
  color: #c9a24b;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 75, 0.5);
}
