:root {
  --accent: rgb(238, 152, 63);
  --accent-2: rgb(246, 182, 108);
  --text: #0f172a;
  --muted: #475569;
  --bg: #ffffff;
  --border: rgba(15, 23, 42, 0.12);
  --shadow: 0 12px 35px rgba(2, 6, 23, 0.08);
  --shadow-soft: 0 8px 20px rgba(2, 6, 23, 0.06);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 12px;
  --container: 1120px;
  --pad: 18px;
  --focus: 0 0 0 4px rgba(238, 152, 63, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(
      1200px 600px at 20% -10%,
      rgba(238, 152, 63, 0.12),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 90% 0%,
      rgba(238, 152, 63, 0.1),
      transparent 55%
    ),
    var(--bg);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-header__inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(238, 152, 63, 0.35);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  flex: 0 0 auto;
}

.brand__mark svg {
  width: 22px;
  height: 22px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__name {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-size: 12.5px;
  color: rgba(15, 23, 42, 0.62);
  font-weight: 700;
}

.page {
  padding: 28px 0 50px;
}

.tour-hero {
  padding: 18px 0 8px;
}

.tour-hero__grid {
  display: grid;
  gap: 18px;
}

.reveal-wrap {
  max-width: 66ch;
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(238, 152, 63, 0.95);
  font-size: 12.5px;
}

.h1 {
  margin: 12px 0 10px;
  font-size: 34px;
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.h2 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subtle {
  color: rgba(15, 23, 42, 0.62);
}

.lead {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
}

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

.badge-success {
  height: 56px;
  padding: 0 12px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: rgba(15, 23, 42, 0.92);
  font-weight: 920;
  font-size: 13.5px;
}

.badge-success svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.badge-success svg path {
  fill: none;
  stroke: rgba(34, 197, 94, 0.95);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 44px 0 0;
}

.section-head {
  max-width: 66ch;
  margin-bottom: 18px;
}

.role-grid {
  display: grid;
  gap: 22px;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(238, 152, 63, 0.08);
  border: 1px solid rgba(238, 152, 63, 0.18);
  margin-bottom: 10px;
}

.card__icon svg {
  width: 22px;
  height: 22px;
}

.card__icon svg path {
  fill: none;
  stroke: rgba(15, 23, 42, 0.72);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__title {
  margin: 0 0 6px;
  font-size: 15.5px;
  letter-spacing: -0.01em;
}

.card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.62);
}

.steps-grid {
  display: grid;
  gap: 12px;
}

.step-card {
  padding: 16px;
}

.step-card__num {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(238, 152, 63, 0.12);
  border: 1px solid rgba(238, 152, 63, 0.22);
  font-weight: 950;
  margin-bottom: 12px;
}

.step-card__icon svg {
  width: 22px;
  height: 22px;
}

.step-card__icon svg path {
  fill: none;
  stroke: rgba(15, 23, 42, 0.72);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card__title {
  margin: 10px 0 6px;
  font-size: 15.5px;
}

.step-card__desc {
  margin: 0;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13.5px;
  line-height: 1.55;
}

.benefits-grid {
  display: grid;
  gap: 12px;
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(238, 152, 63, 0.08);
  border: 1px solid rgba(238, 152, 63, 0.18);
  margin-bottom: 10px;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
}

.benefit-card__icon svg path {
  fill: none;
  stroke: rgba(15, 23, 42, 0.72);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__title {
  margin: 0 0 6px;
  font-size: 15.5px;
}

.benefit-card__desc {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.62);
}

.side-card {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.side-card__title {
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.side-card__desc {
  margin: 0 0 12px;
  color: rgba(15, 23, 42, 0.62);
  line-height: 1.6;
  font-size: 13.5px;
}

.side-list {
  display: grid;
  gap: 10px;
}

.side-list__item {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 750;
  color: rgba(15, 23, 42, 0.74);
  font-size: 13.5px;
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 9px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.28);
  display: grid;
  place-items: center;
  color: rgba(22, 163, 74, 1);
  font-weight: 950;
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 22px 0 30px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.62);
  font-size: 13.5px;
  font-weight: 700;
}

.footer__sep {
  opacity: 0.35;
}

.footer__link {
  color: rgba(15, 23, 42, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@media (min-width: 768px) {
  :root {
    --pad: 26px;
  }
  .tour-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 24px;
  }
  .h1 {
    font-size: 46px;
  }
  .h2 {
    font-size: 30px;
  }
  .section {
    padding: 64px 0 0;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

