/* =========================================
   1. Box sizing
========================================= */

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

/* =========================================
   2. Remove default margin
========================================= */

* {
  margin: 0;
}

/* =========================================
   3. Core body defaults
========================================= */

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

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* =========================================
   4. Typography resets
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p,
ul,
ol {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

/* =========================================
   5. Media elements
========================================= */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* =========================================
   6. Forms
========================================= */

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* Remove default fieldset styles */
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

/* =========================================
   7. Tables
========================================= */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================
   8. Anchor normalization (removes purple visited)
========================================= */

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

a:visited {
  color: inherit; /* removes default purple */
}

a:hover {
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* =========================================
   9. Reduce motion for accessibility
========================================= */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --accent: #d31216;
}

* {
  box-sizing: border-box;
}
html,
body {
  min-height: 100%;
}
body {
  margin: 0;
  font-family:
    "Nunito Sans",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial;
  color: #171717;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.content-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.card-hover {
  --card-hover-border: #d31216;
  border: 1px solid transparent;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.card-hover:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: 0px 8px 24px rgba(23, 23, 23, 0.12);
}

/* Navbar */
.site-header {
  background: #fff;
  box-shadow: 0px 4px 4px 0px rgba(23, 23, 23, 0.15);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 48px;
}
.navbar-logo {
  display: flex;
  gap: 4px;
  font-family: "Nunito Sans", sans-serif;
  height: 35px;
  display: flex;
  align-self: center;
  line-height: normal;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-logo-iso {
  display: none;
}
.navbar-logo-red {
  color: #d31216;
}
.navbar-logo-atlas {
  color: #171717;
}
.navbar-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-link {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 4px;
  white-space: nowrap;
}
a.nav-link,
a.nav-link:visited {
  color: #666;
}
.nav-link:hover {
  color: #171717;
}
.navbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px;
  border-radius: 3px;
  cursor: pointer;
}
.lang-btn-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-globe {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.lang-current {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #171717;
  white-space: nowrap;
}
.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
}
.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  list-style: none;
  margin: 0;
  padding: 4px;
  min-width: 120px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 100;
}
.lang-switcher.open .lang-menu {
  display: block;
}
.lang-option {
  display: block;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.1s,
    color 0.1s;
}
a.lang-option,
a.lang-option:visited {
  color: #666;
}
.lang-option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #171717;
}
.lang-option.active {
  color: #171717;
  font-weight: 600;
}

/* Navbar apply button */
.btn-navbar-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #444;
  padding: 8px 12px;
  border-radius: 3px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
a.btn-navbar-apply,
a.btn-navbar-apply:visited {
  color: #fff;
}
.btn-navbar-apply:hover {
  background: #333;
}
/* Hero */
.hero {
  background: #ffffff;
  color: #171717;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;

  @media (min-width: 1000px) {
    padding: 0 120px;
  }
}
.hero-copy {
  flex: 0 0 clamp(320px, 640px, 60%);
  max-width: clamp(320px, 640px, 60%);
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 10px + 2.5vw, 40px);
  justify-content: center;
  padding: clamp(24px, 5px + 3vw, 48px) 0;
}
.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  color: #666;
  line-height: 1.5;
}
.hero-title {
  font-size: clamp(24px, 4px + 3vw, 42px);
  line-height: 1.2;
  font-weight: 700;
  color: #171717;
  margin: 0;
}
.hero-title .accent {
  color: var(--accent);
}
.hero-lead {
  font-size: clamp(15px, 5px + 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  color: #171717;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  text-wrap: nowrap;
}

.hero-ctas-group {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-availability {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin: 0;
}
.hero-availability-bold {
  font-weight: 700;
  color: #171717;
}
.hero-media {
  flex: 1;
  max-width: 800px;
  position: relative;
  background: url("/assets/map-hero.jpg") 65% 35% / auto 100% no-repeat;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, #ffffff 0%, transparent 12%),
    linear-gradient(to left, #ffffff 0%, transparent 12%);
}

/* Trusted by strip */
.trusted-strip {
  background: #fff;
  border-top: 1px solid #ccc;
}
.trusted-inner {
  padding: 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 32px 96px;
  width: 100%;
}
/* SVG logos — sized directly */
.trusted-logo {
  height: 36px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.trusted-logo--desc {
  height: 46px;
  transform: translateY(14px);
}
/* PNG logos — clipping container + absolute image (Figma crop technique) */
.trusted-logo-wrap {
  position: relative;
  overflow: hidden;
  height: 36px;
  width: var(--w);
  flex-shrink: 0;
}
.trusted-logo-wrap img {
  position: absolute;
  max-width: none;
  pointer-events: none;
  display: block;
}
.trusted-logo-wrap--fill img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trusted-caption {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-align: center;
  line-height: 1.5;
}

/* ── Stats Strip ──────────────────────────────────────────── */
.stats-strip {
  background: #f9f9f9;
}
.stats-inner {
  padding: 56px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-labels {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}
.stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
  white-space: nowrap;
}
.stat-accent {
  color: #d31216;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: #ccc;
  flex-shrink: 0;
}

/* Light-theme buttons (used in hero and other light sections) */
.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  background: #444;
  border: 1px solid transparent;
  padding: 12px 16px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
/* Use a.btn-dark to beat a:visited specificity (0,1,1) */
a.btn-dark,
a.btn-dark:visited {
  color: white;
}
.btn-dark:hover {
  background: #333;
}
.btn-dark-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  background: white;
  border: 1px solid #444;
  padding: 12px 16px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}
a.btn-dark-outline,
a.btn-dark-outline:visited {
  color: #444;
}
.btn-dark-outline:hover {
  background: #f5f5f5;
}

/* Markets */
/* ── Industries Strip ─────────────────────────────────────── */
.industries-strip {
  background: #fdfdfd;
}
.industries-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 56px 120px;
}
.industries-title {
  font-size: 32px;
  font-weight: 700;
  color: #171717;
  text-align: center;
  margin: 0;
  line-height: 1.2;
}
.industries-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: 24px 40px;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #666;
  flex-shrink: 0;
}
.industry-item span {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 850px) {
  .industries-inner {
    padding: 48px 24px;
    gap: 32px;
  }
  .industries-title {
    font-size: 28px;
  }
}

/* ── Coverage Section ─────────────────────────────────────── */
.coverage-section {
  background: #f9f9f9;
}
.coverage-inner {
  padding: 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.coverage-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.coverage-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #d31216;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  line-height: 1.5;
}
.coverage-title {
  font-size: 32px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
  margin: 0;
}
.coverage-lead {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.market-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
.market-card {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 4px rgba(23, 23, 23, 0.25);
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
a.market-card,
a.market-card:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.market-card--placeholder {
  border-style: solid;
  border-color: #ccc;
  box-shadow: 0 0 4px rgba(23, 23, 23, 0.25);
  justify-content: center;
}
.market-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0;
}
.market-badge--live {
  color: #16a34a;
}
.market-badge--soon {
  color: #666;
}
.market-badge--later {
  color: #999;
}
.market-card-map {
  width: 119px;
  height: 84px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market-card-map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.market-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}
.market-card-name {
  font-size: 16px;
  font-weight: 700;
  color: #171717;
  line-height: 1.5;
  margin: 0;
}
.market-card-name--muted {
  color: #999;
}
.market-card-sub {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* ── Pricing Section ───────────────────────────────────────── */
.pricing-section {
  background: #fff;
}
.pricing-inner {
  padding: 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.pricing-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #d31216;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  line-height: 1.5;
}
.pricing-title {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
  margin: 0;
}
.pricing-lead {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.pricing-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 100%;
  justify-content: center;
}
.pricing-card {
  flex: 1;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(23, 23, 23, 0.25);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
}
.pricing-card--featured {
  border: 2px solid #444;
}
.pricing-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.pricing-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: #999;
  line-height: 1.5;
  margin: 0;
}
.pricing-plan-name--featured {
  color: #444;
}
.pricing-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-price {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}
.pricing-period {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  line-height: 1.5;
}
.pricing-credits {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.pricing-credits-count {
  font-weight: 700;
  color: #171717;
}
.pricing-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 0;
}
.pricing-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
.pricing-features li {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
.btn-pricing-outline,
.btn-pricing-filled {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.btn-pricing-outline {
  background: #fff;
  border: 1px solid #444;
  color: #444;
}
.btn-pricing-filled {
  background: #444;
  border: 1px solid #444;
  color: #fff !important;
}
.btn-pricing-outline:visited,
.btn-pricing-filled:visited {
  color: inherit;
}
@media (max-width: 900px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card {
    width: 100%;
  }
  .pricing-title {
    font-size: 36px;
  }
}
@media (max-width: 850px) {
  .pricing-inner {
    padding: 48px 24px;
  }
}

/* ── How It Works Section ──────────────────────────────────── */
/* ── Grant / Data Grant Section ────────────────────────────── */
.grant-section {
  background: #f9f9f9;
}
.grant-inner {
  padding: 48px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.grant-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  width: 100%;
}
.grant-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #d31216;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  line-height: 1.5;
  margin: 0;
}
.grant-title {
  font-size: 32px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}
.grant-title-accent {
  color: #d31216;
}
.grant-lead {
  font-size: 18px;
  font-weight: 400;
  color: #171717;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
.grant-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
}
.grant-step {
  flex: 0 0 calc(25% - 18px);
  display: flex;
  justify-content: center;
}
.grant-step-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.grant-step-number {
  font-size: 48px;
  font-weight: 700;
  color: #d31216;
  opacity: 0.4;
  line-height: normal;
}
.grant-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #171717;
  line-height: 1.5;
  margin: 0;
}
.grant-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.grant-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(23, 23, 23, 0.25);
  padding: 16px 12px;
  width: 318px;
  min-height: 317px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.grant-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.grant-card-class {
  font-size: 18px;
  font-weight: 700;
  color: #999;
  text-align: center;
  margin: 0;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grant-card-amount-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.grant-card-amount {
  font-size: 48px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
.grant-card-amount-sub {
  font-size: 16px;
  font-weight: 400;
  color: #999;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.grant-card-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  width: 100%;
  margin: 0;
}
.grant-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.grant-card-feature {
  font-size: 18px;
  font-weight: 400;
  color: #171717;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.grant-card-feature--bold {
  font-weight: 700;
}
.grant-note {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  text-align: center;
  line-height: 1.5;
  margin: 0;
  max-width: 700px;
}
.grant-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-grant-filled {
  display: inline-block;
  background: #444;
  border-radius: 3px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  width: 230px;
  text-align: center;
}
.btn-grant-filled,
.btn-grant-filled:visited {
  color: #fff;
}
.btn-grant-filled:hover {
  background: #333;
}
.btn-grant-outline {
  display: inline-block;
  background: #fff;
  border: 1px solid #444;
  border-radius: 3px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  width: 230px;
  text-align: center;
}
.btn-grant-outline,
.btn-grant-outline:visited {
  color: #444;
}
.btn-grant-outline:hover {
  background: #f5f5f5;
}
@media (max-width: 920px) {
  .grant-step {
    flex: 0 0 calc(50% - 12px);
    justify-content: center;
  }
}
@media (max-width: 850px) {
  .grant-inner {
    padding: 48px 24px;
  }
  .grant-title {
    font-size: 28px;
  }
  .grant-card {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .grant-step {
    flex: 0 0 100%;
  }
  .grant-ctas {
    flex-direction: column;
    width: 100%;
  }
  .btn-grant-filled,
  .btn-grant-outline {
    width: 100%;
  }
}

/* ── Trust Strip ───────────────────────────────────────────── */
.trust-strip {
  background: #f9f9f9;
}
.trust-strip-inner {
  padding: 0px 120px 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trust-item span {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  white-space: nowrap;
}
@media (max-width: 850px) {
  .trust-strip-inner {
    padding: 20px 24px;
    justify-content: flex-start;
    gap: 12px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .trust-item span {
    font-size: 14px;
  }
}

/* ── FAQ Section ───────────────────────────────────────────── */
.faq-section {
  background: #fff;
}
.faq-inner {
  padding: 56px 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.faq-eyebrow {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.64px;
  color: #d31216;
  text-transform: uppercase;
  margin: 0;
}
.faq-title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #171717;
  text-align: center;
  margin: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  display: flex;
  flex-direction: column;
}
.faq-item details {
  width: 100%;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  gap: 16px;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question span {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #171717;
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}
details[open] .faq-chevron {
  transform: rotate(0deg);
}
.faq-answer {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 8px 0;
}
.faq-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 850px) {
  .faq-inner {
    padding: 48px 24px;
  }
  .faq-title {
    font-size: 36px;
  }
}

/* ── Final CTA Section ─────────────────────────────────────── */
.final-cta-section {
  background: #f9f9f9;
}
.final-cta-inner {
  padding: 56px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.final-cta-title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: #171717;
  text-align: center;
  margin: 0;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta-title-accent {
  color: #d31216;
}
.final-cta-lead {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #666;
  text-align: center;
  max-width: 600px;
  margin: 0;
}
.final-cta-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-final-primary {
  display: inline-block;
  background: #444;
  border-radius: 3px;
  padding: 12px 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.btn-final-primary:visited {
  color: #fff;
}
.btn-final-primary:hover {
  background: #333;
}
.btn-final-secondary {
  display: inline-block;
  background: #fff;
  border: 1px solid #444;
  border-radius: 3px;
  padding: 12px 16px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
}
.btn-final-secondary:visited {
  color: #444;
}
.btn-final-secondary:hover {
  background: #f5f5f5;
}
@media (max-width: 850px) {
  .final-cta-inner {
    padding: 48px 24px;
  }
  .final-cta-title {
    font-size: 36px;
  }
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .btn-final-primary,
  .btn-final-secondary {
    width: 242px;
    text-align: center;
  }
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer-new {
  background: #fff;
  box-shadow: 0px -4px 4px rgba(23, 23, 23, 0.15);
  position: relative;
}
.footer-new-inner {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #171717;
  text-align: right;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 850px) {
  .footer-new-inner {
    padding: 24px;
    justify-content: center;
    gap: 19px;
  }
  .footer-copyright {
    text-align: center;
    white-space: normal;
    flex: 1;
    min-width: 300px;
  }
}

/* ── Verticals Section ─────────────────────────────────────── */
.api-coverage-section {
  background: #f9f9f9;
}
.api-coverage-inner {
  padding: 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.api-coverage-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.api-coverage-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #d31216;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  line-height: 1.5;
}
.api-coverage-title {
  font-size: 32px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}
.api-coverage-lead {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
.api-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(23, 23, 23, 0.25);
  padding: 24px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 250px;
}
.feature-card-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card-method {
  font-size: 12px;
  font-weight: 700;
  color: #d31216;
  letter-spacing: 2.64px;
  line-height: 1.5;
}
.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #171717;
  line-height: 1.2;
}
.feature-card-desc {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
.credit-tag {
  background: #f5f5f5;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #999;
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 1000px) {
  .api-coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 850px) {
  .api-coverage-inner {
    padding: 48px 24px;
  }
}
@media (max-width: 580px) {
  .api-coverage-grid {
    grid-template-columns: 1fr;
  }
}

/* ── API Demo Section ──────────────────────────────────────── */
.api-demo-section {
  background: #fff;
}
.api-demo-inner {
  padding: 56px 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.api-demo-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 auto;
  width: 60%;
  max-width: 650px;
}
.api-demo-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.api-demo-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: #d31216;
  text-transform: uppercase;
  letter-spacing: 2.64px;
  line-height: 1.5;
}
.api-demo-title {
  font-size: 32px;
  font-weight: 700;
  color: #171717;
  line-height: 1.2;
}
.api-demo-lead {
  font-size: 18px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
.api-demo-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.api-demo-feature {
  display: flex;
  gap: 8px;
  align-items: center;
}
.api-demo-check-icon {
  flex-shrink: 0;
}
.api-demo-feature-text {
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
}
/* Code block */
.api-demo-code {
  flex: 1 1 0;
  max-width: 800px;
  min-width: 0;
  background: #1a1a2e;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(23, 23, 23, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 400px;
}
.code-block-header {
  background: #1f1f33;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  flex-shrink: 0;
}
.code-block-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red {
  background: #ff5f57;
}
.dot-yellow {
  background: #febc2e;
}
.dot-green {
  background: #28c840;
}
.code-block-label {
  font-size: 10px;
  color: #9999b2;
  font-family: "Nunito Sans", sans-serif;
}
.code-block-divider {
  height: 1px;
  background: #2e2e4a;
  flex-shrink: 0;
}
.code-block-body {
  padding: 16px;
  font-family: "Courier New", Courier, monospace;
  font-size: 12.5px;
  line-height: 1.6;
  overflow-y: auto;
  flex: 1 1 0;
  scrollbar-width: none;
}
.code-block-body::-webkit-scrollbar {
  display: none;
}
.code-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Terminal response animation */
.term-response {
  opacity: 0;
  transition: opacity 0.08s ease;
}
.term-cursor {
  color: #a0a0b0;
  animation: term-blink 1s step-end infinite;
}
@keyframes term-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* Syntax colors */
.c-comment {
  color: #637777;
}
.c-cmd {
  color: #9747ff;
}
.c-url {
  color: #82aaff;
}
.c-flag {
  color: #fff;
}
.c-string {
  color: #ffcb6b;
}
.c-green {
  color: #78df91;
}
.c-punct {
  color: #d6deeb;
}
.c-text {
  color: #d6deeb;
}
.c-key {
  color: #82aaff;
}
.c-num {
  color: #f78c6c;
}

@media (max-width: 1100px) {
  .api-demo-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .api-demo-copy {
    width: 100%;
  }
}
@media (max-width: 850px) {
  .api-demo-inner {
    padding: 48px 24px;
  }
  .api-demo-code {
    display: none;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (min-width: 1001px) {
  .hero {
    height: 80svh;
    min-height: 450px;
  }
}
@media (max-width: 1000px) {
  .hero-copy {
    flex: 1;
    max-width: 100%;
  }
  .hero-media {
    display: none;
  }
}

@media (max-width: 1075px) {
  .stats-inner {
    padding: 48px 24px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 48px;
  }
  .stat-item {
    flex: 0 0 calc(50% - 24px);
  }
  .stat-divider {
    display: none;
  }
  .stat-value {
    font-size: 36px;
  }
}

@media (max-width: 1000px) {
  .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .market-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 850px) {
  .coverage-inner {
    padding: 48px 24px;
    gap: 32px;
  }
  .trusted-inner {
    padding: 48px 24px;
  }
  .trusted-logos {
    gap: 24px;
  }
  .trusted-logo {
    height: 32px;
  }
  .trusted-logo--desc {
    height: 41px;
    transform: translateY(12px);
  }
  .trusted-logo-wrap {
    height: 32px;
    width: calc(var(--w) * 32 / 36);
  }
  .navbar-links {
    display: none;
  }
  .navbar-right {
    gap: 6px;
  }
  .lang-current {
    display: none;
  }
  .lang-btn {
    gap: 2px;
    padding: 6px;
  }
  html {
    scroll-padding-top: 64px;
  }
  .navbar-inner {
    height: 64px;
    padding: 0 24px;
  }
  .navbar-logo {
    font-size: 16px;
  }
  .navbar-logo-full {
    display: none;
  }
  .navbar-logo-iso {
    display: block;
    height: 32px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .stat-item {
    flex: 0 0 100%;
  }
  .stat-value {
    font-size: 40px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-dark,
  .btn-dark-outline {
    width: 242px;
  }
}

@media (max-width: 550px) {
  .hero-ctas-group {
    flex-direction: column;
  }
}
