:root {
  color-scheme: light;
  --ink: #101620;
  --muted: #586577;
  --line: #d9e1ea;
  --paper: #ffffff;
  --mist: #eef4f7;
  --blue: #063f7a;
  --blue-deep: #06243f;
  --teal: #0c8177;
  --gold: #d9942b;
  --shadow: 0 18px 50px rgba(16, 22, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 36, 63, 0.64);
  color: #fff;
  backdrop-filter: blur(16px);
}

.site-header.solid,
.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(16, 22, 32, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-size: 0.82rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: inherit;
  opacity: 0.88;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("/assets/blue-tiger-hero.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 45, 0.94) 0%, rgba(6, 36, 63, 0.82) 42%, rgba(6, 36, 63, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 36, 63, 0.3), rgba(6, 36, 63, 0.1));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #9be2dd;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 0.8rem;
  font-size: 4.4rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.25rem;
  line-height: 1.1;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #121416;
}

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}

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

.section {
  padding: 82px 0;
  background: var(--paper);
}

.section.light {
  background: var(--mist);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.intro {
  padding-top: 56px;
  padding-bottom: 56px;
}

.intro p,
.policy-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.service-card {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(16, 22, 32, 0.06);
}

.service-card p,
.steps p,
.form-note {
  color: var(--muted);
}

.form-note.is-error {
  color: #9b2d20;
  font-weight: 800;
}

.service-kicker {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--teal);
  font-weight: 900;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
}

.steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.steps span {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 900;
}

.consent-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbfc;
}

.policy-copy a {
  color: var(--blue);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

label {
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem 0.85rem;
  border: 1px solid #b9c7d6;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(12, 129, 119, 0.22);
  border-color: var(--teal);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  font-weight: 500;
}

.checkbox-row input {
  min-height: 22px;
  width: 22px;
  margin: 0.15rem 0 0;
  accent-color: var(--teal);
}

.checkbox-row span,
.form-note {
  font-size: 0.92rem;
}

.checkbox-row a {
  color: var(--blue);
  font-weight: 800;
}

.form-button {
  width: fit-content;
}

.footer {
  padding: 36px 0;
  background: var(--blue-deep);
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.legal-page {
  background: #f8fbfc;
}

.legal-main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.legal-article {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(16, 22, 32, 0.08);
}

.legal-article h1 {
  max-width: none;
  color: var(--ink);
  font-size: 3rem;
}

.legal-article h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

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

.legal-article a {
  color: var(--blue);
  font-weight: 800;
}

.contact-page-main {
  width: min(760px, calc(100% - 32px));
}

.contact-page-hero {
  margin-bottom: 1.25rem;
}

.contact-page-hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: 3rem;
}

.contact-page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.standalone-form {
  margin-bottom: 2rem;
}

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

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .split,
  .process-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 620px) {
  .site-header {
    left: 10px;
    right: 10px;
    width: auto;
    margin-top: 10px;
  }

  .nav {
    gap: 0.8rem;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-bg {
    background-position: 68% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(6, 26, 45, 0.96) 0%, rgba(6, 36, 63, 0.84) 70%, rgba(6, 36, 63, 0.35) 100%);
  }

  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
    padding-top: 124px;
  }

  .section-inner,
  .footer-inner,
  .copyright,
  .legal-main {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero-lede {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .footer-inner,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .form-button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

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

  .service-card {
    min-height: 0;
  }

  .legal-main {
    padding-top: 154px;
  }

  .legal-article {
    padding: 1.2rem;
  }

  .legal-article h1 {
    font-size: 2.2rem;
  }
}
