:root {
  --bg: #ffffff;
  --ink: #17212b;
  --muted: #5c6875;
  --line: #dde7ef;
  --soft: #f4f9fb;
  --soft-blue: #eaf5fb;
  --blue: #1d668d;
  --blue-dark: #114461;
  --sage: #7fa58c;
  --gold: #b68136;
  --shadow: 0 20px 60px rgba(23, 33, 43, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
}

.site-nav,
.footer-links,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--blue-dark);
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 74px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.hero-copy h1,
.legal-content h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 32px;
  align-items: flex-start;
}

.text-link {
  color: var(--blue-dark);
  font-weight: 760;
  text-underline-offset: 5px;
}

.text-link.muted {
  color: var(--muted);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -28px 28px 28px -28px;
  content: "";
  background: linear-gradient(135deg, var(--soft-blue), #f7fbf8);
  border-radius: 8px;
  z-index: -1;
}

.hero-media img,
.image-frame img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 86px 0;
}

.section-soft {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.two-column,
.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 58px;
  align-items: center;
}

.section h2,
.legal-content h2 {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.section p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 16px;
}

.check-list div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.check-list span {
  color: var(--gold);
  font-weight: 800;
}

.check-list p {
  margin: 0;
}

.image-frame {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.section-panel {
  padding-top: 26px;
}

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 48px;
  padding: 42px;
  background: var(--blue-dark);
  color: #fff;
  border-radius: 8px;
}

.panel h2,
.panel p {
  color: #fff;
}

.panel p {
  opacity: 0.82;
  margin: 0;
}

.panel ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 20px;
}

.panel li {
  color: rgba(255, 255, 255, 0.86);
}

.legal-page {
  padding: 86px 0;
}

.legal-content {
  max-width: 820px;
}

.legal-content h1 {
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 62px);
}

.legal-content h2 {
  margin-top: 44px;
  font-size: clamp(25px, 3.2vw, 34px);
}

.contact-page {
  min-height: 54vh;
}

.site-footer {
  padding: 48px 0 34px;
  background: #101923;
  color: #fff;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand,
.footer-links a {
  color: #fff;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--blue-dark);
}

.footer-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-disclosure {
  padding-top: 24px;
}

.footer-disclosure p {
  max-width: 1040px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

.footer-disclosure strong {
  color: #fff;
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), 1120px);
  }

  .header-inner,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .footer-links,
  .hero-actions {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero {
    min-height: 0;
    padding: 54px 0 44px;
  }

  .hero-grid,
  .two-column,
  .split-feature,
  .panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-copy h1,
  .legal-content h1 {
    font-size: clamp(34px, 10.5vw, 46px);
    line-height: 1.08;
  }

  .hero-copy p,
  .section p,
  .legal-content p,
  .legal-content li {
    font-size: 17px;
  }

  .hero-media::before {
    inset: -10px 10px 10px -10px;
  }

  .section,
  .legal-page {
    padding: 58px 0;
  }

  .panel {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .container {
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
  }

  .hero-copy h1,
  .legal-content h1 {
    font-size: clamp(31px, 8.6vw, 40px);
  }

  .hero-copy p,
  .section p,
  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }
}
