* { box-sizing: border-box; }

:root {
  --navy: #071528;
  --navy-2: #0b2342;
  --blue: #087cff;
  --orange: #ff8a00;
  --purple: #7f4dff;
  --text: #111827;
  --muted: #5d6878;
  --bg: #f5f8fc;
  --card: #ffffff;
  --border: rgba(15, 35, 66, 0.10);
  --shadow: 0 22px 60px rgba(7, 21, 40, 0.13);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 248, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

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

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #0057d9);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(8, 124, 255, 0.25);
}

.btn-light {
  background: #ffffff;
  color: var(--navy);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.hero {
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 138, 0, 0.22), transparent 28%),
    radial-gradient(circle at 15% 35%, rgba(8, 124, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #061326 0%, #0b2342 100%);
  padding: 64px 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  color: #fff;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 12px;
  font-weight: 950;
  margin: 0 0 12px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 16px;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

p { color: var(--muted); }

.hero-text {
  color: rgba(255,255,255,0.78);
  font-size: 19px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.powered {
  color: #9d7bff;
  font-weight: 900;
}

.hero-visual {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 26px 80px rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.centred {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading > p:last-child {
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 42px rgba(7, 21, 40, 0.07);
}

.pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.pill.blue { background: var(--blue); }
.pill.orange { background: var(--orange); }
.pill.purple { background: var(--purple); }

.preview-section {
  background: #ffffff;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.phone-feature {
  text-align: center;
}

.phone-feature.featured {
  transform: translateY(-18px);
}

.phone-frame {
  max-width: 260px;
  margin: 0 auto 18px;
  border-radius: 34px;
  padding: 8px;
  background: #111827;
  box-shadow: var(--shadow);
}

.phone-frame img {
  border-radius: 26px;
  max-height: 530px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.glovebox-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 138, 0, 0.12), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(8, 124, 255, 0.12), transparent 32%),
    var(--bg);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

.copy-block p {
  font-size: 18px;
}

.glovebox-cards {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 18px;
  align-items: center;
}

.mini-stack {
  display: grid;
  gap: 18px;
}

.mini-phone {
  border-radius: 28px;
  padding: 7px;
  background: #111827;
  box-shadow: 0 18px 50px rgba(7, 21, 40, 0.18);
}

.mini-phone img {
  border-radius: 22px;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: top;
}

.mini-phone.main img {
  max-height: 560px;
}

.trust-section {
  background: #ffffff;
}

.trust-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
  padding: 38px;
  border-radius: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list p {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  margin: 0;
}

.final-cta {
  padding: 20px 0 86px;
}

.cta-card {
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(8, 124, 255, 0.14), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 138, 0, 0.14), transparent 30%),
    #fff;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 52px 24px;
  box-shadow: var(--shadow);
}

.cta-card img {
  width: min(340px, 80%);
  margin: 0 auto 18px;
}

.site-footer {
  background: #07111f;
  color: #fff;
  padding: 42px 0;
}

.site-footer p {
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
  font-weight: 700;
}

.page-hero {
  padding: 70px 0 30px;
  background: linear-gradient(180deg, #fff, var(--bg));
}

.content-page {
  padding: 36px 0 90px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 16px 42px rgba(7, 21, 40, 0.07);
}

.content-card a {
  color: var(--blue);
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 42px rgba(7, 21, 40, 0.07);
}

@media (max-width: 940px) {
  nav { display: none; }

  .hero {
    padding: 38px 0;
  }

  .hero-shell,
  .split,
  .trust-card,
  .glovebox-cards {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .phone-row,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .phone-feature.featured {
    transform: none;
  }

  .phone-frame {
    max-width: 240px;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand span { display: none; }

  .section {
    padding: 62px 0;
  }

  .hero-actions .btn,
  .copy-block .btn,
  .cta-card .btn {
    width: 100%;
  }

  .trust-card,
  .content-card,
  .cta-card {
    padding: 24px;
  }

  .hero-visual {
    border-radius: 22px;
  }
}
