:root {
  --ink: #15110a;
  --muted: #6f6657;
  --paper: #fff8e8;
  --surface: rgba(255, 255, 255, 0.72);
  --line: rgba(70, 48, 11, 0.12);
  --yellow: #ffd232;
  --gold: #f7a600;
  --black: #0d0d0d;
  --green: #1d8f52;
  --radius: 28px;
  --shadow: 0 28px 90px rgba(75, 52, 4, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 210, 50, 0.7), transparent 28rem),
    radial-gradient(circle at 90% 5%, rgba(247, 166, 0, 0.35), transparent 26rem),
    linear-gradient(135deg, #fffdf5 0%, var(--paper) 48%, #f4d163 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

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

.site-header {
  padding: 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 1.25rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: var(--black);
  background: linear-gradient(145deg, var(--yellow), var(--gold));
  box-shadow: 0 14px 36px rgba(247, 166, 0, 0.38);
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  padding: 10px 13px;
  border-radius: 999px;
}

nav a:hover,
.footer-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px 0 72px;
}

.hero-copy,
.hero-card,
.section,
.cta,
.policy {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(32px, 6vw, 72px);
  border-radius: 42px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -100px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, rgba(13, 13, 13, 0.08), rgba(13, 13, 13, 0.08) 8px, transparent 8px, transparent 18px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #9c6d00;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  text-decoration: none;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.primary {
  background: var(--black);
  color: #fff;
  box-shadow: 0 16px 40px rgba(13, 13, 13, 0.24);
}

.primary.dark {
  background: linear-gradient(145deg, var(--yellow), var(--gold));
  color: var(--black);
}

.ghost {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.trust-row {
  margin-top: 30px;
}

.trust-row span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 800;
  font-size: 0.86rem;
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: 42px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.93), rgba(43, 34, 16, 0.92)),
    var(--black);
  color: #fff;
}

.route-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 32px;
  padding: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 210, 50, 0.42), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.route-card strong {
  display: block;
  margin: 18px 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.route-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.pill {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--black);
  background: var(--yellow);
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-grid div {
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-grid b {
  display: block;
  font-size: 1.4rem;
}

.metric-grid span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.section,
.cta,
.policy {
  border-radius: 38px;
  padding: clamp(28px, 5vw, 56px);
  margin-bottom: 28px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cards article {
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.cards p,
.steps p,
.cta p,
.policy p,
.policy li {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: #9c6d00;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

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

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
}

.steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--black);
  color: #fff;
  font-weight: 900;
}

.steps p {
  margin: 0;
  font-weight: 700;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(145deg, #111, #34270d);
  color: #fff;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.policy {
  max-width: 920px;
}

.policy section {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.policy h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.policy h2 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

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

footer {
  padding: 30px 0 42px;
}

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

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

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-copy,
  .hero-card,
  .section,
  .cta,
  .policy {
    border-radius: 28px;
  }

  .route-card {
    min-height: 280px;
  }

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

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

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
