:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-secondary: #f2f5fa;
  --bg-tertiary: #eef2f7;
  --bg-elevated: rgba(255, 255, 255, 0.92);
  --bg-elevated-strong: rgba(255, 255, 255, 0.98);
  --border: rgba(0, 0, 0, 0.08);
  --text: #101828;
  --muted: #556070;
  --accent: #1c6bf5;
  --accent-secondary: #5856d6;
  --accent-soft: rgba(28, 107, 245, 0.12);
  --shadow: rgba(16, 24, 40, 0.08);
  --max-width: 1120px;
}

@font-face {
  font-family: "Montserrat";
  src: url("./assets/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(28, 107, 245, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(88, 86, 214, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 44%, #eef3f9 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
}

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

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

.site-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 56px;
}

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

.brand-appicon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(28, 107, 245, 0.12);
}

.brand-header {
  width: auto;
  height: 36px;
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.trust-strip article {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px var(--shadow);
}

.hero-copy {
  padding: 40px;
  border-radius: 32px;
}

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

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.lede {
  margin: 20px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(28, 107, 245, 0.10);
  border-radius: 999px;
  background: rgba(28, 107, 245, 0.04);
  color: #24415f;
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #3a81f7);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(28, 107, 245, 0.18);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.hero-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 32px;
}

.card-panel {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--bg-elevated-strong);
}

.card-panel-muted {
  background: linear-gradient(180deg, rgba(28, 107, 245, 0.03), rgba(88, 86, 214, 0.04));
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(28, 107, 245, 0.12), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.hero-appicon {
  width: min(160px, 42vw);
  height: auto;
  border-radius: 34px;
  box-shadow:
    0 18px 46px rgba(28, 107, 245, 0.12),
    0 8px 22px rgba(16, 24, 40, 0.06);
}

.card-label {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-text {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.85;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.trust-strip article {
  padding: 22px;
  border-radius: 24px;
}

.trust-strip h2 {
  margin: 0 0 10px;
  font-size: 1.02rem;
}

.trust-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-top: 28px;
  padding: 24px 2px 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-meta {
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 32px 24px;
  }

  .hero-visual {
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
    padding-top: 18px;
  }

  .site-header {
    margin-bottom: 28px;
  }

  .hero-copy,
  .hero-card {
    border-radius: 24px;
  }

  .brand-header {
    height: 28px;
  }

  .brand-appicon {
    width: 48px;
    height: 48px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.3rem, 12vw, 3.2rem);
    line-height: 1;
  }

  .lede {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
