:root {
  color-scheme: light;
  --bg: #eef3f9;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #152232;
  --muted: #5c6f86;
  --line: rgba(50, 88, 130, 0.14);
  --accent: #0f6cbd;
  --accent-strong: #0a4f8c;
  --accent-soft: rgba(15, 108, 189, 0.1);
  --shadow: 0 20px 50px rgba(12, 31, 56, 0.1);
  font-family: "Segoe UI Variable Text", "Segoe UI", "Inter", sans-serif;
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff, var(--bg));
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top right, rgba(15, 108, 189, 0.08), transparent 22rem),
    radial-gradient(circle at bottom left, rgba(11, 94, 163, 0.08), transparent 20rem),
    linear-gradient(180deg, #f8fbff, var(--bg));
}

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

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

code {
  padding: 0.12rem 0.4rem;
  border-radius: 0.5rem;
  background: rgba(15, 108, 189, 0.08);
  font-family: "Cascadia Code", "Consolas", monospace;
  font-size: 0.95em;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #4ca4ef);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.22);
}

.brand-name {
  font-weight: 700;
  font-size: 1.02rem;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar-cta,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.topbar-cta,
.primary-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 108, 189, 0.22);
}

.secondary-cta {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.topbar-cta:hover,
.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}

.hero-copy,
.proof-strip article,
.feature-card,
.download-panel,
.hero-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-copy {
  border-radius: 28px;
  padding: 34px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.96;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}

p {
  margin: 0;
}

.hero-text,
.section-heading p,
.feature-card p,
.download-panel p,
.footer,
.hero-card-overlay span,
.download-note {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.trust-list li {
  position: relative;
  padding-left: 22px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5fb0fb);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  min-height: 100%;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-card-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(10, 25, 42, 0.68);
  color: #fff;
  display: grid;
  gap: 6px;
}

.mini-label {
  color: #9fd2ff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.proof-strip article {
  border-radius: 22px;
  padding: 20px;
  display: grid;
  gap: 8px;
}

.proof-strip strong {
  font-size: 1.05rem;
}

.features {
  margin-bottom: 32px;
}

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

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

.feature-card {
  border-radius: 22px;
  padding: 22px;
}

.download-panel {
  border-radius: 28px;
  padding: 26px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.download-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.download-note {
  font-size: 0.9rem;
}

.footer {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero,
  .feature-grid,
  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .download-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-actions {
    justify-items: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: calc(100% - 24px);
    padding: 18px 0 36px;
  }

  .topbar,
  .hero,
  .feature-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-copy,
  .feature-card,
  .proof-strip article,
  .download-panel {
    padding: 20px;
  }

  .hero-card img {
    min-height: 340px;
  }

  .footer {
    flex-direction: column;
  }
}
