:root {
  --bg: #f5f6ff;
  --surface: #ffffff;
  --surface-soft: #eef0ff;
  --ink: #1d2138;
  --muted: #495074;
  --brand-red: #9f1a1b;
  --brand-blue: #1a1c76;
  --brand-gold: #ffb925;
  --cta: #2bb828;
  --cta-dark: #1f7f1f;
  --accent: var(--brand-red);
  --accent-dark: var(--brand-blue);
  --line: #d4d8ec;
  --radius: 12px;
  --shadow: 0 8px 24px rgba(20, 24, 67, 0.1);
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-dark);
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: var(--surface);
  border-bottom: 2px solid var(--brand-blue);
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .wrap {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 74px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

.header-email {
  margin: 0;
}

.email-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--cta);
  color: #0f2a12;
  border: 1px solid #208f22;
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.9rem;
}

.email-pill:hover,
.email-pill:focus-visible {
  background: var(--cta-dark);
  color: #ffffff;
}

.brand {
  text-decoration: none;
  color: var(--ink);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
}

.brand-title {
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-blue);
}

.brand-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--brand-red);
  font-weight: 600;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.nav-list a {
  text-decoration: none;
  display: inline-block;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--surface-soft);
}

.nav-list a[aria-current="page"] {
  background: #fff2cc;
  color: var(--brand-blue);
  font-weight: 600;
}

.site-main {
  padding: 2rem 0 3rem;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}

.hero {
  background: linear-gradient(145deg, #edf0ff 0%, #fff7e4 60%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
}

.eyebrow {
  color: var(--brand-red);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 0.7rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

h3 {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

p,
li {
  color: var(--ink);
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 68ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.button {
  display: inline-block;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
}

.button-primary {
  background: var(--brand-blue);
  color: #ffffff;
  border-color: var(--brand-blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--brand-red);
  color: #fff;
}

.button-secondary {
  background: var(--surface);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-soft);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

.card h3 {
  margin-bottom: 0.4rem;
}

.section-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.kicker {
  color: var(--muted);
  margin-top: 0;
}

.cycle-highlight {
  margin-top: 0;
  color: var(--brand-blue);
  font-weight: 700;
  background: #fff7df;
  border-left: 4px solid var(--brand-gold);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
}

.muted {
  color: var(--muted);
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 0.75rem 0.9rem;
  background: #fff7e2;
  border-radius: 6px;
}

.list-clean {
  margin: 0;
  padding-left: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #e9ecff;
  padding: 1.25rem 0 2rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

.form {
  display: grid;
  gap: 0.9rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #baa98f;
  border-radius: 8px;
  padding: 0.62rem 0.7rem;
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0.95rem 1rem;
}

.quote {
  font-style: italic;
  margin: 0;
}

.caption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.video-cta {
  margin-top: 0.8rem;
}

.hero-video {
  margin-top: 1rem;
  max-width: 820px;
}

.hero-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #000;
}

.resource-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.resource-anchor-list a {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--brand-blue);
  color: var(--brand-blue);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-weight: 600;
}

.resource-anchor-list a:hover,
.resource-anchor-list a:focus-visible {
  background: var(--surface-soft);
}

.testimonial-slot h2 {
  margin-bottom: 0.35rem;
}

@media (max-width: 860px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .header-right {
    width: 100%;
    align-items: flex-start;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 1.4rem 1rem;
  }

  .site-main {
    padding-top: 1rem;
  }
}
