:root {
  --navy: #2f4960;
  --warm-gray: #81807c;
  --off-white: #fafafa;
  --light-gray: #a0a5a7;
  --taupe: #998f82;
  --ink: #1f2e38;
  --muted: #5f666a;
  --line: #dde1e2;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(47, 73, 96, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(250, 250, 250, 0.94);
  border-bottom: 1px solid rgba(160, 165, 167, 0.35);
  backdrop-filter: blur(12px);
}

.brand {
  width: clamp(230px, 30vw, 360px);
  flex: 0 1 auto;
}

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #243c50;
}

.button-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(47, 73, 96, 0.35);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--navy);
  background: rgba(47, 73, 96, 0.06);
}

.hero .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 72px) clamp(54px, 7vw, 92px);
  background:
    linear-gradient(110deg, rgba(47, 73, 96, 0.96), rgba(47, 73, 96, 0.84)),
    linear-gradient(90deg, var(--navy), var(--taupe));
  color: var(--white);
}

.hero-content {
  max-width: 880px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--taupe);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.closing-cta .eyebrow {
  color: #d9cbbb;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.hero-note {
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.note-label {
  display: block;
  margin-bottom: 10px;
  color: #d9cbbb;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.25;
}

.hero-note p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.section,
.guide-band,
.closing-cta {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-copy {
  max-width: 900px;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 28px;
  padding: 0;
  list-style: none;
}

.check-grid li,
.check-list li,
.guide-card li {
  position: relative;
  padding-left: 28px;
}

.check-grid li {
  min-height: 64px;
  padding: 16px 16px 16px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #34424b;
  box-shadow: 0 8px 22px rgba(47, 73, 96, 0.05);
}

.check-grid li::before,
.check-list li::before,
.guide-card li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list li::before,
.guide-card li::before {
  left: 0;
  top: 2px;
}

.callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #f2f1ef;
  border-left: 5px solid var(--taupe);
  border-radius: 8px;
}

.callout p {
  margin-bottom: 0;
  color: #39464e;
  font-weight: 650;
}

.callout-icon {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.licensed-section {
  padding-top: clamp(44px, 7vw, 88px);
}

.licensed-layout {
  max-width: 1080px;
  margin: 0 auto;
}

.state-map-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.state-map-card .section-copy {
  margin-bottom: 24px;
}

.us-license-map {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 0 auto;
  overflow: visible;
}

.us-state {
  fill: #e8ebec;
  stroke: var(--white);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.us-state-licensed {
  fill: var(--navy);
}

.us-state-borders {
  fill: none;
  stroke: var(--white);
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-width: 1.2;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
}

.us-country-outline {
  fill: none;
  stroke: #cfd5d7;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-width: 1.1;
  pointer-events: none;
  vector-effect: non-scaling-stroke;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 20px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid transparent;
}

.licensed-swatch {
  background: var(--navy);
  border-color: var(--navy);
}

.neutral-swatch {
  background: #e8ebec;
  border-color: #d7dcde;
}

.licensed-list-inline {
  max-width: 860px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.licensed-list-inline h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.state-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.state-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 7px 10px;
  background: rgba(47, 73, 96, 0.08);
  color: var(--navy);
  border: 1px solid rgba(47, 73, 96, 0.16);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
}

.intro-section {
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  max-width: 980px;
  margin-bottom: 30px;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.intro-action {
  padding-top: 6px;
}

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

.intro-action-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 280px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-action-card-primary {
  border-top: 5px solid var(--navy);
}

.intro-action-card h3 {
  margin-bottom: 10px;
}

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

.action-step {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: rgba(47, 73, 96, 0.09);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.copy-confirmation {
  min-height: 22px;
  margin: -12px 0 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.copy-toast {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 50;
  margin: 0;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(31, 46, 56, 0.18);
  font-size: 0.95rem;
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid li {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 10px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 20px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card p,
.timeline-card p,
.faq-answer p {
  color: var(--muted);
}

.card ul,
.guide-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.card li {
  margin-bottom: 8px;
  color: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: rgba(47, 73, 96, 0.09);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 900;
}

.guide-band {
  max-width: none;
  background: #eef0f0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guide-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.guide-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 6px solid var(--taupe);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(47, 73, 96, 0.08);
}

.guide-card-positive {
  border-top-color: var(--navy);
}

.guide-card li {
  margin-bottom: 13px;
  color: #3d474d;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(26px, 6vw, 74px);
  align-items: center;
}

.timeline-card {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.check-list li {
  color: #3d474d;
}

.faq-section {
  padding-top: clamp(40px, 6vw, 76px);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  display: block;
  padding: 24px 52px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--navy);
  border: 1px solid rgba(47, 73, 96, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.faq-answer {
  padding: 0 52px 24px 0;
}

.faq-answer p:last-child,
.card p:last-child,
.timeline-card p:last-child {
  margin-bottom: 0;
}

.team-section {
  padding-top: clamp(40px, 6vw, 76px);
}

.team-intro {
  max-width: 760px;
  margin: -8px auto 32px;
  text-align: center;
}

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

.team-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.team-photo {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 4px solid #f2f1ef;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(47, 73, 96, 0.12);
}

.team-card h3 {
  margin-bottom: 6px;
}

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

.team-title {
  margin-bottom: 12px;
  color: var(--taupe);
  font-size: 0.92rem;
  font-weight: 850;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
}

.closing-cta h2 {
  color: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 36px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: 330px;
}

address {
  display: flex;
  justify-content: flex-end;
  gap: 12px 22px;
  flex-wrap: wrap;
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
}

address a {
  text-decoration: none;
}

address a:hover,
address a:focus-visible {
  text-decoration: underline;
}

.copyright {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--warm-gray);
  font-size: 0.9rem;
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: min(360px, 82vw);
  }

  .hero,
  .split-section,
  .guide-columns,
  .licensed-layout,
  .intro-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .check-grid,
  .three-up,
  .team-grid,
  .intro-workflow,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  address,
  .copyright {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .header-actions,
  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero {
    padding-top: 48px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .check-grid,
  .three-up,
  .team-grid,
  .intro-workflow,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .check-grid li {
    min-height: auto;
  }

  .card,
  .hero-note,
  .intro-action-card,
  .team-card,
  .timeline-card,
  .state-map-card,
  .guide-card {
    padding: 22px;
  }

  .team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-photo {
    margin: 0 auto;
  }

  summary {
    padding-right: 44px;
  }

  .faq-answer {
    padding-right: 0;
  }

  address {
    flex-direction: column;
  }
}
