:root {
  --bg: #f7f7f7;
  --surface: #ffffff;
  --ink: #0e1224;
  --ink-70: rgba(14,18,36,.72);
  --ink-55: rgba(14,18,36,.58);
  --ink-40: rgba(14,18,36,.42);
  --border: rgba(14,18,36,.11);
  --border-soft: rgba(14,18,36,.07);
  --border-strong: rgba(14,18,36,.18);
  --periwinkle: #5f79ea;
  --teal: #1bc6c0;
  --lilac: #a66bd7;
  --sky: #16afe3;
  --max: 1240px;
  --ease-out: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; color: var(--ink); background: var(--bg); font-family: "Inter", Arial, sans-serif; font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; height: auto; }
.shell { width: min(var(--max), calc(100% - 64px)); margin: 0 auto; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(22px, 3.2vw, 52px);
  background: rgba(247,247,247,.82); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent; transition: background .3s var(--ease-out), border-color .3s var(--ease-out);
}
.nav.scrolled { background: rgba(247,247,247,.95); border-bottom-color: var(--border); }
.nav-logo { display: flex; align-items: center; margin-left: 12px; }
.nav-logo img { width: 88px; height: 50px; object-fit: contain; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 27px; list-style: none; }
.nav-links a { position: relative; color: var(--ink-55); font-size: 13.5px; font-weight: 500; white-space: nowrap; transition: color .2s var(--ease-out); }
.nav-links > li > a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--periwinkle); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-ghost, .btn-primary, .btn-cta { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0 19px; border-radius: 100px; font-size: 13px; font-weight: 600; transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out); }
.btn-ghost { color: var(--ink-55); border: 1px solid var(--border-strong); background: transparent; }
.btn-primary, .btn-cta { color: #fff; background: var(--ink); box-shadow: 0 9px 22px rgba(14,18,36,.15); }
.btn-ghost:hover, .btn-primary:hover, .btn-cta:hover { transform: translateY(-2px); }
.nav-dd { position: relative; }
.nav-chev { margin-left: 3px; vertical-align: middle; transition: transform .2s; }
.nav-dd:hover .nav-chev { transform: rotate(180deg); }
.nav-mega {
  position: absolute; left: 50%; top: calc(100% + 22px); width: 590px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 14px;
  border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.98);
  box-shadow: 0 24px 60px rgba(14,18,36,.15); opacity: 0; visibility: hidden;
  pointer-events: none; transform: translateX(-50%) translateY(-8px); transition: all .22s var(--ease-out);
}
.nav-dd:hover .nav-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-mega a { display: block; padding: 12px 14px; border-radius: 12px; transition: background .15s var(--ease-out); }
.nav-mega a:hover { background: var(--bg); }
.nav-mega .mt { color: var(--ink); font-size: 14px; font-weight: 700; }
.nav-mega .md { margin-top: 2px; color: var(--ink-55); font-size: 12px; font-weight: 400; }
.mobile-toggle { display: none; width: 40px; height: 40px; position: relative; border: 0; background: transparent; cursor: pointer; }
.mobile-toggle span, .mobile-toggle span::before, .mobile-toggle span::after { position: absolute; left: 11px; width: 18px; height: 1.6px; background: var(--ink); transition: all .25s var(--ease-out); }
.mobile-toggle span { top: 19px; }
.mobile-toggle span::before, .mobile-toggle span::after { content: ""; left: 0; }
.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }
.mobile-toggle.open span { background: transparent; }
.mobile-toggle.open span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.open span::after { top: 0; transform: rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99; padding: 24px 32px 32px; border-bottom: 1px solid var(--border); background: rgba(247,247,247,.98); backdrop-filter: blur(20px); }
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; list-style: none; }
.mobile-menu a { display: block; padding: 13px 0; color: var(--ink-70); border-bottom: 1px solid var(--border-soft); font-size: 16px; font-weight: 500; }
.mobile-menu .mm-sub a { padding-left: 18px; color: var(--ink-55); font-size: 14px; }
.mobile-menu .btn-cta { width: 100%; margin-top: 16px; color: #fff; border-bottom: 0; }

.event-button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 29px; border: 0; border-radius: 100px; cursor: pointer; font-size: 15px; font-weight: 700; transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out); }
.event-button:hover { transform: translateY(-2px); }
.event-button:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid rgba(95,121,234,.3); outline-offset: 3px; }
.arrow-glyph { position: relative; width: 16px; height: 16px; display: inline-block; flex: 0 0 auto; }
.arrow-glyph::before, .arrow-glyph::after { content: ""; position: absolute; display: block; }
.arrow-right::before { left: 2px; top: 7px; width: 11px; height: 1.5px; background: currentColor; }
.arrow-right::after { right: 2px; top: 4px; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); }
.arrow-down::before { left: 7px; top: 2px; width: 1.5px; height: 11px; background: currentColor; }
.arrow-down::after { left: 4px; bottom: 2px; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.arrow-up::before { left: 2px; top: 7px; width: 12px; height: 1.5px; background: currentColor; transform: rotate(-45deg); transform-origin: center; }
.arrow-up::after { right: 1px; top: 1px; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; }
.button-primary { color: #fff; background: var(--periwinkle); box-shadow: 0 15px 35px rgba(95,121,234,.3); }
.button-secondary { color: var(--ink); background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 24px rgba(14,18,36,.07); }
.button-light { color: var(--ink); background: #fff; }
.section-eyebrow { margin-bottom: 18px; color: var(--periwinkle); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.section-eyebrow.light { color: var(--teal); }
h1, h2, h3 { color: var(--ink); font-weight: 700; }
h2 { margin: 0 0 20px; font-size: clamp(42px,4.4vw,62px); line-height: 1.02; letter-spacing: -.048em; }
h2 em { color: var(--periwinkle); font-style: normal; }

.event-hero { min-height: 820px; display: grid; grid-template-columns: .94fr 1.06fr; gap: 68px; align-items: center; padding: 150px 0 94px; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; color: var(--periwinkle); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: linear-gradient(90deg,var(--teal),var(--periwinkle)); }
h1 { max-width: 650px; font-size: clamp(56px,6vw,84px); line-height: .96; letter-spacing: -.055em; }
h1 em { color: var(--periwinkle); font-style: normal; }
.hero-kicker { max-width: 600px; margin: 28px 0 14px; font-size: 25px; line-height: 1.3; font-weight: 600; letter-spacing: -.025em; }
.hero-lead { max-width: 600px; color: var(--ink-55); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 42px; }
.hero-actions .event-button { min-height: 62px; padding: 0 34px; font-size: 17px; }
.event-meta { display: flex; align-items: center; gap: 24px; }
.event-meta > div:not(.meta-rule) { display: flex; flex-direction: column; gap: 4px; }
.event-meta small { color: var(--ink-55); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.event-meta strong { font-size: 15px; }
.meta-rule { width: 1px; height: 43px; background: var(--border); }
.hero-visual { min-width: 0; min-height: 560px; position: relative; isolation: isolate; }
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.glow-one { width: 390px; height: 390px; right: -45px; top: -5px; background: radial-gradient(circle,rgba(166,107,215,.26),rgba(95,121,234,.08) 48%,transparent 71%); }
.glow-two { width: 370px; height: 370px; left: -60px; bottom: -28px; background: radial-gradient(circle,rgba(27,198,192,.23),rgba(22,175,227,.07) 50%,transparent 72%); }
.dashboard-shell { position: absolute; z-index: 2; width: 94%; right: -18px; top: 86px; overflow: hidden; border: 1px solid rgba(14,18,36,.08); border-radius: 20px; background: #fff; box-shadow: 0 34px 85px rgba(25,35,84,.2); transform: perspective(1400px) rotateY(-5deg) rotateX(1deg); }
.dashboard-shell img { width: 100%; }
.window-bar { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 15px; border-bottom: 1px solid var(--border); color: var(--ink-55); font-size: 10px; }
.window-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d8dce8; }
.window-bar i:nth-child(2) { background: #bdc9fa; }
.window-bar i:nth-child(3) { background: #8de2df; }
.window-bar span { margin-left: 5px; }
.booth-badge { position: absolute; z-index: 4; right: -8px; top: 12px; min-width: 168px; display: flex; flex-direction: column; padding: 18px 20px; border: 1px solid rgba(95,121,234,.18); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 18px 45px rgba(14,18,36,.12); backdrop-filter: blur(14px); }
.booth-badge small { color: var(--periwinkle); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.booth-badge strong { margin-top: 5px; font-size: 23px; line-height: 1.1; }
.booth-badge span { margin-top: 3px; color: var(--ink-55); font-size: 13px; font-weight: 600; }
.float-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(14,18,36,.09); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: 0 18px 44px rgba(14,18,36,.13); backdrop-filter: blur(14px); }
.float-top { left: -20px; top: 52px; }
.float-bottom { left: 20px; bottom: 15px; }
.float-card div { display: flex; flex-direction: column; gap: 2px; }
.float-card small { color: var(--ink-55); font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.float-card strong { font-size: 12px; font-weight: 700; }
.float-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg,var(--periwinkle),#4d66d9); }
.float-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.status-dot { width: 12px; height: 12px; border: 3px solid rgba(27,198,192,.25); border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(27,198,192,.1); }

.fit-section { position: relative; overflow: hidden; padding: 125px 0 110px; background: #fff; }
.fit-section::before { content: ""; position: absolute; right: -180px; top: 20px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(95,121,234,.08),transparent 70%); }
.fit-header { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.fit-header h2 { max-width: 650px; }
.fit-header > p, .section-title > p { max-width: 560px; margin: 0 0 4px; color: var(--ink-55); font-size: 18px; line-height: 1.65; }
.selector-card { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: 24px; background: var(--bg); box-shadow: 0 28px 75px rgba(14,18,36,.09); }
.selector-top { display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 28px; padding: 30px 32px; background: linear-gradient(120deg,#eefafa,#f2f4ff); border-bottom: 1px solid rgba(95,121,234,.13); }
.selector-label, .priority-heading { display: flex; align-items: center; gap: 15px; }
.selector-top small, .priority-heading small { display: block; margin-bottom: 3px; color: var(--ink-55); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.selector-top strong, .priority-heading strong { font-size: 17px; }
.step-number { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; color: var(--periwinkle); background: rgba(95,121,234,.1); font-size: 12px; font-weight: 700; }
.firm-choices { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.firm-choices button { min-height: 78px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 10px 14px; border: 1px solid rgba(14,18,36,.12); border-radius: 14px; background: #fff; cursor: pointer; font-size: 13px; font-weight: 600; box-shadow: 0 5px 14px rgba(14,18,36,.04); transition: transform .2s,border .2s,background .2s; }
.firm-choices button:hover { transform: translateY(-2px); border-color: rgba(27,198,192,.65); }
.firm-choices button.active { color: #073b3a; border-color: var(--teal); background: rgba(27,198,192,.17); box-shadow: 0 8px 18px rgba(27,198,192,.14); }
.firm-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: var(--teal); background: rgba(27,198,192,.1); }
.firm-choices button.active .firm-icon { color: #fff; background: var(--teal); }
.firm-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.selector-body { padding: 34px 32px 38px; }
.priority-heading { margin-bottom: 26px; }
.priority-heading em { margin-left: auto; padding: 8px 13px; border-radius: 100px; color: var(--periwinkle); background: rgba(95,121,234,.09); font-size: 12px; font-style: normal; font-weight: 700; }
.priority-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.priority-grid button { min-height: 104px; display: flex; align-items: flex-start; gap: 13px; padding: 20px; text-align: left; border: 1px solid var(--border); border-radius: 15px; background: #fff; cursor: pointer; font-size: 15px; font-weight: 600; line-height: 1.42; transition: transform .2s,border .2s,background .2s; }
.priority-grid button:hover { transform: translateY(-2px); border-color: rgba(95,121,234,.42); }
.priority-grid button.selected { color: #3f55c0; border-color: rgba(95,121,234,.55); background: rgba(95,121,234,.08); }
.check { flex: 0 0 auto; width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; color: var(--ink-55); background: var(--bg); font-size: 13px; }
.priority-grid button.selected .check { color: #fff; background: var(--periwinkle); }
.reveal-button { min-height: 60px; margin: 30px auto 0; padding: 0 36px; font-size: 17px; }
.results-panel { max-height: 0; margin-top: 0; padding: 0 34px; overflow: hidden; opacity: 0; border: 0 solid rgba(95,121,234,.2); border-radius: 24px; background: linear-gradient(135deg,rgba(95,121,234,.06),rgba(27,198,192,.06)); transition: max-height .7s ease,opacity .45s ease,margin .45s ease,padding .45s ease,border-width .1s ease; }
.results-panel.visible { max-height: 1500px; margin-top: 28px; padding: 44px 34px 30px; opacity: 1; border-width: 1px; }
.results-intro { display: grid; grid-template-columns: 180px 1.1fr 1fr; gap: 30px; align-items: center; margin-bottom: 30px; }
.results-intro .section-eyebrow { margin: 0; }
.results-intro h3 { font-size: 28px; }
.results-intro p { color: var(--ink-55); font-size: 15px; line-height: 1.55; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 12px; }
.results-grid .capability-card { min-height: 245px; padding: 22px; }
.results-grid .capability-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.results-grid .capability-icon svg { width: 22px; height: 22px; }
.results-grid .capability-card h3 { margin-bottom: 10px; font-size: 17px; }
.results-grid .capability-card p { font-size: 13px; line-height: 1.5; }
.results-grid .card-arrow { width: 31px; height: 31px; right: 18px; top: 20px; }
.event-button:disabled { opacity: .42; cursor: not-allowed; transform: none; box-shadow: none; }
.result-cta { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 24px; padding: 22px 24px; border-radius: 15px; color: #fff; background: var(--ink); }
.result-cta > div { display: flex; flex-direction: column; gap: 4px; }
.result-cta strong { font-size: 15px; }
.result-cta span { color: rgba(255,255,255,.64); font-size: 13px; }

.booking-section { position: relative; overflow: hidden; padding: 120px 0; color: #fff; background: #141a31; }
.booking-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 0 0,rgba(95,121,234,.28),transparent 38%),radial-gradient(circle at 100% 55%,rgba(27,198,192,.15),transparent 36%); }
.booking-header, .booking-grid { position: relative; }
.booking-header { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; margin-bottom: 48px; }
.booking-header h2 { max-width: 790px; color: #fff; }
.booking-header h2 em { color: var(--teal); }
.booking-header p { max-width: 720px; color: rgba(255,255,255,.67); font-size: 18px; line-height: 1.65; }
.ed-intro { min-width: 245px; display: flex; align-items: center; gap: 14px; padding: 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.06); }
.ed-intro img { width: 54px; height: 54px; object-fit: cover; border-radius: 11px; }
.ed-intro div { display: flex; flex-direction: column; gap: 3px; }
.ed-intro strong { font-size: 15px; }
.ed-intro span { color: rgba(255,255,255,.55); font-size: 11px; }
.booking-grid { display: grid; grid-template-columns: 350px 1fr; gap: 26px; align-items: start; }
.booking-aside { padding: 28px; border: 1px solid rgba(255,255,255,.11); border-radius: 19px; background: rgba(255,255,255,.055); }
.booth-callout { display: flex; flex-direction: column; padding: 22px; margin-bottom: 24px; border-radius: 15px; color: var(--ink); background: linear-gradient(135deg,var(--teal),#7ce5df); }
.booth-callout small { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booth-callout strong { margin-top: 5px; font-size: 37px; line-height: 1; }
.booth-callout span { margin-top: 4px; font-size: 17px; font-weight: 700; }
.booking-facts { border-top: 1px solid rgba(255,255,255,.1); }
.booking-facts div { display: flex; flex-direction: column; gap: 5px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.booking-facts small { color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.booking-facts strong { font-size: 14px; line-height: 1.45; }
.privacy-note { margin-top: 22px; color: rgba(255,255,255,.4); font-size: 11px; line-height: 1.5; }
.calendar-card { overflow: hidden; min-height: 760px; border-radius: 20px; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.3); }
.calendar-top { height: 62px; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; color: var(--ink); border-bottom: 1px solid var(--border); }
.calendar-top > span { font-size: 15px; font-weight: 700; }
.calendar-open { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 100px; color: #fff; background: var(--periwinkle); font-size: 11px; font-weight: 700; transition: transform .2s,box-shadow .2s; }
.calendar-open:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(95,121,234,.25); }
.calendar-card iframe { display: block; width: 100%; height: 760px; border: 0; background: #fff; }

.platform-section { padding: 130px 0 145px; }
.section-title { margin-bottom: 56px; }
.section-title h2 { max-width: 800px; }
.section-title > p { max-width: 680px; margin-top: 24px; }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.capability-card { position: relative; min-height: 330px; display: block; overflow: hidden; padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 9px 26px rgba(14,18,36,.05); transition: transform .25s,box-shadow .25s,border .25s; }
.capability-card:hover { transform: translateY(-4px); border-color: rgba(95,121,234,.25); box-shadow: 0 22px 45px rgba(14,18,36,.09); }
.capability-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 31px; border-radius: 14px; color: #fff; background: linear-gradient(135deg,#6f88ef,#5269db); }
.capability-icon.teal, .capability-icon.mint { background: linear-gradient(135deg,#2bd0ca,#16aba6); }
.capability-icon.sky { background: linear-gradient(135deg,#34c5ee,#159fd4); }
.capability-icon.lilac { background: linear-gradient(135deg,#b98ae4,#8d63c2); }
.capability-icon.royal { background: linear-gradient(135deg,#6084f4,#3554c8); }
.capability-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.capability-card h3 { max-width: 310px; margin-bottom: 15px; font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.capability-card p { max-width: 350px; color: var(--ink-55); font-size: 16px; line-height: 1.65; }
.card-arrow { position: absolute; right: 28px; top: 30px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--periwinkle); font-size: 15px; transition: background .2s,color .2s; }
.capability-card:hover .card-arrow { color: #fff; background: var(--periwinkle); }

.workflow-section { padding: 145px 0; background: #fff; }
.workflow-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 105px; align-items: center; }
.workflow-visual { position: relative; }
.image-shell { overflow: hidden; padding: 13px; border: 1px solid var(--border); border-radius: 22px; background: var(--bg); box-shadow: 0 30px 75px rgba(14,18,36,.14); transform: perspective(1200px) rotateY(4deg); }
.image-shell img { width: 100%; border-radius: 13px; }
.workflow-badge { position: absolute; right: -24px; bottom: -28px; min-width: 235px; display: flex; flex-direction: column; gap: 4px; padding: 18px 20px; border-radius: 14px; color: #fff; background: var(--ink); box-shadow: 0 16px 34px rgba(14,18,36,.22); }
.workflow-badge small { color: var(--teal); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.workflow-badge strong { font-size: 14px; }
.workflow-copy h2 { max-width: 590px; }
.workflow-copy > p { margin: 22px 0 28px; color: var(--ink-55); font-size: 17px; line-height: 1.7; }
.workflow-list { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 34px; border-top: 1px solid var(--border); }
.workflow-list div { min-height: 60px; display: flex; align-items: center; gap: 12px; padding-right: 9px; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 600; }
.workflow-list div:nth-child(odd) { margin-right: 14px; }
.workflow-list span { color: var(--periwinkle); font: 11px "DM Mono",monospace; }

.faq-section { padding: 125px 0; }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 105px; }
.faq-grid > div:first-child h2 { font-size: 46px; }
.faq-grid > div:first-child p { color: var(--ink-55); font-size: 17px; line-height: 1.65; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item button { width: 100%; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; text-align: left; border: 0; background: transparent; cursor: pointer; font-size: 16px; font-weight: 600; }
.faq-item button b { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--periwinkle); background: rgba(95,121,234,.1); font-size: 17px; }
.faq-answer { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .35s,opacity .3s; }
.faq-item.open .faq-answer { max-height: 190px; opacity: 1; }
.faq-answer p { max-width: 640px; margin: -2px 50px 27px 0; color: var(--ink-55); font-size: 15px; line-height: 1.65; }

.footer { padding: 68px clamp(20px,4.5vw,72px) 28px; color: rgba(255,255,255,.66); background: #0e1224; }
.footer-grid { max-width: var(--max); display: grid; grid-template-columns: 2fr 1fr 1.25fr 1fr; gap: 48px; margin: 0 auto; }
.footer-brand img { width: 100px; height: 52px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 300px; margin-top: 18px; font-size: 13px; line-height: 1.7; }
.footer-col h5 { margin-bottom: 17px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin: 10px 0; }
.footer-col a { font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { max-width: var(--max); display: flex; align-items: center; justify-content: space-between; gap: 24px; margin: 48px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { font-size: 11px; }
.socials { display: flex; gap: 14px; }
.socials a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; transition: color .2s,border .2s; }
.socials a:hover { color: #fff; border-color: rgba(255,255,255,.4); }

@media (max-width: 1120px) {
  .nav-links { gap: 20px; }
  .nav-right .btn-ghost { display: none; }
}
@media (max-width: 980px) {
  .shell { width: min(100% - 40px,760px); }
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-mega { display: none; }
  .event-hero { grid-template-columns: 1fr; gap: 70px; padding-top: 135px; }
  .hero-visual { width: 95%; min-height: 535px; margin: auto; }
  .fit-header, .booking-header, .workflow-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .selector-top { grid-template-columns: 1fr; }
  .priority-grid { grid-template-columns: 1fr 1fr; }
  .results-intro { grid-template-columns: 1fr; gap: 12px; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-aside { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .privacy-note { grid-column: 1 / -1; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .workflow-visual { width: 92%; margin: 0 auto 38px; }
}
@media (max-width: 620px) {
  .shell { width: calc(100% - 34px); }
  .nav { height: 68px; padding: 0 18px; }
  .nav-logo { margin-left: 0; }
  .nav-logo img { width: 84px; height: 46px; }
  .nav-right .btn-primary { min-height: 40px; padding: 0 15px; font-size: 11px; }
  .mobile-menu { top: 68px; padding: 20px 22px 27px; max-height: calc(100vh - 68px); overflow-y: auto; }
  .event-hero { min-height: auto; padding: 118px 0 82px; }
  h1 { max-width: 100%; font-size: 46px; overflow-wrap: break-word; }
  h2 { max-width: 100%; font-size: 36px; line-height: 1.05; overflow-wrap: break-word; }
  .hero-kicker { font-size: 21px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .event-button { width: 100%; min-height: 58px; }
  .event-meta { align-items: flex-start; flex-direction: column; }
  .meta-rule { width: 100%; height: 1px; }
  .hero-visual { min-height: 390px; width: 100%; }
  .dashboard-shell { width: 100%; right: 0; top: 62px; border-radius: 15px; transform: none; }
  .glow-one { width: 280px; height: 280px; right: 0; }
  .glow-two { width: 260px; height: 260px; left: 0; bottom: -20px; }
  .booth-badge { right: -4px; top: 0; min-width: 145px; padding: 14px 16px; }
  .booth-badge strong { font-size: 20px; }
  .float-top { display: none; }
  .float-bottom { left: -4px; bottom: 2px; }
  .fit-section, .booking-section, .platform-section, .workflow-section, .faq-section { padding: 88px 0; }
  .fit-header { margin-bottom: 36px; }
  .selector-top, .selector-body { padding: 23px 18px; }
  .firm-choices { grid-template-columns: 1fr 1fr; }
  .firm-choices button { min-height: 86px; flex-direction: column; font-size: 12px; }
  .priority-grid, .results-grid, .capability-grid { grid-template-columns: 1fr; }
  .priority-grid button { min-height: 78px; }
  .priority-heading { align-items: flex-start; }
  .priority-heading em { display: none; }
  .results-panel.visible { max-height: none; padding: 30px 17px 18px; overflow: visible; }
  .results-grid .capability-card { min-height: 0; }
  .result-cta { width: 100%; align-items: flex-start; flex-direction: column; }
  .result-cta .event-button { width: 100%; }
  .booking-header, .booking-header > div, .booking-header h2, .booking-header p { min-width: 0; max-width: 100%; }
  .booking-header { gap: 30px; }
  .booking-aside { display: block; }
  .calendar-card { margin-left: -17px; margin-right: -17px; border-radius: 0; }
  .calendar-top { padding: 0 16px; }
  .calendar-card iframe { height: 700px; }
  .capability-card { min-height: 300px; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list div:nth-child(odd) { margin-right: 0; }
  .workflow-badge { right: -8px; }
  .faq-grid > div:first-child h2 { font-size: 38px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 380px) {
  .nav { padding: 0 12px; }
  .nav-logo img { width: 76px; }
  .nav-right { gap: 6px; }
  .nav-right .btn-primary { padding: 0 12px; font-size: 10px; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
}
