  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --hot-pink: #E8005A;
    --pink-light: #FF3D87;
    --page-bg: #FFFFFF;
    --section-alt: #FDF5F8;
    --card-bg: #FFFFFF;
    --text-primary: #1A1A1A;
    --text-muted: #666666;
    --border-subtle: #EAEAEA;
    --border-pink: rgba(232,0,90,0.18);
    --gradient-pride: linear-gradient(90deg, #FF0080, #FF6B00, #FFD700, #00C851, #0099FF, #9B00FF);
    --gradient-cta: linear-gradient(135deg, #E8005A 0%, #C4004D 100%);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-cta: 0 8px 28px rgba(232,0,90,0.35);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--page-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* STICKY HEADER BAR */
  .sticky-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  }
  .sticky-bar.visible { transform: translateY(0); }
  .sticky-bar-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; color: var(--text-primary); }
  .sticky-bar-price { font-weight: 700; font-size: 22px; color: var(--hot-pink); }
  .sticky-cta {
    background: var(--gradient-cta);
    color: white;
    border: none;
    padding: 10px 28px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .sticky-cta:hover { transform: scale(1.03); box-shadow: var(--shadow-cta); }

  /* HERO */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    overflow: hidden;
    background: #fff;
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 65% 50%, rgba(232,0,90,0.05) 0%, transparent 65%);
    pointer-events: none;
  }

  /* Pride stripe top bar */
  .pride-stripe {
    height: 5px;
    background: var(--gradient-pride);
    width: 100%;
  }

  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 40px;
    background: var(--section-alt);
  }

  .ticket-card {
    position: relative;
    width: 340px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(232,0,90,0.15), 0 4px 20px rgba(0,0,0,0.08);
    animation: float 6s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-16px) rotate(1deg); }
  }

  .ticket-top {
    background: var(--gradient-cta);
    padding: 28px 28px 20px;
    position: relative;
  }

  .ticket-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .ticket-event-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 1;
    color: white;
  }

  .ticket-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.8);
  }

  .ticket-divider {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 -1px;
    background: #fff;
  }
  .ticket-notch {
    width: 20px;
    height: 20px;
    background: var(--section-alt);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .ticket-perf {
    flex: 1;
    height: 2px;
    border-top: 2px dashed #DDDDDD;
  }

  .ticket-body {
    padding: 20px 28px 24px;
    background: #fff;
  }

  .ticket-type {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--hot-pink);
  }

  .ticket-dates {
    font-size: 13px;
    color: var(--text-muted);
    margin: 4px 0 16px;
    letter-spacing: 0.5px;
  }

  .ticket-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .ticket-perks li {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .perk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hot-pink);
    flex-shrink: 0;
  }

  .ticket-price-row {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .ticket-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--hot-pink);
    line-height: 1;
  }
  .ticket-price-label {
    font-size: 13px;
    color: var(--text-muted);
  }

  /* HERO COPY */
  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px 56px;
    position: relative;
    z-index: 1;
  }

  .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--hot-pink);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--hot-pink);
  }

  .hero-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 6vw, 80px);
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text-primary);
  }

  .heading-accent {
    display: block;
    color: var(--hot-pink);
  }

  .hero-subhead {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 36px;
    font-weight: 300;
  }

  .hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-cta);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: var(--shadow-cta);
    position: relative;
    overflow: hidden;
  }
  .cta-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
  }
  .cta-primary:hover::after { left: 150%; }
  .cta-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(232,0,90,0.45); }

  .cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.2s;
  }
  .cta-primary:hover .cta-arrow { transform: translateX(4px); }

  .cta-secondary {
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .lock-icon { font-size: 14px; }

  .urgency-bar {
    background: #FFF5F8;
    border: 1px solid rgba(232,0,90,0.2);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
  }
  .urgency-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--hot-pink);
    flex-shrink: 0;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,0,90,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(232,0,90,0); }
  }
  .urgency-text { font-size: 14px; color: var(--hot-pink); font-weight: 600; }

  /* SECTION STYLES */
  section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--hot-pink);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: var(--text-primary);
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 560px;
    font-weight: 300;
    margin-bottom: 48px;
    line-height: 1.7;
  }

  /* DIVIDER */
  .pride-divider {
    height: 4px;
    background: var(--gradient-pride);
    margin: 0;
  }

  /* ALT SECTION BG */
  .section-alt-bg {
    background: var(--section-alt);
  }

  /* WHAT'S INCLUDED */
  .included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .included-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: var(--shadow-card);
  }
  .included-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-pride);
    opacity: 0;
    transition: opacity 0.25s;
  }
  .included-card:hover { border-color: var(--border-pink); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(232,0,90,0.12); }
  .included-card:hover::before { opacity: 1; }

  .included-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #FFF0F5;
    border: 1px solid rgba(232,0,90,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
  }

  .included-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
  }

  .included-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* VALUE BANNER */
  .value-banner {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFF5F0 100%);
    border: 1px solid rgba(232,0,90,0.15);
    border-radius: 24px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0 40px;
  }
  .value-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--hot-pink);
    line-height: 1;
    flex-shrink: 0;
  }
  .value-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
  }
  .value-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px 24px;
    position: relative;
    box-shadow: var(--shadow-card);
  }

  .stars {
    color: #FFB800;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .testimonial-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
  }

  .author-name { font-weight: 600; font-size: 14px; color: var(--text-primary); }
  .author-loc { font-size: 12px; color: var(--text-muted); }

  /* DETAILS */
  .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .detail-block h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .detail-block h3 span { font-size: 20px; }

  .detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .detail-list li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
  }
  .detail-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--hot-pink);
    font-size: 13px;
  }

  /* FINAL CTA SECTION */
  .final-cta {
    text-align: center;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    background: var(--section-alt);
  }
  .final-cta-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--text-muted);
    letter-spacing: 4px;
    margin-bottom: 8px;
  }
  .final-cta-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: var(--hot-pink);
    line-height: 1;
    margin-bottom: 16px;
  }
  .final-cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
  }
  .trust-badge span { font-size: 18px; }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border-subtle);
    padding: 32px 40px;
    text-align: center;
    font-size: 13px;
    color: #999;
    background: #fff;
  }
  footer a { color: var(--hot-pink); text-decoration: none; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .hero-visual {
      padding: 80px 20px 40px;
    }
    .ticket-card { width: 300px; }
    .hero-copy {
      padding: 40px 24px 60px;
    }
    .hero-heading { font-size: 52px; }
    section { padding: 60px 24px; }
    .value-banner {
      flex-direction: column;
      gap: 16px;
      text-align: center;
      margin: 0 24px;
    }
    .details-grid { grid-template-columns: 1fr; }
    .sticky-bar .sticky-bar-title { display: none; }
    .cta-primary { padding: 16px 28px; font-size: 16px; }
  }