/* ============================================================
   RESOLYTICS — Global design system
   Dark, premium, global-grade tech aesthetic
   ============================================================ */

:root {
  --bg: #04060c;
  --bg-2: #070b16;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(148, 163, 199, 0.16);
  --border-2: rgba(148, 163, 199, 0.32);
  --text: #eaf0fb;
  --muted: #94a3bf;
  --muted-2: #66758f;
  --blue: #4d7cfe;
  --cyan: #22d3ee;
  --violet: #8b5cf6;
  --grad: linear-gradient(92deg, #4d7cfe 0%, #22d3ee 100%);
  --grad-soft: linear-gradient(92deg, rgba(77, 124, 254, 0.14), rgba(34, 211, 238, 0.14));
  --glow: 0 0 42px rgba(77, 124, 254, 0.25);
  --r: 18px;
  --r-sm: 12px;
  --maxw: 1180px;
  --font-d: 'Space Grotesk', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-b: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: rgba(77, 124, 254, 0.4); }

.container {
  width: min(var(--maxw), calc(100% - 48px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* ---------- ambient background ---------- */
.bg-ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(77, 124, 254, 0.13), transparent 60%),
    radial-gradient(700px 420px at -10% 30%, rgba(34, 211, 238, 0.07), transparent 60%),
    var(--bg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 199, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 199, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 20%, transparent 75%);
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4, 6, 12, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.brand-name em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-burger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px; height: 42px;
  position: relative;
}
.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s, opacity 0.2s;
}
.nav-burger span::before { transform: translate(-50%, -8px); }
.nav-burger span::after { transform: translate(-50%, 8px); }
.nav-burger.open span { background: transparent; }
.nav-burger.open span::before { transform: translate(-50%, 0) rotate(45deg); }
.nav-burger.open span::after { transform: translate(-50%, 0) rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--grad);
  color: #04101c;
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(59, 130, 246, 0.45); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--border-2); background: var(--surface-2); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 0.88rem; border-radius: 10px; }
.btn-lg { padding: 17px 34px; font-size: 1.02rem; border-radius: 14px; }

/* ---------- section scaffolding ---------- */
.section { padding: 104px 0; position: relative; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- hero ---------- */
.hero {
  padding: 170px 0 90px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.7rem, 5.4vw, 4.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 0.84rem;
  font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; opacity: 0.75; }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 40px 90px rgba(2, 8, 20, 0.8), var(--glow);
}
.hero-frame img { width: 100%; height: auto; }
.hero-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 6, 12, 0.55));
  pointer-events: none;
}
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 15, 28, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip strong { font-family: var(--font-d); font-size: 1.05rem; display: block; letter-spacing: -0.01em; }
.float-chip small { color: var(--muted); font-size: 0.74rem; }
.chip-1 { top: 8%; left: -34px; }
.chip-2 { bottom: 16%; right: -26px; animation-delay: -2.5s; }
.chip-3 { bottom: -22px; left: 12%; animation-delay: -4s; }
.live-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: pulse 2s infinite;
  flex: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- marquee ---------- */
.marquee-wrap { padding: 44px 0 10px; }
.marquee-label {
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 26px;
}
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollx 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.logo-word {
  margin-right: 72px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: 0.06em;
  color: rgba(214, 226, 245, 0.42);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.logo-word i { font-style: normal; width: 10px; height: 10px; border-radius: 3px; background: currentColor; opacity: 0.8; }
.logo-word.lw-1 i { border-radius: 50%; }
.logo-word.lw-2 i { transform: rotate(45deg); }
.logo-word.lw-3 i { border-radius: 50% 0 50% 0; }

/* ---------- stats ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat {
  background: var(--bg-2);
  padding: 34px 30px;
}
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label { color: var(--muted); font-size: 0.9rem; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 34px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-2);
  background: var(--surface-2);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }

.icon-tile {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.icon-tile svg { width: 22px; height: 22px; stroke: var(--cyan); }

.card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* feature list inside cards */
.feat-list { list-style: none; margin-top: 18px; display: grid; gap: 11px; }
.feat-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.93rem;
}
.feat-list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; stroke: var(--cyan); }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--cyan);
  transition: gap 0.2s;
}
.card .card-link:hover { gap: 13px; }
.card .card-link svg { width: 15px; height: 15px; }

/* ---------- split layout (image + copy) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 70px rgba(2, 8, 20, 0.7);
}
.split-media img { width: 100%; }
.split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(77, 124, 254, 0.12), transparent 45%, rgba(4, 6, 12, 0.35));
  pointer-events: none;
}

.check-list { list-style: none; margin-top: 26px; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .tick {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check-list .tick svg { width: 13px; height: 13px; stroke: var(--cyan); }
.check-list strong { display: block; font-family: var(--font-d); font-size: 1rem; margin-bottom: 3px; }
.check-list span { color: var(--muted); font-size: 0.94rem; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; }
.step-num {
  font-family: var(--font-d);
  font-size: 2.6rem;
  font-weight: 700;
  background: linear-gradient(180deg, rgba(77, 124, 254, 0.55), rgba(34, 211, 238, 0.18));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.14rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- industries ---------- */
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.industry-card:hover { transform: translateY(-5px); border-color: var(--border-2); }
.industry-visual {
  height: 150px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.industry-visual svg { width: 100%; height: 100%; }
.industry-body { padding: 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.industry-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.industry-body h3 { font-size: 1.3rem; }
.industry-body > p { color: var(--muted); font-size: 0.95rem; }
.industry-block { border-top: 1px solid var(--border); padding-top: 14px; }
.industry-block h4 {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
  font-weight: 600;
}
.industry-block p { color: var(--muted); font-size: 0.9rem; }
.outcome-list { list-style: none; display: grid; gap: 7px; margin-top: 2px; }
.outcome-list li { color: var(--text); font-size: 0.9rem; display: flex; gap: 9px; align-items: baseline; }
.outcome-list b { color: var(--cyan); font-family: var(--font-d); font-weight: 700; }

/* ---------- case studies ---------- */
.case-card { display: flex; flex-direction: column; gap: 14px; }
.case-metric {
  font-family: var(--font-d);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.case-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 13px;
}
.case-card h3 { font-size: 1.15rem; }
.case-card p { color: var(--muted); font-size: 0.93rem; }

/* ---------- testimonials ---------- */
.quote-card { display: flex; flex-direction: column; gap: 22px; }
.quote-mark { font-family: var(--font-d); font-size: 3rem; line-height: 0.6; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; height: 20px; }
.quote-card blockquote { color: var(--text); font-size: 0.99rem; line-height: 1.7; flex: 1; }
.quote-person { display: flex; align-items: center; gap: 13px; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 0.9rem;
  color: #04101c;
  background: var(--grad);
  flex: none;
}
.quote-person strong { display: block; font-size: 0.95rem; }
.quote-person small { color: var(--muted); font-size: 0.83rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(600px 260px at 50% -40%, rgba(77, 124, 254, 0.28), transparent 70%),
    var(--bg-2);
}
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- table ---------- */
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-2);
}
table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
th, td { padding: 17px 24px; text-align: left; border-bottom: 1px solid var(--border); }
thead th {
  font-family: var(--font-d);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}
thead th.hl { color: var(--cyan); }
td { color: var(--muted); }
td:first-child { color: var(--text); font-weight: 500; }
tbody tr:last-child td { border-bottom: none; }

/* ---------- badges / chips ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 99px;
  padding: 9px 17px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}
.badge svg { width: 15px; height: 15px; stroke: var(--cyan); }

/* ---------- timeline ---------- */
.timeline { position: relative; padding-left: 34px; display: grid; gap: 34px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), transparent);
}
.tl-item { position: relative; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -31px; top: 7px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 14px rgba(34, 211, 238, 0.6);
}
.tl-year {
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--cyan);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 5px;
}
.tl-item p { color: var(--muted); font-size: 0.97rem; }
.tl-item strong { color: var(--text); }

/* ---------- team ---------- */
.team-card { text-align: left; }
.team-card .avatar { width: 62px; height: 62px; font-size: 1.15rem; margin-bottom: 18px; }
.team-card h3 { font-size: 1.12rem; }
.team-role { color: var(--cyan); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin: 4px 0 12px; }
.team-card p { font-size: 0.9rem; }

/* ---------- course cards ---------- */
.course-card { display: flex; flex-direction: column; }
.course-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 4px 12px;
}
.chip.hl { color: var(--cyan); border-color: rgba(34, 211, 238, 0.35); background: rgba(34, 211, 238, 0.07); }
.course-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.course-card p { font-size: 0.93rem; flex: 1; }

/* ---------- forms ---------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 40px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(4, 6, 12, 0.6);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 13px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 124, 254, 0.18);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3bf' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: var(--muted-2); font-size: 0.82rem; margin-top: 14px; }
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success.show { display: block; }
.form-success .tick-big {
  width: 66px; height: 66px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 1px solid rgba(34, 211, 238, 0.4);
  display: grid;
  place-items: center;
}
.form-success .tick-big svg { width: 28px; height: 28px; stroke: var(--cyan); }

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
}
.info-card .icon-tile { margin: 0; width: 42px; height: 42px; flex: none; }
.info-card .icon-tile svg { width: 19px; height: 19px; }
.info-card strong { display: block; font-size: 0.97rem; margin-bottom: 3px; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.9rem; }
.info-card a:hover { color: var(--cyan); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; max-width: 820px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-2); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 24px;
}
.faq-q .plus {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: transform 0.25s, background 0.25s;
}
.faq-q .plus svg { width: 12px; height: 12px; stroke: var(--cyan); }
.faq-item.open .plus { transform: rotate(45deg); background: var(--grad-soft); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a p { padding: 0 24px 22px; color: var(--muted); font-size: 0.94rem; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
  margin-top: 40px;
  background: rgba(4, 6, 12, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 0.84rem;
}
.footer-certs { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-certs span { display: inline-flex; align-items: center; gap: 7px; }
.footer-certs svg { width: 14px; height: 14px; stroke: var(--cyan); opacity: 0.8; }

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .float-chip { animation: none; }
}

/* ---------- page hero (interior pages) ---------- */
.page-hero { padding: 160px 0 60px; position: relative; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.9rem); letter-spacing: -0.03em; margin-bottom: 20px; }
.page-hero p { color: var(--muted); font-size: 1.12rem; max-width: 620px; }
.page-hero .hero-actions { margin-top: 34px; }

.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.mini-stat {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 22px 24px;
}
.mini-stat b { font-family: var(--font-d); font-size: 1.7rem; letter-spacing: -0.02em; display: block; }
.mini-stat span { color: var(--muted); font-size: 0.86rem; }

/* ---------- feature bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bento .card { padding: 28px; }
.bento .card h3 { font-size: 1.05rem; }
.bento .card p { font-size: 0.89rem; }
.bento .wide { grid-column: span 1; }

/* ---------- misc ---------- */
.divider { height: 1px; background: var(--border); border: none; }
.mt-0 { margin-top: 0; }
.section-alt { background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 80%); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 130px; }
  .hero-visual { max-width: 640px; }
  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .grid-4, .steps, .stats-band, .mini-stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .bento { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(4, 6, 12, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 18px 24px 26px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; font-size: 1.05rem; width: 100%; }
  .nav-burger { display: block; }
  .nav-cta .btn { display: none; }
  .section { padding: 72px 0; }
  .grid-2, .grid-3, .grid-4, .grid-3, .bento, .steps, .stats-band, .mini-stats, .field-row { grid-template-columns: 1fr; }
  .float-chip { position: static; margin-top: 12px; animation: none; }
  .float-chip + .float-chip { margin-top: 0; }
  .hero-actions .btn { width: 100%; }
  .cta-band { padding: 52px 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .form-card { padding: 28px 22px; }
  table { font-size: 0.86rem; }
  th, td { padding: 13px 14px; }
}
