@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Merriweather:wght@700;900&display=swap");

:root {
  --ink: #10242c;
  --muted: #58707a;
  --line: #d9e3e5;
  --panel: #ffffff;
  --paper: #f5f7f4;
  --teal: #0b2834;
  --teal-2: #174655;
  --coral: #e85d36;
  --gold: #ffd668;
  --green: #dff2e6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand img {
  display: block;
  width: 128px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  background: #eef4f2;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 72px 24px 80px;
  background: var(--teal);
  color: white;
}

.hero-copy,
.section,
.proof-strip,
.contact-band,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-copy {
  justify-self: end;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Merriweather, Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 15px;
}

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

.button.primary:hover {
  background: #d94f2b;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: white;
}

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

.product-panel {
  justify-self: start;
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #f9fbfb;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.panel-topbar {
  display: flex;
  gap: 7px;
  padding: 14px;
  background: #e7eff0;
  border-bottom: 1px solid #d0dddf;
}

.panel-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8da3aa;
}

.panel-content {
  padding: 24px;
}

.upload-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.upload-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.upload-row span {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--green);
  color: #1d6b35;
  font-size: 12px;
  font-weight: 800;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.fields-grid div {
  padding: 14px;
  border-radius: 8px;
  background: #eef4f2;
}

.fields-grid small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.timeline span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: var(--teal-2);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  margin-top: -28px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 36, 44, 0.08);
}

.proof-strip div {
  min-height: 132px;
  padding: 24px;
  background: white;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 10px;
  font-size: 17px;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 96px 24px;
}

.section .eyebrow,
.contact-band .eyebrow {
  color: var(--coral);
}

.section-body {
  color: #314a52;
  font-size: 18px;
  line-height: 1.7;
}

.disclaimer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 24px;
  margin-bottom: 64px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.contact-band h2 {
  max-width: 720px;
  font-size: clamp(28px, 4vw, 44px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 24px 42px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

.site-footer a {
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .brand img {
    width: 112px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 8px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 52px 16px 68px;
  }

  .hero-copy,
  .product-panel {
    justify-self: center;
  }

  h1 {
    font-size: 42px;
  }

  .lede {
    font-size: 18px;
  }

  .proof-strip,
  .section {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    width: calc(100% - 32px);
  }

  .section {
    gap: 26px;
    padding: 72px 16px;
  }

  .contact-band {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 16px;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: 36px;
  }

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

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

