:root {
  --ink: #0b1720;
  --muted: #52636e;
  --paper: #f7f9f7;
  --white: #ffffff;
  --line: #dce4df;
  --green: #14b87a;
  --green-dark: #087a55;
  --lime: #b9f34b;
  --navy: #071c25;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 28, 37, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.5px;
}
.brand > span:last-child > span { color: var(--green-dark); }
.brand-mark {
  width: 34px;
  height: 34px;
  display: flex;
  gap: 3px;
  align-items: end;
  padding: 7px;
  border-radius: 10px;
  background: var(--navy);
  transform: skew(-5deg);
}
.brand-mark i { display: block; flex: 1; background: var(--lime); border-radius: 2px; }
.brand-mark i:nth-child(1) { height: 36%; opacity: .65; }
.brand-mark i:nth-child(2) { height: 65%; opacity: .82; }
.brand-mark i:nth-child(3) { height: 100%; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: 14px; font-weight: 650; text-decoration: none; color: #334750; }
nav a:hover { color: var(--green-dark); }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 17px; }
.nav-toggle { display: none; border: 0; background: none; font: inherit; font-weight: 700; }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 660px;
  margin: 20px auto 0;
  padding: 86px 72px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 20%, rgba(185, 243, 75, .22), transparent 30%),
    linear-gradient(135deg, #071c25 0%, #0a2b34 66%, #10493e 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 72px;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  right: -190px;
  bottom: -210px;
  box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero .eyebrow { color: var(--lime); }
h1, h2, h3 { line-height: 1.12; margin-top: 0; }
.hero h1 { max-width: 680px; margin-bottom: 25px; font-size: clamp(48px, 6.2vw, 78px); letter-spacing: -3.8px; }
.hero-lead { max-width: 640px; margin: 0; color: #c6d4d7; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button { padding: 13px 21px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 750; }
.button.primary { color: #072018; background: var(--lime); }
.button.secondary { color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.legal-line { max-width: 620px; margin-top: 48px; color: #8fa5ab; font-size: 12px; }
.signal-card {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  padding: 26px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
}
.signal-head { display: flex; justify-content: space-between; font-size: 13px; color: #c6d4d7; }
.live-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(185,243,75,.12); }
.signal-chart { height: 210px; margin: 34px 0 25px; display: flex; align-items: end; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.16); }
.signal-chart span { flex: 1; height: var(--h); min-width: 12px; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--lime), var(--green)); opacity: .88; }
.signal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.signal-grid div { border-top: 1px solid rgba(255,255,255,.12); padding-top: 12px; }
.signal-grid strong, .signal-grid small { display: block; }
.signal-grid strong { font-size: 13px; }
.signal-grid small { margin-top: 3px; color: #92a7ac; font-size: 10px; }

.trust-strip {
  width: min(1060px, calc(100% - 60px));
  margin: -24px auto 0;
  padding: 20px 28px;
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-around;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: #42555e;
  font-size: 13px;
  font-weight: 700;
}
.trust-strip span::before { content: "✓"; color: var(--green-dark); margin-right: 8px; }
.section { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 118px 20px; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.section h2 { margin-bottom: 24px; font-size: clamp(36px, 5vw, 56px); letter-spacing: -2.3px; }
.body-copy { max-width: 650px; color: var(--muted); font-size: 18px; }
.body-copy p:first-child { margin-top: 0; }
.tinted { width: min(1180px, calc(100% - 40px)); padding: 90px 72px; background: #eaf0ec; border-radius: 30px; }
.section-heading { max-width: 760px; }
.section-heading > p:last-child { color: var(--muted); font-size: 17px; }
.section-heading.compact { max-width: 640px; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 50px; }
.service-card { min-height: 260px; padding: 32px; border: 1px solid #d4ded8; border-radius: var(--radius); background: rgba(255,255,255,.66); }
.card-number { color: var(--green-dark); font: 750 12px/1 monospace; }
.service-card h3 { margin: 56px 0 12px; font-size: 23px; }
.service-card p { margin: 0; color: var(--muted); }
.industry-list { margin-top: 48px; border-top: 1px solid var(--line); }
.industry-list > div { padding: 30px 0; display: grid; grid-template-columns: 70px 1fr 1fr; gap: 20px; align-items: baseline; border-bottom: 1px solid var(--line); }
.industry-list span { color: var(--green-dark); font: 700 12px monospace; }
.industry-list h3 { margin: 0; font-size: 24px; }
.industry-list p { margin: 0; color: var(--muted); }
.api-section { width: min(1180px, calc(100% - 40px)); padding: 90px 72px; border-radius: 30px; background: var(--navy); color: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 84px; }
.api-section .eyebrow { color: var(--lime); }
.api-intro p:last-child { color: #a8b9bd; font-size: 17px; }
.api-details > div { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.15); }
.api-details h3 { margin-bottom: 8px; font-size: 18px; }
.api-details p { margin: 0; color: #a8b9bd; font-size: 14px; }
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.contact-section p:last-child { color: var(--muted); }
.contact-link { display: grid; grid-template-columns: 1fr auto; padding: 28px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; }
.contact-link span, .contact-link strong { grid-column: 1; }
.contact-link span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; }
.contact-link strong { margin-top: 8px; font-size: clamp(17px, 2.4vw, 26px); }
.contact-link b { grid-column: 2; grid-row: 1 / 3; align-self: center; font-size: 32px; color: var(--green-dark); }

footer { padding: 55px max(30px, calc((100% - 1120px) / 2)); background: #e5ebe7; }
.footer-top { display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #40515a; font-size: 13px; font-weight: 650; }
.company-details { margin-top: 40px; color: #52636e; font-size: 13px; }
.company-details p { margin: 4px 0; }
.copyright { margin: 35px 0 0; padding-top: 20px; border-top: 1px solid #cad4ce; color: #708087; font-size: 12px; }

.legal-header { border-bottom: 1px solid var(--line); }
.back-link { color: var(--green-dark); font-size: 13px; font-weight: 700; text-decoration: none; }
.legal-page { width: min(780px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 120px; }
.legal-page > h1 { margin-bottom: 10px; font-size: clamp(44px, 7vw, 70px); letter-spacing: -3px; }
.legal-updated { margin-bottom: 60px; color: var(--muted); }
.legal-page section { padding: 25px 0; border-top: 1px solid var(--line); }
.legal-page section h2 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.5px; }
.legal-page section p { color: var(--muted); }
.legal-page section a { color: var(--green-dark); }
.legal-footer { display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 13px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  nav { display: none; position: absolute; top: 72px; left: 0; right: 0; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  nav.open { display: flex; }
  .hero { min-height: 0; padding: 64px 34px; grid-template-columns: 1fr; gap: 38px; }
  .hero h1 { font-size: clamp(43px, 13vw, 66px); letter-spacing: -2.8px; }
  .signal-card { max-width: 520px; }
  .split, .api-section, .contact-section { grid-template-columns: 1fr; gap: 36px; }
  .section { padding: 85px 10px; }
  .tinted, .api-section { padding: 62px 34px; }
  .card-grid { grid-template-columns: 1fr; }
  .trust-strip { align-items: flex-start; flex-direction: column; }
  .industry-list > div { grid-template-columns: 45px 1fr; }
  .industry-list p { grid-column: 2; }
}

@media (max-width: 520px) {
  .site-header, .hero, .tinted, .api-section { width: min(100% - 24px, 1180px); }
  .site-header { height: 72px; }
  .hero { margin-top: 8px; padding: 50px 24px; border-radius: 24px; }
  .hero-lead { font-size: 16px; }
  .button { width: 100%; text-align: center; }
  .signal-card { padding: 20px; }
  .signal-chart { height: 150px; }
  .signal-grid { grid-template-columns: 1fr; }
  .trust-strip { width: calc(100% - 44px); }
  .section { width: calc(100% - 24px); }
  .section h2 { font-size: 38px; letter-spacing: -1.6px; }
  .tinted, .api-section { padding: 54px 24px; }
  .service-card { min-height: 230px; padding: 25px; }
  footer { padding: 45px 22px; }
  .footer-top, .legal-footer { align-items: flex-start; flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; }
  .legal-page { padding-top: 60px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
