:root {
  --ink: #152238;
  --muted: #5e6878;
  --surface: #ffffff;
  --soft: #f4f7fb;
  --line: #dce4ee;
  --primary: #0b5cad;
  --teal: #0f7d75;
  --gold: #b7791f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
}

a {
  color: inherit;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 70px;
  padding: 12px clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
  background: #eaf3ff;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  padding: clamp(58px, 9vw, 110px) clamp(20px, 7vw, 92px);
  color: white;
  background-image: url("/static/images/screen1.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 34, 0.74);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 98px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.1vw, 23px);
  line-height: 1.45;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-row img {
  height: 58px;
  width: auto;
}

.soon {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.intro-grid,
.trust-section,
.steps,
.section-band,
.cta-band {
  padding: clamp(44px, 7vw, 82px) clamp(18px, 6vw, 76px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  background: var(--surface);
}

.intro-grid article,
.step-grid article,
.empty-listings {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.listing-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.listing-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: 190px 1fr;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
}

.listing-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #e6ebf2;
}

.listing-card div {
  padding: 16px;
}

.listing-type {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  margin-top: 4px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--primary);
  background: #eaf3ff;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.resolved {
  color: var(--teal);
  background: #e8f6f4;
}

.steps {
  background: var(--surface);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-grid span {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: white;
  background: var(--primary);
  font-weight: 900;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 30px;
  align-items: start;
  background: #10243f;
  color: white;
}

.trust-section p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.trust-section li {
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-band {
  text-align: center;
  background: var(--surface);
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 22px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  color: white;
  background: var(--primary);
  text-decoration: none;
  font-weight: 800;
}

.content-page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 72px) 0;
}

.content-page.narrow {
  width: min(720px, calc(100% - 32px));
}

.content-page h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: 0;
}

.content-page h2 {
  margin-top: 28px;
  font-size: 24px;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
}

.site-footer {
  padding: 26px clamp(18px, 6vw, 76px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: white;
  background: #0b1424;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer span,
.site-footer small {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 760px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 72vh;
  }

  .intro-grid,
  .step-grid,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .listing-rail {
    grid-auto-columns: minmax(236px, 82vw);
  }
}
