:root {
  --ink: #102524;
  --muted: #5d6f6d;
  --paper: #fffaf1;
  --soft: #edf8f6;
  --aqua: #42c9bd;
  --teal: #10645f;
  --blue: #07599b;
  --coral: #ec765c;
  --sun: #f5c867;
  --line: rgba(16, 37, 36, 0.14);
  --shadow: 0 24px 70px rgba(7, 89, 155, 0.13);
}

* {
  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;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(16, 37, 36, 0.08);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 25px);
  color: #314644;
  font-size: 14px;
}

.nav a {
  padding: 10px 0;
}

.nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 800;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 32px rgba(7, 89, 155, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.button.coral {
  color: #231512;
  background: var(--coral);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #f4eadb;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 0.98) 0%, rgba(255, 250, 241, 0.9) 31%, rgba(255, 250, 241, 0.42) 53%, rgba(255, 250, 241, 0.03) 74%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.1), rgba(255, 250, 241, 0.86));
  pointer-events: none;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 86px 0 70px;
}

.hero-copy {
  width: min(640px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 27px;
  height: 2px;
  background: var(--coral);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(43px, 7vw, 88px);
}

h2 {
  font-size: clamp(31px, 4.4vw, 56px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  max-width: 660px;
  margin-top: 22px;
  color: #344b49;
  font-size: clamp(18px, 2vw, 23px);
}

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

.metric-row {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 36, 0.13);
  background: rgba(16, 37, 36, 0.13);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 112px;
  padding: 17px;
  background: rgba(255, 250, 241, 0.82);
  backdrop-filter: blur(16px);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 25px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.page-hero {
  padding: clamp(58px, 9vw, 104px) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(66, 201, 189, 0.25), transparent 30%),
    linear-gradient(135deg, #fffaf1 0%, #edf8f6 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.6fr);
  gap: 44px;
  align-items: center;
}

.page-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section.soft {
  background: var(--soft);
  border-block: 1px solid rgba(16, 37, 36, 0.1);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p,
.card p,
.feature p,
.timeline p,
.resource-list p,
.note,
.form-help {
  color: var(--muted);
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

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

.card,
.feature,
.timeline li,
.prize,
.resource-list,
.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.card {
  min-height: 250px;
  padding: 24px;
  display: grid;
  align-content: space-between;
}

.card .number {
  color: var(--coral);
  font-weight: 900;
  font-size: 13px;
}

.card h3 {
  margin: 42px 0 12px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: #fffdf7;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 9px 12px;
  border: 1px solid rgba(16, 37, 36, 0.13);
  border-radius: 999px;
  color: #344b49;
  background: rgba(66, 201, 189, 0.1);
  font-size: 14px;
  font-weight: 750;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.timeline li {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: #fffdf7;
}

.timeline strong:first-child {
  color: var(--blue);
}

.prize-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.prize {
  padding: 20px;
  background: #fffdf7;
}

.prize strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
}

.prize span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.highlight {
  color: var(--blue);
}

.resource-list {
  padding: 24px;
  background: #fffdf7;
}

.resource-list ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #344b49;
}

.notice {
  padding: 22px;
  border-left: 4px solid var(--coral);
  background: rgba(236, 118, 92, 0.12);
  color: #49312c;
}

form {
  display: grid;
  gap: 16px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #314644;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdf7;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.checkbox input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
  background: #fffdf7;
}

.faq-item strong {
  display: block;
  margin-bottom: 7px;
}

.cta-band {
  padding: 76px 0;
  color: #fffaf1;
  background: linear-gradient(135deg, #102524, #0c5552 70%, #07599b);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.cta p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 250, 241, 0.75);
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: #fffdf7;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav {
    gap: 12px;
    font-size: 13px;
  }

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

@media (max-width: 760px) {
  .nav-wrap {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
  }

  .brand span {
    max-width: 120px;
    line-height: 1.05;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 230px;
  }

  .nav a:not(.button) {
    display: none;
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.96) 0%, rgba(255, 250, 241, 0.9) 38%, rgba(255, 250, 241, 0.35) 73%, rgba(255, 250, 241, 0.88) 100%);
  }

  .hero-img {
    position: relative;
    height: 46vh;
    min-height: 340px;
    object-position: 64% center;
    order: 2;
  }

  .hero-inner {
    padding: 42px 0 28px;
  }

  .metric-row,
  .page-hero-grid,
  .section-head,
  .grid-4,
  .grid-3,
  .grid-2,
  .feature,
  .prize-grid,
  .form-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 88px;
  }

  .card {
    min-height: 210px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .actions,
  .cta {
    align-items: start;
  }
}

@media (max-width: 480px) {
  .hero-inner,
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: 42px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
