:root {
  --bg: #f6f8f4;
  --ink: #17211b;
  --muted: #5b675f;
  --panel: #ffffff;
  --line: #dfe6db;
  --accent: #1d6f52;
  --accent-dark: #114a38;
  --accent-soft: #dcefe5;
  --steel: #24313b;
  --gold: #d99b35;
  --shadow: 0 18px 50px rgba(27, 43, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 244, 0.92);
  border-bottom: 1px solid rgba(23, 33, 27, 0.08);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--steel));
  box-shadow: 0 10px 24px rgba(29, 111, 82, 0.22);
}

.brand-mark svg,
.icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 750;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 850;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(29, 111, 82, 0.22);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-color: rgba(29, 111, 82, 0.16);
}

.hero {
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 56px;
  padding: 54px 0 68px;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(43px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-media {
  position: relative;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 10% -6% -5% 18%;
  z-index: -1;
  border-radius: 8px;
  background: var(--accent-soft);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  right: -18px;
  bottom: 34px;
  max-width: 220px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(27, 43, 35, 0.14);
  font-size: 13px;
  font-weight: 800;
  color: var(--steel);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: #ffffff;
}

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

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2,
.legal-main h1,
.legal-main h2 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.02;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.feature-card {
  min-height: 244px;
  padding: 24px;
  border-radius: 8px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.feature-card strong {
  display: block;
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.15;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.split img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  color: var(--muted);
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.offer-band {
  background: var(--steel);
  color: #ffffff;
}

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

.offer-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.offer-panel p {
  max-width: 700px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #121a16;
  color: rgba(255, 255, 255, 0.76);
  padding: 46px 0;
  font-size: 14px;
}

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

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
}

.footer-disclosure {
  margin: 24px 0 0;
  max-width: 1020px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.7;
}

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

.copyright {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.legal-main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 92px;
}

.legal-main h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
}

.legal-main h2 {
  margin-top: 38px;
  font-size: 25px;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main ul {
  padding-left: 22px;
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 42px 0 56px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
  }

  .media-note {
    right: 12px;
    bottom: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .feature-grid,
  .split,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }
}
