:root {
  /* Primary CTA (Kelly green + black text — Figma) */
  --bp-kelly: #09f0a1;
  --bp-kelly-hover: #0dd38e;
  --bp-kelly-border: rgba(8, 56, 8, 0.55);
  --bp-kelly-text: #0b0e0d;
  --bp-kelly-glow: rgba(76, 187, 23, 0.45);

  /* DARK MODE BASE */
  --bg: #060b1a;
  --card: rgba(255, 255, 255, 0.04);
  --cbdr: rgba(120, 210, 255, 0.12);

  --tx: #f4f9ff;
  --tx2: rgba(225, 240, 255, 0.72);
  --tx3: rgba(225, 240, 255, 0.45);

  --ac: #19f6d2;

  --glow: rgba(25, 246, 210, 0.08);
  --glM: rgba(25, 246, 210, 0.16);
  --glL: rgba(25, 246, 210, 0.28);

  --bdr: rgba(160, 200, 255, 0.14);
  --bdA: rgba(25, 246, 210, 0.28);

  --nav: rgba(6, 12, 28, 0.82);

  --btnBg: #19f6d2;
  --btnTx: #06101a;

  --b2Tx: #f4f9ff;
  --b2Bdr: rgba(255, 255, 255, 0.28);

  --div: rgba(255, 255, 255, 0.06);

  --heroO: 0.22;
  --partO: 0.45;
  --expO: 0.4;

  --modBg: rgba(7, 12, 26, 0.96);

  /* Converted Variables (RESTORED so light mode stays unchanged) */
  --color-2d2d2d: #2d2d2d;
  --color-ffffff: #ffffff;
  --color-7762ce: #7762ce;
  --color-0e0d2f: #05f7a3;
  --color-000000: #000000;
  --color-0a0f2c: #0a0f2c;
  --color-1a2a6c: #1a2a6c;
  --color-aab0c0: #aab0c0;
  --rgba-white-1a: rgba(255, 255, 255, 0.1);
  --rgba-white-33: rgba(255, 255, 255, 0.2);
  --rgba-black-20: rgba(0, 0, 0, 0.2);
  --rgba-black-60: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] {
  --bg: #e2f5ee;
  --card: #ffffff1a;
  --cbdr: rgba(0, 80, 50, 0.1);
  --tx: #0a1f1a;
  --tx2: #3a5a4e;
  --tx3: #6a8a7e;
  --ac: #05c77e;
  --glow: rgba(5, 199, 126, 0.1);
  --glM: rgba(5, 199, 126, 0.16);
  --glL: rgba(5, 199, 126, 0.25);
  --bdr: rgba(0, 80, 50, 0.1);
  --bdA: rgba(5, 199, 126, 0.25);
  --nav: rgba(226, 245, 238, 0.97);
  --btnBg: #05c77e;
  --btnTx: #0a1f1a;
  --b2Tx: #0a1f1a;
  --b2Bdr: rgba(0, 80, 50, 0.25);
  --div: rgba(0, 80, 50, 0.06);
  --heroO: 0;
  --partO: 0.35;
  --expO: 0.35;
  --modBg: rgba(220, 245, 235, 0.97);
}

/* ==========================================================
   DARK MODE COLOR OVERRIDES (MATCH SIT DESIGN)
   ========================================================== */
[data-theme="dark"] {
  --bg: #050714;

  --card: rgba(255, 255, 255, 0.035);
  --cbdr: rgba(160, 190, 230, 0.14);

  --tx: #f2f7ff;
  --tx2: rgba(210, 225, 245, 0.72);
  --tx3: rgba(210, 225, 245, 0.45);

  /* SIT teal accent */
  --ac: #1ee6c2;

  --glow: rgba(30, 230, 194, 0.06);
  --glM: rgba(30, 230, 194, 0.14);
  --glL: rgba(30, 230, 194, 0.22);

  --bdr: rgba(180, 200, 235, 0.14);
  --bdA: rgba(30, 230, 194, 0.26);

  --nav: rgba(8, 12, 30, 0.75);

  --btnBg: #05f7a3;
  --btnTx: #06101c;

  --b2Tx: #f2f7ff;
  --b2Bdr: rgba(255, 255, 255, 0.28);

  --div: rgba(255, 255, 255, 0.06);

  --heroO: 0.22;
  --partO: 0.45;
  --expO: 0.4;

  --modBg: rgba(6, 10, 22, 0.96);

  /* Converted Variables (important because your UI uses them heavily) */
  --color-2d2d2d: #f2f7ff;
  --color-ffffff: #ffffff;

  --color-7762ce: rgba(30, 230, 194, 0.55);

  --color-0e0d2f: rgba(12, 18, 45, 0.85);
  --color-000000: rgba(210, 225, 245, 0.72);

  --color-0a0f2c: #050714;
  --color-1a2a6c: rgba(120, 170, 255, 0.2);

  --color-aab0c0: rgba(210, 225, 245, 0.55);

  --rgba-white-1a: rgba(255, 255, 255, 0.06);
  --rgba-white-33: rgba(255, 255, 255, 0.1);

  --rgba-black-20: rgba(0, 0, 0, 0.4);
  --rgba-black-60: rgba(0, 0, 0, 0.72);
}

/* Nav glass like screenshot */
[data-theme="dark"] .nav {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(160, 190, 230, 0.14);
  backdrop-filter: blur(18px);
}

[data-theme="dark"] .wis .pbg {
  position: absolute;
  top: 50%;
  left: 62%; /* push to right like in image */

  width: 250px;
  height: 250px;
  background-image: url("/assets/img/location.svg");
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: 0%;
  background-size: contain;

  opacity: 1;
  pointer-events: none;

  border-radius: 0;

  /* 🔥 smooth fade blending */
  mask-image: none;
  -webkit-mask-image: none;
}
/* Primary button like screenshot */
[data-theme="dark"] .btn {
  background: rgba(12, 18, 45, 0.85);
  border: 1px solid rgba(30, 230, 194, 0.45);
  color: #f2f7ff;
}

[data-theme="dark"] .bp {
  background: var(--bp-kelly);
  border: 1px solid var(--bp-kelly-border);
  color: var(--bp-kelly-text);
  box-shadow: 0 2px 14px var(--bp-kelly-glow);
}

[data-theme="dark"] .bp:hover {
  background: var(--bp-kelly-hover);
  border-color: rgba(8, 56, 8, 0.65);
  box-shadow: 0 4px 22px var(--bp-kelly-glow);
}

/* Secondary button (white outline style like screenshot) */
[data-theme="dark"] .bs {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(240, 248, 255, 0.9);
}

[data-theme="dark"] .bs:hover {
  background: rgba(255, 255, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

section[id] {
  scroll-margin-top: 88px;
}

section#hero {
  scroll-margin-top: 0;
}

.color {
  color: var(--color-2d2d2d);
  font-weight: 700;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--tx);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--bg);
  transition: color 0.4s;
}

[data-theme="dark"] body {
  background-image: url("/assets/img/bg-dark.jpg");
  background-size: 100% 100%;
  background-repeat: repeat-y;
  background-position: top center;
}

[data-theme="light"] body {
  background-image: url("/assets/img/bg-light.jpg");
  background-size: 100% 100%;
  background-repeat: repeat-y;
  background-position: top center;
}

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.25rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h4 {
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

p {
  font-size: clamp(0.9375rem, 1.05vw, 1.125rem);
  font-weight: 400;
  color: var(--tx2);
  line-height: 1.75;
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(2rem, 7vw, 2.25rem);
  }

  p {
    font-size: clamp(0.9375rem, 2.8vw, 1rem);
  }
}

.hl {
  color: var(--ac);
}

.ctn {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.sec {
  padding: 70px 0;
}

.dvd {
  height: 1px;
  background: var(--div);
  max-width: 1140px;
  margin: 0 auto;
}

a[data-tally-placeholder] {
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  padding: 10px 20px;
  color: var(--color-ffffff);
  font-weight: 600;
  border-radius: 12px;
  background: var(--color-0e0d2f);
}

[data-theme="light"] .btn {
  color: #0a1f1a;
}

[data-theme="light"] .bp {
  background: var(--bp-kelly);
  border: 1px solid var(--bp-kelly-border);
  color: var(--bp-kelly-text);
}

[data-theme="light"] .bp:hover {
  background: var(--bp-kelly-hover);
  border-color: rgba(8, 56, 8, 0.65);
  box-shadow: 0 4px 22px var(--bp-kelly-glow);
}

.btn2 {
  width: 20%;
}

.bp:hover {
  box-shadow: 0 4px 22px var(--bp-kelly-glow);
  transform: translateY(-2px);
}

.bs {
  background: var(--color-ffffff);
  color: var(--color-2d2d2d);
  border: 1px solid var(--color-0e0d2f);
}

.bs:hover {
  background: var(--glow);
  transform: translateY(-2px);
}

.btn svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.bp svg path {
  stroke: currentColor;
}

.bs svg path {
  stroke: currentColor;
}

.bgrp {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4%;
}
.btn3 {
  justify-content: flex-start;
}
/* NAV */
.nav {
  background: var(--rgba-white-1a);
  padding: 1% 1%;
  top: 5%;
  width: 80%;
  transform: translateX(-50%);
  left: 50%;
  border-radius: 16px;
  position: fixed;
  right: 0;
  z-index: 1000;
  transition: background 0.4s;
}

[data-theme="light"] .nav {
  background: rgba(226, 245, 238, 0.97);
  border: 1px solid rgba(10, 31, 26, 0.14);
  backdrop-filter: blur(16px);
}

.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nl img {
  height: 40px;
  width: auto;
}

.nk {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nk a {
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  font-weight: 600;
  color: var(--color-2d2d2d);
  transition: color 0.3s;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.875rem, 0.95vw, 0.9375rem);
  font-weight: 500;
  color: var(--tx2);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-phone:hover {
  color: var(--ac);
}

.nav-phone svg {
  flex-shrink: 0;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .nav-phone {
    display: none;
  }
}

.mm-phone {
  display: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tx2);
  padding: 12px 0;
  border-bottom: 1px solid var(--bdr);
}

@media (max-width: 900px) {
  .mm-phone {
    display: block;
  }
}

.nk a:hover {
  color: var(--ac);
}

.nk a[aria-current="page"] {
  color: var(--ac);
}

.mm a[aria-current="page"] {
  color: var(--ac);
  border-bottom-color: var(--bdA);
}

.na {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tt {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--bdr);
  background: transparent;
  color: var(--tx2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.tt:hover {
  border-color: var(--ac);
  color: var(--ac);
}

[data-theme="light"] .tt {
  border-color: rgba(10, 31, 26, 0.35);
  color: #0a1f1a;
}

[data-theme="light"] .tt:hover {
  border-color: #0f274a;
  color: #0f274a;
  background: rgba(15, 39, 74, 0.12);
}

.nc {
  padding: 8px 20px;
}

.mt {
  display: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bdr);
  border-radius: 6px;
  background: transparent;
  color: var(--tx);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.mm {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
}

.mm.on {
  display: flex;
}

.mm a {
  display: block;
  padding: 15px 0;
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  font-weight: 600;
  color: var(--tx2);
  border-bottom: 1px solid var(--bdr);
  transition: color 0.3s;
}

@media (max-width: 900px) {
  .mm a {
    text-align: center;
  }
}

.mm a:hover {
  color: var(--ac);
}

.mm .btn {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 20px 80px;
  text-align: center;
  position: relative;
}

[data-theme="dark"] .hero {
  padding-top: 230px;
}

.hbg {
  position: absolute;
  inset: 0;
  background: url("assets/img/roadmap-bg.png") center 40%/720px no-repeat;
  opacity: var(--heroO);
  pointer-events: none;
  transition: opacity 0.5s;
}

.hc {
  max-width: 700px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.badge-heading {
  color: var(--color-2d2d2d);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin-bottom: 16px;
}

.hsub {
  margin-bottom: 10px;
  max-width: 760px;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  line-height: 1.65;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-000000);
}

.hnote {
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  color: var(--color-2d2d2d);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 32px;
}

/* ABOUT */
.abg {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.aimg img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 40px var(--rgba-black-20);
}

.atxt p {
  margin-bottom: 16px;
  font-size: clamp(0.9375rem, 1.05vw, 1.125rem);
}

.atxt h2 {
  margin-bottom: 18px;
  color: var(--color-2d2d2d);
}

.atag {
  font-weight: 700;
  margin-top: 24px;
  color: var(--color-2d2d2d);
  font-size: clamp(1rem, 1.1vw, 1.125rem) !important;
}

/* GROWTH */
.grw {
  text-align: center;
}

.grw .lbl {
  color: var(--ac);
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.95vw, 0.875rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

[data-theme="light"] .grw .lbl {
  color: #0f274a;
}

.grw h2 {
  margin-bottom: 12px;
  color: var(--color-2d2d2d);
  font-weight: 700;
}

.grw .dsc {
  max-width: 520px;
  margin: 0 auto 32px;
}

/* WHAT IS SIT */
.wis {
  position: relative;
  overflow: hidden;
}

.wis .pbg {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 400px;
  height: 400px;
  background-image: url("/assets/img/map.png");
  transform: translate(-50%, -50%);
  background-position: center;
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
  border-radius: 100%;
  mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 1) 40%,
    rgba(0, 0, 0, 0) 70%
  );
}

.wisg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.rv2 {
  grid-template-columns: 50% 20%;
  justify-content: space-between;
}

.rv2-1 {
  width: 100%;
}

.wisg h2 {
  margin-bottom: 16px;
  color: var(--color-2d2d2d);
}

.sdia {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sorb {
  border-radius: 15px;
  background: var(--rgba-white-33);
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-2d2d2d);
  font-weight: 900;
  font-size: 1.2rem;
  padding: 15px 20px;
}

.brs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

.br {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.blbl {
  border-radius: 15px;
  background: var(--rgba-white-33);
  min-width: 260px;
  border: 1px solid var(--bdA);
  color: var(--color-2d2d2d);
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px 20px;
}

.ad svg {
  width: 18px;
  height: 26px;
}

/* PATHWAYS */
.pth h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pc {
  background: var(--card);
  border: 1px solid var(--cbdr);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

.pc:hover {
  border-color: var(--bdA);
  box-shadow: 0 6px 36px var(--glow);
  transform: translateY(-3px);
}

.pc h3 {
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--color-2d2d2d);
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.pf {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-2d2d2d);
}

.pc ul {
  margin-bottom: 24px;
}

.pc li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--color-2d2d2d);
  font-size: clamp(0.9375rem, 1vw, 1rem);
  border-bottom: 1px solid var(--div);
}

.pc li:last-child {
  border-bottom: none;
}

.ck {
  flex-shrink: 0;
  margin-top: 3px;
}

/* PARTNERSHIPS */
.hpb {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hpbg {
  position: absolute;
  inset: 0;
  background: url("assets/img/image.png") center / cover no-repeat;
  pointer-events: none;
  transition: opacity 0.5s;
}

.hpb .ctn {
  position: relative;
  z-index: 1;
}

.hpb h2 {
  margin-bottom: 8px;
  color: var(--color-2d2d2d);
}

.hpb > .ctn > p {
  margin-bottom: 36px;
  color: var(--color-2d2d2d);
}

.vf {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.vs {
  background: var(--rgba-white-1a);
  border: 1px solid var(--rgba-white-33);
  border-radius: 15px;
  padding: 18px 40px;
  min-width: 300px;
  transition: all 0.3s;
}

.vs:hover {
  border-color: var(--bdA);
  box-shadow: 0 4px 24px var(--glow);
}

.vs h4 {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  color: var(--color-2d2d2d);
  font-weight: 700;
}

.va {
  padding: 6px 0;
}

.va svg {
  width: 18px;
  height: 26px;
}

.wis .ad svg path,
.hpb .va svg path {
  stroke: var(--bp-kelly) !important;
}

/* TERRITORY */
.ter h2 {
  text-align: center;
}

.tri {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.tc {
  background: var(--card);
  border: 1px solid var(--cbdr);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
}

.tc:hover {
  border-color: var(--bdA);
  box-shadow: 0 6px 36px var(--glow);
  transform: translateY(-3px);
}

.tc h4 {
  margin-bottom: 8px;
  color: var(--color-2d2d2d);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.6vw, 1.25rem);
}

.tc p {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: var(--color-2d2d2d);
  font-weight: 400;
}

/* EXPANDING */
.exp {
  position: relative;
  overflow: hidden;
}

.exbg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(5, 247, 163, 0.2) 0%,
      rgba(5, 247, 163, 0) 100%
    ),
    url("assets/img/Group 1618874161.png") center/cover no-repeat;
  pointer-events: none;
  transition: opacity 0.5s;
}

.exp .ctn {
  position: relative;
  z-index: 1;
}

.exp h2 {
  margin-bottom: 12px;
  color: var(--color-2d2d2d);
  font-weight: 600;
  /* text-align: center; */
  line-height: 1.2;
}

.exp p {
  max-width: 420px;
  margin-bottom: 32px;
  color: var(--color-2d2d2d);
  font-weight: 400;
}

/* FOOTER */
.ft {
  background: var(--color-0a0f2c);
  padding: 18px 40px;
  border-top: 2px solid var(--color-1a2a6c);
}

.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ft-left {
  display: flex;
  flex-direction: column;
}

.ft-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-ffffff);
}

.ft-sub {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-aab0c0);
}

.ft-sub .sep {
  margin: 0 6px;
}

.ft-right {
  text-align: right;
}

.ft-powered {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-aab0c0);
  margin-bottom: 4px;
}

.ft-phone {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-aab0c0);
  margin-top: 6px;
  font-weight: 500;
}

.ft-phone a {
  color: inherit;
  text-decoration: none;
}

.ft-phone a:hover {
  color: var(--color-ffffff);
}

.ft-links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

.ft-links a {
  font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
  color: var(--color-aab0c0);
  transition: color 0.3s;
}

.ft-links a:hover {
  color: var(--color-ffffff);
}

/* ===========================
   UPDATED CONTACT MODAL CSS
   =========================== */
/* ===========================
   CONTACT MODAL (FINAL FIX)
   =========================== */

.cm {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cm.on {
  display: flex;
}

/* MAIN CARD */
.contact-card {
  width: 100%;
  max-width: 800px;
  max-height: 90vh; /* ✅ always fits screen */
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);

  display: flex;
  flex-direction: column;
}

[data-theme="dark"] .contact-card {
  background: rgba(10, 14, 28, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* HEADER: toolbar only (headline lives in .contact-form on white panel) */
.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 14px 18px;
  flex-shrink: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 80, 50, 0.08);
}

[data-theme="dark"] .contact-header {
  background: rgba(7, 12, 26, 0.96);
  border-bottom-color: rgba(160, 190, 230, 0.12);
}

.contact-brand {
  position: relative;
  flex-shrink: 0;
}

.contact-brand img {
  height: 24px;
  width: auto;
  display: block;
}

.contact-close {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0, 80, 50, 0.18);
  background: rgba(5, 199, 126, 0.06);
  color: var(--tx);
  cursor: pointer;
  font-size: 1rem;
  visibility: visible;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

[data-theme="dark"] .contact-close {
  border-color: rgba(160, 190, 230, 0.22);
  background: rgba(255, 255, 255, 0.05);
  color: var(--tx);
}

.contact-close:hover {
  border-color: var(--ac);
  color: var(--ac);
  background: var(--glM);
}

/* Headline inside white content column */
.contact-modal-headline {
  font-size: clamp(1.05rem, 1.1vw + 0.85rem, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 22px;
  padding: 0;
  color: var(--tx);
  text-align: left;
  white-space: nowrap;
}

/* BODY */
.contact-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden; /* ✅ keeps card clean */
  padding: 2% 2% 2.5%;
  background-color: #ffffff;
  border-radius: 0;
}

[data-theme="dark"] .contact-body {
  background-color: rgba(7, 12, 26, 0.96);
}

/* FORM SIDE */
.contact-form {
  padding: 28px 28px 32px;
  overflow-y: auto; /* ✅ scroll INSIDE */
  /* background: rgba(255, 255, 255, 0.02); */
}

/* hide scrollbar but still scroll */
.contact-form::-webkit-scrollbar {
  width: 10px;
}

.contact-form::-webkit-scrollbar-track {
  background: rgba(120, 120, 120, 0.16);
  border-radius: 10px;
}

.contact-form::-webkit-scrollbar-thumb {
  background: rgba(16, 28, 52, 0.55);
  border-radius: 10px;
}

[data-theme="dark"] .contact-form::-webkit-scrollbar-thumb {
  background: rgba(190, 225, 255, 0.42);
}

.contact-scroll-hint {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--tx2);
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-route-intro {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(10, 31, 26, 0.88);
  margin: 0 0 36px;
}

[data-theme="dark"] .contact-route-intro {
  color: rgba(237, 243, 255, 0.92);
}

.contact-route-list {
  display: grid;
  gap: 18px;
  max-width: 430px;
  margin: 0 auto;
  width: 100%;
}

/* Match primary CTA (.btn.bp) — kelly green, black text, arrow — see index hero */
.contact-route-list .contact-route-link.btn {
  width: 100%;
  max-width: 100%;
  justify-content: center;
  box-sizing: border-box;
  text-decoration: none;
  text-align: center;
  padding: 14px 24px;
  font-size: clamp(0.9375rem, 0.95vw, 1rem);
  font-weight: 600;
  white-space: normal;
}

.contact-route-title {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.35;
}

.contact-route-list .contact-route-link.btn:focus-visible {
  outline: 2px solid var(--bp-kelly-border);
  outline-offset: 3px;
}

[data-theme="dark"] .contact-route-list .contact-route-link.btn:focus-visible {
  outline-color: rgba(255, 255, 255, 0.85);
}

.contact-route-path {
  display: block;
  margin-top: 4px;
  color: var(--tx2);
  font-size: 0.85rem;
}

.contact-tally-placeholder {
  padding: 40px 20px;
  text-align: center;
}

.contact-tally-placeholder .tally-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--tx);
  margin-bottom: 12px;
}

.contact-tally-placeholder .tally-note,
.contact-tally-placeholder .tally-call {
  font-size: 0.875rem;
  color: var(--tx2);
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-tally-placeholder .tally-call {
  margin-bottom: 0;
}

.contact-tally-placeholder .tally-call strong {
  color: var(--tx);
  font-weight: 700;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
}

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

.fi.full {
  grid-column: span 2;
}

.fi label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-2d2d2d);
  font-weight: 500;
}

.fi input {
  border: none;
  outline: none;
  background: transparent;
  padding: 4px 2px;
  font-size: 0.85rem;
  color: var(--tx);
    border-bottom: 1px solid var(--color-2d2d2d);

}

.fi input:focus {
    border-bottom: 1px solid var(--color-2d2d2d);

}

/* FORM SECTIONS */
.form-section {
  margin-top: 14px;
}

.section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-2d2d2d);
  font-weight: 500;
  margin-bottom: 10px;
}

/* RADIO */
.radio-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-2d2d2d);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.radio input {
  display: none;
}

.radio span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #D5D5D5;
  display: inline-block;
  position: relative;
}

.radio input:checked + span {
  border-color: var(--ac);
}

.radio input:checked + span::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--ac);
}

/* MESSAGE */
.msg-label {
  font-size: 0.75rem;
  color: var(--color-2d2d2d);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

textarea {
  width: 100%;
  min-height: 60px;
  border: none;
  outline: none;
  resize: none;
  padding: 4px 2px;
  background: transparent;
  font-size: 0.85rem;
  color: var(--tx);
  border-bottom: 1px solid #8D8D8D;
}

textarea:focus {
  border-bottom: 1px solid var(--ac);
}

/* CHECKBOX */
.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--color-2d2d2d);
  font-weight: 400;
  cursor: pointer;
  margin-top: 10px;
}

.check input {
  display: none;
}

.check span {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 2px solid var(--color-2d2d2d);
  margin-top: 2px;
  display: inline-block;
  position: relative;
}

.check input:checked + span {
  border-color: var(--ac);
  background: rgba(30, 230, 194, 0.2);
}

.check input:checked + span::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--ac);
}

/* FINEPRINT */
.fineprint {
  font-size: 0.7rem;
  color: var(--color-2d2d2d);
  font-weight: 600;
  line-height: 1.45;
  margin-top: 6px;
}

.fineprint a {
  color: var(--color-2d2d2d);
  font-weight: 500;
  text-decoration: underline;
}

/* SUBMIT */
.submit-btn {
  margin-top: 14px;
  width: 150px;
  background: rgba(10, 14, 30, 0.85);
  border: 1px solid rgba(30, 230, 194, 0.35);
  padding: 10px 18px;
  border-radius: 12px;
  color: rgba(240, 248, 255, 0.95);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.submit-btn:hover {
  border-color: var(--ac);
  box-shadow: 0 0 24px rgba(30, 230, 194, 0.18);
  transform: translateY(-1px);
}

/* PHOTO */
.contact-photo {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

[data-theme="dark"] .contact-photo img {
  background: #0a1326;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    display: none;
  }

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

  .fi.full {
    grid-column: span 1;
  }

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

  .contact-header {
    padding: 12px 14px;
  }

  .contact-brand img {
    height: 20px;
  }

  .contact-modal-headline {
    font-size: clamp(0.8125rem, 3.4vw + 0.35rem, 1.85rem);
    line-height: 1.2;
    text-align: left;
    margin-bottom: 18px;
    white-space: nowrap;
  }

  .contact-form {
    padding: 22px 18px 26px;
  }
}

/* ANIM */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv.vis {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nk {
    display: none;
  }

  .mt {
    display: flex;
  }

  .abg,
  .wisg {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aimg {
    order: -1;
  }

  .pg,
  .tri {
    grid-template-columns: 1fr;
  }

  .sec {
    padding: 64px 0;
  }

  /* modal responsive */
  .contact-card {
    height: auto;
    max-height: 92vh;
  }

  .contact-body {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    display: none;
  }

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

  .fi.full {
    grid-column: span 1;
  }

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

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 130px 0 56px;
  }

  .bgrp {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .na .nc {
    display: none;
  }
}

@media (max-width: 600px) {
  .ft-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ft-right {
    text-align: left;
  }

  .ft-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* LEGAL PAGES (terms, privacy, cookies) */
.legal-main {
  padding: 120px 28px 80px;
  min-height: 55vh;
}

.legal-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.legal-back {
  margin-bottom: 1.75rem;
}

.legal-back a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ac);
  transition: opacity 0.2s;
}

.legal-back a:hover {
  opacity: 0.88;
  text-decoration: underline;
}

.legal-wrap h1.legal-title {
  margin-bottom: 1.5rem;
  color: var(--color-2d2d2d);
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.legal-wrap .last-update {
  font-size: 0.88rem;
  color: var(--tx2);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.legal-wrap .terms-content {
  width: 100%;
}

.legal-wrap .terms-section {
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--div);
}

.legal-wrap .terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-wrap .terms-section h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-bottom: 0.75rem;
  color: var(--color-2d2d2d);
  font-weight: 700;
  line-height: 1.35;
}

.legal-wrap .terms-section h3 span {
  color: var(--ac);
  margin-right: 0.35em;
  font-weight: 800;
}

.legal-wrap .terms-section h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--tx2);
  margin: 0.75rem 0 0.5rem;
  line-height: 1.45;
}

.legal-wrap .terms-section h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-2d2d2d);
  margin: 0.75rem 0 0.5rem;
}

.legal-wrap .terms-section p {
  margin-bottom: 0.65rem;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.65;
}

.legal-wrap .contact-details {
  margin: 0.85rem 0 0.65rem;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-2d2d2d);
}

.legal-wrap .company,
.legal-wrap .email {
  margin-top: 0.45rem;
  margin-bottom: 0;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--tx2);
}

.legal-wrap .resp-time {
  margin-top: 0.9rem;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.45;
  color: var(--tx2);
}

.legal-wrap .terms-section-list {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--cbdr);
}

.legal-wrap .terms-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--tx2);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.55;
  list-style: none;
}

.legal-wrap .terms-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ac);
}

.legal-wrap .disclaimer-bold {
  font-weight: 700 !important;
  color: var(--color-2d2d2d) !important;
}

.legal-wrap .privacy-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--tx2);
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  line-height: 1.55;
  list-style: none;
}

.legal-wrap .privacy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ac);
}

.legal-wrap .personal-info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.legal-wrap .cookie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0.75rem;
}

.legal-wrap .cookie-grid > *:nth-last-child(1):nth-child(odd) {
  grid-column: span 2;
}

.legal-wrap .cookie-card {
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--cbdr);
}

.legal-wrap .cookie-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ac);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

@media (max-width: 700px) {
  .legal-wrap .personal-info-card {
    grid-template-columns: 1fr;
  }

  .legal-wrap .cookie-grid {
    grid-template-columns: 1fr;
  }

  .legal-wrap .cookie-grid > *:nth-last-child(1):nth-child(odd) {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .legal-main {
    padding: 100px 20px 64px;
  }
}

/* Private Tally form pages (/apply, /pilot, /engage-inquiry) */
.private-form-main {
  padding: 120px 1.25rem 4rem;
  min-height: 55vh;
}

.private-form-inner {
  width: 100%;
  max-width: min(100%, 960px);
  margin: 0 auto;
}

.private-form-heading {
  margin: clamp(3rem, 8vw, 5.5rem) 0 1.5rem;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-2d2d2d);
  line-height: 1.2;
}

.private-tally-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}

.apply-tally-wrap {
  padding: clamp(1rem, 3vw, 2rem);
  background: #ffffff;
}

.private-tally-wrap iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  border: 0;
  vertical-align: top;
}

.apply-tally-wrap iframe {
  background: #ffffff;
}

@media (max-width: 600px) {
  .private-form-main {
    padding: 100px 1rem 3rem;
  }
} 