:root {
  --bg: #f4efe6;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffaf2;
  --text: #16130f;
  --muted: #655b4f;
  --line: rgba(22, 19, 15, 0.08);
  --blue: #1565ff;
  --amber: #ffb703;
  --green: #2a9d8f;
  --rose: #ef476f;
  --shadow: 0 24px 80px rgba(22, 19, 15, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(21, 101, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 183, 3, 0.2), transparent 22%),
    linear-gradient(180deg, #fff9f0 0%, var(--bg) 48%, #efe5d8 100%);
  min-height: 100vh;
}

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

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #1565ff, #0c39a9);
}

.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.topbar-mail {
  color: var(--muted);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--text);
  color: white;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

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

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.button-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 74px 0 44px;
}

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

.hero h1,
.section-heading h2,
.cta h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-text,
.cta p,
.feature-card p,
.flow-step p,
.faq-list p,
.stats p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--blue);
  margin-right: 10px;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.orb-one {
  width: 300px;
  height: 300px;
  top: 50px;
  left: 30px;
  background: rgba(21, 101, 255, 0.14);
}

.orb-two {
  width: 210px;
  height: 210px;
  right: 40px;
  bottom: 90px;
  background: rgba(239, 71, 111, 0.16);
}

.shot-frame {
  position: relative;
  width: min(100%, 430px);
  padding: 16px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: linear-gradient(180deg, rgba(14, 16, 23, 0.94), rgba(36, 38, 50, 0.94));
  box-shadow: 0 40px 100px rgba(15, 14, 12, 0.32);
}

.hero-shot {
  display: block;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.stats,
.feature-grid,
.flow-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.stats article,
.feature-card,
.flow-step,
.faq-list article,
.cta {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.stats article {
  padding: 22px;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.section {
  padding: 96px 0 0;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.6rem);
  margin-bottom: 10px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 28px;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -24px;
  bottom: -36px;
  border-radius: 999px;
  opacity: 0.18;
}

.accent-blue::after {
  background: var(--blue);
}

.accent-amber::after {
  background: var(--amber);
}

.accent-green::after {
  background: var(--green);
}

.accent-rose::after {
  background: var(--rose);
}

.feature-card h3,
.flow-step h3,
.faq-list h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flow-step {
  padding: 24px;
}

.step-no {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-list span {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.78);
  font-weight: 700;
}

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.screenshot-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.screenshot-card img {
  display: block;
  width: min(100%, 360px);
  margin: 0 auto 14px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 14, 12, 0.12);
}

.screenshot-card figcaption {
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.faq-list article {
  padding: 24px;
}

.cta {
  margin-top: 96px;
  padding: 36px;
  background:
    radial-gradient(circle at top right, rgba(21, 101, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 250, 242, 0.9), rgba(255, 244, 228, 0.92));
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 4px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-link {
  margin-left: 12px;
  font-weight: 700;
}

.policy-main {
  padding: 56px 0 24px;
}

.policy-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.policy-card h1 {
  margin: 0 0 8px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.policy-card h2 {
  margin: 30px 0 10px;
  font-size: 1.2rem;
}

.policy-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
}

.policy-lead {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .hero,
  .stats,
  .feature-grid,
  .flow-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

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

  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    top: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    flex-wrap: wrap;
  }

  .nav {
    display: none;
  }

  .hero {
    gap: 26px;
    padding: 34px 0 20px;
  }

  .hero h1,
  .section-heading h2,
  .cta h2 {
    line-height: 1;
  }

  .shot-frame {
    width: 100%;
    padding: 14px;
    border-radius: 32px;
  }

  .footer {
    flex-direction: column;
  }

  .policy-card {
    padding: 24px;
    border-radius: 24px;
  }
}
