:root {
  --bg: #f4f6fb;
  --panel: #ffffff;
  --ink: #101828;
  --muted: #475467;
  --primary: #1b4d8c;
  --primary-strong: #153a6b;
  --accent: #d97706;
  --accent-soft: #fff4e5;
  --border: #d0d5dd;
  --success: #0f8b52;
  --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
  --font-sans: "Gill Sans", "Trebuchet MS", "Verdana", sans-serif;
  --font-display: "Palatino Linotype", "Book Antiqua", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(0.5px);
}

body::before {
  top: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(27, 77, 140, 0.18), rgba(27, 77, 140, 0));
}

body::after {
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.16), rgba(217, 119, 6, 0));
}

a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--primary-strong);
}

a:focus-visible {
  outline: 3px solid rgba(217, 119, 6, 0.5);
  outline-offset: 2px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  padding: 0.7rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  left: 1.5rem;
  z-index: 20;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.support-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: #fff9f1;
  border: 1px solid rgba(217, 119, 6, 0.35);
  margin-bottom: 1.6rem;
  box-shadow: 0 6px 14px rgba(217, 119, 6, 0.06);
}

.support-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.support-banner strong {
  color: var(--ink);
}

.support-banner .secondary {
  margin-top: 0;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1b4d8c, #2f78b5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 24px rgba(27, 77, 140, 0.25);
  color: #ffffff;
}

.brand-logo svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.site-nav .nav-cta {
  background: var(--primary);
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border-bottom: none;
  box-shadow: 0 12px 24px rgba(27, 77, 140, 0.25);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus {
  color: #ffffff;
  background: var(--primary-strong);
}

main {
  display: block;
}

section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: start;
  background: linear-gradient(135deg, rgba(27, 77, 140, 0.08), rgba(217, 119, 6, 0.08));
  border: 1px solid rgba(27, 77, 140, 0.12);
  padding: 2.5rem;
}

.hero-simple {
  grid-template-columns: 1fr;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary-strong);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 2rem + 1.6vw, 3.3rem);
  margin: 0.6rem 0 1rem;
  letter-spacing: -0.02em;
}

h2 {
  margin-top: 0;
  font-size: 1.6rem;
  font-family: var(--font-display);
}

h3 {
  margin-top: 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-note {
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 0.3rem;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.6rem;
}

.step-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  counter-reset: steps;
}

.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.step-list li::before {
  content: counter(steps);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 28px;
}

.price {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--success);
  margin: 0.2rem 0;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta,
.ghost,
.secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.cta {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(27, 77, 140, 0.2);
}

.cta:hover,
.cta:focus {
  background: var(--primary-strong);
  color: #ffffff;
}

.ghost {
  background: #ffffff;
  border-color: var(--border);
  color: var(--primary);
}

.secondary {
  background: var(--accent-soft);
  border-color: rgba(217, 119, 6, 0.35);
  color: var(--primary-strong);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.trust-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f0f4ff;
  border: 1px solid rgba(27, 77, 140, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.callout {
  border-left: 6px solid var(--accent);
  background: linear-gradient(135deg, rgba(255, 244, 229, 0.8), rgba(255, 255, 255, 1));
}

.download-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-bottom: 0;
}

.dl-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(217, 119, 6, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
}

.dl-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent);
}

.dl-body h2 {
  margin: 0 0 0.4rem 0;
}

.dl-body p {
  margin: 0.25rem 0 0.9rem;
  color: var(--muted);
}

.dl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.pill {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
  background: #fff;
}

.faq-item h2 {
  margin-bottom: 0.5rem;
}

code {
  background: #f2f4f7;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.15rem 0.4rem;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 0.9em;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 2.75rem;
}

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

main > * {
  animation: rise 0.6s ease both;
}

main > *:nth-child(2) {
  animation-delay: 0.05s;
}

main > *:nth-child(3) {
  animation-delay: 0.1s;
}

main > *:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

@media (max-width: 640px) {
  .container {
    padding: 2.25rem 1.1rem 3rem;
  }

  .site-nav {
    gap: 0.75rem;
  }

  section {
    padding: 1.5rem;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  main > * {
    animation: none;
  }
}
