:root {
  --ink: #0E1116;
  --ink-2: #151B23;
  --ink-line: #263041;
  --blue: #1668F0;
  --blue-bright: #4D9BFF;
  --blue-pale: #E8F0FE;
  --surface: #F4F6FA;
  --white: #FFFFFF;
  --slate: #5A6573;
  --slate-d: #9AA6B2;
  --display: "Space Grotesk", "Arial Black", sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
  --skew: -8deg;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- eyebrow / skewed tab motif ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.tab {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  transform: skewX(var(--skew));
}
.tab span { display: inline-block; transform: skewX(calc(-1 * var(--skew))); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #0B4FC4; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ---------- top nav ---------- */
header.nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
}
header.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 104px; }
.nav-logo img { height: 62px; width: auto; }
.nav-cta { font-weight: 600; font-size: 0.9rem; color: var(--white); letter-spacing: 0.02em; }
.nav-cta:hover { color: var(--blue-bright); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink) url("assets/hero-bg-v2.jpg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 180px 0 120px;
}
.hero-mesh {
  position: absolute; inset: 0; z-index: 0;
  /* Dark wash first — muted/toned per brief, and keeps contrast for the
     headline over what's a fairly bright city-dusk photo — blue radial
     accents on top, same treatment as the coming-soon section's photo. */
  background:
    linear-gradient(rgba(14,17,22,0.80), rgba(14,17,22,0.80)),
    radial-gradient(60% 90% at 82% 20%, rgba(22,104,240,0.42), transparent 60%),
    radial-gradient(50% 80% at 95% 70%, rgba(77,155,255,0.30), transparent 62%),
    radial-gradient(45% 70% at 70% 95%, rgba(11,79,196,0.35), transparent 60%);
  animation: drift 18s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-3%, 2%, 0) scale(1.08); }
}
/* skewed geometric accent lines echoing the logo tab */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 85%);
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 28px;
}
.hero-status .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright);
  box-shadow: 0 0 0 0 rgba(77,155,255,0.7); animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(77,155,255,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(77,155,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,155,255,0); }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 15ch;
  margin-bottom: 30px;
}
.hero h1 .accent { color: var(--blue-bright); }
.hero p.sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #C7D2E0;
  max-width: 54ch;
  margin-bottom: 16px;
}
.hero p.note { color: var(--slate-d); font-size: 1rem; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------- section scaffolding ---------- */
section { padding: 108px 0; }
.section-head { max-width: 60ch; margin-bottom: 56px; }
h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--slate); margin-top: 22px; }
.muted-note { color: var(--slate); font-size: 0.98rem; margin-top: 20px; }

/* value statement (light) */
.value { background: var(--surface); }
.value .lede-lg { font-size: clamp(1.15rem, 1.7vw, 1.35rem); color: var(--ink); max-width: 62ch; margin-top: 22px; }

/* ---------- three audience cards ---------- */
.audiences { background: var(--white); }
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.aud-card {
  position: relative;
  background: var(--white);
  border: 1px solid #E4E8EF;
  border-radius: 4px;
  padding: 40px 34px 38px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(14,17,22,0.09); border-color: #d5dce8; }
.aud-card .index {
  font-family: var(--display); font-weight: 700; font-size: 0.95rem;
  color: var(--blue); letter-spacing: 0.05em; margin-bottom: 26px;
  display: inline-block;
}
.aud-card h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.5rem;
  letter-spacing: -0.01em; margin-bottom: 14px;
}
.aud-card p { color: var(--slate); font-size: 1.02rem; }
/* skewed corner accent echoing the logo tab */
.aud-card::before {
  content: ""; position: absolute; top: -18px; right: -18px;
  width: 64px; height: 64px; background: var(--blue-pale);
  transform: skewX(var(--skew)); transition: background 0.2s ease;
}
.aud-card:hover::before { background: var(--blue); }

/* ---------- coming soon (dark band) ---------- */
.coming {
  background: var(--ink) url("assets/coming-bg.jpg") center / cover no-repeat;
  color: var(--white);
  position: relative; overflow: hidden;
}
.coming .mesh {
  position: absolute; inset: 0; z-index: 0;
  /* Dark wash first (photo is bright/sky-heavy — needs strong darkening for
     white text contrast), blue radial accents on top to match the brand's
     other dark sections. */
  background: linear-gradient(rgba(14,17,22,0.82), rgba(14,17,22,0.82)),
              radial-gradient(50% 120% at 15% 20%, rgba(22,104,240,0.45), transparent 55%),
              radial-gradient(45% 110% at 88% 90%, rgba(11,79,196,0.40), transparent 55%);
}
.coming .wrap { position: relative; z-index: 2; max-width: 66ch; }
.coming h2 { margin-bottom: 22px; }
.coming p { color: #C7D2E0; font-size: 1.12rem; margin-bottom: 14px; }
.coming .stay { color: var(--blue-bright); font-weight: 500; margin-top: 10px; }

/* ---------- contact ---------- */
.contact { background: var(--surface); }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.contact-intro h2 { margin-bottom: 24px; }
.contact-intro p { color: var(--slate); font-size: 1.05rem; margin-bottom: 22px; }
.who-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.who-list li {
  font-weight: 500; color: var(--ink); padding: 9px 0 9px 26px; position: relative;
  border-bottom: 1px solid #E4E8EF; font-size: 0.98rem;
}
.who-list li:last-child { border-bottom: none; }
.who-list li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%) skewX(var(--skew));
  width: 12px; height: 12px; background: var(--blue);
}

form.contact-form {
  background: var(--white); border: 1px solid #E4E8EF; border-radius: 6px;
  padding: 40px; box-shadow: 0 10px 30px rgba(14,17,22,0.05);
}
.field { margin-bottom: 22px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 0; }
.field.row > div { margin-bottom: 22px; }
label {
  display: block; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.02em;
  color: var(--ink); margin-bottom: 8px;
}
label .opt { color: var(--slate-d); font-weight: 400; text-transform: none; letter-spacing: 0; }
input, select, textarea {
  width: 100%; font-family: var(--body); font-size: 0.98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid #D8DEE9; border-radius: 4px;
  background: var(--white); transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,104,240,0.14);
}
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6573' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
form .btn-primary { width: 100%; margin-top: 6px; border-radius: 4px; }
.form-note { font-size: 0.85rem; color: var(--slate-d); margin-top: 16px; text-align: center; }

/* ---------- captcha + honeypot ---------- */
.captcha-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.captcha-row img { border-radius: 4px; border: 1.5px solid #D8DEE9; flex-shrink: 0; }
.captcha-row input { flex: 1; min-width: 140px; }
/* Honeypot: off-screen for humans, still in the DOM for bots to fill. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- form result banner ---------- */
.form-banner {
  max-width: 480px; margin: 0 auto 22px; padding: 13px 16px; border-radius: 4px;
  border: 1.5px solid #D8DEE9; font-size: 0.92rem; text-align: center; font-weight: 500;
}
.form-banner--ok { color: #0B4FC4; border-color: rgba(22,104,240,0.35); background: var(--blue-pale); }
.form-banner--err { color: #B3261E; border-color: rgba(179,38,30,0.35); background: rgba(179,38,30,0.08); }
.form-banner-link {
  background: none; border: none; padding: 0; margin-left: 2px;
  color: inherit; font: inherit; font-weight: 600;
  text-decoration: underline; cursor: pointer;
}
.form-banner-link:hover { opacity: 0.8; }

/* ---------- interior page header (legal pages) ---------- */
/* Shorter dark band reusing the hero photo + wash so interior pages read as
   part of the same site without repeating the full-height hero. */
.page-head {
  position: relative;
  background: var(--ink) url("assets/hero-bg-v2.jpg") center / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 168px 0 68px;
}
.page-head .mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(rgba(14,17,22,0.84), rgba(14,17,22,0.84)),
    radial-gradient(60% 90% at 82% 20%, rgba(22,104,240,0.40), transparent 60%),
    radial-gradient(45% 80% at 95% 80%, rgba(11,79,196,0.34), transparent 62%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 24px 0 12px;
}
.page-head .meta { color: var(--slate-d); font-size: 0.95rem; }

/* ---------- legal / long-form copy ---------- */
.legal { background: var(--white); }
.legal-body { max-width: 72ch; }
.legal-body > p { color: var(--slate); font-size: 1.04rem; margin-bottom: 16px; }
.legal-body h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  padding-left: 20px;
  position: relative;
}
/* skewed marker echoing the logo tab */
.legal-body h2::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 10px; height: 10px; background: var(--blue);
  transform: skewX(var(--skew));
}
.legal-list { list-style: none; margin: 0 0 18px; }
.legal-list li {
  color: var(--slate); font-size: 1.02rem;
  padding: 6px 0 6px 22px; position: relative;
}
.legal-list li::before {
  content: ""; position: absolute; left: 2px; top: 0.95em;
  width: 7px; height: 7px; background: var(--blue-bright);
  transform: skewX(var(--skew));
}
.legal-contact {
  background: var(--surface); border: 1px solid #E4E8EF; border-radius: 6px;
  padding: 26px 28px; margin: 22px 0 8px;
}
.legal-contact p { color: var(--slate); font-size: 1.02rem; margin-bottom: 6px; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact-name { font-weight: 600; color: var(--ink) !important; }
.legal-contact a { color: var(--blue); font-weight: 500; }
.legal-contact a:hover { text-decoration: underline; }
.legal-back { margin-top: 44px; padding-top: 26px; border-top: 1px solid #E4E8EF; }
.legal-back a { color: var(--blue); font-weight: 600; font-size: 0.98rem; }
.legal-back a:hover { text-decoration: underline; }

/* ---------- footer ---------- */
footer {
  background: var(--ink); color: var(--white); padding: 64px 0 40px;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--ink-line); }
.footer-brand img { height: 34px; margin-bottom: 18px; }
.footer-brand p { color: var(--slate-d); font-size: 0.95rem; max-width: 34ch; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: #C7D2E0; font-size: 0.92rem; font-weight: 500; }
.footer-links a:hover { color: var(--blue-bright); }
.footer-bottom { padding-top: 26px; color: var(--slate-d); font-size: 0.85rem; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .card-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 44px; }
  section { padding: 80px 0; }
  .hero { padding: 150px 0 90px; }
  .page-head { padding: 140px 0 56px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .field.row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; text-align: center; }
  form.contact-form { padding: 28px 22px; }
  .footer-links { gap: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .hero-status .dot, .coming .mesh { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
