:root {
  --ink: #071a3d;
  --navy: #0a1742;
  --blue: #1268f3;
  --blue-deep: #0b4ed0;
  --green: #15c982;
  --green-deep: #09a96b;
  --sky: #eaf6ff;
  --line: #d7e7f4;
  --muted: #536b80;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 24px 70px rgba(18, 104, 243, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 72% 9%, rgba(18, 104, 243, 0.22), transparent 30rem),
    radial-gradient(circle at 4% 96%, rgba(21, 201, 130, 0.24), transparent 25rem),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 42%, #e9f8ff 100%);
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(7, 26, 61, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 210px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover {
  color: var(--blue);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 34px auto 0;
  padding: clamp(32px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: center;
  border-radius: 44px;
  background:
    linear-gradient(117deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 49%, rgba(18, 104, 243, 0.88) 50%, rgba(18, 104, 243, 0.98) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.62;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 32px rgba(18, 104, 243, 0.24);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 310px;
  min-height: 530px;
  padding: 26px 22px;
  border: 14px solid #141414;
  border-radius: 44px;
  background: linear-gradient(180deg, #ffffff, #f4fbff);
  box-shadow: 0 28px 60px rgba(7, 26, 61, 0.28);
  transform: rotate(5deg);
}

.phone-top {
  width: 84px;
  height: 10px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: #151515;
}

.phone-frame img {
  width: 205px;
  display: block;
  margin: 0 auto 28px;
}

.mock-card {
  margin-bottom: 16px;
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(7, 26, 61, 0.08);
}

.mock-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mock-card strong {
  display: block;
  margin-top: 4px;
}

.mock-card.green {
  border-color: rgba(21, 201, 130, 0.35);
}

.mock-button {
  margin-top: 24px;
  padding: 16px;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.trust-strip,
.section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
}

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

.trust-strip article,
.section,
.site-footer,
.legal-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.trust-strip article {
  padding: 26px;
  border-radius: 28px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.trust-strip span,
.section p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  margin: 30px auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 36px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

.steps span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-deep);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.guided {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.guided .eyebrow,
.guided p {
  color: rgba(255, 255, 255, 0.82);
}

.guided-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.guided-panel ul {
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.app-cta {
  text-align: center;
}

.site-footer {
  margin: 30px auto;
  padding: 22px 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  border-radius: 24px;
  color: var(--muted);
}

.site-footer a {
  font-weight: 900;
  text-decoration: none;
  color: var(--ink);
}

.legal-page {
  width: min(930px, calc(100% - 32px));
  margin: 34px auto;
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border-radius: 34px;
}

.legal-card h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.legal-card li {
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .split,
  .guided {
    grid-template-columns: 1fr;
  }

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

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 255, 0.94));
  }

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

  .phone-frame {
    width: 285px;
    transform: none;
  }
}
