﻿:root {
  --navy: #0b1c5a;
  --ink: #16213d;
  --muted: #5e6986;
  --line: rgba(14, 28, 82, 0.08);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --green: #5edb4f;
  --blue: #2e6af3;
  --orange: #ff8a3d;
  --shadow: 0 18px 60px rgba(19, 31, 69, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(74, 126, 255, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(94, 219, 79, 0.09), transparent 25%),
    linear-gradient(180deg, #fcfdff 0%, #f5f8ff 100%);
}

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

.bg {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.45;
}

.bg-left {
  top: 110px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: rgba(46, 106, 243, 0.22);
}

.bg-right {
  right: -80px;
  bottom: 60px;
  width: 320px;
  height: 320px;
  background: rgba(94, 219, 79, 0.18);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 260px;
  height: auto;
  display: block;
  max-width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 28px;
  align-items: center;
  padding-top: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1,
.newsletter h2,
.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.lede,
.newsletter p,
.form-note,
.footer,
.step-card p {
  color: var(--muted);
}

.lede {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.pill-row span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 28, 90, 0.1);
  box-shadow: 0 10px 20px rgba(16, 29, 71, 0.06);
  font-weight: 700;
  color: var(--navy);
}

.preview-card,
.step-card,
.newsletter {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

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

.phone-shell {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 18px 14px 14px;
  border-radius: 38px;
  background: #0d1328;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-notch {
  width: 134px;
  height: 28px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #05070e;
}

.phone-screen {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fbfdff 0%, #eef4ff 100%);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.screen-kicker {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.screen-header h2 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--navy);
}

.status-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pill {
  min-width: 54px;
  height: 30px;
  color: #3d8b2f;
  background: rgba(94, 219, 79, 0.18);
}

.screen-card {
  position: relative;
  margin-bottom: 12px;
  padding: 16px 14px 16px 18px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 8px 24px rgba(16, 29, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.screen-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 5px;
  border-radius: 999px;
}

.accent-green::before {
  background: #57cf58;
}

.accent-blue::before {
  background: #2e6af3;
}

.accent-orange::before {
  background: #ff8a3d;
}

.screen-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--navy);
}

.screen-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.mini-pill {
  min-width: 74px;
  height: 34px;
  color: white;
  background: linear-gradient(135deg, #2e6af3, #59cc5a);
}

.steps {
  padding: 18px 0 4px;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

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

.step-card {
  border-radius: var(--radius);
  padding: 24px;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--navy);
}

.step-card p {
  margin: 0;
  line-height: 1.65;
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius);
}

.newsletter h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.newsletter p {
  max-width: 48ch;
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
}

.signup-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(11, 28, 90, 0.08);
}

.signup-form input,
.signup-form button {
  min-height: 50px;
  border-radius: 16px;
  font: inherit;
}

.signup-form input {
  width: 100%;
  padding: 0 16px;
  border: 1px solid rgba(11, 28, 90, 0.14);
  background: white;
  color: var(--ink);
  outline: none;
}

.signup-form input:focus {
  border-color: rgba(46, 106, 243, 0.45);
  box-shadow: 0 0 0 4px rgba(46, 106, 243, 0.1);
}

.signup-form button {
  border: 0;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, #2e6af3, #59cc5a);
  box-shadow: 0 18px 34px rgba(46, 106, 243, 0.24);
  cursor: pointer;
}

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

.form-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  font-size: 0.96rem;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .hero,
  .newsletter,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo {
    width: 190px;
  }

  .hero {
    padding-top: 16px;
  }

  .pill-row {
    gap: 10px;
  }

  .pill-row span {
    padding: 9px 14px;
  }

  .newsletter,
  .signup-form {
    padding: 20px;
  }

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