:root {
  --ink: #07101f;
  --ink-deep: #030914;
  --navy: #0c1a30;
  --navy-soft: #132641;
  --cream: #f4f0e7;
  --paper: #fffdf7;
  --white: #ffffff;
  --mist: #aeb8c7;
  --line: rgba(255, 255, 255, 0.14);
  --yellow: #ffc94a;
  --orange: #f47b36;
  --orange-deep: #db542d;
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Prata", Georgia, serif;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 30px 90px rgba(1, 6, 16, 0.22);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ink-deep);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
::selection { color: var(--ink); background: var(--yellow); }

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 0 0 10px 10px;
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section-light { background: var(--cream); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 201, 74, 0.17);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-3px); background: #ffd568; box-shadow: 0 16px 36px rgba(255, 201, 74, .25); }
.button:focus-visible, .menu-toggle:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible {
  outline: 3px solid rgba(255, 201, 74, .52);
  outline-offset: 4px;
}
.button-small { min-height: 42px; padding: 10px 18px; font-size: .75rem; }
.button-ghost { color: var(--white); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.32); box-shadow: none; }
.button-ghost:hover { color: var(--ink); background: var(--white); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 82px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  height: 68px;
  background: rgba(5, 12, 25, .9);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark { display: flex; align-items: flex-end; gap: 3px; width: 26px; height: 28px; }
.brand-mark i { display: block; width: 6px; border-radius: 3px 3px 1px 1px; background: var(--yellow); }
.brand-mark i:nth-child(1) { height: 14px; }
.brand-mark i:nth-child(2) { height: 26px; background: var(--orange); }
.brand-mark i:nth-child(3) { height: 19px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: .95rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--mist); font-size: .56rem; letter-spacing: .09em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 1.6vw, 26px); margin-left: auto; }
.main-nav a { position: relative; color: #dfe6f0; font-size: .71rem; font-weight: 700; white-space: nowrap; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 1px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { margin-left: 5px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 0 76px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 38%, rgba(33, 69, 110, .5), transparent 32%),
    linear-gradient(135deg, #040a15 0%, #0a172b 54%, #101e34 100%);
  isolation: isolate;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .33; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(to right, black, transparent 45%); }
.hero-grid { position: absolute; top: 0; right: -15%; width: 66%; height: 100%; opacity: .25; background: repeating-linear-gradient(115deg, transparent 0 92px, rgba(255,255,255,.08) 94px 95px); transform: skewX(-8deg); }
.hero-glow { position: absolute; z-index: -1; width: 360px; height: 360px; border-radius: 50%; filter: blur(85px); opacity: .25; }
.hero-glow-one { top: 5%; left: -180px; background: var(--orange); }
.hero-glow-two { right: 10%; bottom: 3%; background: #2f72c8; }
.hero-layout { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 45px; min-height: calc(100vh - 220px); }
.hero-layout > *, .section-heading > *, .outcomes-layout > *, .facebook-layout > *, .location-layout > *, .registration-layout > * { min-width: 0; }
.eyebrow, .section-number { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
.hero h1 { max-width: 750px; margin: 24px 0 24px; font-family: var(--font-display); font-size: clamp(3.3rem, 5.75vw, 6.45rem); font-weight: 400; line-height: .99; letter-spacing: -.055em; }
.hero h1 em, .section-heading h2 em, .outcomes-intro h2 em, .registration-copy h2 em, .facebook-intro h2 em { color: var(--yellow); font-style: italic; font-weight: 400; }
.hero-lead { max-width: 660px; margin: 0; color: #c7d2e1; font-size: clamp(1rem, 1.35vw, 1.22rem); line-height: 1.7; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 28px; }
.hero-meta span { padding: 8px 13px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #c8d2df; background: rgba(255,255,255,.05); backdrop-filter: blur(8px); font-size: .71rem; }
.hero-meta b { color: var(--white); }
.hero-meta .free-badge { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.hero-meta .free-badge b { color: var(--ink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-credit { display: flex; align-items: center; gap: 12px; max-width: 650px; margin: 30px 0 0; padding-top: 22px; color: #8f9caf; border-top: 1px solid rgba(255,255,255,.12); font-size: .7rem; line-height: 1.55; }
.hero-credit span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; color: var(--ink); background: var(--cream); border-radius: 50%; font-size: .66rem; font-weight: 800; }

.hero-visual { position: relative; min-height: 610px; transform: translateX(10px); }
.city-moon { position: absolute; top: 44px; right: 68px; display: grid; width: 295px; height: 295px; place-items: center; border: 1px solid rgba(255,201,74,.3); border-radius: 50%; background: radial-gradient(circle at 43% 40%, #ffe29a, var(--yellow) 24%, #e78335 62%, rgba(244,123,54,.08) 63%); box-shadow: 0 0 80px rgba(255,185,64,.22), inset -35px -30px 65px rgba(102,31,23,.52); }
.city-moon::after { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(6,15,29,.28); border-radius: inherit; }
.city-moon span { color: rgba(5,13,25,.7); font-size: .63rem; font-weight: 800; letter-spacing: .4em; transform: rotate(90deg); }
.visual-orbit { position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit-one { top: -25px; right: 10px; width: 440px; height: 440px; }
.orbit-two { top: 110px; right: -95px; width: 365px; height: 365px; border-style: dashed; }
.paper-card { position: absolute; z-index: 4; color: var(--ink); box-shadow: var(--shadow); }
.note-card { top: 78px; left: 4%; width: 224px; min-height: 266px; padding: 27px 25px; background: #f5ecd7; transform: rotate(-5deg); }
.note-card::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(7,16,31,.16); pointer-events: none; }
.paper-index { color: #806e54; font-size: .56rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.note-card p { margin: 35px 0 0; font-family: var(--font-display); font-size: 1.72rem; line-height: 1.25; }
.note-card strong { color: var(--orange-deep); font-weight: 400; }
.hand-line { display: block; width: 65px; height: 8px; margin: 22px 0 0; border-top: 2px solid var(--orange); border-radius: 50%; transform: rotate(-5deg); }
.quote-card { top: 370px; right: 10px; width: 220px; min-height: 176px; padding: 28px; color: var(--white); background: rgba(11,26,48,.87); border: 1px solid rgba(255,255,255,.18); border-radius: 4px; backdrop-filter: blur(16px); transform: rotate(4deg); }
.quote-mark { position: absolute; top: -13px; left: 20px; color: var(--yellow); font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.quote-card p { margin: 26px 0 10px; font-family: var(--font-display); font-size: 1.2rem; line-height: 1.4; }
.quote-card small { color: var(--mist); font-size: .6rem; letter-spacing: .13em; text-transform: uppercase; }
.mic-card { position: absolute; z-index: 5; bottom: 70px; left: 10%; display: flex; align-items: center; gap: 13px; width: 270px; padding: 16px 18px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.17); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.mic-icon { position: relative; display: grid; flex: 0 0 43px; width: 43px; height: 43px; place-items: center; background: var(--orange); border-radius: 50%; }
.mic-icon span { display: block; width: 12px; height: 19px; border: 2px solid var(--ink); border-radius: 8px; }
.mic-icon::after { content: ""; position: absolute; bottom: 9px; width: 19px; height: 10px; border: 2px solid var(--ink); border-top: 0; border-radius: 0 0 12px 12px; }
.mic-card div:nth-child(2) { display: flex; flex: 1; flex-direction: column; line-height: 1.25; }
.mic-card small { color: var(--mist); font-size: .6rem; text-transform: uppercase; }
.mic-card strong { font-size: .84rem; }
.sound-wave { width: 2px; height: 14px; background: var(--yellow); border-radius: 2px; animation: wave 1.2s ease-in-out infinite; }
.sound-wave:nth-of-type(2) { height: 25px; animation-delay: -.35s; }
.sound-wave:nth-of-type(3) { height: 18px; animation-delay: -.7s; }
@keyframes wave { 0%, 100% { transform: scaleY(.55); } 50% { transform: scaleY(1.15); } }
.cityscape { position: absolute; right: -6%; bottom: 0; left: 0; height: 174px; border-bottom: 1px solid rgba(255,255,255,.17); }
.building { position: absolute; bottom: 0; display: block; background: linear-gradient(180deg, #172b47, #07111f); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.building::after { content: ""; position: absolute; inset: 12px 7px; opacity: .8; background-image: radial-gradient(circle, var(--yellow) 0 1.2px, transparent 1.7px); background-size: 17px 18px; }
.b1 { left: 2%; width: 60px; height: 88px; }.b2 { left: 12%; width: 82px; height: 130px; }.b3 { left: 26%; width: 55px; height: 75px; }.b4 { left: 36%; width: 92px; height: 105px; }.b5 { left: 52%; width: 52px; height: 153px; }.b6 { left: 61%; width: 74px; height: 92px; }.b7 { left: 74%; width: 90px; height: 121px; }.b8 { left: 89%; width: 56px; height: 82px; }
.city-label { position: absolute; right: 20px; bottom: -30px; color: #5f6c7e; font-size: .56rem; letter-spacing: .2em; }
.hero-ticker { position: absolute; right: 0; bottom: 0; left: 0; height: 48px; overflow: hidden; color: var(--ink); background: var(--yellow); }
.hero-ticker div { display: flex; align-items: center; gap: 28px; width: max-content; height: 100%; animation: ticker 28s linear infinite; }
.hero-ticker span { font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-ticker i { color: var(--orange-deep); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-heading { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 70px; margin-bottom: 64px; }
.section-heading h2, .outcomes-intro h2, .facebook-intro h2, .registration-copy h2 { margin: 18px 0 0; font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5.3rem); font-weight: 400; line-height: 1.04; letter-spacing: -.05em; }
.section-heading h2 em, .outcomes-intro h2 em { color: var(--orange-deep); }
.section-heading > p, .heading-aside p { max-width: 430px; margin: 0; color: #566070; font-size: .9rem; }
.heading-aside { display: flex; align-items: flex-start; gap: 18px; }
.mini-rule { display: block; flex: 0 0 38px; height: 1px; margin-top: 12px; background: var(--orange); }
.about-editorial { display: grid; grid-template-columns: 1.3fr .7fr; gap: 65px; padding: 45px 0 70px; border-top: 1px solid rgba(7,16,31,.15); }
.lead-paragraph { margin: 0; font-size: clamp(1.15rem, 1.65vw, 1.5rem); line-height: 1.75; }
.lead-paragraph > span { float: left; margin: 6px 6px 0 0; color: var(--orange-deep); font-family: var(--font-display); font-size: 4.9rem; line-height: .7; }
.editorial-note { position: relative; padding: 30px; background: #e8dfcc; border-radius: 2px; box-shadow: 9px 10px 0 rgba(7,16,31,.08); transform: rotate(1.2deg); }
.editorial-note::after { content: ""; position: absolute; top: -12px; left: 42%; width: 70px; height: 25px; background: rgba(255,255,255,.5); transform: rotate(-3deg); }
.editorial-note span { color: var(--orange-deep); font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.editorial-note p { margin: 20px 0 0; font-family: var(--font-display); font-size: 1rem; line-height: 1.7; }
.event-details { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; margin-bottom: 28px; }
.event-story { padding: 42px 45px; color: var(--white); background: linear-gradient(135deg, #0b1a2f, #132a47); border-radius: var(--radius-md); box-shadow: 0 26px 65px rgba(7,16,31,.16); }
.detail-label { color: var(--yellow); font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.event-story h3 { max-width: 720px; margin: 18px 0 23px; font-family: var(--font-display); font-size: clamp(1.7rem, 2.7vw, 2.65rem); font-weight: 400; line-height: 1.3; }
.event-story p { max-width: 760px; margin: 0 0 15px; color: #b9c5d4; font-size: .8rem; line-height: 1.8; }
.detail-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 27px; }
.detail-tags span { padding: 7px 11px; color: #dfe7f1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: 999px; font-size: .57rem; font-weight: 700; }
.event-facts { display: grid; grid-template-rows: repeat(3, 1fr); border-top: 1px solid rgba(7,16,31,.16); border-left: 1px solid rgba(7,16,31,.16); }
.event-facts article { display: flex; padding: 25px 27px; justify-content: center; flex-direction: column; border-right: 1px solid rgba(7,16,31,.16); border-bottom: 1px solid rgba(7,16,31,.16); transition: background .25s ease; }
.event-facts article:hover { background: rgba(255,255,255,.42); }
.event-facts strong { color: var(--orange-deep); font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; }
.event-facts span { max-width: 240px; margin-top: 5px; color: #646c77; font-size: .65rem; line-height: 1.55; }
.event-principle { display: grid; grid-template-columns: .3fr 1.25fr .45fr; gap: 30px; align-items: center; margin-bottom: 55px; padding: 25px 30px; color: var(--ink); background: var(--yellow); border-radius: var(--radius-sm); }
.event-principle > span { font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-principle p { margin: 0; font-family: var(--font-display); font-size: 1rem; line-height: 1.6; }
.event-principle i { color: #795222; font-size: .58rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-align: right; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(7,16,31,.17); border-left: 1px solid rgba(7,16,31,.17); }
.feature-card { position: relative; min-height: 310px; padding: 30px; border-right: 1px solid rgba(7,16,31,.17); border-bottom: 1px solid rgba(7,16,31,.17); transition: color .35s ease, background .35s ease, transform .35s ease; }
.feature-card:hover { z-index: 2; color: var(--white); background: var(--navy); transform: translateY(-8px); box-shadow: var(--shadow); }
.feature-card > i { position: absolute; top: 26px; right: 25px; font-style: normal; opacity: .35; }
.feature-icon { display: grid; width: 44px; height: 44px; place-items: center; color: var(--orange-deep); border: 1px solid currentColor; border-radius: 50%; font-size: .62rem; font-weight: 800; }
.feature-card:hover .feature-icon { color: var(--yellow); }
.feature-card h3 { margin: 63px 0 16px; font-family: var(--font-display); font-size: 1.45rem; font-weight: 400; }
.feature-card p { margin: 0; color: #5a6370; font-size: .77rem; line-height: 1.75; transition: color .35s ease; }
.feature-card:hover p { color: #b9c4d2; }

.audience-section { color: var(--white); background: #07101f; overflow: hidden; }
.audience-section::before { content: "06"; position: absolute; right: -30px; bottom: -180px; color: rgba(255,255,255,.02); font-size: 33rem; font-weight: 800; line-height: 1; }
.light-heading h2, .light-heading > p { color: var(--white); }
.light-heading h2 em { color: var(--yellow); }
.light-heading > p { color: #9cabbc; }
.audience-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-list article { display: grid; grid-template-columns: 50px 1fr 35px; gap: 18px; min-height: 170px; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s ease; }
.audience-list article:hover { background: rgba(255,255,255,.05); }
.audience-list article > span { padding-top: 4px; color: var(--orange); font-size: .6rem; font-weight: 800; }
.audience-list h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.audience-list p { max-width: 470px; margin: 0; color: #8f9bad; font-size: .76rem; line-height: 1.75; }
.audience-list b { display: grid; align-self: center; width: 32px; height: 32px; place-items: center; color: var(--yellow); border: 1px solid rgba(255,201,74,.3); border-radius: 50%; font-weight: 400; }

.outcomes-section { background: #e8e2d7; }
.outcomes-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; align-items: start; }
.outcomes-intro { position: sticky; top: 110px; }
.outcomes-intro p { max-width: 430px; color: #59616a; font-size: .9rem; }
.notebook-visual { position: relative; width: 270px; min-height: 210px; margin-top: 45px; padding: 32px 36px; color: #192437; background: #f7f0df; box-shadow: 10px 14px 0 #b8ad98, 0 24px 55px rgba(7,16,31,.12); transform: rotate(-3deg); }
.notebook-visual::before { content: ""; position: absolute; top: 0; bottom: 0; left: 19px; width: 2px; background: repeating-linear-gradient(to bottom, var(--orange-deep) 0 7px, transparent 7px 14px); }
.notebook-visual > span { font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.notebook-visual p { margin: 23px 0 10px; color: var(--ink); font-family: var(--font-display); font-size: 1.85rem; line-height: 1.33; }
.notebook-visual i { display: block; width: 75%; height: 1px; margin: 9px 0; background: rgba(7,16,31,.14); }
.outcomes-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(7,16,31,.2); }
.outcomes-list li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; align-items: center; min-height: 124px; border-bottom: 1px solid rgba(7,16,31,.2); }
.outcomes-list span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--orange-deep); border: 1px solid rgba(219,84,45,.5); border-radius: 50%; font-size: .62rem; font-weight: 800; }
.outcomes-list p { margin: 0; font-family: var(--font-display); font-size: clamp(1.12rem, 1.7vw, 1.55rem); line-height: 1.45; }

.program-section { color: var(--white); background: linear-gradient(150deg, #0f2038, #050c18 65%); overflow: hidden; }
.program-noise { position: absolute; inset: 0; opacity: .18; background-image: repeating-radial-gradient(circle at 20% 50%, transparent 0 17px, rgba(255,255,255,.025) 18px 19px); }
.program-date { display: flex; align-items: center; gap: 18px; }
.program-date strong { color: var(--yellow); font-family: var(--font-display); font-size: 3.3rem; font-weight: 400; }
.program-date span { color: #91a0b3; font-size: .7rem; line-height: 1.55; text-transform: uppercase; }
.timeline { position: relative; max-width: 940px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; top: 5px; bottom: 5px; left: 132px; width: 1px; background: linear-gradient(var(--orange), rgba(255,255,255,.12)); }
.timeline-item { display: grid; grid-template-columns: 100px 25px 1fr; gap: 20px; min-height: 150px; }
.timeline-item time { padding-top: 5px; color: var(--yellow); font-size: .74rem; font-weight: 800; letter-spacing: .06em; }
.timeline-dot { position: relative; z-index: 2; width: 13px; height: 13px; margin: 6px auto 0; background: var(--ink); border: 3px solid var(--orange); border-radius: 50%; box-shadow: 0 0 0 6px rgba(244,123,54,.1); }
.timeline-item > div { max-width: 690px; padding: 0 0 45px 30px; }
.timeline-tag { color: #7f8da0; font-size: .57rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.timeline-item h3 { margin: 9px 0 12px; font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 400; }
.timeline-item p { margin: 0; color: #96a4b6; font-size: .77rem; line-height: 1.7; }
.featured-time > div { margin-bottom: 40px; padding: 27px 30px 30px; background: linear-gradient(100deg, rgba(255,201,74,.11), transparent); border: 1px solid rgba(255,201,74,.2); border-radius: 8px; }
.featured-time .timeline-dot { margin-top: 35px; background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 0 8px rgba(255,201,74,.12), 0 0 30px rgba(255,201,74,.25); }

.speakers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.speaker-card { position: relative; min-height: 540px; padding: 24px 28px 34px; background: #ebe5d9; border: 1px solid rgba(7,16,31,.13); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.speaker-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.speaker-card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 170px; height: 170px; border: 1px solid rgba(7,16,31,.08); border-radius: 50%; }
.speaker-top { display: flex; align-items: flex-start; justify-content: space-between; }
.speaker-avatar { position: relative; display: grid; width: 210px; height: 210px; place-items: center; border-radius: 50%; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.speaker-avatar::before { content: ""; position: absolute; inset: 30px; border: 1px dashed rgba(255,255,255,.35); border-radius: inherit; }
.speaker-avatar span { position: relative; z-index: 2; color: var(--white); font-family: var(--font-display); font-size: 3rem; }
.speaker-avatar i { position: absolute; right: -40px; bottom: -40px; width: 130px; height: 130px; background: var(--yellow); border-radius: 50%; opacity: .65; }
.avatar-iryna { background: linear-gradient(145deg, #d76537, #712b35); }
.avatar-olena { background: linear-gradient(145deg, #426485, #162e49); }
.avatar-maksym { background: linear-gradient(145deg, #b79a52, #4a4d32); }
.speaker-tag { padding: 7px 11px; color: var(--orange-deep); border: 1px solid rgba(219,84,45,.35); border-radius: 999px; font-size: .55rem; font-weight: 800; text-transform: uppercase; }
.speaker-index { display: block; margin-top: 27px; color: #8b877e; font-size: .58rem; font-weight: 800; letter-spacing: .15em; }
.speaker-card h3 { margin: 9px 0 10px; font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.speaker-card h4 { min-height: 48px; margin: 0 0 20px; color: var(--orange-deep); font-size: .68rem; line-height: 1.6; text-transform: uppercase; }
.speaker-card p { margin: 0; color: #59616c; font-size: .76rem; line-height: 1.75; }

.quote-section { color: var(--white); background: #081326; overflow: hidden; }
.quote-section::before, .quote-section::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.quote-section::before { top: -260px; left: -80px; }.quote-section::after { right: -160px; bottom: -290px; }
.quote-light { position: absolute; width: 230px; height: 230px; border-radius: 50%; filter: blur(85px); opacity: .23; }
.light-one { top: 20%; left: 18%; background: var(--orange); }.light-two { right: 12%; bottom: 15%; background: #256ac6; }
.big-quote { position: relative; max-width: 1040px; margin: 0 auto; padding: 70px; background: linear-gradient(130deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); box-shadow: 0 35px 100px rgba(0,0,0,.25); backdrop-filter: blur(14px); }
.giant-quote { position: absolute; top: 26px; left: 46px; color: var(--yellow); font-family: var(--font-display); font-size: 7rem; line-height: 1; opacity: .28; }
.big-quote p { position: relative; margin: 0; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.25rem); line-height: 1.3; letter-spacing: -.035em; }
.big-quote em { color: var(--yellow); font-style: italic; }
.big-quote footer { display: flex; align-items: center; gap: 14px; margin-top: 40px; color: #9aa8b9; font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; }
.big-quote footer i { width: 46px; height: 1px; background: var(--orange); }

.facebook-section { background: #dfe5ec; }
.facebook-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 85px; align-items: start; }
.facebook-intro { position: sticky; top: 110px; }
.facebook-intro h2 { color: var(--ink); }
.facebook-intro h2 em { color: #3568a9; }
.facebook-intro > p { max-width: 410px; margin: 24px 0 30px; color: #5d6878; font-size: .87rem; }
.copy-button { color: var(--white); background: #2865b1; border-color: #2865b1; box-shadow: 0 14px 30px rgba(40,101,177,.2); }
.copy-button:hover { background: #3677c7; }
.copy-icon { position: relative; display: inline-block; width: 14px; height: 16px; border: 1px solid currentColor; }
.copy-icon::after { content: ""; position: absolute; top: 3px; left: 3px; width: 100%; height: 100%; border: 1px solid currentColor; }
.facebook-intro .copy-hint { margin: 13px 0 0; color: #8390a0; font-size: .62rem; }
.social-post { max-width: 680px; margin-left: auto; background: var(--white); border-radius: 16px; box-shadow: 0 32px 80px rgba(25,46,74,.17); overflow: hidden; }
.post-header { display: flex; align-items: center; gap: 12px; padding: 20px 22px 13px; }
.post-avatar { display: grid; flex: 0 0 45px; width: 45px; height: 45px; place-items: center; color: var(--white); background: linear-gradient(145deg, #102d55, #f47b36); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.post-header div:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.post-header strong { font-size: .84rem; }.post-header span { color: #6e7784; font-size: .63rem; }.post-header span b { font-size: .55rem; }
.post-header button { padding: 7px; color: #637083; background: transparent; border: 0; font-weight: 800; cursor: pointer; }
.post-body { padding: 8px 23px 22px; color: #253247; font-size: .75rem; line-height: 1.65; white-space: pre-line; }
.post-art { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 270px; padding: 36px 45px; color: var(--white); background: radial-gradient(circle at 72% 30%, rgba(255,201,74,.27), transparent 20%), linear-gradient(135deg, #07101f, #163151); overflow: hidden; }
.post-art > span { position: relative; z-index: 2; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; }
.post-art > span b { color: var(--yellow); font-weight: 400; }
.post-art > i { position: relative; z-index: 2; align-self: flex-start; color: var(--yellow); font-size: .7rem; font-style: normal; font-weight: 800; letter-spacing: .12em; }
.post-city { position: absolute; right: 0; bottom: 0; left: 0; height: 90px; opacity: .7; background: linear-gradient(90deg, #091526 5%, transparent 5% 7%, #091526 7% 16%, transparent 16% 18%, #091526 18% 24%, transparent 24% 27%, #091526 27% 39%, transparent 39% 42%, #091526 42% 52%, transparent 52% 54%, #091526 54% 68%, transparent 68% 71%, #091526 71% 78%, transparent 78% 81%, #091526 81% 94%, transparent 94%); }
.post-footer { display: flex; justify-content: space-around; padding: 14px; color: #667181; border-top: 1px solid #e8ebef; font-size: .66rem; font-weight: 700; }

.location-section { color: var(--white); background: #07101f; }
.location-layout { display: grid; grid-template-columns: 1.4fr .6fr; gap: 28px; }
.map-card { position: relative; min-height: 530px; background: #0d1c31; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; box-shadow: var(--shadow); overflow: hidden; }
.map-grid { position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 52px 52px; }
.road { position: absolute; display: block; height: 3px; background: rgba(142,167,198,.23); border: 1px dashed rgba(255,255,255,.16); border-radius: 50%; }
.road-one { top: 25%; left: -6%; width: 112%; transform: rotate(-14deg); }.road-two { top: 62%; left: -9%; width: 120%; transform: rotate(22deg); }.road-three { top: 48%; left: 5%; width: 90%; transform: rotate(-40deg); }.road-four { top: 40%; right: -12%; width: 80%; transform: rotate(66deg); }
.map-light { position: absolute; width: 7px; height: 7px; background: var(--yellow); border-radius: 50%; box-shadow: 0 0 14px var(--yellow); }
.ml1 { top: 19%; left: 22%; }.ml2 { top: 71%; left: 16%; }.ml3 { top: 23%; right: 20%; }.ml4 { right: 26%; bottom: 17%; }.ml5 { top: 53%; left: 56%; }
.map-marker { position: absolute; top: 43%; left: 48%; width: 68px; height: 68px; transform: translate(-50%, -50%); }
.map-marker > span { position: absolute; inset: 0; border: 1px solid var(--yellow); border-radius: 50%; animation: mapPulse 2s ease-out infinite; }
.map-marker i { position: absolute; top: 19px; left: 24px; width: 20px; height: 27px; background: var(--orange); border-radius: 14px 14px 14px 3px; box-shadow: 0 0 30px rgba(244,123,54,.55); transform: rotate(-45deg); }
.map-marker i::after { content: ""; position: absolute; top: 7px; left: 7px; width: 6px; height: 6px; background: var(--cream); border-radius: 50%; }
@keyframes mapPulse { from { transform: scale(.6); opacity: 1; } to { transform: scale(1.55); opacity: 0; } }
.map-label { position: absolute; top: calc(43% + 50px); left: calc(48% - 110px); display: flex; width: 220px; padding: 12px 15px; flex-direction: column; text-align: center; background: rgba(4,10,20,.8); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; backdrop-filter: blur(10px); }
.map-label small { color: var(--yellow); font-size: .55rem; text-transform: uppercase; }.map-label strong { margin-top: 3px; font-size: .72rem; }
.map-coordinate { position: absolute; right: 25px; bottom: 20px; color: #66758a; font-size: .55rem; letter-spacing: .17em; }
.location-details { padding: 15px 10px 10px 38px; }
.location-details > div { padding: 19px 0; border-bottom: 1px solid var(--line); }
.location-details span { display: block; margin-bottom: 4px; color: #77879b; font-size: .57rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.location-details strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; }
.text-link { display: inline-flex; align-items: center; gap: 30px; margin-top: 32px; color: var(--yellow); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.text-link span { display: grid; width: 34px; height: 34px; margin: 0; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-size: .9rem; }

.registration-section { color: var(--ink); background: var(--cream); }
.registration-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: start; }
.registration-copy h2 em { color: var(--orange-deep); }
.registration-copy > p { max-width: 430px; color: #5e6671; font-size: .9rem; }
.event-stamp { display: flex; align-items: center; gap: 18px; margin: 36px 0; padding: 20px 0; border-top: 1px solid rgba(7,16,31,.17); border-bottom: 1px solid rgba(7,16,31,.17); }
.stamp-day { color: var(--orange-deep); font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.event-stamp div { display: flex; flex-direction: column; }
.event-stamp strong { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }.event-stamp small { margin-top: 5px; color: #777e87; font-size: .63rem; }
.countdown-wrap > p { margin: 0 0 10px; color: #777f89; font-size: .58rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(7,16,31,.15); border-left: 1px solid rgba(7,16,31,.15); }
.countdown-grid div { display: flex; min-height: 86px; padding: 14px 8px; align-items: center; justify-content: center; flex-direction: column; border-right: 1px solid rgba(7,16,31,.15); border-bottom: 1px solid rgba(7,16,31,.15); }
.countdown-grid strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; line-height: 1; }.countdown-grid span { margin-top: 7px; color: #858a91; font-size: .52rem; text-transform: uppercase; }
.countdown-expired { padding: 18px; color: var(--white); background: var(--navy); border-radius: 10px; font-family: var(--font-display); }
.registration-form { padding: 38px 42px 42px; background: var(--paper); border: 1px solid rgba(7,16,31,.11); border-radius: 20px; box-shadow: 0 35px 80px rgba(7,16,31,.12); }
.form-heading { display: flex; justify-content: space-between; margin-bottom: 30px; padding-bottom: 16px; border-bottom: 1px solid rgba(7,16,31,.12); }
.form-heading span { font-family: var(--font-display); font-size: 1.25rem; }.form-heading b { color: #9a9ca0; font-size: .57rem; letter-spacing: .12em; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { margin-bottom: 21px; }
.form-field label { display: block; margin-bottom: 8px; font-size: .64rem; font-weight: 800; letter-spacing: .05em; }
.form-field label span { color: var(--orange-deep); }
.form-field input, .form-field select, .form-field textarea { width: 100%; color: var(--ink); background: #f1ede4; border: 1px solid transparent; border-radius: 9px; outline: none; transition: border .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field input, .form-field select { height: 53px; padding: 0 15px; }
.form-field textarea { min-height: 125px; padding: 14px 15px; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #9b9da1; font-size: .72rem; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { background: var(--white); border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,123,54,.12); }
.select-wrap { position: relative; }.select-wrap::after { content: "⌄"; position: absolute; top: 13px; right: 16px; pointer-events: none; }.select-wrap select { appearance: none; cursor: pointer; }
.field-error { display: block; min-height: 16px; margin-top: 5px; color: #be3b30; font-size: .59rem; }
.form-field.has-error input { border-color: #be3b30; background: #fff4f2; }
.consent { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: #626a75; font-size: .63rem; cursor: pointer; }
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent > span { display: grid; flex: 0 0 18px; width: 18px; height: 18px; place-items: center; border: 1px solid #aaa69e; border-radius: 4px; }
.consent input:checked + span { background: var(--orange); border-color: var(--orange); }.consent input:checked + span::after { content: "✓"; color: var(--white); font-size: .7rem; }
.submit-button { width: 100%; border-radius: 10px; }
.form-message { display: none; margin-top: 18px; padding: 15px 16px; border-radius: 9px; font-size: .72rem; font-weight: 700; }
.form-message.success { display: block; color: #1b5941; background: #dff2e8; border: 1px solid #bde2ce; }
.form-message.error { display: block; color: #8f2c27; background: #fce5e2; border: 1px solid #f0c0ba; }

.site-footer { padding: 75px 0 25px; color: var(--white); background: #030914; }
.footer-top { display: grid; grid-template-columns: 1fr 1.35fr .65fr; gap: 60px; align-items: start; padding-bottom: 60px; }
.footer-brand p { margin: 24px 0 0; color: #6e7b8e; font-size: .68rem; }
.footer-phrase { display: flex; flex-direction: column; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3.75rem); line-height: 1.1; }
.footer-phrase span:nth-child(2) { color: var(--yellow); font-style: italic; }.footer-phrase span:nth-child(3) { color: #69788c; }
.footer-social { display: flex; flex-direction: column; gap: 11px; }
.footer-social > span { margin-bottom: 8px; color: #637186; font-size: .56rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-social a { padding-bottom: 9px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .7rem; transition: color .2s ease, padding .2s ease; }
.footer-social a:hover { padding-left: 5px; color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: #566276; border-top: 1px solid rgba(255,255,255,.1); font-size: .58rem; }
.footer-bottom a { color: #8e9aad; }

.toast { position: fixed; right: 24px; bottom: 24px; z-index: 200; display: flex; min-width: 290px; padding: 15px 18px; align-items: center; gap: 12px; color: var(--white); background: #12243c; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; box-shadow: 0 20px 55px rgba(0,0,0,.3); opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity .3s ease, transform .3s ease; }
.toast.show { opacity: 1; transform: translateY(0); }
.toast span { display: grid; width: 28px; height: 28px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 50%; font-weight: 800; }.toast p { margin: 0; font-size: .72rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.feature-grid .reveal:nth-child(2), .speakers-grid .reveal:nth-child(2) { transition-delay: .1s; }
.feature-grid .reveal:nth-child(3), .speakers-grid .reveal:nth-child(3) { transition-delay: .2s; }
.feature-grid .reveal:nth-child(4) { transition-delay: .3s; }

@media (max-width: 1120px) {
  .main-nav { gap: 13px; }.main-nav a { font-size: .64rem; }.header-cta { display: none; }
  .hero-layout { grid-template-columns: 1.05fr .95fr; }.hero-visual { transform: scale(.9) translateX(10px); transform-origin: center right; }
  .feature-card { padding: 24px; }.speaker-avatar { width: 175px; height: 175px; }
}

@media (max-width: 900px) {
  .section { padding: 90px 0; }
  .menu-toggle { display: flex; z-index: 102; width: 44px; height: 44px; margin-left: auto; padding: 11px 9px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 50%; cursor: pointer; }
  .menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .3s ease, opacity .3s ease; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-toggle.active span:nth-child(2) { opacity: 0; }.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  body.menu-open .site-header, body.menu-open .site-header.scrolled { background: #040a14; -webkit-backdrop-filter: none; backdrop-filter: none; }
  .main-nav { position: fixed; inset: 0; z-index: 101; display: flex; width: 100%; height: 100dvh; min-height: 100vh; padding: 105px 26px 35px; align-items: stretch; justify-content: flex-start; flex-direction: column; gap: 0; overflow-y: auto; overscroll-behavior: contain; background: #040a14; opacity: 0; visibility: hidden; transform: translateY(-15px); transition: opacity .3s ease, visibility .3s ease, transform .3s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }.main-nav a::after { display: none; }
  .hero { padding-top: 118px; }.hero-layout { grid-template-columns: minmax(0, 1fr); gap: 25px; }.hero h1 { max-width: 690px; font-size: clamp(3.4rem, 10vw, 5.4rem); }
  .hero-content { position: relative; z-index: 10; }.hero-visual { min-height: 500px; margin-top: -25px; transform: scale(.9); transform-origin: center; }
  .section-heading { grid-template-columns: minmax(0, 1fr); gap: 28px; }.section-heading h2 br { display: none; }
  .about-editorial { grid-template-columns: 1fr; gap: 38px; }.editorial-note { max-width: 550px; }
  .event-details { grid-template-columns: 1fr; }.event-facts { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .event-principle { grid-template-columns: .3fr 1fr; }.event-principle i { grid-column: 2; text-align: left; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }.feature-card { min-height: 270px; }
  .outcomes-layout, .facebook-layout, .registration-layout { grid-template-columns: 1fr; gap: 55px; }
  .outcomes-intro, .facebook-intro { position: static; }.notebook-visual { display: none; }
  .speakers-grid { grid-template-columns: 1fr; }.speaker-card { min-height: auto; padding: 28px; }.speaker-top { align-items: flex-start; }.speaker-avatar { width: 180px; height: 180px; }
  .location-layout { grid-template-columns: 1fr; }.location-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 28px; padding: 15px 0; }.location-details .text-link { align-self: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }.footer-phrase { order: 3; grid-column: 1 / -1; flex-direction: row; gap: 15px; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 76px 0; }
  .site-header, .site-header.scrolled { height: 68px; }.brand-copy strong { font-size: .84rem; }.brand-copy small { font-size: .49rem; }
  .hero { min-height: auto; padding: 105px 0 80px; }.hero h1 { font-size: clamp(2.7rem, 14.5vw, 4.2rem); line-height: 1.04; }.hero h1 br { display: none; }
  .hero-lead { font-size: .93rem; }.hero-content, .hero-actions { width: 100%; min-width: 0; }.hero-actions { flex-direction: column; align-items: stretch; }.hero-actions .button { width: 100%; padding-inline: 18px; gap: 10px; }
  .hero-credit { align-items: flex-start; }.hero-visual { min-height: 440px; margin: -10px -22px 0; transform: scale(.85); transform-origin: center top; }
  .city-moon { right: 20px; width: 240px; height: 240px; }.note-card { left: 0; width: 190px; min-height: 225px; }.note-card p { font-size: 1.42rem; }.quote-card { top: 290px; right: 0; width: 180px; }.mic-card { bottom: 35px; left: 4%; width: 240px; }
  .hero-ticker { height: 42px; }.hero-ticker div { gap: 20px; }
  .section-heading { margin-bottom: 44px; }.section-heading h2, .outcomes-intro h2, .facebook-intro h2, .registration-copy h2 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
  .about-editorial { padding: 32px 0 50px; }.lead-paragraph { font-size: 1.05rem; }.lead-paragraph > span { font-size: 4rem; }
  .event-story { padding: 30px 24px; }.event-story h3 { font-size: 1.65rem; }.event-facts { grid-template-columns: 1fr; }.event-facts article { min-height: 115px; }.event-principle { grid-template-columns: 1fr; gap: 12px; padding: 24px; }.event-principle i { grid-column: auto; }
  .feature-grid, .audience-list { grid-template-columns: 1fr; }.feature-card { min-height: 250px; }.audience-list article { grid-template-columns: 34px 1fr 28px; gap: 10px; padding: 24px 18px; }
  .outcomes-list li { grid-template-columns: 48px 1fr; gap: 10px; min-height: 110px; }.outcomes-list p { font-size: 1rem; }
  .program-date { align-items: flex-start; }.program-date strong { font-size: 2.8rem; }
  .timeline::before { left: 68px; }.timeline-item { grid-template-columns: 48px 20px 1fr; gap: 10px; }.timeline-item > div { padding-left: 12px; }.timeline-item h3 { font-size: 1.16rem; }.featured-time > div { padding: 20px; margin-left: 0; }
  .speaker-avatar { width: 145px; height: 145px; }.speaker-avatar span { font-size: 2.2rem; }.speaker-card h3 { font-size: 1.7rem; }
  .big-quote { padding: 52px 27px 35px; border-radius: 22px; }.giant-quote { top: 11px; left: 20px; }.big-quote p { font-size: 1.85rem; }.big-quote footer { align-items: flex-start; font-size: .58rem; }.big-quote footer i { flex: 0 0 30px; margin-top: 7px; }
  .facebook-layout { gap: 42px; }.copy-button { width: 100%; }.post-body { padding-inline: 18px; font-size: .7rem; }.post-art { min-height: 210px; padding: 27px 24px; }.post-footer { font-size: .55rem; }
  .map-card { min-height: 410px; }.map-label { left: calc(48% - 90px); width: 180px; }.location-details { grid-template-columns: 1fr; }.location-details strong { font-size: 1rem; }
  .registration-form { padding: 28px 20px; border-radius: 15px; }.form-row { grid-template-columns: 1fr; gap: 0; }.countdown-grid strong { font-size: 1.2rem; }.countdown-grid div { min-height: 76px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }.footer-phrase { grid-column: auto; order: 0; flex-direction: column; gap: 0; }.footer-bottom { gap: 20px; align-items: flex-start; flex-direction: column; }
  .toast { right: 16px; bottom: 16px; left: 16px; min-width: 0; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 28px); }
  .brand-copy small { display: none; }
  .hero h1 { font-size: clamp(2.45rem, 13.5vw, 3rem); overflow-wrap: anywhere; }
  .hero-visual { margin-right: -8px; margin-left: -8px; transform: scale(.79); }
  .section-heading h2, .outcomes-intro h2, .facebook-intro h2, .registration-copy h2 { font-size: clamp(2.2rem, 11.5vw, 2.8rem); overflow-wrap: anywhere; }
  .button { padding-inline: 16px; }
  .post-footer { gap: 6px; padding-inline: 8px; flex-wrap: wrap; }
}

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