
:root {
  --blue:        #0B4F8C;
  --blue-dark:   #083a68;
  --blue-deep:   #062544;
  --blue-tint:   #f0f5fb;
  --blue-mute:   #e8eff7;
  --gold:        #D4AF37;
  --gold-dark:   #b8962a;
  --slate:       #0B0F12;
  --slate-2:     #1a2028;
  --slate-mid:   #2c333a;
  --slate-soft:  #4a5260;
  --slate-mute:  #8c939d;
  --rule:        #e2e5e9;
  --rule-light:  #eef0f3;
  --white:       #ffffff;
  --off:         #f7f8fa;
  --green:       #10b981;
  --green-tint:  #d1fae5;
  --red:         #ef4444;
  --red-tint:    #fee2e2;
  --amber:       #f59e0b;
  --amber-tint:  #fef3c7;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --max:         1180px;
  --pad:         clamp(1.25rem, 4vw, 2.5rem);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility; }
body {
  font-family: var(--font-sans);
  font-feature-settings: 'cv11','ss01','ss03';
  background: var(--white);
  color: var(--slate);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display:block; max-width:100%; }
a { color: inherit; text-decoration:none; }
button { cursor:pointer; font:inherit; background:none; border:none; color:inherit; }
address { font-style:normal; }

.wrap { max-width: var(--max); margin:0 auto; padding:0 var(--pad); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--blue);
  text-transform: uppercase;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

h2.section-title {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--slate);
  letter-spacing: -.025em;
  margin-top: .75rem;
}
.section-body {
  font-size: 1rem;
  color: var(--slate-soft);
  max-width: 56ch;
  line-height: 1.7;
  margin-top: .9rem;
}

.appear { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.appear.in { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) { .appear { opacity:1; transform:none; transition:none; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  padding: 11px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline { background: var(--white); color: var(--slate); border-color: var(--rule); }
.btn-outline:hover { border-color: var(--slate); }
.btn-ghost { background: transparent; color: var(--slate-soft); padding: 8px 14px; font-size: 13px; }
.btn-ghost:hover { color: var(--slate); }
.btn-dark { background: var(--white); color: var(--slate); border-color: var(--white); }
.btn-dark:hover { background: rgba(255,255,255,.88); }
.btn-darkline { background: transparent; color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.22); }
.btn-darkline:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(2px); }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 30px; height: 30px; flex-shrink: 0; }
.nav-logo img { width:100%; height:100%; object-fit:contain; }
.nav-wordmark { font-size: 15px; font-weight: 700; color: var(--slate); letter-spacing: -.015em; }
.nav-wordmark .badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  color: var(--slate-mute);
  background: var(--off);
  border: 1px solid var(--rule);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  letter-spacing: .03em;
  vertical-align: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-soft);
  transition: color .15s;
  position: relative;
}
.nav-links a:hover { color: var(--slate); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--slate); transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-drawer { display:none; flex-direction:column; background: var(--white); border-top:1px solid var(--rule); padding:1.5rem var(--pad) 2rem; gap:1.1rem; }
.mobile-drawer.open { display:flex; }
.mobile-drawer a { font-size: 1rem; color: var(--slate); padding-bottom: .9rem; border-bottom: 1px solid var(--rule-light); }
.mobile-drawer a:last-child { border-bottom: none; }

/* STATUS BAR */
.status-bar { background: var(--off); border-bottom: 1px solid var(--rule); padding: 6px 0; }
.status-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--font-mono); font-size: 11px; color: var(--slate-mute); letter-spacing: .02em;
}
.status-left { display: flex; align-items: center; gap: 8px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.status-right { display: flex; gap: 1.5rem; }
@media (max-width: 680px) { .status-right { display:none; } }

/* HERO */
.hero {
  padding: clamp(3.5rem, 6vw, 6rem) var(--pad) clamp(3rem, 5vw, 5rem);
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.hero::before {
  content:'';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--rule-light) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule-light) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  opacity: .55;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-inner .hero-badge { margin-left: auto; margin-right: auto; }
.hero-inner .hero-lead { margin-left: auto; margin-right: auto; }
.hero-inner .hero-actions { justify-content: center; }
.hero-inner .hero-microtrust { justify-content: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  background: var(--blue-tint);
  color: var(--blue);
  padding: 5px 11px 5px 7px;
  border-radius: 999px;
  border: 1px solid rgba(11,79,140,.12);
  margin-bottom: 1.5rem;
  letter-spacing: .01em;
}
.hero-badge .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--green); position: relative; flex-shrink:0; }
.hero-badge .pulse::after {
  content:'';
  position: absolute; inset: -3px;
  border-radius: 50%;
  background: var(--green);
  opacity: .3;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.5); opacity: .5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--slate);
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent {
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  opacity: .85;
}
.hero-lead {
  font-size: 1.05rem;
  color: var(--slate-soft);
  line-height: 1.65;
  max-width: 46ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-microtrust {
  display: flex; gap: 1.75rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--slate-mute); letter-spacing: .02em;
}
.hero-microtrust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-microtrust .tick { color: var(--green); font-weight: 700; }


/* TICKER */
.ticker {
  background: var(--slate);
  color: rgba(255,255,255,.7);
  padding: 12px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ticker 38s linear infinite;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .03em;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: center; gap: 10px; white-space: nowrap; color: rgba(255,255,255,.55); }
.ticker-item strong { color: var(--gold); font-weight: 500; }
.ticker-item::before { content: '◆'; color: rgba(212,175,55,.4); font-size: 8px; margin-right: 6px; }

/* SECTION SCAFFOLD */
.section { padding: clamp(4rem, 7vw, 6.5rem) var(--pad); }
.section-alt { background: var(--off); }
.section-dark { background: var(--blue-deep); color: var(--white); position: relative; overflow: hidden; }
.section-head { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); max-width: 720px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .section-body { margin-left: auto; margin-right: auto; }

/* PROBLEM PANEL */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.problem-card { background: var(--white); padding: 2rem 1.75rem; }
.problem-stat {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .65rem;
}
.problem-stat sup { font-size: 1.1rem; color: var(--gold); top: -1em; font-weight: 600; margin-left: 1px; }
.problem-title { font-size: .92rem; font-weight: 600; color: var(--slate); margin-bottom: .35rem; }
.problem-desc { font-size: 13px; color: var(--slate-soft); line-height: 1.65; }
.problem-source {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--slate-mute); letter-spacing: .02em;
  margin-top: .75rem;
  padding-top: .65rem;
  border-top: 1px solid var(--rule-light);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.9rem 1.75rem;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -18px rgba(11,79,140,.25);
}
.service-icon-wrap {
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.service-tag {
  position: absolute; top: 1.9rem; right: 1.75rem;
  font-family: var(--font-mono); font-size: 10px; color: var(--slate-mute);
  letter-spacing: .04em;
}
.service-title { font-size: 1rem; font-weight: 600; color: var(--slate); margin-bottom: .45rem; letter-spacing: -.01em; }
.service-desc { font-size: 13.5px; color: var(--slate-soft); line-height: 1.65; margin-bottom: 1.1rem; }
.service-items { list-style: none; display: flex; flex-direction: column; gap: .4rem; padding-top: .9rem; border-top: 1px solid var(--rule-light); }
.service-items li {
  font-size: 12.5px; color: var(--slate-soft);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-items li svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }

/* DARK PLATFORM SECTION */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,.08), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(11,79,140,.5), transparent 50%);
  pointer-events: none;
}
.section-dark .eyebrow { color: var(--gold); }
.section-dark .eyebrow::before { background: var(--gold); }
.section-dark h2.section-title { color: var(--white); }
.section-dark .section-body { color: rgba(255,255,255,.65); }

.platform-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}
.platform-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.platform-feature {
  display: flex; gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.platform-feature:last-child { border-bottom: 1px solid rgba(255,255,255,.08); }
.platform-feature-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: .04em;
}
.platform-feature h4 { font-size: 14.5px; font-weight: 600; color: var(--white); margin-bottom: .25rem; letter-spacing: -.005em; }
.platform-feature p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

/* PLATFORM PANEL (right side, looks like a compliance dashboard) */
.platform-panel {
  background: var(--slate);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.5rem;
  font-family: var(--font-sans);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.45);
}
.pp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.pp-title { font-size: 13px; font-weight: 600; color: var(--white); }
.pp-title .sub { display: block; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; letter-spacing: .03em; }
.pp-badge {
  font-family: var(--font-mono); font-size: 10px;
  background: rgba(16,185,129,.15); color: var(--green);
  padding: 4px 9px; border-radius: 999px;
  letter-spacing: .04em;
}
.pp-score-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.25rem; gap: 1rem; }
.pp-score-big { font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -.04em; }
.pp-score-big sup { font-size: 16px; color: var(--gold); margin-left: 4px; top: -.85em; font-weight: 500; }
.pp-score-delta { font-family: var(--font-mono); font-size: 10.5px; color: var(--green); }
.pp-bar-track {
  position: relative;
  height: 6px;
  background: rgba(255,255,255,.07);
  border-radius: 3px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.pp-bar-fill {
  position: absolute;
  inset: 0 24% 0 0;
  background: linear-gradient(to right, var(--blue), var(--gold));
  border-radius: 3px;
}
.pp-list { display: flex; flex-direction: column; gap: .6rem; }
.pp-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .55rem .75rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  font-size: 12px;
}
.pp-item-left { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.75); }
.pp-item-left .dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pp-item-status {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .04em;
  padding: 3px 7px; border-radius: 4px;
}
.st-pass { background: rgba(16,185,129,.13); color: var(--green); }
.st-pending { background: rgba(245,158,11,.13); color: var(--amber); }
.st-fail { background: rgba(239,68,68,.13); color: var(--red); }
.dot-pass { background: var(--green); }
.dot-pending { background: var(--amber); }
.dot-fail { background: var(--red); }

/* STEPS */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.step-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.5rem;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: .9rem;
  display: flex; align-items: center; gap: 8px;
}
.step-num::after { content:''; height: 1px; flex: 1; background: var(--rule); }
.step-item h4 { font-size: .95rem; font-weight: 600; color: var(--slate); margin-bottom: .4rem; }
.step-item p { font-size: 13px; color: var(--slate-soft); line-height: 1.6; }

/* MOBILE APP SECTION */
.app-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.app-mock-wrap { position: relative; display: flex; justify-content: center; }
.app-phone {
  width: 280px;
  background: var(--slate);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px -20px rgba(11,15,18,.3);
  position: relative;
}
.app-phone::before {
  content:''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: var(--slate); border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  z-index: 2;
}
.app-screen {
  background: var(--white);
  border-radius: 26px;
  padding: 30px 16px 14px;
  overflow: hidden;
  position: relative;
}
.app-screen h5 { font-size: 16px; font-weight: 700; color: var(--slate); margin-bottom: 12px; letter-spacing: -.01em; }
.app-mini-gauge { display: flex; justify-content: center; padding: 8px 0; }
.app-mini-gauge svg { width: 150px; height: 80px; }
.app-mini-cta {
  background: var(--blue); color: var(--white);
  padding: 10px 12px; border-radius: 8px;
  font-size: 11px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
  margin: 10px 0;
}
.app-mini-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 8px; }
.app-mini-tile {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  font-size: 8.5px;
  color: var(--slate);
  font-weight: 600;
}
.app-mini-tile .ic {
  width: 24px; height: 24px;
  background: var(--blue-tint);
  border-radius: 5px;
  margin: 0 auto 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}

.app-store-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 2rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--slate);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}
.store-btn:hover { background: var(--slate-2); }
.store-btn .ltop { font-size: 9px; color: rgba(255,255,255,.7); display: block; line-height: 1.1; }
.store-btn .lmain { font-size: 13px; font-weight: 600; line-height: 1.2; }

.app-features { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: .7rem; }
.app-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--slate-soft); line-height: 1.6;
}
.app-features li svg { flex-shrink: 0; margin-top: 4px; color: var(--blue); }

/* TRUST */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.trust-item {
  background: var(--white);
  padding: 1.8rem 1.5rem;
  text-align: left;
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--blue-tint);
  color: var(--blue);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.trust-title { font-size: 14px; font-weight: 600; color: var(--slate); margin-bottom: .35rem; letter-spacing: -.005em; }
.trust-desc { font-size: 12.5px; color: var(--slate-soft); line-height: 1.6; }

/* ABOUT */
.about-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: start;
}
.about-body p { font-size: 1rem; line-height: 1.7; color: var(--slate-soft); margin-bottom: 1rem; }
.about-body p strong { color: var(--slate); font-weight: 600; }
.about-quote {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500;
  color: var(--slate);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding: .5rem 0 .5rem 1.5rem;
  margin: 2rem 0;
  letter-spacing: -.015em;
}

.about-aside {
  background: var(--off);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.aside-block { padding: 1.5rem 1.6rem; border-bottom: 1px solid var(--rule); }
.aside-block:last-child { border-bottom: none; }
.aside-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.aside-title { font-size: .95rem; font-weight: 600; color: var(--slate); margin-bottom: .35rem; letter-spacing: -.01em; }
.aside-text { font-size: 13px; color: var(--slate-soft); line-height: 1.65; }

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.value-card { background: var(--white); padding: 1.75rem 1.6rem; }
.value-card .vnum { font-family: var(--font-mono); font-size: 11px; color: var(--gold-dark); letter-spacing: .04em; margin-bottom: .65rem; }
.value-card h4 { font-size: .95rem; font-weight: 600; color: var(--slate); margin-bottom: .4rem; letter-spacing: -.005em; }
.value-card p { font-size: 13px; color: var(--slate-soft); line-height: 1.65; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.6rem;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.blog-cat {
  display: inline-flex; align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 4px 9px; border-radius: 4px;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}
.blog-card h3 {
  font-size: 1.05rem; font-weight: 600;
  color: var(--slate); line-height: 1.35;
  margin-bottom: .65rem; letter-spacing: -.01em;
  flex: 1;
}
.blog-card p { font-size: 13.5px; color: var(--slate-soft); line-height: 1.6; margin-bottom: 1.25rem; }
.blog-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--slate-mute);
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .9rem; border-top: 1px solid var(--rule-light); margin-top: auto;
}
.blog-read { color: var(--blue); font-weight: 500; }

/* NEWSLETTER */
.nl-strip { background: var(--slate); padding: clamp(3rem, 5vw, 4.5rem) var(--pad); position: relative; overflow: hidden; }
.nl-strip::before {
  content:''; position:absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212,175,55,.06), transparent 60%);
  pointer-events: none;
}
.nl-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative;
}
.nl-eyebrow { color: var(--gold); }
.nl-title { font-size: clamp(1.65rem, 2.6vw, 2.1rem); font-weight: 700; color: var(--white); line-height: 1.15; letter-spacing: -.025em; margin-top: .75rem; }
.nl-form { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-input {
  flex: 1; min-width: 200px;
  padding: 12px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color .2s, background .2s;
}
.nl-input::placeholder { color: rgba(255,255,255,.35); }
.nl-input:focus { border-color: var(--gold); background: rgba(255,255,255,.08); }
.nl-submit {
  background: var(--gold); color: var(--slate);
  padding: 12px 24px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.nl-submit:hover { background: var(--gold-dark); }
.nl-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: .85rem; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 5fr 6fr; gap: 4rem; align-items: start; }
.contact-details { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.contact-item { padding: 1.1rem 0; border-bottom: 1px solid var(--rule); }
.contact-item-label {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--slate-mute);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .35rem;
}
.contact-item a, .contact-item address {
  font-size: .92rem; color: var(--slate); line-height: 1.5;
  transition: color .15s;
}
.contact-item a:hover { color: var(--blue); }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-field {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--slate);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.cf-field:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,79,140,.1); }
.cf-field::placeholder { color: var(--slate-mute); }
textarea.cf-field { resize: vertical; min-height: 130px; line-height: 1.55; }
.cf-submit {
  background: var(--blue); color: var(--white);
  padding: 12px 26px; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  align-self: flex-start;
  transition: background .2s;
}
.cf-submit:hover { background: var(--blue-dark); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; }
.cf-success { display: none; padding: 12px 14px; background: var(--green-tint); border: 1px solid #a7f3d0; border-radius: 6px; font-size: 13.5px; color: #065f46; }
.cf-error { display: none; padding: 12px 14px; background: var(--red-tint); border: 1px solid #fca5a5; border-radius: 6px; font-size: 13.5px; color: #991b1b; }

/* FOOTER */
.site-footer { background: var(--slate); padding: clamp(3rem, 5vw, 4.5rem) var(--pad) 0; }
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-about { max-width: 32ch; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo { width: 28px; height: 28px; }
.footer-logo img { width: 100%; height: 100%; }
.footer-brandname { font-size: .95rem; font-weight: 700; color: var(--white); letter-spacing: -.01em; }
.footer-about p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 1rem; }
.footer-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.5);
  padding: 5px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
}
.footer-status .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 3px rgba(16,185,129,.15); }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 1.1rem;
}
.footer-col a, .footer-col button {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: .7rem;
  transition: color .15s;
  padding: 0; text-align: left;
}
.footer-col a:hover, .footer-col button:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,.3);
}
.footer-bottom-right { display: flex; gap: 1.5rem; }
.footer-bottom-right button { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.3); }
.footer-bottom-right button:hover { color: rgba(255,255,255,.65); }

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(11,15,18,.55);
  z-index: 999;
  align-items: center; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: 12px;
  max-width: 680px; width: 100%;
  max-height: 84vh; overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: modal-in .2s ease both;
}
@keyframes modal-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  width: 32px; height: 32px;
  border-radius: 6px;
  color: var(--slate-mute);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--off); color: var(--slate); }
.modal-box h2 { font-size: 1.7rem; font-weight: 700; color: var(--slate); margin-bottom: .35rem; letter-spacing: -.025em; }
.modal-date { font-family: var(--font-mono); font-size: 11px; color: var(--slate-mute); margin-bottom: 1.75rem; letter-spacing: .03em; }
.modal-body h3 { font-size: 13.5px; font-weight: 600; color: var(--slate); margin: 1.3rem 0 .35rem; }
.modal-body p { font-size: 13.5px; color: var(--slate-soft); line-height: 1.7; margin-bottom: .55rem; }
.modal-body ul { padding-left: 1.25rem; margin-bottom: .55rem; }
.modal-body li { font-size: 13.5px; color: var(--slate-soft); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .app-split { grid-template-columns: 1fr; gap: 3rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .nl-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
