:root {
  --ink: #211721;
  --muted: #6f6370;
  --soft: #f7fbff;
  --surface: #ffffff;
  --accent: #ad5aac;
  --accent-strong: #c84d9e;
  --blue: #2f78bd;
  --blue-deep: #163f78;
  --line: rgba(173, 90, 172, 0.16);
  --shadow: 0 24px 70px rgba(36, 25, 50, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 77, 158, 0.15), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(47, 120, 189, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #f7fbff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  padding: 10px 0;
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 92px;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(173, 90, 172, 0.09);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #594d5a;
  font-size: 14px;
  font-weight: 800;
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 950;
}

.header-action,
.primary-action {
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #fff;
  box-shadow: 0 16px 36px rgba(47, 120, 189, 0.22);
}

.header-action {
  padding: 0 19px;
}

.primary-action {
  padding: 0 24px;
}

.secondary-action {
  border: 1px solid rgba(173, 90, 172, 0.2);
  background: rgba(255, 255, 255, 0.75);
  color: #514752;
  padding: 0 22px;
}

main {
  overflow: hidden;
}

.hero-section,
.intro-section,
.steps-section,
.audience-section,
.development-section,
.cta-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
  min-height: auto;
  padding: 34px 0 54px;
}

.hero-copy h1,
.intro-section h2,
.section-heading h2,
.development-section h2,
.cta-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.95;
}

.hero-copy p {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

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

.travel-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 255, 0.86)),
    var(--surface);
  box-shadow: var(--shadow);
}

.panel-map {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.panel-map span {
  display: grid;
  place-items: center;
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.panel-map i {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(47, 120, 189, 0.22));
}

.agent-note {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(173, 90, 172, 0.13);
  border-radius: var(--radius);
  background: #fff;
}

.agent-note img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.agent-note p {
  margin: 0;
  color: #4f4550;
  font-size: 15px;
  line-height: 1.45;
}

.quick-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.quick-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(173, 90, 172, 0.12);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(28px, 6vw, 88px);
  padding: 86px 0;
  border-top: 1px solid rgba(173, 90, 172, 0.1);
}

.intro-section h2,
.section-heading h2,
.development-section h2,
.cta-section h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}

.intro-section p,
.section-heading p,
.development-section p,
.cta-section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.steps-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0 96px;
}

.steps-section article,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(36, 25, 50, 0.08);
}

.steps-section span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.steps-section h3,
.audience-grid h3 {
  margin: 16px 0 8px;
  font-size: 22px;
  line-height: 1.1;
}

.steps-section p,
.audience-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.audience-section {
  padding: 94px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: end;
  gap: clamp(28px, 6vw, 78px);
  margin-bottom: 34px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.development-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(28px, 6vw, 88px);
  padding: 88px 0;
  border-top: 1px solid rgba(173, 90, 172, 0.1);
  border-bottom: 1px solid rgba(173, 90, 172, 0.1);
}

.development-section p {
  margin-top: 20px;
}

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

.roadmap li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.roadmap strong {
  color: var(--blue-deep);
  font-size: 15px;
}

.roadmap span {
  color: #514752;
  line-height: 1.4;
}

.cta-section {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 20px;
  padding: 104px 0;
}

.cta-section p {
  max-width: 680px;
}

.site-footer {
  display: flex;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 42px;
  border-top: 1px solid rgba(173, 90, 172, 0.1);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .intro-section,
  .section-heading,
  .development-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 52px;
  }

  .steps-section,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-section,
  .intro-section,
  .steps-section,
  .audience-section,
  .development-section,
  .cta-section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    gap: 12px;
  }

  .brand img {
    width: 92px;
    height: 58px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-section {
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .hero-actions {
    display: grid;
  }

  .travel-panel,
  .steps-section article,
  .audience-grid article {
    padding: 18px;
  }

  .travel-panel {
    gap: 12px;
  }

  .panel-map span {
    min-width: 44px;
    height: 44px;
    font-size: 11px;
  }

  .agent-note {
    grid-template-columns: 52px 1fr;
    padding: 12px;
  }

  .agent-note img {
    width: 52px;
    height: 52px;
  }

  .agent-note p {
    font-size: 13px;
  }

  .quick-facts {
    display: none;
  }

  .intro-section,
  .audience-section,
  .development-section,
  .cta-section {
    padding: 62px 0;
  }

  .steps-section,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .steps-section {
    padding-bottom: 62px;
  }

  .roadmap li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
  }
}
