/* ============================================
   AI in the NDIS Summit — Design System
   Palette: Light, tech-forward, accessible
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: 80px;
  hanging-punctuation: first last;
}

:root {
  /* --- Palette --- */
  --white:        #ffffff;
  --bg:           #f5f8ff;          /* pale blue-white */
  --surface:      #ffffff;
  --surface-2:    #eef3ff;
  --border:       #dce6f5;
  --border-soft:  #e8eef8;

  --ink:          #0f1f3d;          /* near-black navy */
  --ink-2:        #2d4170;          /* mid navy */
  --ink-3:        #5a6e91;          /* muted body */
  --ink-4:        #8fa3c0;          /* faint labels */

  --teal:         #0ea5e9;          /* primary action */
  --teal-dark:    #0284c7;
  --teal-glow:    rgba(14,165,233,0.12);
  --teal-pale:    #e0f4fd;

  --indigo:       #4f46e5;          /* secondary accent */
  --indigo-pale:  #ede9fe;
  --indigo-glow:  rgba(79,70,229,0.1);

  --amber:        #f59e0b;          /* highlight / early-bird */
  --amber-pale:   #fef3c7;
  --amber-glow:   rgba(245,158,11,0.15);

  --green:        #10b981;
  --green-pale:   #d1fae5;

  --red-pale:     #fee2e2;
  --red:          #ef4444;

  /* --- Type scale --- */
  --text-xs:   clamp(0.7rem,  0.65rem + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.85rem, 0.8rem  + 0.25vw, 0.95rem);
  --text-base: clamp(1rem,    0.95rem + 0.25vw, 1.0625rem);
  --text-lg:   clamp(1.1rem,  1rem    + 0.5vw,  1.25rem);
  --text-xl:   clamp(1.3rem,  1.1rem  + 1vw,    1.75rem);
  --text-2xl:  clamp(1.75rem, 1.3rem  + 2vw,    2.75rem);
  --text-3xl:  clamp(2.25rem, 1.5rem  + 3vw,    4rem);

  /* --- Fonts --- */
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body:    'Inter', 'Satoshi', sans-serif;

  /* --- Spacing --- */
  --space-1:  0.25rem; --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4:  1rem;    --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8:  2rem;    --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;
  --space-32: 8rem;

  /* --- Radius --- */
  --r-sm: 6px;   --r-md: 10px;  --r-lg: 16px;
  --r-xl: 24px;  --r-2xl: 32px; --r-full: 9999px;

  /* --- Shadows --- */
  --shadow-sm:  0 1px 3px rgba(15,31,61,0.06), 0 1px 2px rgba(15,31,61,0.04);
  --shadow-md:  0 4px 16px rgba(15,31,61,0.08), 0 2px 6px rgba(15,31,61,0.05);
  --shadow-lg:  0 12px 40px rgba(15,31,61,0.1), 0 4px 12px rgba(15,31,61,0.06);
  --shadow-teal: 0 4px 20px rgba(14,165,233,0.25);

  /* --- Transitions --- */
  --ease: cubic-bezier(0.16,1,0.3,1);
  --t-fast: 150ms;
  --t-base: 240ms;

  /* --- Content widths --- */
  --max-w: 1160px;
  --max-w-text: 680px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; padding: 0; margin: 0; }
input, select, textarea, button { font: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.2; font-family: var(--font-display); }
p, li { text-wrap: pretty; }
a { color: var(--teal); text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
::selection { background: var(--teal-glow); color: var(--ink); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: var(--r-sm); }

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

/* ============================================ UTILITIES */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding-inline: var(--space-6); }
.text-center { text-align: center; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: var(--space-4);
}
.section-eyebrow::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--teal); border-radius: 2px;
}

.section-heading {
  font-size: var(--text-2xl); font-weight: 800;
  color: var(--ink); margin-bottom: var(--space-4);
}
.section-body {
  font-size: var(--text-base); color: var(--ink-3); max-width: var(--max-w-text);
  line-height: 1.7;
}

.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: var(--text-xs); font-weight: 600;
}
.tag-teal  { background: var(--teal-pale); color: var(--teal-dark); }
.tag-indigo { background: var(--indigo-pale); color: var(--indigo); }
.tag-amber { background: var(--amber-pale); color: #92400e; }
.tag-green { background: var(--green-pale); color: #065f46; }

/* ============================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-6); border-radius: var(--r-full);
  font-weight: 700; font-size: var(--text-sm); font-family: var(--font-display);
  transition: all var(--t-base) var(--ease); white-space: nowrap; cursor: pointer;
  border: none;
}
.btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,0.4); color: #ffffff; }
.btn-secondary {
  background: var(--surface); color: var(--ink-2); border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-pale); }
.btn-indigo {
  background: var(--indigo);
  color: #fff;
  box-shadow: 0 4px 18px rgba(79,70,229,0.25);
}
.btn-indigo:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,70,229,0.35); color: #fff; }
.btn-lg { padding: var(--space-4) var(--space-10); font-size: var(--text-base); }
.btn-sm { padding: var(--space-2) var(--space-5); font-size: var(--text-xs); white-space: nowrap; }

/* ============================================ HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  transition: background var(--t-base), box-shadow var(--t-base);
  background: rgba(245,248,255,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(245,248,255,0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header .container {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); line-height: 1.1; }
.logo-title { font-size: var(--text-sm); font-weight: 800; color: var(--ink); display: block; }
.logo-sub   { font-size: var(--text-xs); font-weight: 500; color: var(--ink-3); }
.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav a { font-size: var(--text-sm); font-weight: 600; color: var(--ink-3); transition: color var(--t-fast); }
.nav a:hover { color: var(--teal); }
.nav-cta { margin-left: var(--space-4); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(245,248,255,0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: var(--space-8);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: var(--text-xl); font-weight: 700; color: var(--ink); }
.mobile-nav .close { position: absolute; top: 20px; right: 24px; font-size: 28px; color: var(--ink-3); background: none; border: none; cursor: pointer; }

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

/* ============================================ HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
  background: #071428;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.55;
  object-position: center center;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.3) 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 45%, rgba(0,0,0,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding-block: var(--space-20);
  display: grid; grid-template-columns: 1fr 440px; gap: var(--space-12); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 5px 14px; border-radius: var(--r-full);
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.35);
  font-size: var(--text-xs); font-weight: 700; color: #7dd3fc;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-6);
}
.hero-badge .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform: scale(1); } 50% { opacity:0.5; transform: scale(0.8); } }

.hero-headline {
  font-size: var(--text-3xl); font-weight: 900; color: #ffffff;
  line-height: 1.05; margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}
.hero-headline .gradient-text {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.hero-sub {
  font-size: var(--text-lg); color: rgba(255,255,255,0.75); line-height: 1.6;
  max-width: 540px; margin-bottom: var(--space-8);
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-6); margin-bottom: var(--space-8);
}
.meta-item { display: flex; align-items: center; gap: var(--space-3); }
.meta-item .meta-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: rgba(14,165,233,0.2); color: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.meta-item .meta-icon svg { width: 18px; height: 18px; }
.meta-label { font-size: var(--text-xs); color: rgba(255,255,255,0.5); font-weight: 500; }
.meta-value { font-size: var(--text-sm); color: rgba(255,255,255,0.9); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* Hero Registration Card */
.hero-card {
  background: var(--surface); border-radius: var(--r-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  padding: var(--space-8); position: sticky; top: 100px;
}
.hero-card-title {
  font-size: var(--text-lg); font-weight: 800; color: var(--ink);
  margin-bottom: var(--space-2);
}
.hero-card-sub { font-size: var(--text-sm); color: var(--ink-3); margin-bottom: var(--space-6); }

.price-options { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.price-option {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-4); border-radius: var(--r-lg);
  border: 2px solid var(--border); cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base);
  position: relative; overflow: hidden;
}
.price-option:hover { border-color: var(--teal); }
.price-option.featured {
  border-color: var(--amber);
  background: linear-gradient(135deg, #fffbeb, #fff);
}
.price-option.featured::before {
  content: 'BEST VALUE'; position: absolute; top: 10px; right: 10px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.08em;
  background: var(--amber); color: #fff; padding: 2px 8px; border-radius: var(--r-full);
  z-index: 2;
}
.price-option.featured .po-right {
  padding-top: 24px; /* push content below the badge */
}
.price-name { font-size: var(--text-sm); font-weight: 700; color: var(--ink); }
.price-desc { font-size: var(--text-xs); color: var(--ink-3); }
.price-amount { font-size: var(--text-lg); font-weight: 900; color: var(--teal-dark); text-align: right; }
.price-amount .was { font-size: var(--text-xs); color: var(--ink-4); text-decoration: line-through; font-weight: 400; display: block; }
.price-amount .gst { font-size: var(--text-xs); color: var(--ink-4); font-weight: 400; }

.dsa-member-box {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-4); background: var(--indigo-pale);
  border-radius: var(--r-lg); border: 1px solid rgba(79,70,229,0.2);
  margin-bottom: var(--space-5); cursor: pointer;
}
.dsa-member-checkbox { width: 20px; height: 20px; min-width: 20px; accent-color: var(--indigo); margin-top: 1px; }
.dsa-member-label { font-size: var(--text-sm); color: var(--indigo); font-weight: 600; }
.dsa-member-label span { font-weight: 400; color: var(--ink-3); font-size: var(--text-xs); display: block; margin-top: 2px; }

.card-cta { width: 100%; text-align: center; border-radius: var(--r-lg); font-size: var(--text-base); padding: var(--space-4); }
.card-note { font-size: var(--text-xs); color: var(--ink-4); text-align: center; margin-top: var(--space-3); }

/* ============================================ TRUST BAR */
.trust-bar {
  background: var(--ink); padding: var(--space-6) 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--space-8);
}
.trust-item {
  display: flex; align-items: center; gap: var(--space-3);
}
.trust-item .t-num {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 900;
  background: linear-gradient(135deg, var(--teal), #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.trust-item .t-label { font-size: var(--text-xs); color: #94a3b8; text-transform: uppercase; letter-spacing: 0.08em; }
.trust-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* ============================================ EMOTIONAL JOURNEY */
.journey {
  padding: clamp(var(--space-16),8vw,var(--space-32)) 0;
  background: var(--surface);
}
.journey-intro { max-width: 720px; margin-bottom: var(--space-12); }
.journey-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-6);
}
.journey-card {
  padding: var(--space-8); border-radius: var(--r-xl);
  border: 1px solid var(--border-soft); position: relative; overflow: hidden;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base);
}
.journey-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.journey-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.journey-card.fear::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.journey-card.clarity::before { background: linear-gradient(90deg, #f59e0b, var(--teal)); }
.journey-card.action::before { background: linear-gradient(90deg, var(--teal), var(--indigo)); }
.journey-card.fear { background: linear-gradient(160deg, #fff5f5, var(--surface)); }
.journey-card.clarity { background: linear-gradient(160deg, #fffbf0, var(--surface)); }
.journey-card.action { background: linear-gradient(160deg, #f0f9ff, var(--surface)); }

.journey-step {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--space-4);
}
.journey-card.fear .journey-step { color: #ef4444; }
.journey-card.clarity .journey-step { color: #f59e0b; }
.journey-card.action .journey-step { color: var(--teal); }
.journey-icon {
  width: 48px; height: 48px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.journey-card.fear   .journey-icon { background: #fee2e2; color: #ef4444; }
.journey-card.clarity .journey-icon { background: var(--amber-pale); color: var(--amber); }
.journey-card.action .journey-icon { background: var(--teal-pale); color: var(--teal); }
.journey-icon svg { width: 24px; height: 24px; }
.journey-card h3 { font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-3); color: var(--ink); }
.journey-card p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.65; }
.journey-bullets { margin-top: var(--space-4); display: flex; flex-direction: column; gap: var(--space-2); }
.journey-bullets li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: var(--text-xs); color: var(--ink-3);
}
.journey-bullets li::before { content: '→'; flex-shrink: 0; font-weight: 700; }
.journey-card.fear .journey-bullets li::before { color: #ef4444; }
.journey-card.clarity .journey-bullets li::before { color: var(--amber); }
.journey-card.action .journey-bullets li::before { color: var(--teal); }

@media (max-width: 768px) { .journey-grid { grid-template-columns: 1fr; } }

/* ============================================ AGENDA */
.agenda { padding: clamp(var(--space-16),8vw,var(--space-32)) 0; }
.agenda-intro { margin-bottom: var(--space-12); }
.agenda-timeline { display: flex; flex-direction: column; gap: var(--space-3); }

.agenda-item {
  display: grid; grid-template-columns: 110px 1fr;
  gap: var(--space-5); align-items: start;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-xl); padding: var(--space-5) var(--space-6);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.agenda-item:hover { border-color: var(--teal); box-shadow: 0 2px 16px var(--teal-glow); }
.agenda-item.keynote { border-left: 3px solid var(--teal); }
.agenda-item.lab     { border-left: 3px solid var(--indigo); }
.agenda-item.break   { background: var(--bg); border-style: dashed; }

.a-time {
  font-size: var(--text-xs); font-weight: 800; color: var(--teal);
  padding-top: 3px; letter-spacing: 0.03em;
}
.agenda-item.break .a-time { color: var(--ink-4); }
.a-body h3 { font-size: var(--text-base); font-weight: 800; color: var(--ink); margin-bottom: var(--space-1); }
.a-facilitator { font-size: var(--text-xs); color: var(--teal-dark); font-weight: 600; margin-bottom: var(--space-2); }
.a-desc { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.55; }
.a-tags { margin-top: var(--space-3); display: flex; flex-wrap: wrap; gap: var(--space-2); }

.lab-callout {
  display: flex; align-items: flex-start; gap: var(--space-3);
  background: var(--indigo-pale); border-radius: var(--r-lg); padding: var(--space-4);
  margin-top: var(--space-4); border: 1px solid rgba(79,70,229,0.15);
}
.lab-callout-icon { color: var(--indigo); flex-shrink: 0; margin-top: 1px; }
.lab-callout-icon svg { width: 18px; height: 18px; }
.lab-callout p { font-size: var(--text-xs); color: var(--indigo); font-weight: 600; }
.lab-callout span { font-weight: 400; color: var(--ink-3); }

@media (max-width: 600px) {
  .agenda-item { grid-template-columns: 1fr; gap: var(--space-2); }
}

/* ============================================ PRODUCTS SHOWCASE */
.products { padding: clamp(var(--space-16),8vw,var(--space-32)) 0; background: var(--ink); }
.products .section-eyebrow { color: var(--teal); }
.products .section-heading { color: #fff; }
.products .section-body { color: #94a3b8; }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--space-5); margin-top: var(--space-12); }
.product-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: var(--space-8);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}
.product-card:hover { border-color: rgba(14,165,233,0.4); background: rgba(14,165,233,0.04); transform: translateY(-4px); }

.product-icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.product-icon svg { width: 26px; height: 26px; }
.product-icon.teal-i { background: var(--teal-glow); color: var(--teal); }
.product-icon.indigo-i { background: var(--indigo-glow); color: #818cf8; }
.product-icon.amber-i { background: var(--amber-glow); color: var(--amber); }

.product-card h3 { font-size: var(--text-lg); font-weight: 800; color: #fff; margin-bottom: var(--space-2); }
.product-brand { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-4); }
.product-brand.teal-b { color: var(--teal); }
.product-brand.indigo-b { color: #818cf8; }
.product-brand.amber-b { color: var(--amber); }
.product-card p { font-size: var(--text-sm); color: #94a3b8; line-height: 1.6; margin-bottom: var(--space-5); }
.product-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-2); }
.product-bullets li { font-size: var(--text-xs); color: #64748b; display: flex; align-items: flex-start; gap: var(--space-2); }
.product-bullets li::before { content: '✓'; flex-shrink: 0; font-weight: 800; }
.product-bullets li.teal-b::before { color: var(--teal); }
.product-bullets li.indigo-b::before { color: #818cf8; }
.product-bullets li.amber-b::before { color: var(--amber); }

.products-illustration { margin-top: var(--space-12); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); max-height: 360px; object-fit: cover; width: 100%; }

@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }

/* ============================================ WHAT YOU GET */
.takeaways { padding: clamp(var(--space-16),8vw,var(--space-32)) 0; background: var(--surface); }
.takeaways-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); margin-top: var(--space-10); }
.takeaway-item {
  display: flex; align-items: flex-start; gap: var(--space-4);
  background: var(--bg); border-radius: var(--r-xl); padding: var(--space-6);
  border: 1px solid var(--border-soft);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.takeaway-item:hover { border-color: var(--teal); box-shadow: 0 2px 16px var(--teal-glow); }
.takeaway-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--teal-pale); color: var(--teal);
}
.takeaway-icon svg { width: 22px; height: 22px; }
.takeaway-item h4 { font-size: var(--text-sm); font-weight: 800; color: var(--ink); margin-bottom: var(--space-1); }
.takeaway-item p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.55; }

@media (max-width: 640px) { .takeaways-grid { grid-template-columns: 1fr; } }

/* ============================================ PRICING */
.pricing { padding: clamp(var(--space-16),8vw,var(--space-32)) 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-4); margin-top: var(--space-10); }
.price-card {
  background: var(--surface); border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  padding: var(--space-8); position: relative; overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, #fffbeb, var(--surface));
  box-shadow: 0 8px 32px rgba(245,158,11,0.15);
}
.price-card.featured:hover { box-shadow: 0 12px 40px rgba(245,158,11,0.25); }
.price-badge {
  position: absolute; top: 0; right: 0;
  background: var(--amber); color: #fff;
  font-size: var(--text-xs); font-weight: 800; letter-spacing: 0.06em;
  padding: 5px 14px; border-bottom-left-radius: var(--r-lg);
  text-transform: uppercase;
}
.price-card-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: var(--space-4); }
.price-card-amount {
  font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 900; color: var(--ink);
  line-height: 1; margin-bottom: var(--space-1);
}
.price-card-amount .dollar { font-size: 1.5rem; vertical-align: super; font-weight: 700; }
.price-card-gst { font-size: var(--text-xs); color: var(--ink-4); margin-bottom: var(--space-6); }
.price-card-desc { font-size: var(--text-sm); color: var(--ink-3); margin-bottom: var(--space-6); line-height: 1.55; }
.price-card-perks { list-style: none; padding: 0; margin: 0 0 var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); }
.price-card-perks li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--ink-3);
}
.price-card-perks li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.price-cta { display: block; width: 100%; text-align: center; }

.member-banner {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: var(--space-5);
  background: linear-gradient(135deg, var(--indigo-pale), #f0f5ff);
  border: 1.5px solid rgba(79,70,229,0.25);
  border-radius: var(--r-xl); padding: var(--space-8); margin-top: var(--space-4);
}
.member-banner-icon {
  width: 52px; height: 52px; min-width: 52px; border-radius: var(--r-lg);
  background: var(--indigo); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.member-banner-icon svg { width: 26px; height: 26px; }
.member-banner-body h3 { font-size: var(--text-lg); font-weight: 800; color: var(--indigo); margin-bottom: var(--space-2); }
.member-banner-body p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.6; max-width: 560px; }
.member-banner-action { margin-left: auto; display: flex; align-items: center; }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .member-banner { flex-direction: column; }
  .member-banner-action { margin-left: 0; }
}

/* ============================================ REGISTRATION FORM */
.register { padding: clamp(var(--space-16),8vw,var(--space-32)) 0; background: var(--bg); }
.register-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: start;
}
.register-info h3 { font-size: var(--text-xl); font-weight: 800; color: var(--ink); margin-bottom: var(--space-4); }
.register-info p { font-size: var(--text-base); color: var(--ink-3); line-height: 1.7; margin-bottom: var(--space-6); }
.register-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.register-perks li { display: flex; align-items: flex-start; gap: var(--space-3); font-size: var(--text-sm); color: var(--ink-3); }
.register-perks li .perk-icon {
  width: 32px; height: 32px; min-width: 32px; border-radius: var(--r-md);
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.register-perks li .perk-icon svg { width: 16px; height: 16px; }
.perk-text strong { display: block; font-weight: 700; color: var(--ink); font-size: var(--text-sm); }

/* Form */
.reg-form {
  background: var(--surface); border-radius: var(--r-xl);
  border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: var(--space-8);
}
.form-title { font-size: var(--text-lg); font-weight: 800; color: var(--ink); margin-bottom: var(--space-6); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: var(--text-xs); font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border); border-radius: var(--r-lg);
  background: var(--bg); color: var(--ink); font-size: var(--text-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-glow);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6e91' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
.form-check {
  display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-4);
}
.form-check input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; accent-color: var(--teal); margin-top: 2px; }
.form-check label { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.5; }
.form-check label strong { color: var(--indigo); }
.form-submit-btn { width: 100%; justify-content: center; border-radius: var(--r-lg); padding: var(--space-4); font-size: var(--text-base); margin-top: var(--space-2); }
.form-small { font-size: var(--text-xs); color: var(--ink-4); text-align: center; margin-top: var(--space-3); }

.form-success { display: none; text-align: center; padding: var(--space-12) var(--space-8); }
.form-success.show { display: block; }
.form-success .success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-5);
}
.form-success .success-icon svg { width: 32px; height: 32px; }
.form-success h3 { font-size: var(--text-xl); font-weight: 800; color: var(--ink); margin-bottom: var(--space-3); }
.form-success p { font-size: var(--text-base); color: var(--ink-3); }

@media (max-width: 768px) {
  .register-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================ DSA ABOUT */
.about-dsa { padding: clamp(var(--space-16),8vw,var(--space-32)) 0; background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12); align-items: center; margin-top: var(--space-10); }
.about-text p { font-size: var(--text-base); color: var(--ink-3); line-height: 1.7; margin-bottom: var(--space-5); }
.about-pillars { display: flex; flex-direction: column; gap: var(--space-4); }
.about-pillar {
  display: flex; align-items: flex-start; gap: var(--space-4);
  padding: var(--space-5); background: var(--bg); border-radius: var(--r-xl);
  border: 1px solid var(--border-soft);
  transition: border-color var(--t-base);
}
.about-pillar:hover { border-color: var(--teal); }
.about-pillar-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--r-md);
  background: var(--teal-pale); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.about-pillar-icon svg { width: 20px; height: 20px; }
.about-pillar h4 { font-size: var(--text-sm); font-weight: 800; color: var(--ink); margin-bottom: var(--space-1); }
.about-pillar p { font-size: var(--text-xs); color: var(--ink-3); margin: 0; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ============================================ FOOTER */
.footer { background: var(--ink); padding: clamp(var(--space-12),6vw,var(--space-20)) 0 var(--space-8); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-8); margin-bottom: var(--space-12); }
.footer-brand .logo-title { color: #fff; }
.footer-brand .logo-sub { color: #64748b; }
.footer-brand p { font-size: var(--text-sm); color: #64748b; margin-top: var(--space-4); max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: var(--text-sm); font-weight: 700; color: #fff; margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a { font-size: var(--text-sm); color: #64748b; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { font-size: var(--text-xs); color: #475569; }
.footer-bottom a { font-size: var(--text-xs); color: #475569; }
.footer-bottom a:hover { color: var(--teal); }
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ============================================ HERO RESPONSIVE */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { position: static; }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-meta { gap: var(--space-4); }
}

/* ============================================ COUNTDOWN */
.countdown {
  display: flex; gap: var(--space-4); margin: var(--space-5) 0;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 900;
  color: var(--teal); display: block; line-height: 1;
}
.countdown-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); font-weight: 600; }
.countdown-sep { font-size: var(--text-xl); font-weight: 900; color: rgba(255,255,255,0.2); line-height: 1; padding-top: 2px; }

/* ============================================ HUMANITIX SECTION */
.tickets-section { padding: clamp(var(--space-12),6vw,var(--space-20)) 0; background: var(--teal-pale); border-top: 1px solid rgba(14,165,233,0.15); }
.tickets-inner { text-align: center; }
.tickets-inner h2 { font-size: var(--text-2xl); font-weight: 900; color: var(--ink); margin-bottom: var(--space-4); }
.tickets-inner p { font-size: var(--text-base); color: var(--ink-3); margin-bottom: var(--space-8); max-width: 540px; margin-inline: auto; }
.humanitix-note { font-size: var(--text-xs); color: var(--ink-4); margin-top: var(--space-4); }
.humanitix-note a { color: var(--teal); font-weight: 600; }

/* ============================================ DSA TOGGLE */
.dsa-toggle-wrap {
  margin-bottom: var(--space-4);
}
.pricing-member-toggle {
  margin-top: var(--space-6);
}
.dsa-toggle-label {
  display: flex; align-items: flex-start; gap: var(--space-3);
  background: linear-gradient(135deg, #f0f5ff, #ede9fe);
  border: 1.5px solid rgba(79,70,229,0.2); border-radius: var(--r-xl);
  padding: var(--space-4) var(--space-5); cursor: pointer;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.dsa-toggle-label:hover { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-glow); }
.dsa-toggle-label input[type="checkbox"] {
  width: 20px; height: 20px; min-width: 20px; accent-color: var(--indigo); margin-top: 2px;
}
.dsa-toggle-inner { flex: 1; }
.dsa-toggle-top { display: flex; align-items: center; gap: var(--space-2); margin-bottom: 4px; flex-wrap: wrap; }
.dsa-free-badge {
  background: var(--green); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.08em;
  padding: 2px 8px; border-radius: var(--r-full); text-transform: uppercase;
  flex-shrink: 0;
}
.dsa-toggle-title { font-size: var(--text-sm); font-weight: 700; color: var(--indigo); }
.dsa-toggle-desc { font-size: var(--text-xs); color: var(--ink-3); line-height: 1.5; }
.dsa-toggle-desc strong { color: var(--indigo); }

/* Price option redesign */
.price-option { align-items: center; }
.po-left { flex: 1; }
.po-right { text-align: right; }
.po-was {
  font-size: var(--text-sm); color: var(--ink-3);
  text-decoration: line-through; font-weight: 700;
  display: block; line-height: 1.2; min-height: 16px;
  padding-right: 70px; /* clear the BEST VALUE badge */
}
.po-member-save {
  font-size: 10px; font-weight: 700; color: var(--green);
  background: var(--green-pale); padding: 2px 8px;
  border-radius: var(--r-full); margin-top: 4px;
  white-space: nowrap;
  visibility: hidden;
  min-height: 18px;
}
.price-amount { font-size: var(--text-lg); font-weight: 800; line-height: 1.1; }
.price-full-line { min-height: 18px; }

/* ============================================ TWO-ACTION REGISTER */
.two-actions-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-8); margin-top: var(--space-10); align-items: start;
}
.action-card {
  border-radius: var(--r-xl); padding: var(--space-8);
  border: 1.5px solid var(--border);
}
.action-card.action-primary {
  background: var(--ink);
  border-color: rgba(14,165,233,0.2);
}
.action-card.action-secondary {
  background: var(--surface);
  border-color: rgba(79,70,229,0.2);
}
.action-card-eyebrow {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: var(--space-3);
}
.action-primary .action-card-eyebrow { color: var(--teal); }
.action-secondary .action-card-eyebrow { color: var(--indigo); }
.action-card h3 {
  font-size: var(--text-xl); font-weight: 800; margin-bottom: var(--space-4);
}
.action-primary h3 { color: #fff; }
.action-secondary h3 { color: var(--ink); }
.action-card p { font-size: var(--text-sm); line-height: 1.65; margin-bottom: var(--space-5); }
.action-primary p { color: #94a3b8; }
.action-secondary p { color: var(--ink-3); }

.ticket-summary {
  background: rgba(255,255,255,0.05); border-radius: var(--r-lg);
  padding: var(--space-5); margin-bottom: var(--space-6);
  display: flex; flex-direction: column; gap: var(--space-3);
  border: 1px solid rgba(255,255,255,0.08);
}
.ts-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-sm); color: #94a3b8; padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ts-row:last-child { border-bottom: none; padding-bottom: 0; }
.ts-row strong { color: #e2e8f0; font-weight: 700; }
.ts-gst { font-size: var(--text-xs); font-weight: 400; color: #64748b; }
.ts-member { color: var(--teal) !important; }
.ts-member strong { color: var(--teal) !important; }

.action-btn {
  width: 100%; justify-content: center;
  border-radius: var(--r-lg); padding: var(--space-4);
  font-size: var(--text-base); margin-bottom: var(--space-3);
}
.action-card-note {
  font-size: var(--text-xs); color: #475569; text-align: center;
}
.action-primary .action-card-note { color: #475569; }

.mini-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

/* DSA form success */
.dsa-form-success {
  display: none; text-align: center; padding: var(--space-8) var(--space-4);
}
.dsa-form-success.show { display: block; }
.dsa-form-success .success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-pale); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-4);
}
.dsa-form-success .success-icon svg { width: 28px; height: 28px; }
.dsa-form-success h4 { font-size: var(--text-xl); font-weight: 800; color: var(--ink); margin-bottom: var(--space-3); }
.dsa-form-success p { font-size: var(--text-sm); color: var(--ink-3); }

@media (max-width: 768px) {
  .two-actions-grid { grid-template-columns: 1fr; }
  .mini-form-row { grid-template-columns: 1fr; }
}

/* Hero headline sub-title line */
.hero-headline-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2em;
  letter-spacing: 0;
}
.hero-headline-sub .gradient-text {
  font-weight: 700;
}

/* ============================================ SURPRISES / PARTNER REVEALS */
.surprises {
  padding: clamp(var(--space-16),8vw,var(--space-32)) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.surprises::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(14,165,233,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(79,70,229,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.surprises-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.surprises-eyebrow {
  color: var(--teal) !important;
}
.surprises-eyebrow::before {
  background: var(--teal) !important;
}

.surprises-heading {
  color: #fff !important;
  margin-bottom: var(--space-4);
}

.surprises-body {
  color: #94a3b8 !important;
  max-width: 520px;
  margin: 0 auto;
}

/* Cards grid */
.surprises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.surprise-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  cursor: default;
}
.surprise-card:hover {
  border-color: rgba(14,165,233,0.35);
  background: rgba(14,165,233,0.04);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(14,165,233,0.1);
}

/* Lock icon */
.surprise-lock {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  flex-shrink: 0;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.surprise-card:hover .surprise-lock {
  background: rgba(14,165,233,0.15);
  color: var(--teal);
  border-color: rgba(14,165,233,0.3);
}
.surprise-lock svg {
  width: 24px;
  height: 24px;
}

/* Category label */
.surprise-category {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.surprise-category--teal   { color: var(--teal); }
.surprise-category--indigo { color: #818cf8; }
.surprise-category--amber  { color: var(--amber); }

/* Teaser text */
.surprise-teaser {
  font-size: var(--text-sm);
  color: #cbd5e1;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

/* "Revealed on the day" tag */
.surprise-reveal-tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.04em;
  padding: var(--space-1) var(--space-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  width: fit-content;
}

/* Bottom banner */
.surprises-banner {
  margin-top: var(--space-10);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: var(--r-xl);
  padding: var(--space-6) var(--space-8);
  position: relative;
  z-index: 1;
}
.surprises-banner-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--amber);
  margin-top: 2px;
}
.surprises-banner p {
  font-size: var(--text-sm);
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}
.surprises-banner strong { color: #fff; }

@media (max-width: 900px) {
  .surprises-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .surprises-banner { flex-direction: column; gap: var(--space-3); }
}

/* ============================================ HUMANITIX WIDGET */
.humanitix-widget-wrap {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-8);
  align-items: start;
}
.humanitix-placeholder {
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: var(--r-xl);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.htx-placeholder-inner {
  text-align: center;
  padding: var(--space-10);
  max-width: 400px;
}
.htx-placeholder-inner h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: var(--space-3);
}
.htx-placeholder-inner p {
  font-size: var(--text-sm);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
}

/* Ticket price reminder */
.ticket-price-reminder {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tpr-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-soft);
  gap: var(--space-4);
}
.tpr-item:last-child { border-bottom: none; }
.tpr-label { font-size: var(--text-sm); color: var(--ink-3); font-weight: 500; }
.tpr-price { font-size: var(--text-base); font-weight: 800; color: var(--teal-dark); text-align: right; }
.tpr-gst { font-size: var(--text-xs); font-weight: 400; color: var(--ink-4); }
.tpr-until { font-size: 10px; background: var(--amber-pale); color: #92400e; padding: 2px 7px; border-radius: var(--r-full); font-weight: 700; margin-left: 4px; }
.tpr-member .tpr-label, .tpr-member .tpr-price { color: var(--indigo); }

/* Notify form */
.notify-form-wrap {
  max-width: 560px;
  margin-top: var(--space-4);
}
#hubspot-form-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  margin-top: var(--space-4);
}

@media (max-width: 768px) {
  .humanitix-widget-wrap { grid-template-columns: 1fr; }
}

/* Nav Register Now — force white text */
.nav-cta.btn-primary { color: #ffffff !important; }
.nav-cta.btn-primary:hover { color: #ffffff !important; }

/* Ticket selection state */
.price-option {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.price-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(14,165,233,0.15);
}
.price-option.selected {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2), 0 4px 16px rgba(37,99,235,0.1);
  background: linear-gradient(135deg, #eff6ff, #ffffff) !important;
}
.price-option.selected .price-name {
  color: #2563eb;
}
.price-option.selected::after {
  content: "✓ Selected";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
