/* Smitten Technologies — trusight / smitten.co.in
   Design system: tokens, chrome, hero, device mockups, bands, grids, footer. */

/* Self-hosted so the site makes no third-party font request. */
@font-face {
  font-family: "Inter var";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Jakarta var";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/assets/fonts/jakarta-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue: #0087ff;
  --blue-dark: #006fd6;
  --blue-soft: #e8f4ff;
  --navy: #061529;
  --navy-2: #0a2648;
  --ink: #101620;
  --muted: #5a6472;
  --muted-2: #8b95a3;
  --paper: #f4f6fa;
  --white: #ffffff;
  --line: #e2e7ef;
  --line-dark: rgba(255, 255, 255, 0.14);
  --green: #12a05c;
  --amber: #dd9a04;
  --red: #d93a2b;

  --max: 74rem;
  --pad: clamp(1.15rem, 4vw, 2.5rem);
  --r-sm: 0.65rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --font: "Inter var", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Jakarta var", "Inter var", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow-sm: 0 1px 2px rgba(9, 20, 38, 0.06), 0 8px 24px rgba(9, 20, 38, 0.06);
  --shadow-md: 0 24px 60px rgba(6, 21, 41, 0.16);
  --shadow-phone: 0 40px 90px rgba(4, 14, 30, 0.45);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 1rem;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 800;
  font-feature-settings: normal;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.032em;
}

h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- eyebrow / lede / section rhythm ---------- */

.eyebrow {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
}

.eyebrow--light {
  color: #7fb4ff;
}

.lede {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 42rem;
}

section {
  scroll-margin-top: 5rem;
}

.band {
  padding: clamp(3.5rem, 6.5vw, 6rem) 0;
}

.band--paper {
  background: var(--paper);
}

.band--navy {
  background: radial-gradient(120% 130% at 15% 0%, #0d3a7a 0%, var(--navy) 62%);
  color: var(--white);
}

.band--navy .lede,
.band--navy p {
  color: #c3d3e8;
}

.band-head {
  max-width: 44rem;
  margin-bottom: clamp(1.5rem, 2.6vw, 2.1rem);
}

.band-head p:last-child {
  margin-bottom: 0;
}

.band-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.012em;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.btn-ghost--light {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--white);
}

.btn-ghost--light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.band-actions {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(6, 21, 41, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.5rem;
}

.brand small {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8fb6ea;
  line-height: 1.2;
}

.header-end {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #d8e4f4;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: none;
}

.btn-nav {
  background: var(--blue);
  color: var(--white);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-nav:hover {
  background: var(--blue-dark);
  text-decoration: none;
}

.nav-toggle,
.nav-toggle-btn {
  display: none;
}

@media (max-width: 52rem) {
  .nav-toggle-btn {
    display: block;
    margin-left: auto;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    cursor: pointer;
  }

  .header-end {
    display: none;
    order: 3;
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.4rem 0 1.2rem;
  }

  .nav {
    flex-direction: column;
    gap: 0.85rem;
  }

  .nav-toggle:checked ~ .header-end {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
  }
}

/* ---------- homepage header (Truecaller-style over blue hero) ---------- */

.page-home .site-header--hero {
  background: linear-gradient(180deg, rgba(0, 70, 160, 0.55) 0%, rgba(0, 70, 160, 0) 100%);
  border-bottom: none;
  backdrop-filter: none;
  transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.page-home .site-header--hero .btn-nav {
  background: var(--white);
  color: var(--blue);
}

.page-home .site-header--hero .btn-nav:hover {
  background: #f0f7ff;
}

.page-home .site-header--hero .brand,
.page-home .site-header--hero .nav a {
  color: var(--white);
  transition: color 0.25s ease;
}

.page-home .site-header--hero .brand small {
  display: none;
}

.page-home .site-header--hero.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.page-home .site-header--hero.is-scrolled .brand,
.page-home .site-header--hero.is-scrolled .nav a {
  color: var(--ink);
}

.page-home .site-header--hero.is-scrolled .nav a[aria-current="page"] {
  color: var(--blue);
}

.page-home .site-header--hero.is-scrolled .btn-nav {
  background: var(--blue);
  color: var(--white);
}

.page-home .site-header--hero.is-scrolled .btn-nav:hover {
  background: var(--blue-dark);
}

.page-home .site-header--hero.is-scrolled .nav-toggle-btn {
  color: var(--ink);
  border-color: var(--line);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: visible;
  color: var(--white);
  background: var(--blue);
  padding: clamp(5rem, 11vw, 7rem) 0 0;
  min-height: clamp(36rem, 88vh, 50rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: blur(18px) saturate(115%);
  transform: scale(1.08);
  opacity: 0.55;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 80, 185, 0.94) 0%, rgba(0, 125, 235, 0.95) 42%, rgba(0, 135, 255, 0.97) 100%),
    radial-gradient(ellipse 85% 55% at 50% 38%, rgba(0, 95, 200, 0.4), transparent 70%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(5rem, 12vw, 9rem);
  background: linear-gradient(to bottom, transparent, var(--paper));
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.15rem;
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.hero h1 {
  color: var(--white);
  max-width: none;
  font-size: clamp(2.35rem, 5.8vw, 3.85rem);
  line-height: 1.04;
}

.hero-lede {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  max-width: 36rem;
  margin-bottom: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.btn-hero {
  padding: 0.92rem 1.7rem;
  font-size: 0.98rem;
  background: var(--white);
  color: var(--blue);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.012em;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn-hero:hover {
  text-decoration: none;
  transform: translateY(-1px);
  background: #f0f7ff;
}

.stores--hero {
  margin-top: 0;
}

.hero-preview {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 5vw, 3.25rem);
}

.hero-preview::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  width: min(92%, 34rem);
  height: 9rem;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.32), transparent 68%);
  pointer-events: none;
}

.phone--hero {
  width: min(15rem, 46vw);
  border-radius: 2.35rem;
  padding: 0.42rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(225, 238, 255, 0.92));
  box-shadow: 0 28px 70px rgba(0, 45, 110, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.55);
  transform: translateY(16%);
}

.phone--hero.phone--crop .phone-screen {
  aspect-ratio: 456 / 680;
}

.band--hero-trust {
  position: relative;
  z-index: 1;
  background: var(--paper);
  padding: clamp(4.5rem, 8vw, 5.75rem) 0 clamp(1.75rem, 3vw, 2.25rem);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 52rem;
  margin-inline: auto;
}

.trust-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-sm);
}

.trust-chip b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.trust-chip span {
  display: block;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- store badges ---------- */

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 1.1rem 0.6rem 0.95rem;
  border-radius: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #0b1220;
  min-height: 3.1rem;
}

.store-pill:hover {
  text-decoration: none;
  background: #f2f6fd;
}

.store-pill svg {
  flex: none;
  width: 1.55rem;
  height: 1.55rem;
  overflow: hidden;
}

.store-pill span {
  display: block;
  line-height: 1.15;
}

.store-pill .small {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5b6675;
  font-weight: 600;
}

.store-pill b {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.store-pill--dark {
  background: transparent;
  border-color: var(--line-dark);
  color: var(--white);
}

.store-pill--dark .small {
  color: #9fb6d4;
}

.store-pill--dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- device mockup ---------- */

.phone {
  position: relative;
  width: min(19.5rem, 82vw);
  border-radius: 2.6rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, #2c3646, #0b1220 55%);
  box-shadow: var(--shadow-phone);
  flex: none;
}

.phone--sm {
  width: min(16.5rem, 74vw);
}

.phone-screen {
  position: relative;
  border-radius: 2.15rem;
  background: var(--white);
  overflow: hidden;
  color: var(--ink);
  font-size: 0.8rem;
  line-height: 1.4;
}

.phone-screen img {
  width: 100%;
  height: auto;
}

/* Crop the top of a screenshot (keeps the part that matters) */
.phone--crop .phone-screen {
  aspect-ratio: 456 / 780;
}

.phone--crop .phone-screen img {
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.phone-caption {
  margin: 0.8rem auto 0;
  max-width: 19rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted-2);
}

.band--navy .phone-caption {
  color: #8ea3bd;
}

.phone-pair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.phone-pair .phone:last-child {
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

/* ---------- app UI panel (cropped screen capture) ----------
   A real capture, cropped to the part that matters, so a feature row is not
   as tall as a whole phone. --focus moves the visible window vertically. */

.ui {
  margin: 0;
  width: min(21rem, 100%);
}

.ui-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  aspect-ratio: 456 / 600;
}

.ui-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% var(--focus, 50%);
}

.ui-frame--tall {
  aspect-ratio: 456 / 720;
}

.band--navy .ui-frame {
  border-color: rgba(255, 255, 255, 0.16);
}

.ui figcaption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted-2);
}

.band--navy .ui figcaption {
  color: #8ea3bd;
}

/* ---------- tile grid (what you can check) ---------- */

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1rem;
}

.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

.tile .ico {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-content: center;
  margin-bottom: 0.9rem;
}

.tile h3 {
  font-size: 1.05rem;
}

.tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- split feature rows ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: center;
}

.split + .split {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.split-copy > :last-child {
  margin-bottom: 0;
}

.split--flip .split-visual {
  order: -1;
}

.split-copy h2 {
  max-width: 22ch;
}

.split-copy p {
  color: var(--muted);
  max-width: 34rem;
}

.features-more {
  margin: clamp(2.5rem, 4.5vw, 3.5rem) 0 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.features-more a {
  font-weight: 700;
}

.band--navy .split-copy p {
  color: #c3d3e8;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.phone-stage {
  margin: 0;
  display: grid;
  justify-items: center;
  padding: clamp(0.5rem, 1.6vw, 1.25rem);
  border-radius: var(--r-xl);
  background: radial-gradient(62% 58% at 50% 42%, #e9f0fd 0%, rgba(233, 240, 253, 0) 72%);
}

.band--navy .phone-stage {
  background: radial-gradient(62% 58% at 50% 42%, rgba(10, 108, 255, 0.22) 0%, rgba(10, 108, 255, 0) 72%);
}

.list-check {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.list-check li {
  position: relative;
  padding-left: 1.9rem;
  color: var(--muted);
}

.band--navy .list-check li {
  color: #c3d3e8;
}

.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a6cff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center / 0.72rem no-repeat;
}

.shot {
  margin: 0;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  background: var(--white);
  width: min(30rem, 100%);
}

.shot img {
  width: 100%;
  height: auto;
}

.shot figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
}

/* ---------- stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 1.5rem 2rem;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
}

.stat span {
  color: #b8cbe4;
  font-size: 0.92rem;
}

/* ---------- feature cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.45rem;
}

.card .ico {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-content: center;
  margin-bottom: 0.9rem;
}

.card h3 {
  font-size: 1.06rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- steps ---------- */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: step;
  padding-top: 1.15rem;
  border-top: 3px solid var(--blue);
}

.steps li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 0.45rem;
}

.steps h3 {
  font-size: 1.1rem;
}

.steps p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

/* ---------- privacy list on navy ---------- */

.pcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.pcard {
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
}

.pcard h3 {
  color: var(--white);
  font-size: 1.04rem;
}

.pcard p {
  margin: 0;
  color: #b8cbe4;
  font-size: 0.92rem;
}

/* ---------- FAQ ---------- */

.faq {
  max-width: 50rem;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2.5rem 1.05rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "";
  position: absolute;
  right: 0.3rem;
  top: 1.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2.4px solid var(--blue);
  border-bottom: 2.4px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(-135deg);
}

.faq details p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  max-width: 44rem;
}

.faq-more {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted-2);
}

.faq-more a {
  font-weight: 700;
}

/* ---------- final CTA ---------- */

.cta-band {
  text-align: center;
}

.cta-band h2 {
  margin-inline: auto;
  max-width: 26ch;
  color: var(--white);
}

.cta-band .lede {
  margin-inline: auto;
}

.cta-band .stores {
  justify-content: center;
}

/* ---------- footer ---------- */

.site-footer {
  background: #04101f;
  color: #a9bcd4;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 1.75rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(9rem, 1fr));
  gap: 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand p {
  max-width: 22rem;
  color: #8ea3bd;
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: #a9bcd4;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-top: 1.35rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #8ea3bd;
}

/* ---------- legal / prose pages ---------- */

.page-head {
  background: radial-gradient(120% 130% at 12% 0%, #0d3a7a 0%, var(--navy) 62%);
  color: var(--white);
  padding: clamp(2.25rem, 4vw, 3.25rem) 0 clamp(2rem, 3.5vw, 2.75rem);
}

.page-head h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  max-width: 26ch;
}

.page-head .lede {
  color: #cfe0f5;
  margin-bottom: 0;
}

.prose {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 3rem) var(--pad);
}

.prose h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin-top: 2.1rem;
}

.prose h3 {
  margin-top: 1.6rem;
}

.prose p,
.prose li {
  color: #333c48;
}

.prose ul,
.prose ol {
  padding-left: 1.3rem;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--paper);
}

.prose hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.callout {
  background: var(--blue-soft);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem;
  margin: 1.5rem 0;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* ---------- contact / support blocks ---------- */

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.4rem;
  background: var(--white);
}

.contact-card h3 {
  font-size: 1.05rem;
}

.contact-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 60rem) {
  .trust-row {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }

  .split--flip .split-visual {
    order: 0;
  }
}

@media (max-width: 36rem) {
  .hero {
    min-height: auto;
    padding-top: clamp(4.5rem, 14vw, 5.5rem);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .stores--hero {
    justify-content: center;
  }

  .phone--hero {
    width: min(13rem, 62vw);
    transform: translateY(10%);
  }
}

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

  * {
    transition: none !important;
  }
}
