:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #1d1d1f;
  --ink-soft: #6e6e73;
  --red: #d92d20;
  --red-dark: #b42318;
  --blue: #0066cc;
  --gold: #ff9f0a;
  --card: #ffffff;
  --line: rgba(29, 29, 31, 0.1);
  --chip: #f5f5f7;
  --sky: #f5f5f7;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 24px 60px rgba(0, 0, 0, 0.08);
  --radius: 28px;
  --content: 1120px;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --surface: #f5f5f7;
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);
}

html {
  scroll-padding-top: 76px;
}

body {
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", "Hiragino Sans", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(0, 125, 250, 0.35);
  outline-offset: 3px;
}

.wrap {
  width: min(100% - 48px, var(--content));
}

.display {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.eyebrow {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lede {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.5;
}

.small {
  line-height: 1.5;
}

.notice {
  border: 0;
  border-radius: 18px;
  background: #fff8e6;
  box-shadow: inset 0 0 0 1px rgba(255, 159, 10, 0.22);
}

.site-nav {
  border-bottom: 0;
  background: rgba(250, 250, 252, 0.76);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.07);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
}

.nav-inner {
  min-height: 56px;
}

.brand {
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.nav-links {
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 500;
}

.nav-links a {
  transition: color 160ms ease-out, opacity 160ms ease-out, transform 100ms ease-out;
}

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

.nav-links a:active {
  opacity: 0.68;
  transform: scale(0.97);
}

.nav-links .nav-cta {
  padding: 0.44rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
}

.nav-links .nav-cta:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(68px, 8vw, 104px);
  background:
    radial-gradient(circle at 82% 2%, rgba(0, 122, 255, 0.13), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255, 59, 48, 0.09), transparent 30%),
    #ffffff;
}

.hero::before,
.hero::after {
  display: none;
}

.hero .wrap {
  position: relative;
}

.hello {
  padding: 0.48em 1em;
  border: 0;
  background: rgba(245, 245, 247, 0.82);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-avatar {
  width: 152px;
  height: 152px;
  margin: 26px auto 24px;
  border: 6px solid #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.07), 0 20px 48px rgba(0, 0, 0, 0.14);
}

.hero h1 {
  max-width: 930px;
  margin-inline: auto;
}

.hero h1 em {
  background: linear-gradient(90deg, #d92d20 8%, #ff5a36 92%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 740px;
  margin-top: 30px;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.4;
}

.hero-detail {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.cta-row {
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  padding: 0.72em 1.45em;
  border: 0;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 140ms var(--ease-fluid), background-color 160ms ease-out, color 160ms ease-out, box-shadow 180ms ease-out, opacity 160ms ease-out;
}

.button-primary {
  background: var(--accent);
  box-shadow: none;
}

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

.button-secondary {
  border: 0;
  background: #e8e8ed;
  color: var(--ink);
}

.button-secondary:hover {
  background: #dedee3;
}

.button-light {
  background: #ffffff;
  color: var(--ink);
}

.button:active {
  opacity: 0.82;
  transform: scale(0.97);
  transition-duration: 80ms;
}

.hero-offer {
  margin-top: 4px;
  font-weight: 600;
}

.conversion-note {
  max-width: 680px;
  margin: 12px auto 0;
}

.travel-link {
  margin-top: 30px;
}

section {
  padding: clamp(72px, 9vw, 112px) 0;
  border-top: 0;
}

main section:nth-of-type(odd) {
  background: var(--surface);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 40px;
}

.grid {
  gap: 22px;
}

.trust-card,
.card,
.report-card,
.price-card,
.level,
.step {
  border: 1px solid rgba(0, 0, 0, 0.055);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 25px 18px;
  border-radius: 24px;
  font-weight: 600;
}

.trust-icon {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.about-grid {
  gap: clamp(40px, 7vw, 82px);
}

.about-photo {
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.video-frame,
.activity-image {
  border-radius: 30px;
}

.activity-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1400 / 533;
  object-fit: cover;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.12);
}

.check-card {
  padding: 21px 22px 21px 56px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.check-card::before {
  top: 20px;
  color: var(--accent);
}

.level,
.step,
.card {
  padding: 30px 26px;
}

.level::before {
  color: var(--accent);
}

.step::before {
  width: 38px;
  height: 38px;
  background: var(--accent);
  font-size: 0.9rem;
}

.report-card {
  border-radius: 32px;
}

.report-label,
.save {
  border-radius: 999px;
  background: #e8f2ff;
  color: #0055a5;
  font-weight: 650;
}

.report-item h3 {
  color: var(--ink);
}

.price-card {
  padding: 34px 30px;
  border-radius: 30px;
}

.price {
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.price-card .button {
  margin-top: auto;
}

.guarantee-box {
  margin-top: 26px;
  padding: 24px 26px;
  border: 0;
  border-radius: 22px;
  background: #e8f2ff;
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.1);
}

details {
  margin-bottom: 14px;
  padding: 20px 22px;
  border: 0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

summary {
  font-weight: 600;
}

.final-cta {
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 122, 255, 0.45), transparent 36%),
    linear-gradient(145deg, #1d1d1f, #050505);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.2);
}

.final-cta h2 {
  color: #ffffff;
}

.subhero {
  padding: clamp(92px, 11vw, 144px) 0 clamp(70px, 8vw, 104px);
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 122, 255, 0.13), transparent 45%),
    #ffffff;
}

.subhero h1 {
  max-width: 1020px;
  margin-inline: auto;
}

.subhero .lede {
  max-width: 790px;
  margin-top: 26px;
}

.conversion-hero .wrap {
  max-width: 1040px;
}

.conversion-hero h1 {
  max-width: 900px;
}

.offer-facts {
  display: flex;
  max-width: 760px;
  margin: 30px auto 4px;
  padding: 16px 20px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 22px;
  background: rgba(245, 245, 247, 0.9);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
}

.offer-facts span {
  padding: 0 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.offer-facts span + span {
  border-left: 1px solid var(--line);
}

.offer-facts strong {
  color: var(--ink);
}

.featured-offer {
  border-color: rgba(0, 113, 227, 0.24);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 28px 72px rgba(0, 102, 204, 0.12);
}

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

.result-step {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.session-boundary {
  max-width: 720px;
  margin: 24px auto 0;
}

.final-note {
  margin: 18px auto 0 !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

.mobile-booking-bar {
  display: none;
}

.policy-main {
  padding: 72px 0 104px;
}

.policy-main table {
  overflow: hidden;
  border-radius: 18px;
}

.policy-main th,
.policy-main td {
  border-color: rgba(0, 0, 0, 0.08);
}

.policy-main th {
  background: var(--surface);
}

footer {
  padding: 52px 0 64px;
  border-top: 0;
  background: var(--surface);
  font-size: 0.78rem;
}

.footer-links {
  gap: 12px 22px;
}

@media (hover: hover) and (pointer: fine) {
  .trust-card,
  .card,
  .price-card,
  .level,
  .step {
    transition: transform 320ms var(--ease-fluid), box-shadow 320ms var(--ease-fluid);
  }

  .trust-card:hover,
  .card:hover,
  .price-card:hover,
  .level:hover,
  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 30px 70px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: clamp(2.7rem, 9vw, 4.5rem);
  }

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

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 34px, var(--content));
  }

  .nav-inner {
    min-height: 52px;
  }

  .nav-links {
    gap: 10px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-avatar {
    width: 126px;
    height: 126px;
  }

  .hero-copy {
    margin-top: 24px;
  }

  .button {
    min-height: 50px;
  }

  .about-photo {
    width: min(84%, 320px);
    border-radius: 28px;
  }

  .final-cta {
    border-radius: 30px;
  }

  .offer-facts {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px;
    text-align: left;
  }

  .offer-facts span {
    display: flex;
    padding: 10px 0;
    justify-content: space-between;
    gap: 14px;
  }

  .offer-facts span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .travel-lp {
    padding-bottom: 82px;
  }

  .mobile-booking-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: flex;
    min-height: 72px;
    padding: 10px max(14px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(250, 250, 252, 0.9);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.08), 0 -14px 36px rgba(0, 0, 0, 0.08);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    backdrop-filter: blur(22px) saturate(180%);
  }

  .mobile-booking-bar div {
    display: grid;
    min-width: 0;
    line-height: 1.25;
  }

  .mobile-booking-bar span {
    color: var(--ink-soft);
    font-size: 0.75rem;
  }

  .mobile-booking-bar .button {
    width: auto;
    min-height: 44px;
    padding-inline: 18px;
    flex: 0 0 auto;
    font-size: 0.88rem;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 3.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  section {
    padding: 68px 0;
  }

  .trust-card {
    text-align: left;
  }

  .price-card,
  .card,
  .step,
  .level {
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .hello,
  .mobile-booking-bar {
    background: #fafafc;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  .site-nav,
  .trust-card,
  .card,
  .report-card,
  .price-card,
  .level,
  .step,
  details {
    border: 1px solid #1d1d1f;
  }

  .button-secondary {
    box-shadow: inset 0 0 0 1px #1d1d1f;
  }
}
