:root {
  --ink: #132238;
  --muted: #5f6d7a;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --navy: #102a43;
  --teal: #0f8b8d;
  --teal-dark: #08666a;
  --sky: #dff5ff;
  --lime: #d7f264;
  --coral: #ff6b4a;
  --gold: #f3b33d;
  --line: #d8e2ea;
  --shadow: 0 24px 70px rgba(16, 42, 67, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(16, 42, 67, 0.9), rgba(16, 42, 67, 0));
}

.brand,
.top-nav,
.hero-actions,
.hero-badges,
.field-grid,
.trust-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: clamp(12rem, 22vw, 17rem);
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.top-nav {
  gap: clamp(0.7rem, 2vw, 1.4rem);
  font-size: 0.94rem;
  font-weight: 800;
}

.top-nav a {
  text-decoration: none;
  opacity: 0.95;
}

.top-nav a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  padding: 6.7rem clamp(1rem, 4vw, 3rem) 4rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 57% 40%, rgba(243, 179, 61, 0.2), rgba(16, 42, 67, 0.1) 28%, rgba(16, 42, 67, 0.7) 74%),
    linear-gradient(105deg, rgba(16, 42, 67, 0.98) 0%, rgba(8, 102, 106, 0.92) 48%, rgba(16, 42, 67, 0.88) 100%),
    linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(17rem, 0.62fr) minmax(21rem, 0.68fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  max-width: 1460px;
  min-height: calc(92vh - 11rem);
  margin: 0 auto;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 7vw, 7.2rem);
  letter-spacing: 0;
}

.hero-text {
  max-width: 55ch;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.button {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.45rem;
  padding: 0.9rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary,
.button-form {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(255, 107, 74, 0.34);
}

.button-primary:hover,
.button-form:hover {
  background: #e95637;
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-badges {
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.hero-badges span {
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-portrait {
  position: relative;
  align-self: stretch;
  height: clamp(520px, 68vh, 760px);
  margin: 0;
  overflow: hidden;
  border: 4px solid var(--gold);
  border-radius: 0.7rem;
  background:
    url("assets/sam-hudson-headshot-v2.jpg") center top / cover no-repeat,
    #050608;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(255, 241, 168, 0.28);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 42, 67, 0) 45%, rgba(5, 6, 8, 0.74) 100%);
  pointer-events: none;
}

.hero-portrait img {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 241, 168, 0.44);
  border-radius: 0.5rem;
  background: rgba(5, 6, 8, 0.74);
  backdrop-filter: blur(8px);
}

.hero-portrait strong {
  color: #ffffff;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.hero-portrait span {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 850;
}

.lead-form {
  width: 100%;
  padding: clamp(1rem, 2.4vw, 1.55rem);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 1rem;
}

.form-heading p {
  margin-bottom: 0.25rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

label {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 2.85rem;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  padding: 0.72rem 0.78rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-weight: 550;
}

textarea {
  min-height: 7.5rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 139, 141, 0.22);
  border-color: var(--teal);
}

input[type="checkbox"] {
  min-height: auto;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  accent-color: var(--teal-dark);
}

.field-grid {
  align-items: start;
  gap: 0.75rem;
}

.field-grid label {
  flex: 1;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.4;
}

.consent-check a,
.form-note a {
  color: var(--teal-dark);
  font-weight: 900;
}

.button-form {
  width: 100%;
  margin-top: 1rem;
  font-size: 1rem;
}

.button-form:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 1.2rem;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.form-status[data-kind="error"] {
  color: #b42318;
}

.form-status[data-kind="pending"] {
  color: var(--teal-dark);
}

.form-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.hidden-field {
  display: none;
}

.trust-strip {
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  max-width: 1120px;
  margin: -2rem auto 0;
  padding: 1rem;
}

.trust-strip span {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: var(--navy);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(16, 42, 67, 0.12);
  font-size: 0.92rem;
  font-weight: 900;
}

.coverage-section,
.process,
.split-feature,
.contact-band,
.disclosure {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.coverage-section {
  padding-top: clamp(3rem, 7vw, 5.8rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-lede {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
  gap: clamp(1.3rem, 4vw, 3rem);
  align-items: end;
}

.section-lede h2,
.process h2,
.feature-panel h2,
.contact-band h2 {
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

.section-lede p:not(.eyebrow),
.feature-panel p,
.process p,
.coverage-grid p,
.faq-list p {
  color: var(--muted);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.coverage-grid article {
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(16, 42, 67, 0.07);
}

.card-kicker {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 950;
}

.coverage-grid h3,
.steps h3 {
  font-size: 1.25rem;
}

.coverage-grid p,
.steps p {
  margin-top: 0.55rem;
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.steps article {
  padding: 1rem 0 1rem 1.1rem;
  border-left: 4px solid var(--teal);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.72fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.98), rgba(15, 139, 141, 0.94)),
    var(--navy);
}

.feature-panel p {
  max-width: 58ch;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.45rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-band {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  background: #ffffff;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  font-style: normal;
}

.contact-list a {
  display: block;
  min-width: 0;
  padding: 1rem;
  border-left: 4px solid var(--coral);
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  background: var(--sky);
}

.contact-list span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclosure {
  padding-top: 1.2rem;
  padding-bottom: 2rem;
}

.disclosure p {
  padding: 1rem;
  border-left: 4px solid var(--gold);
  color: var(--muted);
  background: #ffffff;
  font-size: 0.92rem;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 4vw, 3rem);
  color: #ffffff;
  background: var(--navy);
}

.site-footer p {
  font-weight: 900;
}

.site-footer span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-footer a {
  color: #ffffff;
  text-underline-offset: 0.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1rem;
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 35%, rgba(223, 245, 255, 0.16), rgba(16, 42, 67, 0.52) 48%, rgba(16, 42, 67, 0.92) 100%),
    url("assets/sam-hudson-headshot-v2.jpg") right center / min(58vw, 720px) auto no-repeat fixed,
    linear-gradient(135deg, var(--navy), var(--teal-dark));
}

.thanks-shell {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 2rem;
  max-width: 780px;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: #ffffff;
}

.thanks-panel {
  padding: clamp(1.3rem, 4vw, 2.5rem);
  border-radius: 0.55rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 7vw, 4.8rem);
}

.thanks-panel p {
  margin-top: 1rem;
  color: var(--muted);
}

.thanks-panel .button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.thanks-contact {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-style: normal;
}

.legal-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.legal-mini-nav a {
  color: var(--teal-dark);
  font-weight: 900;
  text-underline-offset: 0.25rem;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #ffffff;
  background: var(--navy);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
}

.legal-nav a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.legal-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.legal-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem);
}

.legal-document {
  padding: clamp(1.2rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(16, 42, 67, 0.06);
}

.legal-document h1 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 7vw, 4.7rem);
}

.legal-document h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}

.legal-document p,
.legal-document li {
  margin-top: 0.8rem;
  color: var(--muted);
}

.legal-document a {
  color: var(--teal-dark);
  font-weight: 900;
}

.legal-document ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-document li + li {
  margin-top: 0.45rem;
}

.legal-updated {
  font-weight: 900;
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
    background: rgba(16, 42, 67, 0.86);
  }

  .hero-inner,
  .section-lede,
  .process,
  .split-feature,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(105deg, rgba(16, 42, 67, 0.94), rgba(8, 102, 106, 0.84)),
      linear-gradient(135deg, var(--navy), var(--teal-dark));
  }

  .hero-inner {
    min-height: 0;
  }

  .coverage-grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 12ch;
  }

  .hero-portrait {
    height: clamp(500px, 66vh, 680px);
    max-width: 560px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .field-grid,
  .legal-header {
    align-items: stretch;
    flex-direction: column;
  }

  .top-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }

  .brand-logo {
    width: min(15.5rem, 100%);
  }

  .hero {
    padding-top: 9.5rem;
    background:
      linear-gradient(180deg, rgba(16, 42, 67, 0.82), rgba(16, 42, 67, 0.96)),
      linear-gradient(135deg, var(--navy), var(--teal-dark));
  }

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

  .lead-form,
  .coverage-grid article,
  .legal-document {
    padding: 1rem;
  }

  .hero-portrait {
    height: 460px;
  }

  .trust-strip {
    justify-content: flex-start;
    margin-top: -1rem;
  }

  .footer-links,
  .legal-nav {
    justify-content: flex-start;
  }
}
