:root {
  --slate: #76767c;
  --slate-dark: #5e5e65;
  --navy: #182b49;
  --blue: #315d86;
  --blue-soft: #dfe8ef;
  --ink: #17181c;
  --ink-soft: #30333b;
  --paper: #f6f7f9;
  --warm: #f3f0e9;
  --white: #fff;
  --gold: #d4b46a;
  --gold-dark: #a88339;
  --plum: #381052;
  --green: #24745a;
  --green-soft: #e3f2ec;
  --red: #a63f4c;
  --red-soft: #f8e7e9;
  --orange: #a4651f;
  --border: #dedee2;
  --border-dark: #c8c8cd;
  --muted: #6a6c74;
  --shadow: 0 24px 70px rgba(23, 24, 28, .12);
  --shadow-small: 0 10px 35px rgba(23, 24, 28, .08);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', Inter, Arial, sans-serif;
  --radius: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.public-page { background: #fbfbfc; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: 1.05; }
h3, h4 { line-height: 1.2; }
p { color: var(--muted); }
.shell { width: var(--shell); margin-inline: auto; }
.narrow { max-width: 850px; }
.narrow-wide { max-width: 1080px; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; padding: 10px 15px; background: var(--white); color: var(--ink); border-radius: 6px; }
.skip-link:focus { top: 12px; }
.eyebrow { display: block; margin-bottom: 14px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow.light { color: #cdd9e5; }
.section { padding: 104px 0; }
.section-heading { margin-bottom: 46px; }
.section-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 66px); }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); align-items: end; gap: 60px; }
.split-heading > p { margin: 0 0 8px; font-size: 17px; }
.centered-heading { max-width: 750px; text-align: center; }
.centered-heading p { max-width: 620px; margin: 18px auto 0; font-size: 18px; }
.fine-print { font-size: 12px; line-height: 1.6; }
.fine-print.light { color: #cbd0d7; }
.tag { display: inline-flex; align-items: center; padding: 4px 8px; color: var(--blue); background: var(--blue-soft); border-radius: 100px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border: 1px solid transparent; border-radius: 7px; font-weight: 750; line-height: 1; transition: .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(20, 25, 34, .16); }
.button-small { min-height: 38px; padding: 9px 16px; font-size: 13px; }
.button-large { min-height: 56px; padding-inline: 28px; }
.button-full { width: 100%; }
.button-dark { color: var(--white); background: var(--navy); }
.button-light { color: var(--ink); background: var(--white); }
.button-gold { color: #201b10; background: var(--gold); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--border-dark); }
.button-ghost-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.38); }
.button-danger { color: var(--white); background: var(--red); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row.centered { justify-content: center; }
.text-link, .text-button { padding: 0; border: 0; color: var(--blue); background: none; font-weight: 750; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.centered-link { display: block; margin-top: 18px; text-align: center; }
.count-chip { display: inline-flex; padding: 7px 12px; color: var(--slate-dark); background: #ececef; border-radius: 100px; font-size: 12px; font-weight: 800; }

/* Header and navigation */
.site-header { position: sticky; z-index: 100; top: 0; height: 78px; color: var(--ink); background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(222,222,226,.8); transition: .2s ease; backdrop-filter: blur(18px); }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(23,24,28,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-seal { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--slate); border-radius: 50%; color: var(--slate-dark); font-family: var(--serif); font-size: 24px; font-weight: 700; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-family: var(--serif); font-size: 22px; letter-spacing: .1em; }
.brand-copy small { max-width: 260px; margin-top: 3px; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 650; }
.main-nav > a:not(.button) { position: relative; }
.main-nav > a:not(.button)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--blue); transition: right .2s ease; }
.main-nav > a:not(.button):hover::after { right: 0; }
.nav-form { display: inline-flex; }
.nav-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); }
.flash { position: relative; z-index: 110; color: var(--ink); background: var(--blue-soft); border-bottom: 1px solid #c6d4df; }
.flash-error { color: #762b35; background: var(--red-soft); border-color: #edc4c9; }
.flash-success { color: #165843; background: var(--green-soft); border-color: #bcded1; }
.flash-inner { min-height: 48px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 650; }
.flash-inner button { border: 0; color: inherit; background: transparent; font-size: 22px; }

/* Public homepage */
.hero { position: relative; min-height: 730px; overflow: hidden; color: var(--white); background: radial-gradient(circle at 75% 15%, #466789 0, transparent 27%), linear-gradient(125deg, #111924 0%, #1d314c 57%, #76767c 130%); }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(30deg, transparent 24%, rgba(255,255,255,.3) 25%, transparent 26%), linear-gradient(150deg, transparent 24%, rgba(255,255,255,.25) 25%, transparent 26%); background-size: 85px 148px; }
.hero-grid { position: relative; z-index: 2; min-height: 730px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(380px, .72fr); align-items: center; gap: 78px; padding-block: 72px 90px; }
.hero-copy h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(52px, 6.2vw, 86px); }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: #dbe3eb; font-size: 19px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 28px; color: #cbd4dd; font-size: 12px; }
.trust-line span::before { content: '✓'; margin-right: 6px; color: var(--gold); }
.hero-visual { position: relative; }
.poster-frame { position: relative; width: min(420px, 100%); margin-left: auto; padding: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); box-shadow: 0 40px 80px rgba(0,0,0,.3); transform: rotate(2deg); }
.poster-frame img { aspect-ratio: 1; object-fit: cover; filter: saturate(.75) contrast(1.03); }
.poster-note { position: absolute; left: -30px; bottom: 36px; min-width: 230px; padding: 16px 20px; color: var(--ink); background: var(--gold); box-shadow: var(--shadow-small); transform: rotate(-2deg); }
.poster-note span { display: block; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.poster-note strong { font-family: var(--serif); font-size: 20px; }
.date-card { position: absolute; right: -10px; bottom: -75px; width: 330px; padding: 24px; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.date-card p { margin: 20px 0 0; font-size: 12px; }
.date-card p strong { color: var(--ink); font-size: 14px; }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--border); }
.countdown > div { padding: 12px 4px; text-align: center; border-right: 1px solid var(--border); }
.countdown > div:last-child { border: 0; }
.countdown strong { display: block; font-family: var(--serif); font-size: 28px; }
.countdown span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.hero-orbit-one { width: 480px; height: 480px; right: -130px; top: -200px; }
.hero-orbit-two { width: 650px; height: 650px; left: -400px; bottom: -400px; }
.stat-strip { color: var(--white); background: var(--slate); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-grid > div { padding: 32px 25px; border-right: 1px solid rgba(255,255,255,.18); text-align: center; }
.stat-grid > div:last-child { border: 0; }
.stat-grid strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.stat-grid span { color: #ececef; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.intro-section { background: #fbfbfc; }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.intro-grid h2 { margin: 0; font-size: clamp(44px, 5vw, 68px); }
.prose-large p { color: var(--ink-soft); font-family: var(--serif); font-size: 23px; line-height: 1.6; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 80px; }
.feature-card { position: relative; min-height: 300px; padding: 30px; overflow: hidden; background: var(--warm); border-radius: var(--radius); }
.feature-card.feature-wide { grid-column: span 2; }
.feature-card h3 { max-width: 330px; margin-top: 95px; margin-bottom: 12px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.feature-card p { max-width: 380px; margin: 0; font-size: 14px; }
.feature-number { position: absolute; top: 24px; left: 28px; color: var(--slate); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.feature-dark { color: var(--white); background: var(--ink); }
.feature-dark p { color: #c9cbd0; }
.feature-blue { color: var(--white); background: var(--blue); }
.feature-blue p { color: #d8e3ed; }
.coin-stack { position: absolute; right: 28px; top: 35px; width: 180px; height: 120px; }
.coin-stack i { position: absolute; width: 105px; height: 105px; border: 2px solid var(--gold-dark); border-radius: 50%; box-shadow: inset 0 0 0 7px var(--warm), inset 0 0 0 8px var(--gold-dark); }
.coin-stack i:nth-child(1) { right: 0; top: 0; }
.coin-stack i:nth-child(2) { right: 35px; top: 8px; }
.coin-stack i:nth-child(3) { right: 70px; top: 16px; }
.event-band { color: var(--white); background: var(--navy); }
.event-band-grid { display: grid; grid-template-columns: 210px minmax(0, 1fr) 300px; gap: 60px; align-items: center; }
.event-date-block { padding-right: 50px; border-right: 1px solid rgba(255,255,255,.2); }
.event-date-block span, .event-date-block small { display: block; color: #b9c9d8; font-size: 13px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.event-date-block strong { display: block; font-family: var(--serif); font-size: 64px; line-height: 1; }
.event-band h2 { margin-bottom: 20px; font-size: 49px; }
.event-band p, .event-facts small { color: #c8d2dd; }
.event-facts { display: grid; gap: 24px; }
.event-facts span, .event-facts small { display: block; }
.event-facts span { margin-bottom: 4px; color: #95aac0; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.event-facts strong { display: block; }
.vendor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vendor-card { min-height: 290px; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); transition: .25s ease; }
.vendor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-small); border-color: transparent; }
.vendor-monogram { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 35px; color: var(--navy); background: var(--blue-soft); border-radius: 50%; font-family: var(--serif); font-size: 21px; }
.booth { float: right; margin-top: -90px; color: var(--slate); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.vendor-card h3 { margin-bottom: 6px; font-family: var(--serif); font-size: 25px; font-weight: 500; }
.vendor-card > strong { color: var(--blue); font-size: 12px; }
.vendor-card p { margin: 15px 0 0; font-size: 13px; }
.floor-section { background: var(--warm); }
.floor-grid { display: grid; grid-template-columns: 330px 1fr; gap: 70px; align-items: center; }
.floor-copy h2 { font-size: 53px; }
.legend { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.legend li { display: flex; align-items: center; gap: 10px; }
.legend i { width: 10px; height: 10px; border-radius: 2px; }
.legend-a { background: #b8cadb; }.legend-b { background: #728eab; }.legend-c { background: #d2b778; }.legend-d { background: #77777e; }
.floor-plan { position: relative; min-height: 480px; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: 42px repeat(4, 1fr) 44px; gap: 9px; padding: 22px; background: var(--white); border: 1px solid var(--border-dark); box-shadow: var(--shadow-small); }
.floor-label { grid-column: 1/-1; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.floor-zone { display: grid; place-items: center; padding: 10px; border-radius: 5px; text-align: center; font-size: 11px; font-weight: 750; }
.zone-stage { grid-column: 1/3; grid-row: 2/4; color: white; background: var(--slate); }.zone-a1 { grid-column: 3/5; grid-row: 2; background: #cbd9e6; }.zone-a2 { grid-column: 5/7; grid-row: 2; background: #cbd9e6; }.zone-b1 { grid-column: 3/5; grid-row: 3; color: white; background: #728eab; }.zone-b2 { grid-column: 5/7; grid-row: 3; color: white; background: #728eab; }.zone-c1 { grid-column: 1/3; grid-row: 4; background: #e4d4aa; }.zone-c2 { grid-column: 1/3; grid-row: 5; background: #e4d4aa; }.zone-gallery { grid-column: 3/6; grid-row: 4/6; color: white; background: var(--navy); }.zone-service { grid-column: 6; grid-row: 4/6; color: white; background: var(--blue); }
.floor-entrance { grid-column: 1/-1; grid-row: 6; display: grid; place-items: center; color: var(--muted); border: 1px dashed var(--border-dark); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.programme-section { background: #fbfbfc; }
.programme-list { border-top: 1px solid var(--border); }
.programme-row { display: grid; grid-template-columns: 120px 100px 1fr 30px; gap: 25px; align-items: center; min-height: 132px; padding: 20px 10px; border-bottom: 1px solid var(--border); transition: background .2s; }
.programme-row:hover { background: var(--white); }
.programme-day span, .programme-day strong { display: block; }
.programme-day span { color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.programme-row time { font-weight: 750; }
.programme-row h3 { margin: 8px 0 5px; font-family: var(--serif); font-size: 24px; font-weight: 500; }
.programme-row p { margin: 0; font-size: 12px; }
.row-arrow { color: var(--slate); font-size: 20px; }
.draw-section { color: var(--white); background: linear-gradient(135deg, #101923, #263d58); }
.draw-section::before { content: ''; position: absolute; }
.draw-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.draw-intro h2 { font-size: clamp(52px, 6vw, 78px); }
.draw-intro p { max-width: 470px; color: #c8d4df; }
.prize-list { display: grid; gap: 14px; }
.prize-card { display: grid; grid-template-columns: 78px 1fr; gap: 22px; align-items: center; padding: 24px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.prize-medal { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(212,180,106,.5); }
.prize-medal span { color: var(--gold); font-family: var(--serif); font-size: 25px; }
.prize-card > div > span { color: #aebdcc; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.prize-card h3 { margin: 4px 0 6px; font-family: var(--serif); font-size: 23px; font-weight: 500; }
.prize-card p { margin: 0; color: #c7d2dd; font-size: 12px; }
.tickets-section { background: var(--warm); }
.ticket-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 520px)); justify-content: center; gap: 22px; }
.ticket-option { min-height: 610px; display: flex; flex-direction: column; padding: 38px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-small); }
.ticket-option.ticket-premium { color: var(--white); background: var(--navy); border-color: var(--navy); }
.ticket-topline { display: flex; justify-content: space-between; color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.ticket-premium .ticket-topline { color: var(--gold); }
.ticket-option h3 { margin: 35px 0 20px; font-family: var(--serif); font-size: 36px; font-weight: 500; }
.ticket-price strong { font-family: var(--serif); font-size: 53px; font-weight: 500; }
.ticket-price span { margin-left: 8px; color: var(--muted); font-size: 12px; }
.ticket-premium .ticket-price span, .ticket-premium > p { color: #bbc9d8; }
.ticket-option > p { min-height: 68px; margin: 18px 0 22px; }
.ticket-option ul { display: grid; gap: 11px; margin: 0 0 30px; padding: 0; list-style: none; font-size: 14px; }
.ticket-option li span { margin-right: 10px; color: var(--green); }.ticket-premium li span { color: var(--gold); }
.availability { margin-top: auto; margin-bottom: 22px; }
.availability span { display: block; margin-bottom: 8px; color: var(--muted); font-size: 11px; }.ticket-premium .availability span { color: #aebccc; }
meter { width: 100%; height: 8px; border: 0; border-radius: 20px; background: #e0e1e4; }
meter::-webkit-meter-bar { background: #e0e1e4; border: 0; border-radius: 20px; } meter::-webkit-meter-optimum-value { background: var(--slate); border-radius: 20px; } meter::-moz-meter-bar { background: var(--slate); border-radius: 20px; }
.ticket-note { margin-top: 24px; color: var(--muted); text-align: center; font-size: 12px; }
.faq-section { background: #fbfbfc; }
.faq-grid { display: grid; grid-template-columns: 330px 1fr; gap: 100px; }
.faq-grid h2 { font-size: 53px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-list details { padding: 22px 5px; border-bottom: 1px solid var(--border); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-family: var(--serif); font-size: 21px; list-style: none; }
.faq-list summary::after { content: '+'; color: var(--slate); font-family: var(--sans); font-size: 24px; font-weight: 300; }.faq-list details[open] summary::after { content: '−'; }
.faq-list p { max-width: 700px; margin: 16px 0 0; }
.contact-section { color: var(--white); background: var(--slate-dark); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.contact-grid h2 { font-size: 62px; }.contact-grid > div > p { max-width: 460px; color: #e1e1e4; }
.contact-details { display: grid; margin-top: 50px; }
.contact-details span { margin-top: 12px; color: #c8c8cc; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.contact-details a { font-family: var(--serif); font-size: 20px; }
.contact-form { display: grid; gap: 18px; padding: 34px; color: var(--ink); background: var(--white); border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .button { justify-self: start; color: var(--white); background: var(--navy); }
.demo-notice { padding: 12px 20px; color: #5f573f; background: #eee4c8; text-align: center; font-size: 11px; }

/* Footer */
.site-footer { padding: 70px 0 26px; color: #ccd0d6; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; padding-bottom: 50px; }
.brand-footer { color: var(--white); }.brand-footer .brand-seal { color: var(--white); border-color: #8d9098; }.brand-footer .brand-copy small { color: #aeb2ba; }
.footer-grid > div:first-child p { max-width: 340px; margin: 24px 0 0; color: #9ea2aa; font-size: 13px; }
.footer-grid h3 { margin-bottom: 18px; color: var(--white); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.footer-grid a:hover { color: var(--white); }
.demo-label { width: max-content; margin-top: 8px; padding: 5px 8px; color: var(--gold); border: 1px solid #6d6246; border-radius: 4px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #7f8289; border-top: 1px solid #33353a; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }

/* Forms and common portal elements */
label { display: grid; gap: 7px; color: var(--ink-soft); font-size: 12px; font-weight: 750; }
label .optional, .optional { color: var(--muted); font-size: 10px; font-weight: 500; }
input, select, textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--white); border: 1px solid var(--border-dark); border-radius: 7px; outline: 0; transition: .15s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(49,93,134,.12); }
input[readonly] { color: var(--muted); background: #f0f1f3; }
textarea { resize: vertical; }
label small { color: var(--muted); font-weight: 400; }
.stack-form { display: grid; gap: 18px; }
.compact-form { gap: 12px; }
.form-grid { display: grid; gap: 18px; }.form-grid.two { grid-template-columns: repeat(2, 1fr); }.form-grid.three { grid-template-columns: repeat(3, 1fr); }.span-two { grid-column: span 2; }.span-three { grid-column: span 3; }
.check-label { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; font-weight: 500; }
.check-label input, .switch-label input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--blue); }
.check-label a { color: var(--blue); text-decoration: underline; }
.check-label.soft { padding: 15px; background: #f0f2f4; border-radius: 8px; }
.switch-label { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 10px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.switch-label input { appearance: none; width: 38px; height: 22px; position: relative; margin: 0; background: #c9cbd0; border: 0; border-radius: 100px; }
.switch-label input::after { content: ''; position: absolute; width: 16px; height: 16px; left: 3px; top: 3px; background: white; border-radius: 50%; transition: .2s; }.switch-label input:checked { background: var(--green); }.switch-label input:checked::after { transform: translateX(16px); }
.switch-label span { display: grid; }.switch-label small { color: var(--muted); font-weight: 400; }.switch-label.inline { display: flex; border: 0; padding: 0; }
.panel { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; box-shadow: 0 5px 20px rgba(23,24,28,.03); }
.panel-heading, .section-title-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.panel-heading h2, .section-title-row h2 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 500; }.panel-heading .eyebrow, .section-title-row .eyebrow { margin-bottom: 5px; }.panel-heading > a, .section-title-row > a:not(.button) { color: var(--blue); font-size: 12px; font-weight: 750; }
.section-spaced { margin-top: 28px; }
.notice { padding: 14px 16px; border-radius: 7px; font-size: 12px; line-height: 1.55; }
.notice.warning { color: #765020; background: #f7eddb; border: 1px solid #ead6b3; }.notice.info { color: #274e71; background: #eaf1f7; border: 1px solid #cdddea; }.notice strong { color: inherit; }
.status { display: inline-flex; align-items: center; width: max-content; padding: 5px 9px; border-radius: 100px; color: var(--blue); background: var(--blue-soft); font-size: 9px; font-weight: 850; letter-spacing: .07em; line-height: 1; text-transform: uppercase; white-space: nowrap; }
.status-active, .status-confirmed, .status-paid, .status-sent, .status-entry, .status-gift { color: #176047; background: var(--green-soft); }
.status-cancelled, .status-refunded, .status-failed, .status-inactive { color: #852f3a; background: var(--red-soft); }
.status-pending, .status-queued { color: #8a581c; background: #f7ecd9; }.status-not_required { color: #46505f; background: #e9ebef; }
.table-card { overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th { padding: 12px 16px; color: var(--muted); background: #f4f4f6; text-align: left; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
td { padding: 15px 16px; border-top: 1px solid #ececef; vertical-align: middle; }
td strong, td small { display: block; } td small { margin-top: 3px; color: var(--muted); font-size: 10px; } td a { color: var(--blue); font-weight: 750; }
.empty-table { padding: 34px; color: var(--muted); text-align: center; font-size: 13px; }
.breadcrumb { display: flex; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: 11px; }.breadcrumb a { color: var(--blue); font-weight: 750; }
.page-title-row { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 34px; }.page-title-row h1 { margin-bottom: 8px; font-size: 48px; }.page-title-row p { margin: 0; }
.portal-content { min-height: 650px; padding: 60px 0 100px; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; }.detail-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }.detail-card h2 { font-size: 28px; }.detail-list { margin: 0; }.detail-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--border); }.detail-list dt { color: var(--muted); font-size: 11px; }.detail-list dd { margin: 0; font-size: 12px; font-weight: 700; text-align: right; }.detail-list .total { padding-top: 20px; border: 0; }.detail-list .total dd { font-family: var(--serif); font-size: 27px; }
.filter-form, .filter-bar { display: flex; align-items: end; gap: 12px; }.filter-bar { margin-bottom: 24px; padding: 18px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }.filter-bar label { min-width: 170px; }.filter-bar .search-field { width: min(390px, 100%); }
.error-main { min-height: 620px; width: var(--shell); margin: auto; display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 70px; }.error-code { color: #dfe0e3; font-family: var(--serif); font-size: 180px; line-height: 1; }.error-main h1 { font-size: 59px; }.error-main p { max-width: 550px; font-size: 18px; }

/* Inner public pages, auth and legal */
.page-hero { padding: 115px 0; color: var(--white); background: linear-gradient(120deg, var(--navy), var(--slate)); }.page-hero.compact { padding: 75px 0; }.page-hero h1 { margin-bottom: 20px; font-size: clamp(52px, 7vw, 82px); }.page-hero p { max-width: 700px; margin: 0; color: #dae2e9; font-size: 19px; }
.page-hero-event { position: relative; overflow: hidden; }.page-hero-event::after { content: ''; position: absolute; width: 450px; height: 450px; right: -100px; top: -240px; border: 80px double rgba(255,255,255,.07); border-radius: 50%; }
.info-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.info-card { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }.info-card > span { color: var(--slate); font-size: 11px; font-weight: 800; }.info-card h2 { margin: 55px 0 22px; font-size: 34px; }.info-card p { margin-bottom: 7px; }
.programme-page { background: var(--warm); }.day-schedule { display: grid; gap: 28px; }.schedule-day { display: grid; grid-template-columns: 290px 1fr; gap: 50px; padding: 36px; background: var(--white); border-radius: 14px; }.schedule-day-head > span { color: var(--blue); font-size: 11px; font-weight: 800; text-transform: uppercase; }.schedule-day-head h3 { margin: 15px 0 5px; font-family: var(--serif); font-size: 31px; font-weight: 500; }.schedule-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--border); }.schedule-item:last-child { border: 0; }.schedule-item time { font-weight: 750; }.schedule-item h4 { margin: 5px 0; font-family: var(--serif); font-size: 20px; }.schedule-item p { margin: 0; font-size: 11px; }
.visit-notes { background: #fbfbfc; }.visit-notes-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }.visit-notes h2 { font-size: 52px; }.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }.note-grid article { padding: 25px; background: var(--warm); border-radius: 10px; }.note-grid h3 { font-family: var(--serif); font-size: 21px; }.note-grid p { margin: 0; font-size: 12px; }
.cta-section { padding: 95px 0; color: var(--white); background: var(--navy); text-align: center; }.cta-section h2 { max-width: 850px; margin: 0 auto 28px; font-size: 54px; }
.auth-main { min-height: calc(100vh - 78px); display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }.auth-art { position: relative; display: flex; align-items: end; padding: 70px; overflow: hidden; color: white; background: radial-gradient(circle at 30% 25%, #6b4b83, transparent 25%), linear-gradient(145deg, #111b2a, #315d86); }.auth-art::before { content: 'MSIF'; position: absolute; top: 6%; left: -5%; color: rgba(255,255,255,.06); font-family: var(--serif); font-size: 28vw; line-height: 1; }.auth-art::after { content: ''; position: absolute; width: 380px; height: 380px; right: -110px; top: 80px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; box-shadow: inset 0 0 0 30px transparent, inset 0 0 0 31px rgba(255,255,255,.11), inset 0 0 0 65px transparent, inset 0 0 0 66px rgba(255,255,255,.08); }.auth-art > div { position: relative; z-index: 2; max-width: 570px; }.auth-art h1 { font-size: clamp(50px, 6vw, 76px); }.auth-art p { color: #d9e2ea; font-size: 17px; }.auth-panel { display: grid; place-items: center; padding: 60px 25px; }.auth-box { width: min(430px, 100%); }.auth-box h2 { margin-bottom: 12px; font-size: 44px; }.auth-box > p { margin-bottom: 30px; }.auth-switch { margin: 26px 0 0!important; text-align: center; font-size: 13px; }.auth-switch a { color: var(--blue); font-weight: 750; }
.verify-main { min-height: 680px; display: grid; place-items: center; padding: 60px 20px; background: var(--warm); }.verify-card { width: min(560px, 100%); padding: 48px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); text-align: center; }.verify-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 28px; color: white; background: var(--green); border-radius: 50%; font-size: 34px; }.verify-card.invalid .verify-icon { background: var(--red); }.verify-card h1 { font-size: 45px; }.verify-name { margin: 30px 0 5px; color: var(--ink); font-family: var(--serif); font-size: 30px; }.verify-card dl { margin: 30px 0; text-align: left; }.verify-card dl > div { display: grid; grid-template-columns: 100px 1fr; padding: 11px; border-bottom: 1px solid var(--border); }.verify-card dt { color: var(--muted); font-size: 11px; }.verify-card dd { margin: 0; text-align: right; font-weight: 750; }
.legal-copy { max-width: 820px; }.legal-copy h2 { margin: 40px 0 15px; font-size: 34px; }.legal-copy p { font-size: 16px; line-height: 1.8; }.legal-copy a { color: var(--blue); }

/* Booking */
.booking-main { min-height: 700px; padding: 52px 0 100px; background: var(--warm); }.booking-shell { max-width: 1040px; }.booking-progress { display: grid; grid-template-columns: repeat(4, 1fr); margin-bottom: 58px; }.booking-progress > div { position: relative; display: flex; align-items: center; gap: 10px; color: #a0a1a6; font-size: 11px; }.booking-progress > div::after { content: ''; height: 1px; flex: 1; margin-right: 10px; background: #d2d2d5; }.booking-progress > div:last-child::after { display: none; }.booking-progress span { width: 27px; height: 27px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #c1c2c6; border-radius: 50%; font-size: 10px; }.booking-progress .current, .booking-progress .complete { color: var(--ink); }.booking-progress .current span { color: white; background: var(--navy); border-color: var(--navy); }.booking-progress .complete span { color: white; background: var(--green); border-color: var(--green); }
.booking-heading { max-width: 760px; margin-bottom: 42px; }.booking-heading h1 { margin-bottom: 16px; font-size: clamp(45px, 6vw, 68px); }.booking-heading p { font-size: 17px; }
.booking-form { display: grid; gap: 22px; }.form-section { padding: 34px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }.form-section-title { display: grid; grid-template-columns: 42px 1fr; gap: 18px; margin-bottom: 30px; }.form-section-title > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 11px; font-weight: 800; }.form-section-title h2 { margin-bottom: 5px; font-size: 28px; }.form-section-title p { margin: 0; font-size: 12px; }
fieldset { margin: 28px 0 22px; padding: 0; border: 0; } legend { margin-bottom: 12px; font-size: 12px; font-weight: 750; }.choice-grid { display: flex; flex-wrap: wrap; gap: 9px; }.choice-card { position: relative; display: block; }.choice-card input { position: absolute; opacity: 0; pointer-events: none; }.choice-card span { display: block; padding: 10px 13px; color: var(--muted); border: 1px solid var(--border); border-radius: 100px; font-size: 11px; font-weight: 650; cursor: pointer; }.choice-card input:checked + span { color: var(--navy); background: var(--blue-soft); border-color: #9fb6ca; }
.booking-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px; }.pass-list { display: grid; gap: 16px; }.pass-row { display: grid; grid-template-columns: 110px 1fr 180px; gap: 32px; padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; }.pass-row.premium { color: white; background: var(--navy); border-color: var(--navy); }.pass-code { display: flex; flex-direction: column; justify-content: space-between; padding-right: 25px; border-right: 1px solid var(--border); }.premium .pass-code { border-color: rgba(255,255,255,.2); }.pass-code > span { color: var(--blue); font-family: var(--serif); font-size: 30px; }.premium .pass-code > span { color: var(--gold); }.pass-code small { color: var(--muted); font-size: 9px; text-transform: uppercase; }.premium .pass-code small { color: #b9c5d2; }.pass-copy h2 { margin-bottom: 10px; font-size: 31px; }.pass-copy p { margin-bottom: 16px; font-size: 13px; }.premium .pass-copy p { color: #c5d0db; }.pass-copy ul { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 11px; }.premium .pass-copy ul { color: #d6dee7; }.pass-select { display: flex; flex-direction: column; }.pass-select > strong { font-family: var(--serif); font-size: 31px; }.pass-select > span { margin-bottom: 17px; color: var(--muted); font-size: 10px; }.premium .pass-select > span, .premium .pass-select > small { color: #aebccc; }.pass-select select { margin-top: 3px; }.pass-select > small { margin-top: 7px; color: var(--muted); font-size: 9px; }.booking-total { position: sticky; z-index: 5; bottom: 18px; display: flex; justify-content: space-between; align-items: center; margin-top: 22px; padding: 18px 22px; background: rgba(255,255,255,.95); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-small); backdrop-filter: blur(15px); }.booking-total > div:first-child { display: grid; }.booking-total span { color: var(--muted); font-size: 10px; text-transform: uppercase; }.booking-total strong { font-family: var(--serif); font-size: 31px; }.booking-total small { color: var(--muted); font-size: 9px; }.booking-total .booking-actions { margin: 0; }
.attendee-list { display: grid; gap: 15px; }.attendee-row { display: grid; grid-template-columns: 75px 155px 1fr; gap: 24px; align-items: center; padding: 27px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }.attendee-index { display: grid; gap: 5px; padding-right: 20px; border-right: 1px solid var(--border); }.attendee-index span { color: var(--slate); font-family: var(--serif); font-size: 29px; }.attendee-index strong { color: var(--blue); font-size: 10px; }.attendee-row h2 { margin: 0 0 4px; font-size: 23px; }.attendee-row p { margin: 0; font-size: 11px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; }.paynow-card, .free-confirm { position: relative; padding: 36px; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }.demo-ribbon { position: absolute; top: 23px; right: -43px; width: 190px; padding: 7px; color: white; background: var(--red); text-align: center; font-size: 9px; font-weight: 900; letter-spacing: .1em; transform: rotate(35deg); }.paynow-card h2, .free-confirm h2 { font-size: 35px; }.paynow-qr { position: relative; width: min(330px, 100%); margin: 28px auto; padding: 18px; border: 1px solid var(--border); border-radius: 8px; }.paynow-qr > span { position: absolute; inset: 42% 20%; display: grid; place-items: center; color: white; background: rgba(166,63,76,.9); font-size: 13px; font-weight: 900; letter-spacing: .2em; }.paynow-card dl { margin: 25px 0; }.paynow-card dl div { display: grid; grid-template-columns: 120px 1fr; padding: 10px 0; border-bottom: 1px solid var(--border); }.paynow-card dt { color: var(--muted); font-size: 11px; }.paynow-card dd { margin: 0; text-align: right; font-size: 12px; font-weight: 750; }.confirm-box { margin-top: 18px; padding: 15px; background: var(--warm); border-radius: 7px; }.free-confirm { min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }.free-icon { width: 100px; height: 100px; display: grid; place-items: center; margin-bottom: 25px; color: var(--green); background: var(--green-soft); border-radius: 50%; font-family: var(--serif); font-size: 37px; }.order-summary { position: sticky; top: 100px; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }.order-summary h2 { font-size: 29px; }.summary-event { display: grid; gap: 2px; padding: 16px; background: var(--warm); border-radius: 7px; }.summary-event span { color: var(--muted); font-size: 10px; }.summary-lines { padding: 18px 0; border-bottom: 1px solid var(--border); }.summary-lines > div, .summary-total { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; font-size: 12px; }.summary-total { padding: 18px 0; }.summary-total strong { font-family: var(--serif); font-size: 26px; }.summary-attendees { display: grid; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }.summary-attendees span { margin-bottom: 8px; color: var(--muted); font-size: 10px; text-transform: uppercase; }.summary-attendees strong { font-size: 11px; }
.success-main { background: var(--warm); }.success-hero { padding: 80px 20px 130px; color: white; background: var(--navy); text-align: center; }.success-mark { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 25px; color: var(--navy); background: var(--gold); border-radius: 50%; font-size: 32px; }.success-hero h1 { margin-bottom: 15px; font-size: 62px; }.success-hero p { color: #c7d3df; }.success-content { display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start; margin-top: -80px; padding-bottom: 100px; }.success-ticket-list, .arrival-card { padding: 28px; background: var(--white); border-radius: 14px; box-shadow: var(--shadow-small); }.success-ticket-list > h2 { font-size: 30px; }.mini-ticket { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid var(--border); }.mini-ticket > div { display: grid; }.mini-ticket > div span { color: var(--blue); font-size: 9px; font-weight: 800; }.mini-ticket strong { font-family: var(--serif); font-size: 22px; }.mini-ticket small { color: var(--muted); }.mini-qr { color: var(--slate); font-size: 48px; }.arrival-card h2 { font-size: 30px; }.arrival-card ol { display: grid; gap: 18px; margin: 25px 0; padding: 0; list-style: none; }.arrival-card li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; }.arrival-card li > span { width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 10px; font-weight: 800; }.arrival-card p { margin: 3px 0 0; font-size: 11px; }

/* Attendee account and digital ticket */
.subnav { min-height: 52px; display: flex; align-items: center; gap: 26px; border-bottom: 1px solid var(--border); }.subnav a { position: relative; color: var(--muted); font-size: 11px; font-weight: 750; }.subnav a.active { color: var(--ink); }.subnav a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -17px; height: 2px; background: var(--blue); }
.account-welcome { padding: 60px 0 92px; color: white; background: linear-gradient(120deg, #172943, #536b84); }.account-welcome h1 { margin-bottom: 10px; font-size: 57px; }.account-welcome p { color: #d1dce6; }
.account-grid { display: grid; grid-template-columns: 1fr 320px; gap: 25px; align-items: start; margin-top: -48px; padding-bottom: 100px; }.account-primary { min-width: 0; padding: 30px; background: var(--paper); border-radius: 14px 14px 0 0; }.account-side { display: grid; gap: 18px; }
.wallet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }.wallet-ticket { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; padding: 25px; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: 13px; box-shadow: var(--shadow-small); transition: .2s ease; }.wallet-ticket:hover { transform: translateY(-4px); }.wallet-ticket.premium { color: white; background: var(--navy); border-color: var(--navy); }.wallet-head { display: flex; justify-content: space-between; align-items: center; }.wallet-head > span:first-child { color: var(--blue); font-family: var(--serif); font-size: 22px; }.wallet-ticket.premium .wallet-head > span:first-child { color: var(--gold); }.wallet-ticket h3 { margin: 7px 0 4px; font-family: var(--serif); font-size: 28px; font-weight: 500; }.wallet-ticket p { margin: 0; font-size: 11px; }.wallet-ticket.premium p { color: #bcc9d6; }.wallet-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; padding-top: 15px; border-top: 1px solid var(--border); color: var(--muted); font-size: 9px; }.wallet-ticket.premium .wallet-bottom { color: #aebdcb; border-color: rgba(255,255,255,.2); }.wallet-bottom strong { grid-column: 1/-1; margin-top: 10px; color: var(--blue); font-size: 11px; }.wallet-ticket.premium .wallet-bottom strong { color: var(--gold); }.section-title-row.section-spaced { margin-top: 50px; }.empty-state { padding: 70px 20px; background: var(--white); border: 1px dashed var(--border-dark); border-radius: 13px; text-align: center; }.empty-state > div { color: var(--slate); font-size: 45px; }.empty-state h3 { font-family: var(--serif); font-size: 27px; }.empty-state p { max-width: 420px; margin-inline: auto; }
.upcoming-card { padding: 28px; color: white; background: var(--ink); border-radius: 14px; box-shadow: var(--shadow-small); }.upcoming-card h2 { font-size: 32px; }.big-date { display: flex; align-items: center; gap: 13px; margin: 28px 0; }.big-date strong { font-family: var(--serif); font-size: 70px; line-height: .8; }.big-date span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.upcoming-card p { color: #afb3ba; font-size: 12px; }.upcoming-card a { color: var(--gold); font-size: 11px; font-weight: 750; }.side-card, .support-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; }.notification-line { display: grid; grid-template-columns: 30px 1fr; gap: 10px; padding: 12px 0; border-top: 1px solid var(--border); }.notification-line strong, .notification-line small { display: block; }.notification-line strong { font-size: 11px; }.notification-line small { color: var(--muted); font-size: 9px; }.mail-icon { width: 28px; height: 28px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; }.support-card { color: white; background: var(--slate); border-color: var(--slate); }.support-card > span { color: #dadadd; font-size: 10px; text-transform: uppercase; }.support-card h3 { margin: 6px 0 12px; font-family: var(--serif); font-size: 25px; }.support-card p { color: #ececef; font-size: 11px; }.support-card a { font-size: 11px; font-weight: 750; }
.detail-ticket-list { display: grid; }.detail-ticket-list > a { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-top: 1px solid var(--border); }.detail-ticket-list > a > div { display: grid; gap: 4px; }.detail-ticket-list > a > div:last-child { text-align: right; }.detail-ticket-list small, .detail-ticket-list span { color: var(--muted); font-size: 10px; }.detail-ticket-list strong { font-size: 13px; }.payment-record { display: grid; gap: 2px; margin-top: 15px; padding: 13px; background: var(--warm); border-radius: 6px; }.payment-record span, .payment-record small { color: var(--muted); font-size: 9px; }.event-summary { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }.event-summary h2 { margin-bottom: 8px; }
.ticket-main { min-height: 800px; padding: 45px 0 100px; background: var(--warm); }.ticket-layout { display: grid; grid-template-columns: 1fr 300px; gap: 20px; align-items: stretch; }.digital-ticket { overflow: hidden; color: white; background: var(--navy); border-radius: 17px; box-shadow: var(--shadow); }.digital-ticket-head { display: flex; align-items: start; justify-content: space-between; padding: 30px 34px 20px; }.digital-ticket h1 { margin: 0; font-size: 38px; }.digital-ticket-body { display: grid; grid-template-columns: 1fr 280px; align-items: center; min-height: 330px; margin: 0 15px; padding: 30px; color: var(--ink); background: var(--white); border-radius: 10px; }.ticket-person > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.ticket-person h2 { margin: 10px 0; font-size: 47px; }.ticket-person p { color: var(--blue); font-weight: 800; letter-spacing: .08em; }.ticket-qr { text-align: center; }.ticket-qr img { width: 250px; margin-inline: auto; }.ticket-qr span { display: block; color: var(--muted); font-size: 9px; }.digital-ticket-foot { display: grid; grid-template-columns: .7fr 1.5fr .7fr; gap: 20px; padding: 22px 34px 28px; }.digital-ticket-foot span, .digital-ticket-foot strong { display: block; }.digital-ticket-foot span { color: #9dafc0; font-size: 9px; text-transform: uppercase; }.digital-ticket-foot strong { font-size: 11px; }.ticket-tools { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 17px; }.ticket-tools h2 { font-size: 31px; }.ticket-tools form { margin: 10px 0; }.ticket-details-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 20px; margin-top: 20px; }.checklist-card, .participant-card, .draw-status-card { padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 13px; }.activity-list { display: grid; }.activity-item, .draw-entry-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--border); }.activity-check { width: 28px; height: 28px; display: grid; place-items: center; color: white; background: #d6d7da; border-radius: 50%; font-size: 12px; font-weight: 800; }.activity-item.done .activity-check, .activity-check.done, .activity-check.eligible { background: var(--green); }.activity-item strong, .activity-item small, .draw-entry-list strong, .draw-entry-list small { display: block; }.activity-item small, .draw-entry-list small { color: var(--muted); font-size: 10px; }.participant-card h2, .draw-status-card h2 { font-size: 30px; }.draw-status-card { grid-column: 1/-1; color: white; background: var(--navy); border-color: var(--navy); }.draw-status-card > p { color: #b9c6d3; }.draw-entry-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.draw-entry-list > div { border-color: rgba(255,255,255,.15); }.email-meta { display: flex; justify-content: space-between; align-items: start; margin-bottom: 25px; }.email-meta h1 { font-size: 44px; }.email-frame { overflow: auto; padding: 20px; background: #dedfe2; border: 1px solid var(--border-dark); border-radius: 10px; }.form-narrow { max-width: 650px; }.form-narrow > h1 { font-size: 50px; }.form-card { margin-top: 30px; padding: 30px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }

/* Staff operations and scanner */
.staff-page { background: #eff1f3; }.staff-subnav { position: relative; }.station-chip { margin-left: auto; padding: 5px 10px; color: white; background: var(--slate); border-radius: 100px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }.staff-main { min-height: 700px; padding: 36px 0 90px; }.staff-hero { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 38px; color: white; background: linear-gradient(120deg, var(--navy), var(--blue)); border-radius: 16px; }.staff-hero h1 { margin-bottom: 12px; font-size: 51px; }.staff-hero p { max-width: 680px; margin: 0; color: #d1dce7; }.mode-banner { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 15px; margin: 18px 0; padding: 15px 18px; color: #6a4b22; background: #f5ead6; border: 1px solid #e5cda4; border-radius: 9px; }.mode-banner > span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }.mode-banner p { margin: 0 0 0 auto; color: #7b623f; font-size: 10px; }.mode-banner.compact { margin: 15px 0; }.metric-grid { display: grid; gap: 14px; }.metric-grid article { padding: 23px; background: var(--white); border: 1px solid var(--border); border-radius: 11px; }.metric-grid span, .metric-grid small { display: block; color: var(--muted); }.metric-grid span { font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }.metric-grid strong { display: block; margin: 8px 0 3px; font-family: var(--serif); font-size: 37px; font-weight: 500; }.metric-grid small { font-size: 9px; }.staff-metrics { grid-template-columns: repeat(4,1fr); margin: 18px 0; }.staff-dashboard-grid { display: grid; grid-template-columns: 1fr 330px; gap: 18px; }.scan-list { display: grid; }.scan-line { display: grid; grid-template-columns: 35px 1fr auto; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--border); }.scan-type { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; }.scan-type.gift { color: var(--gold-dark); background: #f4ead2; }.scan-line strong, .scan-line small { display: block; }.scan-line small { color: var(--muted); font-size: 9px; }.scan-line > span:last-child, .scan-line time { color: var(--muted); font-size: 9px; }.shift-card ul { display: grid; gap: 10px; margin: 25px 0; padding: 0; list-style: none; font-size: 12px; }.shift-card li span { margin-right: 8px; color: var(--green); }.shift-card > p { padding: 14px; background: var(--warm); border-radius: 7px; font-size: 10px; }
.scanner-main { min-height: 760px; padding: 30px 0 80px; }.scanner-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 20px; }.scanner-heading h1 { margin-bottom: 8px; font-size: 47px; }.scanner-heading p { margin: 0; }.scanner-status { display: grid; grid-template-columns: 10px 1fr; align-items: center; column-gap: 7px; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 4px var(--green-soft); }.scanner-status strong { font-size: 11px; }.scanner-status small { grid-column: 2; color: var(--muted); font-size: 8px; }.scanner-grid { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 18px; }.camera-card { position: relative; overflow: hidden; min-height: 620px; color: white; background: var(--ink); border-radius: 14px; }.camera-top, .camera-bottom { position: relative; z-index: 3; min-height: 54px; display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; background: #121318; font-size: 10px; }.camera-top .text-button { color: #c4d7e8; }.camera-bottom { position: absolute; inset: auto 0 0; color: #8e9199; }.qr-reader { min-height: 510px; }.qr-reader video { width: 100%!important; min-height: 510px; object-fit: cover; }.qr-reader > div:first-child { display: none!important; }.camera-guide { pointer-events: none; position: absolute; z-index: 2; width: min(55%, 340px); aspect-ratio: 1; left: 50%; top: 50%; transform: translate(-50%,-48%); }.camera-guide i { position: absolute; width: 42px; height: 42px; border-color: var(--gold); border-style: solid; }.camera-guide i:nth-child(1){left:0;top:0;border-width:3px 0 0 3px}.camera-guide i:nth-child(2){right:0;top:0;border-width:3px 3px 0 0}.camera-guide i:nth-child(3){left:0;bottom:0;border-width:0 0 3px 3px}.camera-guide i:nth-child(4){right:0;bottom:0;border-width:0 3px 3px 0}.camera-error { padding: 150px 30px; color: #d9dade; text-align: center; }.scanner-side { display: grid; align-content: start; gap: 18px; }.compact-panel h2 { font-size: 27px; }.compact-panel > p { font-size: 11px; }.mini-scan-list > div { display: grid; grid-template-columns: 28px 1fr auto; gap: 9px; align-items: center; padding: 10px 0; border-top: 1px solid var(--border); }.mini-scan-list p { margin: 0; }.mini-scan-list strong, .mini-scan-list small { display: block; }.mini-scan-list strong { color: var(--ink); font-size: 10px; }.mini-scan-list small, .mini-scan-list time { color: var(--muted); font-size: 8px; }.scan-result[hidden] { display: none; }.scan-result { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(15,17,22,.8); backdrop-filter: blur(10px); }.scan-result-card { position: relative; width: min(460px,100%); padding: 42px; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); text-align: center; }.scan-result-card > button:first-child { position: absolute; right: 16px; top: 10px; border: 0; background: transparent; font-size: 28px; }.result-icon { width: 82px; height: 82px; display: grid; place-items: center; margin: 0 auto 22px; color: white; background: var(--green); border-radius: 50%; font-size: 38px; }.result-warning .result-icon { background: var(--orange); }.result-error .result-icon { background: var(--red); }.scan-result-card h2 { margin: 8px 0; font-size: 39px; }.result-ticket { font-size: 11px; }.scan-result-card > strong { display: block; margin: 22px 0 5px; color: var(--green); font-size: 16px; }.result-error .scan-result-card > strong { color: var(--red); }.scan-result-card > p:last-of-type { font-size: 11px; }

/* Admin control centre */
.admin-page { background: #f0f1f3; }.admin-shell { width: 100%; display: grid; grid-template-columns: 240px 1fr; align-items: start; }.portal-nav { position: sticky; top: 0; min-height: calc(100vh - 78px); padding: 26px 18px; color: #c6cbd2; background: #171a21; }.portal-identity { padding: 0 12px 23px; border-bottom: 1px solid #30333b; }.portal-identity .eyebrow { margin-bottom: 3px; color: #778da3; }.portal-identity strong { color: white; font-family: var(--serif); font-size: 23px; }.portal-nav nav { display: grid; gap: 3px; margin-top: 20px; }.portal-nav nav a { padding: 10px 12px; border-radius: 6px; font-size: 11px; font-weight: 650; }.portal-nav nav a:hover, .portal-nav nav a.active { color: white; background: #2c3039; }.portal-nav nav a.active { box-shadow: inset 3px 0 var(--gold); }.portal-user { position: absolute; left: 30px; bottom: 25px; display: grid; }.portal-user span { color: #737780; font-size: 8px; text-transform: uppercase; }.portal-user strong { color: white; font-size: 11px; }.admin-main { min-width: 0; padding: 36px 38px 80px; }.admin-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 28px; }.admin-top h1 { margin-bottom: 6px; font-size: 47px; }.admin-top p { margin: 0; font-size: 12px; }.admin-top-actions { display: flex; align-items: center; gap: 12px; }.live-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; color: var(--green); background: var(--green-soft); border-radius: 100px; font-size: 9px; font-weight: 800; text-transform: uppercase; }.live-chip i { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }.admin-metrics { grid-template-columns: repeat(4,1fr); margin-bottom: 18px; }.admin-dashboard-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }.admin-dashboard-grid.lower { grid-template-columns: 1.25fr .75fr; margin-top: 18px; }.capacity-list { display: grid; gap: 22px; }.capacity-list > div > div { display: flex; justify-content: space-between; margin-bottom: 9px; }.capacity-list span { display: grid; }.capacity-list small { color: var(--muted); font-size: 9px; }.capacity-list > div > div > strong { font-family: var(--serif); font-size: 22px; }.capacity-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border); }.capacity-summary div { display: grid; }.capacity-summary span { color: var(--muted); font-size: 9px; }.capacity-summary strong { font-size: 19px; }.audit-mini { display: grid; }.audit-mini > div { display: grid; grid-template-columns: 10px 1fr; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); }.audit-dot { width: 7px; height: 7px; margin-top: 5px; background: var(--slate); border-radius: 50%; }.audit-mini p { margin: 0; }.audit-mini strong, .audit-mini small { display: block; }.audit-mini strong { color: var(--ink); font-size: 10px; }.audit-mini small { color: var(--muted); font-size: 8px; }
.admin-form-grid { display: grid; gap: 18px; }.form-panel { padding: 30px; }.admin-form-actions { display: flex; justify-content: flex-end; }.day-admin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }.day-admin-card { display: grid; gap: 14px; padding: 20px; background: var(--warm); border-radius: 9px; }.day-admin-card > span { color: var(--blue); font-size: 9px; font-weight: 800; text-transform: uppercase; }.simple-list { display: grid; max-height: 400px; overflow-y: auto; }.simple-list > div { display: grid; grid-template-columns: 35px 1fr auto; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--border); }.simple-list p { margin: 0; }.simple-list strong, .simple-list small { display: block; }.simple-list strong { color: var(--ink); font-size: 10px; }.simple-list small { font-size: 8px; }.simple-list time { color: var(--muted); font-size: 9px; }.vendor-mini { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-size: 8px; font-weight: 800; }
.ticket-admin-list { display: grid; gap: 17px; }.ticket-admin-card { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }.ticket-admin-summary { display: grid; grid-template-columns: 80px 1fr; gap: 20px; padding-right: 30px; border-right: 1px solid var(--border); }.ticket-code-large { width: 74px; height: 74px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-family: var(--serif); font-size: 19px; }.ticket-code-large.small { width: 46px; height: 46px; font-size: 12px; }.ticket-admin-summary h2 { margin: 9px 0 4px; font-size: 27px; }.ticket-admin-summary p { font-size: 10px; }.ticket-admin-fields { display: grid; gap: 20px; }.form-bottom { display: flex; justify-content: space-between; align-items: center; }.create-panel { margin-top: 20px; }.create-panel summary { cursor: pointer; list-style: none; }.create-panel summary > span { display: grid; }.create-panel summary strong { font-family: var(--serif); font-size: 22px; }.create-panel summary small { color: var(--muted); }.create-panel form { margin-top: 25px; padding-top: 25px; border-top: 1px solid var(--border); }
.admin-table { overflow-x: auto; }.admin-table table { min-width: 880px; }.admin-detail-grid { grid-template-columns: 1fr 330px; }.admin-ticket-list > div { display: grid; grid-template-columns: 55px 1fr auto 270px; align-items: center; gap: 12px; padding: 16px 0; border-top: 1px solid var(--border); }.admin-ticket-list p { margin: 0; }.admin-ticket-list p strong, .admin-ticket-list p small { display: block; }.admin-ticket-list p small { color: var(--muted); font-size: 9px; }.admin-ticket-list form { display: grid; grid-template-columns: 1fr auto; gap: 7px; }.admin-ticket-list input { padding: 8px; font-size: 10px; }.danger-panel { display: flex; justify-content: space-between; align-items: center; gap: 30px; border-left: 3px solid var(--red); }.danger-panel p { max-width: 650px; margin: 0; }.admin-actions { display: flex; gap: 10px; }.admin-actions form { display: flex; gap: 8px; }.admin-actions input { min-width: 220px; }
.staff-admin-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; margin-top: 20px; }.staff-member { position: relative; display: flex; flex-direction: column; }.staff-avatar { width: 57px; height: 57px; display: grid; place-items: center; margin-bottom: 17px; color: var(--blue); background: var(--blue-soft); border-radius: 50%; font-family: var(--serif); font-size: 17px; }.staff-member-head .status { position: absolute; right: 20px; top: 20px; }.staff-member-head h2 { margin-bottom: 5px; font-size: 27px; }.staff-member-head p { min-height: 42px; font-size: 10px; }.role-lock { margin: 13px 0 auto; padding: 16px; background: var(--warm); border-radius: 7px; }.role-lock span { color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }.role-lock p { margin: 3px 0 0; font-size: 10px; }.staff-meta { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 13px; border-top: 1px solid var(--border); font-size: 9px; }.staff-meta span { color: var(--muted); }.form-button-align { display: flex; align-items: end; }
.draw-admin-list { display: grid; gap: 14px; }.draw-admin-card { display: grid; grid-template-columns: 110px 1fr 210px; gap: 25px; align-items: center; }.draw-day { padding-right: 20px; border-right: 1px solid var(--border); }.draw-day span, .draw-day strong { display: block; }.draw-day span { color: var(--muted); font-size: 9px; text-transform: uppercase; }.draw-day strong { font-family: var(--serif); font-size: 28px; }.draw-admin-copy h2 { margin: 10px 0 6px; font-size: 28px; }.draw-admin-copy p { margin-bottom: 6px; font-size: 11px; }.draw-admin-copy small { color: var(--muted); font-size: 9px; }.draw-admin-action { display: grid; justify-items: end; gap: 9px; }.winner-card { width: 100%; padding: 15px; color: #5e4716; background: #f4e8c9; border-radius: 8px; text-align: left; }.winner-card span, .winner-card strong, .winner-card small { display: block; }.winner-card span { font-size: 8px; text-transform: uppercase; }.winner-card strong { font-family: var(--serif); font-size: 19px; }.winner-card small { font-size: 8px; }.row-voided { opacity: .55; }.row-voided td { text-decoration-color: var(--red); }.admin-table td form { display: grid; gap: 5px; }.admin-table td form input { min-width: 160px; padding: 7px; font-size: 9px; }
.email-admin-list > div { grid-template-columns: 35px 1fr auto; }.contact-admin-list details { padding: 12px 0; border-top: 1px solid var(--border); }.contact-admin-list summary { display: flex; justify-content: space-between; gap: 10px; cursor: pointer; list-style: none; }.contact-admin-list summary span { display: grid; }.contact-admin-list summary strong { font-size: 10px; }.contact-admin-list summary small, .contact-admin-list time { color: var(--muted); font-size: 8px; }.contact-admin-list details > p { margin: 13px 0 0; padding: 12px; color: var(--ink-soft); background: var(--warm); border-radius: 6px; font-size: 10px; }.integration-card { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: center; }.integration-card h2 { font-size: 29px; }.integration-card p { margin: 0; }.integration-status { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 18px; background: var(--warm); border-radius: 8px; font-size: 10px; }.integration-status span { color: var(--muted); }.integration-status strong { text-align: right; }.audit-action { color: var(--blue); font-family: ui-monospace, monospace; font-weight: 750; }.admin-table code { display: block; max-width: 300px; overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; }

/* Responsive */
@media (max-width: 1100px) {
  .main-nav { gap: 17px; }.hero-grid { grid-template-columns: 1fr 390px; gap: 35px; }.event-band-grid { grid-template-columns: 150px 1fr 260px; gap: 35px; }.feature-grid { grid-template-columns: repeat(2,1fr); }.account-grid { grid-template-columns: 1fr 280px; }.admin-shell { grid-template-columns: 210px 1fr; }.admin-main { padding-inline: 24px; }.portal-nav { padding-inline: 10px; }.staff-admin-grid { grid-template-columns: repeat(2,1fr); }.ticket-admin-card { grid-template-columns: 220px 1fr; }.ticket-admin-summary { grid-template-columns: 1fr; }.admin-ticket-list > div { grid-template-columns: 50px 1fr auto; }.admin-ticket-list form { grid-column: 2/-1; }
}
@media (max-width: 900px) {
  :root { --shell: min(100% - 30px, 760px); }.section { padding: 75px 0; }
  .nav-toggle { display: block; }.main-nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 25px; background: white; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-small); }.main-nav.open { display: flex; }.main-nav > a, .main-nav .nav-form { padding: 10px 0; }.nav-form .text-button { color: var(--ink); }
  .hero { min-height: auto; }.hero-grid { grid-template-columns: 1fr; padding-top: 80px; padding-bottom: 150px; }.hero-copy h1 { font-size: 61px; }.hero-visual { max-width: 480px; margin-inline: auto; }.date-card { right: 0; }.stat-grid { grid-template-columns: repeat(2,1fr); }.stat-grid > div:nth-child(2) { border-right: 0; }.stat-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
  .intro-grid, .floor-grid, .faq-grid, .contact-grid, .draw-grid, .visit-notes-grid { grid-template-columns: 1fr; gap: 45px; }.event-band-grid { grid-template-columns: 130px 1fr; }.event-facts { grid-column: 1/-1; grid-template-columns: repeat(2,1fr); }.vendor-grid { grid-template-columns: repeat(2,1fr); }.programme-row { grid-template-columns: 90px 90px 1fr; }.row-arrow { display: none; }.info-card-grid { grid-template-columns: 1fr; }.schedule-day { grid-template-columns: 220px 1fr; }.footer-grid { grid-template-columns: 2fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2; }
  .auth-main { grid-template-columns: 1fr; }.auth-art { min-height: 430px; padding: 50px 30px; }.auth-panel { min-height: 620px; }
  .pass-row { grid-template-columns: 90px 1fr; }.pass-select { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 5px 20px; }.pass-select label { grid-column: 2; grid-row: 1/4; }.attendee-row { grid-template-columns: 65px 1fr; }.attendee-row .form-grid { grid-column: 1/-1; }.checkout-grid, .success-content, .ticket-layout { grid-template-columns: 1fr; }.order-summary { position: static; }.ticket-tools { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }.ticket-tools .eyebrow, .ticket-tools h2, .ticket-tools p, .ticket-tools .centered-link { grid-column: 1/-1; }.ticket-details-grid { grid-template-columns: 1fr; }.draw-status-card { grid-column: auto; }.account-grid { grid-template-columns: 1fr; }.account-side { grid-template-columns: repeat(2,1fr); }.support-card { grid-column: 1/-1; }
  .staff-dashboard-grid, .scanner-grid { grid-template-columns: 1fr; }.camera-card { min-height: 540px; }.scanner-side { grid-template-columns: repeat(2,1fr); }.admin-shell { display: block; }.portal-nav { position: static; min-height: auto; padding: 14px 20px; }.portal-identity, .portal-user { display: none; }.portal-nav nav { display: flex; margin: 0; overflow-x: auto; }.portal-nav nav a { white-space: nowrap; }.portal-nav nav a.active { box-shadow: inset 0 -3px var(--gold); }.admin-main { padding: 30px 18px 70px; }.admin-dashboard-grid, .admin-dashboard-grid.lower, .admin-detail-grid { grid-template-columns: 1fr; }.ticket-admin-card { grid-template-columns: 1fr; }.ticket-admin-summary { grid-template-columns: 90px 1fr; padding: 0 0 25px; border: 0; border-bottom: 1px solid var(--border); }.draw-admin-card { grid-template-columns: 90px 1fr; }.draw-admin-action { grid-column: 2; justify-items: start; }.integration-card { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }.brand-copy small { display: none; }.brand-copy strong { font-size: 19px; }.site-header { height: 68px; }.main-nav { top: 68px; }.section { padding: 60px 0; }.section-heading h2 { font-size: 42px; }.split-heading { grid-template-columns: 1fr; gap: 20px; }.hero-grid { padding: 60px 0 130px; }.hero-copy h1 { font-size: 47px; }.hero-lead { font-size: 16px; }.poster-note { left: -5px; }.date-card { width: calc(100% - 25px); bottom: -85px; }.intro-grid h2, .floor-copy h2, .faq-grid h2 { font-size: 42px; }.prose-large p { font-size: 19px; }.feature-grid { grid-template-columns: 1fr; }.feature-card.feature-wide { grid-column: auto; }.event-band-grid { grid-template-columns: 1fr; }.event-date-block { padding: 0 0 22px; border: 0; border-bottom: 1px solid rgba(255,255,255,.2); }.event-facts { grid-template-columns: 1fr; }.vendor-grid { grid-template-columns: 1fr; }.floor-plan { min-height: 370px; padding: 12px; gap: 5px; }.programme-row { grid-template-columns: 70px 1fr; gap: 12px; }.programme-row time { grid-column: 1; }.programme-row > div:last-of-type { grid-column: 2; grid-row: 1/3; }.ticket-grid { grid-template-columns: 1fr; }.ticket-option { min-height: auto; padding: 28px; }.form-row, .form-grid.two, .form-grid.three, .note-grid { grid-template-columns: 1fr; }.span-two, .span-three { grid-column: auto; }.contact-form { padding: 23px; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:first-child { grid-column: 1/-1; }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { display: grid; gap: 8px; }
  .page-hero { padding: 80px 0; }.page-hero h1 { font-size: 49px; }.schedule-day { grid-template-columns: 1fr; gap: 20px; padding: 25px; }.auth-art { min-height: 360px; padding: 35px 20px; }.auth-art h1 { font-size: 47px; }.auth-panel { padding-inline: 18px; }.verify-card { padding: 35px 22px; }
  .booking-main { padding-top: 32px; }.booking-progress strong { display: none; }.booking-progress > div { gap: 5px; }.booking-heading h1 { font-size: 45px; }.form-section { padding: 23px 18px; }.form-section-title { grid-template-columns: 34px 1fr; }.pass-row { grid-template-columns: 1fr; padding: 22px; }.pass-code { min-height: 55px; flex-direction: row; padding: 0 0 16px; border: 0; border-bottom: 1px solid var(--border); }.pass-select { grid-column: 1; }.booking-total { position: static; display: grid; gap: 15px; }.booking-total .booking-actions { width: 100%; }.attendee-row { grid-template-columns: 50px 1fr; padding: 20px; }.attendee-row .form-grid.three { grid-template-columns: 1fr; }.paynow-card, .free-confirm { padding: 27px 20px; }.success-hero h1 { font-size: 47px; }.success-content { margin-top: -60px; }.booking-actions { flex-wrap: wrap; }
  .subnav { overflow-x: auto; }.subnav a { white-space: nowrap; }.account-welcome h1 { font-size: 44px; }.account-grid { margin-top: -30px; }.account-primary { padding: 20px 0; }.wallet-grid, .account-side { grid-template-columns: 1fr; }.support-card { grid-column: auto; }.page-title-row { align-items: start; flex-direction: column; }.detail-grid { grid-template-columns: 1fr; }.event-summary { align-items: start; flex-direction: column; }.digital-ticket-head { padding: 25px 22px; }.digital-ticket h1 { font-size: 29px; }.digital-ticket-body { grid-template-columns: 1fr; gap: 20px; padding: 22px; }.ticket-person { text-align: center; }.ticket-person h2 { font-size: 36px; }.digital-ticket-foot { grid-template-columns: 1fr; }.ticket-tools { grid-template-columns: 1fr; }.draw-entry-list { grid-template-columns: 1fr; }.error-main { grid-template-columns: 1fr; gap: 10px; padding: 80px 0; }.error-code { font-size: 100px; }.error-main h1 { font-size: 45px; }
  .staff-hero { align-items: start; flex-direction: column; padding: 28px 22px; }.staff-hero h1 { font-size: 40px; }.mode-banner { grid-template-columns: 1fr; }.mode-banner p { margin: 0; }.staff-metrics, .admin-metrics { grid-template-columns: repeat(2,1fr); }.scanner-heading { align-items: start; flex-direction: column; }.scanner-side { grid-template-columns: 1fr; }.camera-card { min-height: 480px; }.qr-reader, .qr-reader video { min-height: 420px; }.camera-bottom { display: none; }.scan-result-card { padding: 35px 22px; }
  .admin-top { align-items: start; flex-direction: column; }.admin-top h1 { font-size: 40px; }.filter-bar { align-items: stretch; flex-direction: column; }.filter-bar label, .filter-bar .search-field { width: 100%; }.admin-dashboard-grid { gap: 12px; }.day-admin-grid, .staff-admin-grid { grid-template-columns: 1fr; }.ticket-admin-summary { grid-template-columns: 70px 1fr; }.ticket-admin-card { padding: 18px; }.form-bottom { align-items: start; flex-direction: column; gap: 15px; }.draw-admin-card { grid-template-columns: 1fr; }.draw-day { padding: 0 0 12px; border: 0; border-bottom: 1px solid var(--border); }.draw-admin-action { grid-column: 1; }.danger-panel { align-items: start; flex-direction: column; }.admin-actions, .admin-actions form { width: 100%; flex-direction: column; }.admin-actions input { min-width: 0; }.integration-status { grid-template-columns: 1fr; }.integration-status strong { text-align: left; }.capacity-summary { grid-template-columns: 1fr 1fr; }
}

@media print {
  .site-header, .site-footer, .ticket-tools, .breadcrumb, .subnav, .flash, .ticket-details-grid { display: none!important; }
  body, .ticket-main { background: white; }.ticket-main { padding: 0; }.ticket-layout { display: block; }.digital-ticket { box-shadow: none; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* Ocean Gallery redesign · 2026 */
:root {
  --slate: #087ea4;
  --slate-dark: #064d6b;
  --navy: #032f4f;
  --blue: #087ea4;
  --blue-soft: #ddf6f7;
  --ink: #082432;
  --ink-soft: #284753;
  --paper: #f3fafb;
  --warm: #eaf6f8;
  --white: #fff;
  --gold: #d5b66a;
  --gold-dark: #a98232;
  --plum: #075e8c;
  --green: #087f6a;
  --green-soft: #daf4ed;
  --red: #b33e53;
  --red-soft: #fae7eb;
  --orange: #b56f29;
  --border: #cfe5ea;
  --border-dark: #b8d7de;
  --muted: #58727c;
  --aqua: #22c7d6;
  --aqua-bright: #67ecf1;
  --sea-glass: #ddf6f7;
  --ocean-deep: #021b31;
  --ocean-mid: #075e8c;
  --mist: #f3fafb;
  --shadow: 0 30px 80px rgba(3, 47, 79, .14);
  --shadow-small: 0 14px 38px rgba(3, 47, 79, .09);
  --serif: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --sans: "Aptos", "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
  --radius: 26px;
  --shell: min(1240px, calc(100% - 48px));
}

html { scroll-padding-top: 90px; }
body { color: var(--ink); background: var(--mist); font-size: 15px; }
body.public-page { background: #f9fcfd; }
::selection { color: white; background: var(--blue); }
h1, h2 { font-family: var(--serif); font-weight: 650; letter-spacing: -.055em; }
h3, h4 { font-family: var(--sans); letter-spacing: -.025em; }
p { color: var(--muted); }
.visually-hidden { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; }
.section { position: relative; padding: 112px 0; }
.eyebrow { color: var(--blue); font-size: 11px; letter-spacing: .18em; }
.eyebrow.light { color: #9eeaf0; }
.section-heading h2 { font-size: clamp(42px, 5vw, 68px); }

/* Buttons and interaction */
.button { position: relative; min-height: 50px; overflow: hidden; padding: 13px 23px; border-radius: 999px; font-weight: 760; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease, background .3s ease; }
.button::after { content: ''; position: absolute; inset: -2px; background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.32) 45%, transparent 65%); transform: translateX(-130%); transition: transform .65s ease; pointer-events: none; }
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(1, 30, 52, .2); }
.button:hover::after { transform: translateX(130%); }
.button:active { transform: translateY(-1px) scale(.985); }
.button-dark { background: linear-gradient(135deg, var(--navy), var(--ocean-mid)); }
.button-aqua { color: #02283b; background: linear-gradient(135deg, var(--aqua-bright), var(--aqua)); box-shadow: 0 12px 30px rgba(34, 199, 214, .24); }
.button-light { color: var(--navy); }
.button-gold { background: linear-gradient(135deg, #f0d891, var(--gold)); }
.button-outline { border-color: var(--border-dark); }
.button-ghost-light { background: rgba(1, 24, 43, .17); border-color: rgba(194, 244, 247, .5); backdrop-filter: blur(8px); }
.text-link, .text-button { color: var(--blue); }
.text-link span { transition-duration: .3s; }

/* Header */
.site-header { height: 74px; background: rgba(249, 253, 254, .86); border-color: rgba(174, 215, 223, .62); backdrop-filter: blur(24px) saturate(150%); }
.site-header.scrolled { background: rgba(249, 253, 254, .96); box-shadow: 0 10px 36px rgba(3,47,79,.1); }
.brand { gap: 13px; }
.brand-seal { width: 44px; height: 44px; color: white; background: linear-gradient(145deg, #0c91b4, #033657 72%); border: 1px solid rgba(255,255,255,.7); box-shadow: 0 8px 20px rgba(3, 67, 99, .18), inset 0 0 0 4px rgba(255,255,255,.1); font-family: var(--sans); font-size: 18px; font-weight: 750; }
.brand-copy strong { color: var(--navy); font-family: var(--sans); font-size: 19px; font-weight: 850; letter-spacing: .16em; }
.brand-copy small { color: #66818b; font-size: 8px; font-weight: 700; letter-spacing: .13em; }
.main-nav { gap: 28px; color: #234653; font-weight: 700; }
.main-nav > a:not(.button)::after { height: 2px; bottom: -10px; background: var(--aqua); }
.nav-toggle { display: none!important; }
.flash { background: #dcf5f7; border-color: #b5e8eb; }

/* Cinematic hero carousel */
.hero.hero-slider { position: relative; min-height: 830px; height: min(900px, calc(100svh - 32px)); overflow: hidden; color: white; background: var(--ocean-deep); isolation: isolate; }
.hero-track, .hero-slide { position: absolute; inset: 0; }
.hero-slide { visibility: hidden; opacity: 0; transition: opacity .9s cubic-bezier(.2,.7,.2,1), visibility .9s; }
.hero-slide.is-active { visibility: visible; opacity: 1; z-index: 1; }
.hero-slide-media { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; transform: scale(1.035); will-change: transform; }
.hero-slide:nth-child(2) .hero-slide-media, .hero-slide:nth-child(3) .hero-slide-media { object-position: center; }
.hero-slide.is-active .hero-slide-media { animation: oceanHeroDrift 8s ease-out both; }
.hero-slide-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,18,35,.96) 0%, rgba(2,31,56,.88) 32%, rgba(2,31,56,.38) 62%, rgba(2,25,45,.09) 100%), linear-gradient(0deg, rgba(1,20,36,.72) 0%, transparent 48%); }
.hero-slide-content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; padding: 76px 0 245px; }
.hero-copy { max-width: 770px; }
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-title { max-width: 800px; margin: 0 0 27px; color: white; font-size: clamp(60px, 6.8vw, 96px); font-weight: 600; line-height: .96; letter-spacing: -.065em; text-wrap: balance; }
.hero-title span { color: #8eeaf0; }
.hero-lead { max-width: 620px; margin-bottom: 31px; color: #d4e9ed; font-size: 18px; line-height: 1.6; }
.hero-copy .button-row { gap: 12px; }
.hero-copy .button span { transition: transform .25s ease; }
.hero-copy .button:hover span { transform: translate(2px,-2px); }
.trust-line { margin-top: 25px; color: #b8d5da; font-size: 11px; letter-spacing: .02em; }
.trust-line span::before { content: '✓'; color: var(--aqua); }
.slider-ui { position: absolute; z-index: 5; left: 50%; bottom: 190px; display: flex; align-items: center; justify-content: space-between; transform: translateX(-50%); pointer-events: none; }
.slider-arrows, .slider-dots, .slider-pause { pointer-events: auto; }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrows button, .slider-pause { width: 44px; height: 44px; display: grid; place-items: center; color: white; background: rgba(3, 38, 64, .5); border: 1px solid rgba(190, 239, 243, .35); border-radius: 50%; backdrop-filter: blur(12px); transition: .28s ease; }
.slider-arrows button:hover, .slider-pause:hover { color: var(--navy); background: var(--aqua); border-color: var(--aqua); transform: translateY(-2px); }
.slider-arrows svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.slider-dots { position: absolute; left: 50%; display: flex; align-items: center; gap: 8px; transform: translateX(-50%); }
.slider-dots button { width: 8px; height: 8px; padding: 0; background: rgba(255,255,255,.42); border: 0; border-radius: 999px; transition: width .3s ease, background .3s ease; }
.slider-dots button.active { width: 34px; background: var(--aqua); }
.slider-pause { margin-left: auto; font-size: 12px; font-weight: 900; }
.event-capsule { position: absolute; z-index: 5; left: 50%; bottom: 24px; min-height: 138px; display: grid; grid-template-columns: 170px 1fr 300px; align-items: center; color: white; background: rgba(6, 57, 86, .62); border: 1px solid rgba(173, 231, 236, .32); border-radius: 28px; box-shadow: 0 30px 70px rgba(0,0,0,.22); transform: translateX(-50%); backdrop-filter: blur(26px) saturate(145%); overflow: hidden; }
.event-capsule::before { content: ''; position: absolute; width: 290px; height: 290px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(43,215,225,.2), transparent 65%); pointer-events: none; }
.event-capsule > div { min-height: 86px; display: flex; flex-direction: column; justify-content: center; padding: 15px 30px; border-right: 1px solid rgba(191, 236, 240, .2); }
.event-capsule > div:last-child { border: 0; }
.event-capsule span, .event-capsule small { color: #afd1d7; font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.event-capsule strong { font-size: 15px; }
.event-capsule-date { align-items: center; text-align: center; }
.event-capsule-date strong { color: #90edf0; font-size: 38px; font-weight: 600; letter-spacing: -.06em; line-height: 1; }
.event-capsule-place strong { margin: 4px 0; font-size: 16px; }
.event-capsule-countdown > span { margin-bottom: 7px; }
.event-capsule .countdown { border-color: rgba(201,239,242,.24); }
.event-capsule .countdown > div { padding: 4px 8px; border-color: rgba(201,239,242,.2); }
.event-capsule .countdown strong { color: white; font-family: var(--sans); font-size: 24px; font-weight: 650; }
.event-capsule .countdown span { color: #8fbcc5; font-size: 7px; }

@keyframes oceanHeroDrift { from { transform: scale(1.035) translate3d(0,0,0); } to { transform: scale(1.085) translate3d(-.6%, -.35%, 0); } }

/* Public content surfaces */
.stat-strip { background: linear-gradient(100deg, #033657, #087ea4 55%, #05a9ba); }
.stat-grid > div { padding-block: 28px; border-color: rgba(255,255,255,.2); }
.stat-grid strong { font-family: var(--sans); font-size: 35px; font-weight: 650; }
.stat-grid span { color: #d4f4f5; }
.intro-section { overflow: hidden; background: radial-gradient(circle at 82% 14%, rgba(34,199,214,.12), transparent 25%), #f9fcfd; }
.intro-section::before { content: ''; position: absolute; width: 580px; height: 580px; left: -390px; top: 200px; border: 1px solid rgba(8,126,164,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(8,126,164,.025), 0 0 0 140px rgba(8,126,164,.02); }
.intro-grid { gap: 95px; }
.prose-large p { color: #234a58; font-family: var(--sans); font-size: 22px; line-height: 1.65; letter-spacing: -.02em; }
.feature-grid { gap: 18px; }
.feature-card { min-height: 315px; padding: 32px; background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(230,247,249,.8)); border: 1px solid rgba(168,215,223,.65); border-radius: 28px; box-shadow: 0 18px 50px rgba(3,47,79,.06); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease; }
.feature-card::after { content: ''; position: absolute; width: 160px; height: 160px; right: -70px; bottom: -80px; background: radial-gradient(circle, rgba(34,199,214,.22), transparent 68%); transition: transform .45s ease; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(34,199,214,.65); box-shadow: 0 28px 60px rgba(3,47,79,.12); }
.feature-card:hover::after { transform: scale(1.35); }
.feature-card h3 { margin-top: 100px; font-family: var(--sans); font-size: 27px; font-weight: 650; letter-spacing: -.04em; }
.feature-number { padding: 6px 9px; color: var(--blue); background: rgba(221,246,247,.9); border-radius: 999px; }
.feature-dark { background: linear-gradient(145deg, #032f4f, #075e8c); border-color: rgba(123,224,231,.3); }
.feature-dark p { color: #bcdbe0; }
.feature-blue { background: linear-gradient(135deg, #087ea4, #18b9c8); border-color: transparent; }
.feature-blue p { color: #e0f8f9; }
.coin-stack i { border-color: rgba(8,126,164,.6); box-shadow: inset 0 0 0 7px transparent, inset 0 0 0 8px rgba(34,199,214,.32); }
.event-band { overflow: hidden; background: radial-gradient(circle at 85% 10%, rgba(48,207,218,.22), transparent 30%), linear-gradient(120deg, #021c33, #064f74); }
.event-band::after { content: ''; position: absolute; width: 700px; height: 150px; right: -80px; bottom: -85px; border: 1px solid rgba(127,229,235,.16); border-radius: 50%; box-shadow: 0 0 0 38px rgba(127,229,235,.035), 0 0 0 76px rgba(127,229,235,.025); }
.event-date-block { border-color: rgba(167,225,230,.24); }
.event-date-block strong { color: #8ce6eb; font-family: var(--sans); font-weight: 600; letter-spacing: -.06em; }
.vendor-grid { gap: 18px; }
.vendor-card { background: rgba(255,255,255,.88); border-color: rgba(175,215,223,.75); border-radius: 26px; box-shadow: 0 15px 40px rgba(3,47,79,.045); }
.vendor-card:hover { border-color: var(--aqua); box-shadow: 0 24px 55px rgba(3,47,79,.11); }
.vendor-monogram { width: 58px; height: 58px; color: white; background: linear-gradient(145deg, var(--blue), #20b9c7); border-radius: 18px; font-family: var(--sans); font-weight: 750; box-shadow: 0 12px 24px rgba(8,126,164,.19); }
.vendor-card h3 { font-family: var(--sans); font-weight: 650; }
.floor-section { background: linear-gradient(180deg, #eef9fa, #f8fcfd); }
.floor-plan { overflow: hidden; padding: 24px; background: rgba(255,255,255,.9); border-color: rgba(151,204,214,.7); border-radius: 28px; box-shadow: 0 28px 70px rgba(3,47,79,.1); }
.floor-zone { border-radius: 12px; }
.zone-stage { background: #087ea4; }.zone-a1, .zone-a2 { background: #d0f0f2; }.zone-b1, .zone-b2 { background: #48aabf; }.zone-c1, .zone-c2 { background: #dcefdc; }.zone-gallery { background: #032f4f; }.zone-service { background: #16aebd; }
.programme-section { background: #f9fcfd; }
.programme-list { display: grid; gap: 12px; border: 0; }
.programme-row { min-height: 120px; padding: 22px 25px; background: rgba(255,255,255,.84); border: 1px solid rgba(180,218,225,.75); border-radius: 20px; box-shadow: 0 12px 32px rgba(3,47,79,.04); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.programme-row:hover { background: white; border-color: var(--aqua); box-shadow: 0 18px 40px rgba(3,47,79,.09); transform: translateX(5px); }
.programme-row h3 { font-family: var(--sans); font-weight: 650; }
.draw-section { overflow: hidden; background: radial-gradient(circle at 15% 10%, rgba(34,199,214,.18), transparent 27%), radial-gradient(circle at 88% 90%, rgba(8,126,164,.42), transparent 35%), linear-gradient(135deg, #01192f, #043e62); }
.draw-section::after { content: ''; position: absolute; inset: 0; opacity: .18; background-image: repeating-radial-gradient(circle at 80% 20%, transparent 0 30px, rgba(129,231,237,.22) 31px 32px); pointer-events: none; }
.draw-grid { position: relative; z-index: 1; }
.prize-card { background: rgba(225,249,250,.08); border-color: rgba(164,230,234,.2); border-radius: 22px; backdrop-filter: blur(10px); transition: transform .3s ease, background .3s ease; }
.prize-card:hover { background: rgba(225,249,250,.12); transform: translateX(5px); }
.prize-medal { border-color: #6fe4ea; box-shadow: inset 0 0 0 5px transparent, inset 0 0 0 6px rgba(111,228,234,.28); }
.prize-medal span { color: #89e9ed; font-family: var(--sans); }
.prize-card h3 { font-family: var(--sans); font-weight: 650; }
.tickets-section { background: radial-gradient(circle at 50% 0, rgba(34,199,214,.12), transparent 28%), #edf8fa; }
.ticket-grid { gap: 26px; }
.ticket-option { overflow: hidden; padding: 42px; background: rgba(255,255,255,.94); border-color: rgba(166,211,219,.78); border-radius: 30px; box-shadow: 0 24px 65px rgba(3,47,79,.1); transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease; }
.ticket-option:hover { transform: translateY(-8px); box-shadow: 0 34px 78px rgba(3,47,79,.16); }
.ticket-option.ticket-premium { background: radial-gradient(circle at 100% 0, rgba(52,205,216,.22), transparent 28%), linear-gradient(145deg, #021c34, #064f73); border: 1px solid rgba(99,220,228,.32); }
.ticket-option.ticket-premium::before { content: ''; position: absolute; width: 260px; height: 260px; right: -130px; bottom: -145px; border: 1px solid rgba(117,227,233,.2); border-radius: 50%; box-shadow: 0 0 0 35px rgba(117,227,233,.035), 0 0 0 70px rgba(117,227,233,.025); }
.ticket-option h3, .ticket-price strong { font-family: var(--sans); font-weight: 650; }
.ticket-premium .ticket-topline { color: #9beaf0; }
.ticket-premium li span { color: var(--aqua); }
.faq-section { background: #f9fcfd; }
.faq-list { display: grid; gap: 10px; border: 0; }
.faq-list details { padding: 22px 24px; background: white; border: 1px solid rgba(178,216,223,.72); border-radius: 18px; transition: border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.faq-list details[open] { background: #f5fcfd; border-color: #76dce3; box-shadow: 0 15px 35px rgba(3,47,79,.07); }
.faq-list summary { font-family: var(--sans); font-size: 18px; font-weight: 650; }
.faq-list summary::after { color: var(--blue); }
.contact-section { overflow: hidden; background: radial-gradient(circle at 0 100%, rgba(34,199,214,.3), transparent 32%), linear-gradient(125deg, #032f4f, #087ea4); }
.contact-section::after { content: ''; position: absolute; width: 520px; height: 520px; right: -260px; top: -320px; border: 1px solid rgba(188,238,241,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(188,238,241,.035), 0 0 0 90px rgba(188,238,241,.025); }
.contact-grid { position: relative; z-index: 1; }
.contact-details a { font-family: var(--sans); font-weight: 650; }
.contact-form { padding: 38px; background: rgba(255,255,255,.94); border: 1px solid rgba(220,248,249,.6); border-radius: 28px; box-shadow: 0 30px 70px rgba(1,29,51,.18); backdrop-filter: blur(15px); }
.contact-form .button { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.demo-notice { color: #24515d; background: #dff4f5; }

/* Footer and common application surfaces */
.site-footer { padding-top: 78px; color: #b5d0d5; background: linear-gradient(145deg, #01182c, #032f4f); }
.brand-footer .brand-seal { border-color: rgba(160,230,235,.5); }
.footer-bottom { color: #789ca4; border-color: rgba(164,218,223,.16); }
.demo-label { color: #91e8ec; border-color: rgba(112,224,231,.32); border-radius: 999px; }
label { color: var(--ink-soft); }
input, select, textarea { min-height: 47px; padding: 12px 14px; border-color: var(--border-dark); border-radius: 13px; }
input:focus, select:focus, textarea:focus { border-color: var(--aqua); box-shadow: 0 0 0 4px rgba(34,199,214,.13); }
.panel, .detail-card, .table-card, .filter-bar { background: rgba(255,255,255,.92); border-color: rgba(179,215,222,.78); border-radius: 20px; box-shadow: 0 12px 34px rgba(3,47,79,.055); }
.panel-heading h2, .section-title-row h2, .detail-card h2 { font-family: var(--sans); font-weight: 650; }
th { color: #53717c; background: #edf8fa; }
td { border-color: #e2eff1; }
.page-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 82% 0, rgba(45,211,224,.28), transparent 28%), linear-gradient(120deg, #021b31, #075e8c); }
.page-hero::before { content: ''; position: absolute; width: 560px; height: 560px; right: -280px; bottom: -370px; border: 1px solid rgba(173,235,239,.2); border-radius: 50%; box-shadow: 0 0 0 55px rgba(173,235,239,.035), 0 0 0 110px rgba(173,235,239,.025); }
.page-hero > .shell { position: relative; z-index: 1; }
.info-card, .schedule-day, .note-grid article { border: 1px solid rgba(174,215,223,.7); border-radius: 22px; box-shadow: 0 14px 35px rgba(3,47,79,.05); }
.schedule-day-head h3, .schedule-item h4, .note-grid h3 { font-family: var(--sans); font-weight: 650; }
.programme-page, .booking-main, .verify-main { background: radial-gradient(circle at 90% 5%, rgba(34,199,214,.1), transparent 24%), var(--mist); }
.cta-section { background: radial-gradient(circle at 50% 100%, rgba(34,199,214,.24), transparent 35%), linear-gradient(120deg, #021b31, #075e8c); }
.auth-main { background: #f8fcfd; }
.auth-art { background: linear-gradient(90deg, rgba(1,24,44,.9), rgba(2,45,73,.35)), url('/assets/images/msif-ocean-discovery-v2.webp') center/cover no-repeat; }
.auth-art::before { content: 'MSIF'; color: rgba(165,237,241,.08); font-family: var(--sans); font-weight: 800; }
.auth-art::after { border-color: rgba(126,229,235,.2); box-shadow: inset 0 0 0 30px transparent, inset 0 0 0 31px rgba(126,229,235,.12), inset 0 0 0 65px transparent, inset 0 0 0 66px rgba(126,229,235,.08); }
.auth-box h2 { font-family: var(--sans); font-weight: 650; }
.booking-progress b { background: linear-gradient(145deg, var(--blue), var(--aqua)); }
.form-section, .pass-row, .attendee-row, .order-summary, .paynow-card, .free-confirm, .success-card { border-radius: 22px; }
.booking-heading h1, .success-hero h1, .account-welcome h1, .staff-hero h1, .admin-top h1 { font-family: var(--sans); font-weight: 650; }
.account-welcome { background: radial-gradient(circle at 85% 5%, rgba(34,199,214,.28), transparent 28%), linear-gradient(120deg, #021b31, #075e8c); }
.wallet-pass, .account-side > *, .digital-ticket { border-radius: 22px; box-shadow: 0 16px 42px rgba(3,47,79,.08); }
.staff-hero { background: radial-gradient(circle at 100% 0, rgba(34,199,214,.25), transparent 30%), linear-gradient(130deg, #032f4f, #087ea4); border-radius: 24px; }
.camera-card { border-radius: 24px; }
.admin-page { background: #edf7f9; }
.portal-nav { background: radial-gradient(circle at 0 0, rgba(34,199,214,.12), transparent 28%), linear-gradient(180deg, #011b30, #032f4f); }
.portal-identity strong { font-family: var(--sans); font-weight: 700; }
.portal-nav nav a { border-radius: 10px; }
.portal-nav nav a:hover, .portal-nav nav a.active { background: rgba(94,214,222,.13); }
.portal-nav nav a.active { box-shadow: inset 3px 0 var(--aqua); }
.metric-card, .day-admin-card, .role-lock, .integration-status { border-radius: 16px; }
.capacity-list > div > div > strong, .ticket-code-large, .draw-day strong, .winner-card strong, .staff-avatar { font-family: var(--sans); }
.account-signout-panel { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 22px; padding: 24px 26px; background: rgba(255,255,255,.72); border: 1px solid var(--border); border-radius: 20px; }
.account-signout-panel .eyebrow { margin-bottom: 4px; }
.account-signout-panel h2 { margin-bottom: 4px; font-size: 23px; }
.account-signout-panel p { margin: 0; font-size: 12px; }

/* Scroll reveals */
.reveal-ready { opacity: 0; transform: translateY(22px); transition: opacity .68s ease var(--reveal-delay, 0ms), transform .68s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.reveal-ready.is-visible { opacity: 1; transform: translateY(0); }

/* Mobile app navigation and role-aware more sheet */
.mobile-app-nav, .mobile-sheet-layer { display: none; }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 780px); }
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  body.mobile-sheet-open { overflow: hidden; }
  .site-header { height: 66px; }
  .header-inner { justify-content: center; }
  .brand-copy small { display: none; }
  .main-nav { display: none!important; }
  .subnav, .portal-nav { display: none!important; }
  .section { padding: 82px 0; }

  .hero.hero-slider { min-height: 790px; height: min(840px, calc(100svh - 8px)); }
  .hero-slide-media { object-position: 64% center; }
  .hero-slide:nth-child(2) .hero-slide-media { object-position: 64% center; }
  .hero-slide:nth-child(3) .hero-slide-media { object-position: 68% center; }
  .hero-slide-scrim { background: linear-gradient(90deg, rgba(1,18,35,.95) 0%, rgba(2,31,56,.78) 64%, rgba(2,31,56,.32) 100%), linear-gradient(0deg, rgba(1,20,36,.82), transparent 55%); }
  .hero-slide-content { align-items: flex-start; padding: 110px 0 250px; }
  .hero-copy { max-width: 650px; }
  .hero-title { font-size: clamp(52px, 9vw, 72px); }
  .slider-ui { bottom: calc(100% - 100svh + 328px + env(safe-area-inset-bottom)); }
  .event-capsule { bottom: calc(100% - 100svh + 162px + env(safe-area-inset-bottom)); min-height: 150px; grid-template-columns: 135px 1fr 245px; border-radius: 24px; }
  .event-capsule > div { padding-inline: 20px; }
  .event-capsule-date strong { font-size: 31px; }

  .mobile-app-nav { position: fixed; z-index: 500; left: 10px; right: 10px; bottom: max(8px, env(safe-area-inset-bottom)); min-height: 68px; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); align-items: end; padding: 7px max(5px, env(safe-area-inset-right)) 6px max(5px, env(safe-area-inset-left)); color: #a9cbd1; background: rgba(2, 29, 50, .94); border: 1px solid rgba(126,214,221,.22); border-radius: 23px; box-shadow: 0 18px 55px rgba(0,17,31,.32); backdrop-filter: blur(22px) saturate(150%); transition: transform .28s ease, opacity .28s ease; }
  .mobile-tab { position: relative; min-width: 0; min-height: 54px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 5px 2px; color: inherit; background: transparent; border: 0; border-radius: 16px; font-size: 9px; font-weight: 700; line-height: 1; letter-spacing: .01em; transition: color .25s ease, background .25s ease, transform .25s ease; -webkit-tap-highlight-color: transparent; }
  .mobile-tab svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-tab::after { content: ''; position: absolute; width: 4px; height: 4px; left: 50%; bottom: 1px; background: transparent; border-radius: 50%; transform: translateX(-50%); }
  .mobile-tab.active { color: #86edf1; background: rgba(66,207,217,.1); }
  .mobile-tab.active::after { background: #6fe8ed; box-shadow: 0 0 10px #6fe8ed; }
  .mobile-tab-primary .mobile-tab-icon { width: 40px; height: 40px; display: grid; place-items: center; margin-top: -17px; color: #013148; background: linear-gradient(145deg, #8cf1f3, #23c6d4); border: 4px solid #03243c; border-radius: 15px; box-shadow: 0 9px 24px rgba(15,196,211,.3); transform: rotate(-4deg); transition: transform .25s ease; }
  .mobile-tab-primary .mobile-tab-icon svg { width: 21px; height: 21px; }
  .mobile-tab-primary:hover .mobile-tab-icon, .mobile-tab-primary.active .mobile-tab-icon { transform: rotate(0) translateY(-2px); }
  .mobile-keyboard-open .mobile-app-nav { opacity: 0; transform: translateY(calc(110% + env(safe-area-inset-bottom))); pointer-events: none; }

  .mobile-sheet-layer { position: fixed; z-index: 610; inset: 0; display: block; }
  .mobile-sheet-layer[hidden] { display: none; }
  .mobile-sheet-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; background: rgba(1,17,30,.55); border: 0; opacity: 0; backdrop-filter: blur(5px); transition: opacity .28s ease; }
  .mobile-more-sheet { position: absolute; left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); max-height: min(78vh, 650px); overflow-y: auto; padding: 8px 20px calc(18px + env(safe-area-inset-bottom)); color: var(--ink); background: rgba(247,252,253,.98); border: 1px solid rgba(181,221,227,.85); border-radius: 28px; box-shadow: 0 35px 90px rgba(0,19,33,.34); transform: translateY(calc(100% + 30px)); transition: transform .32s cubic-bezier(.2,.8,.2,1); }
  .mobile-sheet-layer.is-open .mobile-sheet-backdrop { opacity: 1; }
  .mobile-sheet-layer.is-open .mobile-more-sheet { transform: translateY(0); }
  .mobile-sheet-handle { width: 38px; height: 4px; margin: 2px auto 12px; background: #b7d5db; border-radius: 99px; }
  .mobile-sheet-heading { display: flex; align-items: center; justify-content: space-between; padding: 8px 0 16px; border-bottom: 1px solid var(--border); }
  .mobile-sheet-heading > div { display: grid; }
  .mobile-sheet-heading span, .mobile-sheet-status span { color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-sheet-heading strong { font-size: 20px; letter-spacing: -.03em; }
  .mobile-sheet-heading button { width: 40px; height: 40px; color: var(--ink); background: var(--sea-glass); border: 0; border-radius: 50%; font-size: 24px; }
  .mobile-sheet-status { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 16px 0; padding: 14px 16px; background: var(--sea-glass); border-radius: 15px; }
  .mobile-sheet-status strong { color: var(--blue); font-size: 12px; }
  .mobile-sheet-links { display: grid; gap: 7px; margin: 14px 0; }
  .mobile-sheet-grid { grid-template-columns: 1fr 1fr; }
  .mobile-sheet-links a { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 11px 14px; background: white; border: 1px solid var(--border); border-radius: 14px; font-size: 12px; font-weight: 700; }
  .mobile-sheet-links a::after { content: '\2197'; color: var(--blue); }
  .mobile-sheet-signout { margin-top: 12px; }
  .mobile-sheet-signout button { width: 100%; min-height: 48px; color: #8d3140; background: var(--red-soft); border: 1px solid #efcbd2; border-radius: 14px; font-weight: 750; }

  .footer-bottom { padding-bottom: 10px; }
  .admin-shell { display: block; }
  .admin-main { width: 100%; min-width: 0; max-width: 100%; padding-bottom: 95px; overflow-x: clip; }
  .admin-dashboard-grid, .admin-dashboard-grid > *, .admin-main .panel, .admin-main .table-scroll { min-width: 0; max-width: 100%; }
  .admin-main .table-scroll { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
  .account-signout-panel { align-items: stretch; flex-direction: column; }
  .account-signout-panel .button { width: 100%; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }
  .section { padding: 66px 0; }
  .site-header { height: 62px; }
  .brand-seal { width: 39px; height: 39px; font-size: 16px; }
  .brand-copy strong { font-size: 17px; }

  .hero.hero-slider { min-height: 748px; height: calc(100svh - 2px); max-height: 820px; }
  .hero-slide-content { padding: 82px 0 235px; }
  .hero-title { margin-bottom: 20px; font-size: clamp(44px, 13vw, 58px); line-height: .98; }
  .hero-lead { max-width: 95%; margin-bottom: 22px; font-size: 15px; line-height: 1.55; }
  .hero-copy .button-row { max-width: 340px; }
  .hero-copy .button { min-height: 46px; padding: 11px 17px; font-size: 12px; }
  .trust-line { gap: 10px 14px; margin-top: 18px; font-size: 9px; }
  .trust-line span:last-child { display: none; }
  .slider-ui { bottom: calc(100% - 100svh + 321px + env(safe-area-inset-bottom)); }
  .slider-arrows button { width: 40px; height: 40px; }
  .slider-pause { width: 40px; height: 40px; }
  .event-capsule { bottom: calc(100% - 100svh + 147px + env(safe-area-inset-bottom)); min-height: 148px; grid-template-columns: 112px 1fr; border-radius: 21px; }
  .event-capsule > div { min-height: 62px; padding: 10px 14px; }
  .event-capsule-date { grid-row: 1/3; border-bottom: 0!important; }
  .event-capsule-date strong { font-size: 27px; }
  .event-capsule-place { border-right: 0!important; border-bottom: 1px solid rgba(191,236,240,.2); }
  .event-capsule-place strong { margin: 2px 0; font-size: 12px; }
  .event-capsule-place small { display: none; }
  .event-capsule-countdown { border-right: 0!important; }
  .event-capsule-countdown > span { display: none; }
  .event-capsule .countdown strong { font-size: 18px; }

  .stat-grid > div { padding: 22px 10px; }
  .stat-grid strong { font-size: 29px; }
  .intro-grid { gap: 34px; }
  .prose-large p { font-size: 18px; }
  .feature-grid { margin-top: 52px; }
  .feature-card { min-height: 275px; padding: 26px; }
  .feature-card h3 { margin-top: 82px; font-size: 24px; }
  .event-band h2 { font-size: 39px; }
  .vendor-card { min-height: 260px; }
  .floor-plan { padding: 13px; border-radius: 20px; }
  .programme-row { min-height: 112px; padding: 18px 16px; }
  .ticket-option { padding: 29px; border-radius: 24px; }
  .ticket-option h3 { font-size: 31px; }
  .faq-list details { padding: 18px; }
  .faq-list summary { font-size: 16px; }
  .contact-form { padding: 24px; border-radius: 22px; }

  .auth-art { min-height: 315px; }
  .auth-panel { min-height: 560px; }
  .page-hero { padding: 74px 0; }
  .page-hero h1 { font-size: 46px; }
  .panel { border-radius: 17px; }
  .mobile-app-nav { left: 7px; right: 7px; bottom: max(6px, env(safe-area-inset-bottom)); border-radius: 21px; }
  .mobile-tab { font-size: 8px; }
  .mobile-tab svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; scroll-behavior: auto!important; transition-duration: .01ms!important; transition-delay: 0ms!important; }
  .hero-slide-media { transform: none!important; }
  .reveal-ready { opacity: 1!important; transform: none!important; }
  .slider-pause { display: none; }
}

/* Ocean Gallery v4 · editorial imagery and refined admin controls */
.section-story { position: relative; min-height: 430px; margin-top: 64px; margin-bottom: 26px; overflow: hidden; color: white; background: #032f4f; border: 1px solid rgba(120,215,222,.28); border-radius: 34px; box-shadow: 0 32px 78px rgba(3,47,79,.16); isolation: isolate; }
.section-story::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(1,24,43,.9) 0%, rgba(2,35,60,.68) 38%, rgba(2,35,60,.08) 76%), linear-gradient(0deg, rgba(1,24,43,.72), transparent 48%); }
.section-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.section-story:hover img { transform: scale(1.035); filter: saturate(1.07); }
.section-story figcaption { position: absolute; z-index: 2; left: clamp(28px,5vw,64px); bottom: clamp(28px,5vw,58px); width: min(470px, calc(100% - 56px)); }
.section-story figcaption span, .programme-story figcaption span, .draw-visual figcaption span { display: block; margin-bottom: 12px; color: #8cebf0; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-story figcaption strong { display: block; max-width: 440px; font-size: clamp(28px,3.3vw,46px); font-weight: 650; line-height: 1.06; letter-spacing: -.045em; }
.section-story figcaption p { max-width: 410px; margin: 16px 0 0; color: #cae4e8; font-size: 13px; line-height: 1.65; }
.section-story-craft img { object-position: center 43%; }
.section-story-exhibitors { margin-top: 46px; margin-bottom: 34px; }
.section-story-exhibitors::after { background: linear-gradient(90deg, rgba(1,24,43,.92), rgba(2,35,60,.62) 39%, rgba(2,35,60,.06) 75%); }
.section-story + .feature-grid { margin-top: 24px; }

.programme-story { min-height: 330px; display: grid; grid-template-columns: 1.35fr .65fr; margin-bottom: 28px; overflow: hidden; color: white; background: linear-gradient(135deg, #011a30, #064d70); border: 1px solid rgba(111,224,231,.24); border-radius: 30px; box-shadow: 0 26px 65px rgba(3,47,79,.14); }
.programme-story img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.programme-story:hover img { transform: scale(1.035); }
.programme-story figcaption { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px,4vw,52px); }
.programme-story figcaption strong { display: block; font-size: clamp(25px,2.6vw,38px); line-height: 1.08; letter-spacing: -.04em; }
.programme-story figcaption small { margin-top: 20px; color: #b9dce1; font-size: 10px; line-height: 1.7; }

.draw-grid { grid-template-columns: .7fr .9fr 1.15fr; gap: 28px; align-items: start; }
.draw-visual { position: relative; min-height: 480px; margin: 0; overflow: hidden; border: 1px solid rgba(144,229,234,.25); border-radius: 28px; box-shadow: 0 25px 65px rgba(0,14,27,.28); }
.draw-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(1,20,38,.92), transparent 62%); }
.draw-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; transition: transform .9s cubic-bezier(.2,.8,.2,1); }
.draw-visual:hover img { transform: scale(1.04); }
.draw-visual figcaption { position: absolute; z-index: 1; left: 24px; right: 24px; bottom: 24px; }
.draw-visual figcaption strong { display: block; font-size: 24px; line-height: 1.08; letter-spacing: -.035em; }

.admin-page { background: radial-gradient(circle at 88% 2%, rgba(34,199,214,.13), transparent 23%), #edf7f9; }
.admin-main { position: relative; }
.admin-top { position: relative; overflow: hidden; padding: 30px 32px; color: white; background: radial-gradient(circle at 92% 15%, rgba(70,225,232,.25), transparent 30%), linear-gradient(125deg, #011b30, #075e88); border: 1px solid rgba(107,221,228,.24); border-radius: 26px; box-shadow: 0 24px 58px rgba(3,47,79,.15); }
.admin-top::after { content: ''; position: absolute; width: 230px; height: 230px; right: -100px; bottom: -170px; border: 1px solid rgba(149,235,239,.2); border-radius: 50%; box-shadow: 0 0 0 34px rgba(149,235,239,.04), 0 0 0 68px rgba(149,235,239,.025); }
.admin-top > * { position: relative; z-index: 1; }
.admin-top .eyebrow { color: #8be9ed; }
.admin-top h1 { color: white; letter-spacing: -.045em; }
.admin-top p { color: #c5e0e5; }
.admin-top .button-outline { color: white; background: rgba(255,255,255,.08); border-color: rgba(184,239,242,.36); }
.admin-top .button-outline:hover { background: rgba(255,255,255,.16); }
.admin-top .live-chip, .admin-top > .status { color: #8ff0d3; background: rgba(19,122,95,.32); border: 1px solid rgba(124,236,203,.24); }
.admin-page .panel, .admin-page .table-card, .admin-page .filter-bar { border-color: rgba(153,207,216,.72); box-shadow: 0 16px 44px rgba(3,47,79,.07); }
.admin-page .panel { transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.admin-page .panel:hover { border-color: rgba(97,200,210,.68); box-shadow: 0 22px 55px rgba(3,47,79,.1); }
.admin-page .form-panel { padding: 32px; }
.admin-page .form-panel .panel-heading { margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid #dcecef; }
.admin-page input, .admin-page select, .admin-page textarea { background: #f9fdfd; border-color: #bed9de; }
.admin-page input:hover, .admin-page select:hover, .admin-page textarea:hover { border-color: #8fc8d0; }
.admin-page .button-dark { background: linear-gradient(135deg, #032f4f, #0783a8); box-shadow: 0 10px 24px rgba(3,78,111,.16); }
.admin-page .button-outline { color: #075f80; background: #f7fcfd; border-color: #b6d9de; }
.admin-page .create-panel > summary { padding: 3px; }
.admin-page .create-panel > summary strong { font-family: var(--sans); font-weight: 650; }
.portal-nav nav a { position: relative; padding-block: 11px; }
.portal-nav nav a.active::after { content: ''; position: absolute; width: 5px; height: 5px; right: 10px; top: 50%; background: #7ee8ed; border-radius: 50%; box-shadow: 0 0 10px #7ee8ed; transform: translateY(-50%); }

.switch-label, .switch-label.inline { position: relative; width: 100%; min-height: 74px; display: grid; grid-template-columns: 52px minmax(0,1fr) auto; align-items: center; gap: 14px; margin-top: 10px; padding: 13px 15px; color: var(--ink); background: #f5fafb; border: 1px solid #d4e7ea; border-radius: 18px; cursor: pointer; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
.switch-label:hover { background: white; border-color: #8fd5dc; box-shadow: 0 12px 28px rgba(3,47,79,.07); }
.switch-label:has(input:checked) { background: linear-gradient(135deg, #effbfb, #e1f7f8); border-color: #79d6dd; }
.switch-label::after { content: 'Off'; grid-column: 3; grid-row: 1; align-self: center; padding: 6px 9px; color: #71838a; background: #e5ecee; border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.switch-label:has(input:checked)::after { content: 'On'; color: #087456; background: #d9f4e9; }
.switch-label input, .check-label.switch-label input { appearance: none; width: 52px; height: 30px; grid-column: 1; grid-row: 1; position: relative; margin: 0; padding: 0; background: #aabac0; border: 0; border-radius: 999px; box-shadow: inset 0 2px 5px rgba(1,29,51,.18); cursor: pointer; transition: background .28s ease, box-shadow .28s ease; }
.switch-label input::after { content: ''; position: absolute; width: 24px; height: 24px; left: 3px; top: 3px; background: white; border-radius: 50%; box-shadow: 0 2px 7px rgba(1,29,51,.3); transform: translateX(0); transition: transform .3s cubic-bezier(.2,.8,.2,1); }
.switch-label input:checked { background: linear-gradient(135deg, #078caf, #27c9cf); box-shadow: 0 6px 15px rgba(17,171,188,.24), inset 0 1px 3px rgba(1,29,51,.12); }
.switch-label input:checked::after { transform: translateX(22px); }
.switch-label input:focus-visible { outline: 3px solid rgba(34,199,214,.28); outline-offset: 3px; }
.switch-label > span { min-width: 0; grid-column: 2; grid-row: 1; display: grid; gap: 3px; }
.switch-label strong { color: #153f4d; font-size: 12px; line-height: 1.3; }
.switch-label small { color: #698189; font-size: 9px; font-weight: 500; line-height: 1.45; }
.form-bottom .switch-label { max-width: 390px; margin: 0; }
.staff-member .switch-label { margin-top: 0; }
.draw-admin-action form:last-child { width: 100%; }
.draw-admin-action form:last-child .text-link { width: 100%; min-height: 42px; padding: 9px 13px; border: 1px solid #b9d9de; border-radius: 13px; background: #f6fbfc; font-size: 10px; font-weight: 800; letter-spacing: .03em; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.draw-admin-action form:last-child .text-link:hover { background: #e9f8f9; border-color: #67cbd4; transform: translateY(-1px); }
.draw-admin-card:has(.status-active) .draw-admin-action form:last-child .text-link { color: #9a3545; background: #fff5f6; border-color: #efcbd1; }
.draw-admin-card:has(.status-cancelled) .draw-admin-action form:last-child .text-link { color: #087456; background: #effaf6; border-color: #bde8d8; }

@media (max-width: 1100px) {
  .draw-grid { grid-template-columns: .8fr 1.2fr; }
  .draw-intro, .draw-visual { grid-column: 1; }
  .draw-visual { min-height: 330px; }
  .prize-list { grid-column: 2; grid-row: 1 / 3; }
}

@media (max-width: 900px) {
  .section-story { min-height: 400px; margin-top: 42px; }
  .programme-story { grid-template-columns: 1.1fr .9fr; }
  .draw-grid { grid-template-columns: 1fr; gap: 28px; }
  .draw-intro, .draw-visual, .prize-list { grid-column: 1; grid-row: auto; }
  .draw-visual { min-height: 420px; }
  .admin-top { padding: 26px; }
}

@media (max-width: 640px) {
  .section-story { min-height: 390px; border-radius: 25px; }
  .section-story::after { background: linear-gradient(0deg, rgba(1,24,43,.94), rgba(1,24,43,.18) 78%); }
  .section-story img { object-position: 58% center; }
  .section-story-exhibitors img { object-position: 54% center; }
  .section-story figcaption { left: 22px; right: 22px; bottom: 22px; width: auto; }
  .section-story figcaption strong { font-size: 29px; }
  .section-story figcaption p { font-size: 12px; }
  .programme-story { grid-template-columns: 1fr; border-radius: 24px; }
  .programme-story img { min-height: 245px; height: 245px; }
  .programme-story figcaption { padding: 25px; }
  .draw-visual { min-height: 350px; border-radius: 24px; }
  .admin-top { padding: 23px 21px; border-radius: 22px; }
  .admin-top h1 { font-size: 35px; }
  .admin-page .form-panel { padding: 22px 18px; }
  .switch-label, .switch-label.inline { grid-template-columns: 52px minmax(0,1fr); min-height: 76px; padding: 12px 13px; }
  .switch-label::after { position: absolute; right: 12px; top: 10px; padding: 4px 7px; }
  .switch-label > span { padding-right: 32px; }
  .form-bottom .switch-label { max-width: none; }
}

/* Mobile Landing v5 · compact, touch-first and overflow-safe */
@media (max-width: 900px) {
  html, body { max-width: 100%; overflow-x: clip; }
  #discover, #exhibitors, #programme, #lucky-draw, #tickets, #contact { scroll-margin-top: 66px; }
  .site-header { height: 54px; background: linear-gradient(90deg, rgba(248,253,254,.98), rgba(233,248,250,.96)); border-bottom-color: rgba(122,201,211,.42); box-shadow: 0 7px 24px rgba(3,47,79,.07); }
  .site-header::after { content: 'Singapore 2026'; position: absolute; right: 16px; top: 50%; padding: 5px 9px; color: #2f6f7e; background: rgba(209,241,244,.78); border: 1px solid rgba(119,205,214,.38); border-radius: 999px; font-size: 8px; font-weight: 850; letter-spacing: .12em; line-height: 1; text-transform: uppercase; transform: translateY(-50%); }
  .header-inner { justify-content: flex-start; }
  .header-inner .brand { gap: 9px; }
  .header-inner .brand-seal { width: 34px; height: 34px; font-size: 14px; box-shadow: 0 5px 13px rgba(3,67,99,.17), inset 0 0 0 3px rgba(255,255,255,.1); }
  .header-inner .brand-copy strong { font-size: 15px; letter-spacing: .14em; }
  .public-page .section-heading { margin-bottom: 36px; }
  .public-page .split-heading { align-items: start; }
  .public-page .split-heading > p { max-width: 610px; }
  .event-capsule > div, .event-capsule-place, .event-capsule-countdown { min-width: 0; }
  .event-capsule-place strong, .event-capsule-place small { overflow-wrap: anywhere; }
  .floor-grid { align-items: start; }
  .contact-details a { overflow-wrap: anywhere; }
  .mobile-app-nav { max-width: 700px; margin-inline: auto; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }
  .site-header { height: 50px; }
  .site-header::after { right: 12px; }
  .header-inner .brand-seal { width: 32px; height: 32px; font-size: 13px; }
  .header-inner .brand-copy strong { font-size: 14px; }
  .public-page .section { padding: 64px 0; }
  .public-page .section-heading { margin-bottom: 30px; }
  .public-page .section-heading h2,
  .public-page .intro-grid h2,
  .public-page .floor-copy h2,
  .public-page .faq-grid h2 { font-size: clamp(35px, 10.8vw, 43px); line-height: 1.02; }
  .public-page .split-heading { gap: 16px; }
  .public-page .split-heading > p,
  .public-page .centered-heading p { font-size: 15px; line-height: 1.65; }
  .public-page .eyebrow { margin-bottom: 11px; font-size: 10px; }

  .hero.hero-slider { min-height: 780px; height: 780px; max-height: none; }
  .hero-slide-media { object-position: 62% center; }
  .hero-slide:nth-child(2) .hero-slide-media { object-position: 61% center; }
  .hero-slide:nth-child(3) .hero-slide-media { object-position: 66% center; }
  .hero-slide-scrim { background: linear-gradient(90deg, rgba(1,18,35,.96) 0%, rgba(2,31,56,.82) 72%, rgba(2,31,56,.44) 100%), linear-gradient(0deg, rgba(1,20,36,.88), transparent 60%); }
  .hero-slide-content { padding: 76px 0 258px; }
  .hero-copy .eyebrow { margin-bottom: 17px; font-size: 9px; line-height: 1.5; }
  .hero-title { max-width: 355px; margin-bottom: 18px; font-size: clamp(42px, 12.3vw, 54px); line-height: .98; letter-spacing: -.058em; }
  .hero-lead { max-width: 355px; margin-bottom: 20px; font-size: 14px; line-height: 1.55; }
  .hero-copy .button { min-height: 48px; }
  .trust-line { margin-top: 16px; }
  .slider-ui { bottom: calc(250px + env(safe-area-inset-bottom)); }
  .event-capsule { bottom: calc(82px + env(safe-area-inset-bottom)); width: var(--shell); min-height: 148px; }
  .event-capsule > div { min-width: 0; overflow: hidden; }

  .stat-grid > div { min-height: 90px; display: grid; align-content: center; }
  .stat-grid span { max-width: 130px; margin-inline: auto; line-height: 1.35; }
  .intro-grid { gap: 26px; }
  .prose-large p { font-size: 17px; line-height: 1.7; }

  .section-story { min-height: 370px; margin-top: 34px; margin-bottom: 24px; }
  .section-story figcaption { left: 20px; right: 20px; bottom: 20px; }
  .section-story figcaption strong { font-size: clamp(27px, 8.5vw, 32px); }

  .feature-grid,
  .vendor-grid { width: 100%; display: flex; gap: 14px; overflow-x: auto; overflow-y: hidden; padding: 2px max(12px, calc((100% - var(--shell)) / 2)) 16px; scroll-padding-inline: 12px; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .feature-grid::-webkit-scrollbar,
  .vendor-grid::-webkit-scrollbar { display: none; }
  .feature-grid { margin-top: 38px; }
  .feature-card,
  .vendor-card { flex: 0 0 min(82vw, 310px); scroll-snap-align: start; }
  .feature-card { min-height: 268px; }
  .feature-card h3 { margin-top: 78px; }
  .vendor-card { min-height: 250px; padding: 25px; }
  .vendor-monogram { margin-bottom: 27px; }
  .section-story-exhibitors { margin-bottom: 24px; }

  .event-band-grid { gap: 28px; }
  .event-band h2 { font-size: clamp(34px, 10vw, 40px); }
  .event-facts { gap: 20px; }
  .event-facts .button { width: 100%; }

  .floor-grid { gap: 34px; }
  .legend { grid-template-columns: 1fr 1fr; gap: 10px 12px; margin-top: 24px; font-size: 11px; }
  .floor-plan { min-height: 350px; gap: 4px; padding: 11px; }
  .floor-zone { padding: 5px; font-size: 8px; line-height: 1.25; }
  .floor-label, .floor-entrance { font-size: 8px; letter-spacing: .06em; }

  .programme-story { margin-bottom: 22px; }
  .programme-story img { min-height: 225px; height: 225px; }
  .programme-story figcaption { padding: 23px 21px; }
  .programme-story figcaption strong { font-size: 27px; }
  .programme-row { grid-template-columns: 62px 1fr; min-height: 108px; gap: 10px; padding: 17px 14px; }
  .programme-row h3 { font-size: 19px; }

  .draw-grid { gap: 24px; }
  .draw-intro h2 { font-size: clamp(45px, 13vw, 58px); }
  .draw-visual { min-height: 330px; }
  .prize-card { grid-template-columns: 54px minmax(0,1fr); gap: 13px; padding: 18px 15px; }
  .prize-medal { width: 50px; height: 50px; }
  .prize-card h3 { font-size: 20px; }

  .ticket-grid { gap: 17px; }
  .ticket-option { padding: 27px 24px; }
  .ticket-option h3 { margin-top: 28px; font-size: 29px; }
  .ticket-price strong { font-size: 45px; }
  .ticket-option > p { min-height: auto; }
  .ticket-option .button { width: 100%; min-height: 50px; }

  .faq-grid { gap: 31px; }
  .faq-list details { padding: 18px 17px; }
  .faq-list summary { gap: 14px; font-size: 15px; line-height: 1.4; }

  .contact-grid { gap: 35px; }
  .contact-grid h2 { font-size: clamp(43px, 13vw, 56px); }
  .contact-grid > div > p { font-size: 14px; }
  .contact-details { margin-top: 32px; }
  .contact-details a { max-width: 100%; font-size: clamp(16px, 5vw, 20px); }
  .contact-form { gap: 15px; padding: 21px; }
  .contact-form .button { width: 100%; min-height: 50px; }
  .demo-notice { padding: 14px 18px; line-height: 1.55; }

  .site-footer { padding-top: 60px; }
  .footer-grid { gap: 34px 24px; padding-bottom: 38px; }
}

@media (max-width: 420px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-grid > div:not(:first-child) { padding-top: 4px; }
}

@media (max-width: 360px) {
  .site-header::after { content: 'SG 2026'; padding-inline: 8px; }
  .hero.hero-slider { min-height: 820px; height: 820px; }
  .hero-slide-content { padding-top: 48px; }
  .hero-title { font-size: 42px; }
  .hero-copy .button-row { display: grid; grid-template-columns: 1fr; max-width: 100%; }
  .hero-copy .button { width: 100%; }
  .hero-copy .button-ghost-light, .hero-copy .trust-line { display: none; }
  .slider-ui { bottom: calc(250px + env(safe-area-inset-bottom)); }
  .event-capsule { grid-template-columns: 96px minmax(0,1fr); }
  .event-capsule > div { padding-inline: 10px; }
  .event-capsule-place strong { font-size: 11px; }
  .mobile-tab { font-size: 7.5px; }
  .mobile-tab svg { width: 19px; height: 19px; }
}

/* Mobile Account v7 · wallet hierarchy and order cards */
@media (max-width: 640px) {
  .account-page .account-welcome { padding: 42px 0 70px; }
  .account-page .account-welcome h1 { max-width: 330px; margin-bottom: 9px; font-size: clamp(35px, 10.5vw, 42px); line-height: 1.03; letter-spacing: -.045em; }
  .account-page .account-welcome p { margin: 0; font-size: 14px; }
  .account-page .account-grid { margin-top: -28px; padding-bottom: 84px; }
  .account-page .account-primary { padding: 24px 18px; background: rgba(244,250,251,.98); border: 1px solid rgba(172,215,222,.68); border-radius: 24px; box-shadow: 0 20px 48px rgba(3,47,79,.09); }
  .wallet-title-row { align-items: stretch; flex-direction: column; gap: 14px; margin-bottom: 20px; }
  .wallet-title-row .button { width: 100%; min-height: 48px; border-radius: 14px; }
  .wallet-grid { gap: 14px; }
  .wallet-ticket { min-height: 245px; padding: 22px; border-radius: 20px; }
  .wallet-ticket h3 { font-size: 26px; }
  .wallet-bottom { grid-template-columns: auto minmax(0,1fr); column-gap: 12px; }
  .wallet-bottom > span:first-child { white-space: nowrap; }
  .wallet-bottom > span:nth-child(2) { min-width: 0; overflow-wrap: anywhere; text-align: right; }
  .section-title-row.section-spaced { margin-top: 40px; margin-bottom: 18px; }

  .account-orders-card { overflow: visible; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
  .account-orders, .account-orders tbody { width: 100%; display: block; }
  .account-orders thead { display: none; }
  .account-orders tr { display: grid; overflow: hidden; background: white; border: 1px solid rgba(169,211,219,.72); border-radius: 19px; box-shadow: 0 12px 32px rgba(3,47,79,.065); }
  .account-orders tr + tr { margin-top: 13px; }
  .account-orders td { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 11px 16px; border-bottom: 1px solid #e3eff1; font-size: 12px; text-align: right; }
  .account-orders td::before { content: attr(data-label); flex: 0 0 auto; color: #6c858d; font-size: 8px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
  .account-orders td:first-child { padding-block: 15px; background: linear-gradient(90deg, #edf9fa, #f8fcfd); }
  .account-orders td:first-child strong { color: #075e7b; font-size: 13px; letter-spacing: .02em; }
  .account-orders time { white-space: nowrap; font-size: 11px; }
  .account-orders td:last-child { padding: 0; border-bottom: 0; }
  .account-orders td:last-child::before { display: none; }
  .account-orders td:last-child a { width: 100%; min-height: 46px; display: flex; align-items: center; justify-content: center; color: #075f7f; background: #edf8fa; font-size: 11px; font-weight: 800; }
}

@media (max-width: 360px) {
  .account-page .account-primary { padding: 21px 14px; }
  .account-orders td { gap: 10px; padding-inline: 13px; }
  .account-orders time { font-size: 10.5px; }
}

@media print {
  .mobile-app-nav, .mobile-sheet-layer, .slider-ui { display: none!important; }
  body { padding-bottom: 0!important; }
}
