:root {
  color-scheme: light;
  --ink: #1f2937;
  --muted: #64748b;
  --faint: #eef2ff;
  --line: rgba(99, 102, 241, 0.14);
  --paper: #fbfcff;
  --panel: rgba(255, 255, 255, 0.78);
  --indigo: #6157f4;
  --violet: #7c58f5;
  --cyan: #0891b2;
  --orange: #d97706;
  --shadow: 0 34px 90px rgba(30, 41, 59, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 30%, rgba(6, 182, 212, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(99, 102, 241, 0.14), transparent 24rem),
    linear-gradient(135deg, #f1f5ff 0%, #fbfcff 46%, #effdff 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: #475569;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  background: #eef2ff;
  color: var(--indigo);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
}

.hero-copy {
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6.4vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.lede {
  max-width: 640px;
  color: #475569;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(99, 102, 241, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  color: #334155;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
}

.trust-strip div,
.feature-grid article,
.privacy-panel,
.final-cta {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(30, 41, 59, 0.06);
  backdrop-filter: blur(18px);
}

.trust-strip div {
  min-height: 116px;
  padding: 18px 18px 17px;
  border-radius: 20px;
}

.trust-strip dt {
  margin-bottom: 4px;
  font-weight: 850;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(8px) rotate(0.8deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.statement {
  width: min(980px, calc(100% - 40px));
  margin: 118px auto 0;
}

.statement p {
  margin: 0;
  color: #263244;
  font-size: clamp(31px, 4.8vw, 64px);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.feature-band,
.showcase,
.privacy-panel,
.stats-preview,
.final-cta,
.policy-grid,
.policy-hero {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.feature-band {
  margin-top: 118px;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

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

.feature-grid article {
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius);
}

.feature-index {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--indigo);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.feature-grid p,
.showcase-copy p,
.stats-copy p,
.policy-copy p,
.policy-copy li,
.privacy-list {
  color: var(--muted);
}

.showcase {
  margin-top: 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.screen-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.showcase-copy {
  max-width: 470px;
}

.privacy-panel {
  margin-top: 118px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 36px;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 36px;
}

.privacy-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  padding: 14px 16px;
  border-radius: 17px;
  background: rgba(238, 242, 255, 0.72);
  color: #334155;
  font-weight: 720;
}

.stats-preview {
  margin-top: 118px;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.stats-preview img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.stats-copy {
  max-width: 430px;
}

.final-cta {
  margin-top: 118px;
  margin-bottom: 64px;
  padding: 56px 24px;
  border-radius: 38px;
  text-align: center;
}

.final-cta img {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 20px;
}

.final-cta p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a {
  font-weight: 720;
  color: #475569;
}

.policy {
  padding-top: 64px;
}

.policy-hero {
  margin-top: 54px;
}

.policy-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
}

.policy-hero p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.policy-grid {
  margin-top: 52px;
  margin-bottom: 72px;
  display: block;
}

.policy-grid aside {
  position: sticky;
  top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  color: #475569;
  box-shadow: 0 18px 50px rgba(30, 41, 59, 0.06);
}

.policy-copy {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.policy-copy h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: 30px;
}

.policy-copy h2:first-child {
  margin-top: 0;
}

.policy-copy h3 {
  margin-top: 22px;
  font-size: 18px;
}

.policy-copy a {
  color: var(--indigo);
  font-weight: 760;
}

@media (max-width: 900px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .showcase,
  .privacy-panel,
  .stats-preview,
  .policy-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    margin-top: 48px;
  }

  .hero-visual {
    transform: none;
  }

  .policy-grid aside {
    position: static;
  }
}

@media (max-width: 560px) {
  .nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .policy-copy {
    padding: 26px;
  }
}
