:root {
  --navy: #0b1f3a;
  --charcoal: #1f2937;
  --gold: #c6a75e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f5f7fa;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --text: #111827;
  --muted: #4b5563;
  --soft-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(198, 167, 94, 0.28);
}

.container {
  width: min(1140px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: inherit;
  letter-spacing: 0;
}

p {
  margin-top: 0;
}

a,
button {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand,
.brand:hover {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.hero-section {
  padding: 100px 0 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  border-bottom: 1px solid var(--gray-200);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.modal-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  font-weight: 700;
  line-height: 1.03;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 12px;
  color: var(--charcoal);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  font-weight: 500;
  line-height: 1.55;
}

.gold-rule {
  display: block;
  width: 72px;
  height: 2px;
  margin: 0 0 16px;
  background: var(--gold);
}

.hero-text {
  max-width: 650px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-bullets,
.audience-panel ul,
.price-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-bullets {
  margin-bottom: 16px;
}

.hero-bullets li,
.audience-panel li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.hero-bullets li::before,
.audience-panel li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
}

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

.hero-intel-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
}

.hero-intel-strip span {
  padding: 10px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.hero-intel-strip strong {
  display: block;
  color: var(--navy);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.primary-btn,
.secondary-btn,
.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.primary-btn,
.plan-btn {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}

.primary-btn:hover,
.plan-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.secondary-btn {
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
}

.secondary-btn:hover {
  border-color: var(--navy);
  background: var(--gray-100);
  color: var(--navy);
}

.hero-visual {
  align-self: stretch;
  min-width: 0;
  max-width: 100%;
}

.image-frame {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  border-radius: var(--radius);
  background: var(--gray-100);
}

.image-frame picture,
.image-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.image-frame img {
  object-fit: contain;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-poster {
  width: min(100%, 390px);
  height: auto;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.hero-poster picture {
  height: auto;
}

.hero-poster img {
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center center;
}

.hero-poster::after {
  display: none;
}

.section {
  padding: 58px 0;
  border-bottom: 1px solid var(--gray-200);
}

.hook-section,
.trust-section {
  background: var(--white);
}

.value-section,
.pricing-section,
.final-section {
  background: var(--gray-100);
}

.takeaways-section,
.details-section,
.scarcity-section {
  background: var(--navy);
  color: var(--white);
}

.hook-section {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hook-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/world_map_dark.png") center / cover no-repeat;
  background: image-set(url("../images/world_map_dark.webp") type("image/webp"), url("../images/world_map_dark.png") type("image/png")) center / cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.hook-section .container {
  position: relative;
  z-index: 1;
}

.hook-section h2,
.split-copy h2,
.section-head h2,
.final-section h2 {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(1.8rem, 2.55vw, 2.55rem);
  font-weight: 600;
  line-height: 1.18;
}

.hook-section p,
.split-copy p,
.section-head p,
.final-section p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.support-copy {
  font-size: 0.98rem;
}

.takeaways-section .section-kicker,
.details-section .section-kicker,
.scarcity-section .section-kicker {
  color: var(--gold);
}

.takeaways-section .section-head h2,
.details-section h2,
.scarcity-section h2 {
  color: var(--white);
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.signal-list span,
.trust-line span,
.scarcity-grid span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--charcoal);
  font-weight: 500;
}

.center-cta {
  margin-top: 20px;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.split-copy {
  max-width: 760px;
}

.text-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.text-list p,
.panel-copy,
.plan-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.text-list strong {
  color: var(--navy);
}

.split-copy p {
  margin-right: 0;
  margin-left: 0;
}

.value-image {
  height: 340px;
  background: var(--charcoal);
}

.value-image img {
  object-position: center;
}

.value-image::after {
  background: rgba(11, 31, 58, 0.14);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.takeaway-card,
.audience-panel,
.price-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.takeaway-card {
  min-height: 190px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.takeaway-card:hover,
.price-card:hover {
  transform: translateY(-2px);
}

.takeaway-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.takeaway-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
}

.takeaway-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.48;
}

.audience-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/meeting_room.png") center / cover no-repeat;
  background: image-set(url("../images/meeting_room.webp") type("image/webp"), url("../images/meeting_room.png") type("image/png")) center / cover no-repeat;
  filter: grayscale(1) blur(2px);
  opacity: 0.07;
  transform: scale(1.02);
  pointer-events: none;
}

.audience-section .container {
  position: relative;
  z-index: 1;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-panel {
  padding: 24px;
}

.audience-panel.muted {
  background: var(--gray-100);
}

.audience-panel h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 600;
}

.panel-copy {
  margin-bottom: 14px;
}

.details-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.event-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.details-strip div {
  min-height: 108px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.details-strip div:nth-child(2),
.details-strip div:last-child {
  border-right: 0;
}

.details-strip div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.details-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.details-strip strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.details-image {
  min-height: 260px;
  background: var(--charcoal);
}

.details-image img {
  object-position: center;
}

.details-image::after {
  background: rgba(11, 31, 58, 0.18);
}

.pricing-section {
  position: relative;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1140px, calc(100% - 48px));
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  transform: translateX(-50%);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
}

.price-card.featured {
  border: 1px solid var(--gold);
}

.popular {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price {
  margin: 0 0 12px;
  color: var(--text);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1.1;
}

.price-card ul {
  margin: 14px 0 22px;
}

.plan-btn {
  width: 100%;
  margin-top: auto;
}

.alternate-payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.alternate-payments strong,
.alternate-payments a {
  color: var(--navy);
  font-weight: 600;
}

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

.scarcity-section {
  position: relative;
  overflow: hidden;
}

.scarcity-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/world_map_dark.png") center / cover no-repeat;
  background: image-set(url("../images/world_map_dark.webp") type("image/webp"), url("../images/world_map_dark.png") type("image/png")) center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.scarcity-section .container {
  position: relative;
  z-index: 1;
}

.scarcity-grid span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.final-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.78)), url("../images/meeting_room.png") center / cover no-repeat;
  background: linear-gradient(rgba(11, 31, 58, 0.78), rgba(11, 31, 58, 0.78)), image-set(url("../images/meeting_room.webp") type("image/webp"), url("../images/meeting_room.png") type("image/png")) center / cover no-repeat;
}

.final-section .container {
  position: relative;
  z-index: 1;
}

.final-section p {
  color: rgba(255, 255, 255, 0.84);
}

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

.bonus-line {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--navy);
  font-weight: 600;
}

.site-footer {
  padding: 44px 0;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.brand-mark {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.footer-note {
  max-width: 460px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.12);
}

.sticky-cta:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.booking-modal {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.booking-modal .modal-header {
  padding: 28px 28px 10px;
  border-bottom: 0;
}

.booking-modal .modal-title {
  color: var(--navy);
  font-size: 1.8rem;
  font-weight: 600;
}

.booking-modal .modal-body {
  display: grid;
  gap: 10px;
  padding: 18px 28px 30px;
}

.selected-plan {
  padding: 13px 14px;
  margin-bottom: 8px;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--navy);
  font-weight: 600;
}

.booking-modal label {
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 600;
}

.booking-modal input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  outline: 0;
}

.booking-modal input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.08);
}

.modal-pay-btn {
  width: 100%;
  margin-top: 12px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-message[data-type="error"] {
  color: #b42318;
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 0 90px;
  background: var(--gray-100);
  color: var(--text);
  text-align: center;
}

.success-hero {
  width: 100%;
}

.success-hero h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
}

.success-hero h2 {
  color: var(--charcoal);
  font-size: 1.45rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 36px;
  margin: 18px 0;
  padding: 7px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.success-instructions {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin: 28px auto;
}

.success-instructions p {
  margin: 0;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .hero-grid,
  .value-grid,
  .event-details-grid,
  .audience-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 92px 0 52px;
  }

  .hero-visual {
    display: block;
  }

  .hero-poster {
    width: min(100%, 390px);
    margin-right: auto;
    margin-left: 0;
  }

  .hero-poster img {
    max-height: 560px;
  }

  .value-image,
  .details-image {
    height: 300px;
    min-height: 0;
  }

  .takeaway-grid,
  .details-strip,
  .trust-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .details-strip div:nth-child(2) {
    border-right: 0;
  }

  .details-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .details-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

@media (max-width: 575px) {
  .container,
  .narrow {
    width: min(100% - 32px, 1140px);
  }

  .nav-shell {
    min-height: 58px;
  }

  .brand {
    font-size: 0.78rem;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding: 82px 0 46px;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.08rem;
  }

  .hero-intel-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .alternate-payments {
    display: grid;
  }

  .hero-poster {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .hero-poster img {
    max-height: none;
  }

  .hero-poster picture,
  .hero-poster img {
    height: auto;
  }

  .value-image,
  .details-image {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .value-image picture,
  .value-image img,
  .details-image picture,
  .details-image img {
    height: auto;
  }

  .section {
    padding: 48px 0;
  }

  .hook-section h2,
  .split-copy h2,
  .section-head h2,
  .final-section h2 {
    font-size: 2rem;
  }

  .signal-list,
  .takeaway-grid,
  .details-strip,
  .trust-line {
    grid-template-columns: 1fr;
  }

  .details-strip div,
  .details-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .details-strip div:last-child {
    border-bottom: 0;
  }

  .audience-panel,
  .price-card {
    padding: 20px;
  }

  .primary-btn,
  .secondary-btn,
  .plan-btn {
    width: 100%;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
  }

  .footer-grid {
    display: grid;
  }

  .modal-dialog {
    margin: 12px;
  }
}
