/* ============================================
   TICKETS PAGE — extends styles.css
   ============================================ */

.tickets-page {
  background: var(--paper);
}

/* Force solid nav style on tickets page */
.nav-solid {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10,31,51,0.06);
  padding: 12px 0;
}
.nav-solid .brand { color: var(--ink); }
.nav-solid .nav-links a { color: var(--ink); }

/* ============================================
   T-HERO
   ============================================ */
.t-hero {
  position: relative;
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,228,247,0.6), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  text-align: center;
  overflow: hidden;
}
.t-hero .cloud-deco { z-index: 0; }
.t-hero .cloud-deco-1 {
  width: 380px; height: 160px;
  top: 100px; left: -120px;
  opacity: 0.6;
}
.t-hero .cloud-deco-2 {
  width: 320px; height: 130px;
  top: 60px; right: -80px;
  opacity: 0.5;
}
.t-hero .container { position: relative; z-index: 1; }

.t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid rgba(10,31,51,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  color: var(--ink-soft);
}
.t-eyebrow .kicker-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.t-title {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(50px, 10vw, 130px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.t-title .serif-italic { color: var(--sky-600); }

.t-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.t-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: var(--ink);
  color: var(--cloud);
  border-radius: 999px;
  box-shadow: 0 14px 30px -14px rgba(6,34,59,0.5);
}
.t-banner-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}
.t-banner-text {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.t-banner-text strong {
  font-weight: 600;
}
#t-countdown {
  font-family: var(--display);
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

/* ============================================
   TIERS
   ============================================ */
.t-tiers {
  padding: 60px 0 120px;
  position: relative;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .t-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cloud);
  border: 1px solid rgba(201,228,247,0.7);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all .35s ease;
  box-shadow: 0 16px 40px -28px rgba(6,34,59,0.2);
}
.tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px rgba(6,34,59,0.3);
  border-color: var(--sky-300);
}

/* Featured tier */
.tier-featured {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(233,179,74,0.15), transparent 60%),
    var(--cloud);
  border-color: var(--gold);
  border-width: 1.5px;
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 24px 50px -20px rgba(184,132,29,0.25);
}
.tier-featured:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 36px 70px -20px rgba(184,132,29,0.35);
}
@media (max-width: 980px) {
  .tier-featured { transform: scale(1); }
  .tier-featured:hover { transform: translateY(-6px); }
}

/* Early Bird tier — sky/teal accent to distinguish from gold VIP */
.tier-earlybird {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(58,143,207,0.12), transparent 60%),
    var(--cloud);
  border-color: var(--sky-400);
  border-width: 1.5px;
  position: relative;
}
.tier-earlybird:hover { border-color: var(--sky-500); }
.tier-earlybird .tier-name { color: var(--sky-700); }

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(184,132,29,0.5);
}
.tier-badge-earlybird {
  background: var(--sky-600);
  color: var(--cloud);
  box-shadow: 0 8px 20px -8px rgba(31,111,176,0.5);
}
.tier-badge-premium {
  background: var(--ink);
  color: var(--gold);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.4);
}

/* Premium tier — dark style — now used for VIP All-Access */
.tier-premium {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(233,179,74,0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(58,143,207,0.12), transparent 50%),
    var(--ink);
  color: var(--cloud);
  border-color: rgba(255,255,255,0.12);
  position: relative;
}
.tier-premium .tier-label { color: var(--gold); }
.tier-premium .tier-name { color: var(--cloud); }
.tier-premium .tier-tagline { color: rgba(255,255,255,0.7); }
.tier-premium .tier-includes { color: rgba(255,255,255,0.6); }
.tier-premium .tier-pitch { color: rgba(255,255,255,0.78); }
.tier-premium .tier-perks li { color: rgba(255,255,255,0.95); }
.tier-premium .tier-perks li svg { color: var(--gold); }
.tier-premium .tier-perks li .perk-detail { color: rgba(255,255,255,0.65); }
.tier-premium .tier-price-amount { color: var(--cloud); }
.tier-premium .tier-price-currency,
.tier-premium .tier-price-tier { color: rgba(255,255,255,0.6); }
.tier-premium:hover { border-color: var(--gold); }

/* Pitch line — short value-prop above the perks */
.tier-pitch {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 18px;
  font-style: italic;
}

/* Microcopy under CTA */
.tier-microcopy {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--sky-600);
  margin: 12px 0 0;
  font-weight: 600;
}

.tier-head { margin-bottom: 24px; }
.tier-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--sky-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.tier-name {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.tier-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 24px 0;
  margin-bottom: 8px;
  border-top: 1px solid rgba(10,31,51,0.08);
  border-bottom: 1px solid rgba(10,31,51,0.08);
}
.tier-premium .tier-price {
  border-color: rgba(255,255,255,0.1);
}
.tier-price-currency {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-soft);
  margin-right: 2px;
}
.tier-price-amount {
  font-family: var(--display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.tier-price-tier {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-left: auto;
  font-weight: 600;
}
.tier-price-savings {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--cloud);
  background: var(--sky-600);
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-left: auto;
  font-weight: 700;
}

.tier-includes {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 22px 0 14px;
}

.tier-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  border-bottom: 1px solid rgba(10,31,51,0.04);
}
.tier-premium .tier-perks li {
  border-bottom-color: rgba(255,255,255,0.06);
}
.tier-perks li:last-child { border-bottom: 0; }
.tier-perks li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sky-600);
}
.tier-perks li > div {
  flex: 1;
}
.tier-perks li strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.tier-premium .tier-perks li strong { color: var(--cloud); }
.tier-earlybird .tier-perks li strong { color: var(--sky-700); }
.tier-perks li .perk-detail {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  display: block;
}
.tier-featured .tier-perks li svg { color: var(--gold-deep); }
.tier-earlybird .tier-perks li svg { color: var(--sky-600); }

.tier-cta { margin-top: auto; }
.btn-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: all .25s ease;
}
.btn-tier:hover {
  background: var(--ink);
  color: var(--cloud);
}
.btn-tier svg { transition: transform .25s ease; }
.btn-tier:hover svg { transform: translateX(3px); }

.btn-tier-featured {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-tier-featured:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cloud);
}

.btn-tier-earlybird {
  background: var(--sky-600);
  border-color: var(--sky-600);
  color: var(--cloud);
}
.btn-tier-earlybird:hover {
  background: var(--sky-700);
  border-color: var(--sky-700);
  color: var(--cloud);
}

.btn-tier-premium {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-tier-premium:hover {
  background: var(--gold);
  color: var(--ink);
}

.t-fineprint {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.t-fineprint a {
  color: var(--sky-600);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(58,143,207,0.3);
}
.t-fineprint a:hover { border-bottom-color: var(--sky-600); }

/* ============================================
   COMPARE TABLE
   ============================================ */
.t-compare {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,247,194,0.4), transparent 50%),
    #fff;
  border-top: 1px solid rgba(201,228,247,0.6);
  border-bottom: 1px solid rgba(201,228,247,0.6);
}
.t-compare-header {
  text-align: center;
  margin-bottom: 60px;
}

.t-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,228,247,0.6);
  background: var(--cloud);
  box-shadow: 0 20px 40px -28px rgba(6,34,59,0.2);
}

.t-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.t-table thead th {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  padding: 22px 18px;
  text-align: center;
  background: linear-gradient(180deg, var(--sky-100) 0%, transparent 100%);
  border-bottom: 1px solid rgba(10,31,51,0.08);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.t-table thead .t-th-feat {
  text-align: left;
  font-style: normal;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  width: 40%;
}
.t-table thead .t-th-featured {
  background: linear-gradient(180deg, rgba(233,179,74,0.18) 0%, transparent 100%);
  color: var(--gold-deep);
}
.t-table thead .t-th-earlybird {
  background: linear-gradient(180deg, rgba(58,143,207,0.18) 0%, transparent 100%);
  color: var(--sky-700);
}
.t-table tbody th {
  text-align: left;
  font-weight: 500;
  padding: 16px 18px;
  font-size: 14.5px;
  color: var(--ink);
  border-bottom: 1px solid rgba(10,31,51,0.05);
}
.t-table tbody td {
  padding: 16px 18px;
  text-align: center;
  font-size: 18px;
  color: var(--ink);
  border-bottom: 1px solid rgba(10,31,51,0.05);
}
.t-table tbody tr:last-child td,
.t-table tbody tr:last-child th { border-bottom: 0; }
.t-table tbody tr:hover { background: rgba(201,228,247,0.15); }
.t-table .y { color: var(--sky-600); font-weight: 700; }
.t-table .n { color: rgba(10,31,51,0.25); font-size: 16px; }

/* ============================================
   FAQ
   ============================================ */
.t-faq {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(201,228,247,0.4), transparent 50%),
    var(--paper);
}
.t-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.t-faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-faq-item {
  background: var(--cloud);
  border: 1px solid rgba(201,228,247,0.7);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.t-faq-item[open] {
  border-color: var(--sky-300);
  box-shadow: 0 16px 40px -28px rgba(6,34,59,0.25);
}
.t-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  user-select: none;
}
.t-faq-item summary::-webkit-details-marker { display: none; }
.t-faq-item summary:hover { color: var(--sky-600); }
.t-faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10,31,51,0.15);
  border-radius: 50%;
  font-family: var(--body);
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  color: var(--ink-soft);
  transition: all .25s ease;
}
.t-faq-item[open] .t-faq-icon {
  background: var(--ink);
  color: var(--cloud);
  border-color: var(--ink);
  transform: rotate(45deg);
}

.t-faq-body {
  padding: 0 28px 26px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  animation: faqDrop .35s ease;
}
.t-faq-body p { margin-bottom: 8px; }
.t-faq-body a {
  color: var(--sky-600);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(58,143,207,0.3);
}

@keyframes faqDrop {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FINAL CTA
   ============================================ */
.t-final {
  padding: 120px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, var(--sky-700), var(--sky-900) 70%),
    var(--sky-900);
  color: var(--cloud);
  position: relative;
  overflow: hidden;
}
.t-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 20%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 85% 30%, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 50% 80%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.4), transparent);
  background-size: 600px 600px;
  pointer-events: none;
}
.t-final .container { position: relative; z-index: 1; }
.t-final-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.t-final-title .serif-italic { color: var(--gold); }
