:root {
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #dfe5ef;
  --soft: #f6f8fc;
  --soft-green: #edf7f0;
  --green: #1e8e3e;
  --blue: #1a73e8;
  --yellow: #fbbc04;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(223, 229, 239, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(26, 115, 232, 0.2);
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  padding: 76px 0 56px;
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 72%),
    radial-gradient(circle at 20% 15%, rgba(52, 168, 83, 0.14), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 70px);
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
}

h3 {
  font-size: 19px;
}

.lead {
  margin: 22px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.app-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.status {
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.preview-form {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.field-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.field-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-value {
  margin: 0;
  font-weight: 800;
}

.reply-box {
  margin-top: 8px;
  padding: 14px;
  border-left: 4px solid var(--green);
  background: var(--soft-green);
  border-radius: 8px;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.policy-page {
  padding: 52px 0 82px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.policy-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.policy-content {
  max-width: 820px;
}

.policy-content h1 {
  font-size: clamp(36px, 5vw, 54px);
}

.policy-content h2 {
  margin-top: 36px;
  font-size: 26px;
}

.policy-content h3 {
  margin-top: 24px;
}

.policy-content p,
.policy-content li {
  color: #3f4a5a;
}

.policy-content ul {
  padding-left: 22px;
}

.callout {
  padding: 18px;
  border: 1px solid #c8e6d2;
  border-radius: 8px;
  background: var(--soft-green);
}

.contact-card {
  max-width: 680px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .steps,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 46px;
  }

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