:root {
  --oxford: #002147;
  --oxford-2: #042b56;
  --oxford-3: #00162f;
  --ghost: #f8f8ff;
  --paper: #fbfaf7;
  --ink: #071936;
  --muted: #66738a;
  --muted-2: #94a1b6;
  --line: rgba(7, 25, 54, 0.12);
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(7, 25, 54, 0.08);
  --shadow-md: 0 22px 70px rgba(7, 25, 54, 0.13);
  --shadow-blue: 0 28px 90px rgba(0, 33, 71, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1420px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 16%, rgba(0, 33, 71, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 64%, rgba(0, 33, 71, 0.06), transparent 24rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 48%, #fffdf9 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(0, 33, 71, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 33, 71, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 76%, transparent);
}
img, picture, svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ghost); background: var(--oxford); }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 18px; top: 14px; z-index: 999; transform: translateY(-160%);
  padding: 12px 16px; border-radius: 999px; color: var(--ghost); background: var(--oxford);
  transition: transform 0.22s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 50; padding: 18px 0 10px; transition: padding .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease); }
.site-header.is-scrolled { padding-top: 10px; background: rgba(251, 250, 247, 0.78); box-shadow: 0 20px 60px rgba(7, 25, 54, 0.08); backdrop-filter: blur(18px); }
.header-shell {
  min-height: 76px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 26px;
  padding: 12px 18px; border: 1px solid rgba(255,255,255,.75); border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
  box-shadow: 0 18px 55px rgba(7,25,54,.08); backdrop-filter: blur(22px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand img { width: 50px; height: 54px; object-fit: contain; background: transparent; box-shadow: none; }
.brand span { display: grid; gap: 3px; min-width: 0; }
.brand strong { color: var(--ink); font-size: 18px; font-weight: 850; letter-spacing: -0.035em; white-space: nowrap; }
.brand small { color: var(--muted); font-size: 12px; line-height: 1.2; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 2.2vw, 38px); color: var(--ink); font-weight: 780; font-size: 14px; white-space: nowrap; }
.desktop-nav a { position: relative; display: inline-flex; align-items: center; gap: 5px; padding: 12px 0; color: rgba(7,25,54,.82); transition: color .2s var(--ease); }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 2px; border-radius: 999px; transform: scaleX(0); transform-origin: center; background: currentColor; transition: transform .22s var(--ease); }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--oxford); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { transform: scaleX(1); }
.desktop-nav svg, .header-cta svg, .btn svg, .text-link svg, .ig-fallback a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.header-cta { justify-self: end; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; color: var(--ghost); background: var(--oxford); box-shadow: 0 16px 40px rgba(0,33,71,.22); font-weight: 850; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.header-cta:hover { transform: translateY(-2px); background: var(--oxford-2); box-shadow: var(--shadow-blue); }
.mobile-toggle { display: none; justify-self: end; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(7,25,54,.12); border-radius: 999px; color: var(--ink); background: rgba(255,255,255,.72); }
.mobile-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.mobile-toggle .close-icon { display: none; }
.mobile-toggle[aria-expanded="true"] .menu-icon { display: none; }
.mobile-toggle[aria-expanded="true"] .close-icon { display: block; }
.mobile-nav { display: none; width: min(calc(100% - 40px), var(--container)); margin: 8px auto 0; padding: 12px; border: 1px solid rgba(255,255,255,.82); border-radius: 26px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); backdrop-filter: blur(20px); }
.mobile-nav a { display: block; padding: 15px 18px; border-radius: 18px; color: var(--ink); font-weight: 850; }
.mobile-nav a:hover { background: rgba(0,33,71,.07); }

.hero { position: relative; width: min(calc(100% - 28px), 1880px); margin: 4px auto 0; min-height: clamp(620px, 58vw, 780px); overflow: hidden; border-radius: 32px; color: var(--ghost); background: radial-gradient(circle at 26% 38%, rgba(66,139,216,.34), transparent 22rem), radial-gradient(circle at 78% 34%, rgba(33,90,160,.30), transparent 26rem), linear-gradient(135deg, var(--oxford-3) 0%, var(--oxford) 46%, #072c5d 100%); box-shadow: var(--shadow-blue); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .38; background-image: linear-gradient(rgba(248,248,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(248,248,255,.045) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle at 52% 44%, #000, transparent 70%); }
.hero::after { content: ""; position: absolute; inset: auto -10% -38px -10%; height: 94px; z-index: 3; background: var(--paper); transform: rotate(-1.1deg); transform-origin: center; }
.hero-grid { position: relative; z-index: 5; min-height: inherit; display: grid; align-items: center; padding: 118px clamp(8px,3vw,52px) 148px; }
.hero-grid-centered { grid-template-columns: 1fr; place-items: center; text-align: center; }
.hero-copy { max-width: 820px; }
.eyebrow, .section-kicker { margin: 0 0 14px; color: rgba(248,248,255,.76); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.hero h1 { margin: 0; max-width: 920px; font-size: clamp(54px, 6vw, 104px); line-height: .92; letter-spacing: -.07em; text-wrap: balance; }
.hero p:not(.eyebrow) { max-width: 760px; margin: 26px auto 0; color: rgba(248,248,255,.86); font-size: clamp(17px, 1.14vw, 22px); line-height: 1.68; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 58px; padding: 0 26px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn-light { color: var(--oxford); background: var(--ghost); box-shadow: 0 16px 45px rgba(0,0,0,.17); }
.btn-light:hover { box-shadow: 0 26px 66px rgba(0,0,0,.22); }
.btn-outline { color: var(--ghost); background: rgba(255,255,255,.08); border-color: rgba(248,248,255,.56); backdrop-filter: blur(14px); }
.btn-outline:hover { background: rgba(255,255,255,.16); border-color: rgba(248,248,255,.86); }
.hero-pattern { position: absolute; z-index: 2; opacity: .92; pointer-events: none; }
.hero-pattern svg { width: 100%; height: 100%; fill: none; overflow: visible; }
.hero-pattern-left { left: -44px; top: 122px; width: min(42vw, 680px); height: 560px; }
.hero-pattern-right { right: -44px; top: 100px; width: min(42vw, 680px); height: 560px; }
.decorative-swoosh .swoosh-group { transform-origin: center; }
.decorative-swoosh .swoosh-path {
  fill: none;
  stroke: rgba(248,248,255,.74);
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(248,248,255,.08));
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
}
.decorative-swoosh .swoosh-primary { stroke-width: 2.25; animation: draw-swoosh 2.5s var(--ease) forwards; }
.decorative-swoosh .swoosh-secondary { stroke-width: 2; opacity: .82; animation: draw-swoosh 2.5s var(--ease) .32s forwards; }
.hero-pattern-left .swoosh-group { animation: hero-swoosh-float-left 9s ease-in-out 2.7s infinite; }
.hero-pattern-right .swoosh-group { animation: hero-swoosh-float-right 10s ease-in-out 2.7s infinite; }

.value-strip { position: relative; z-index: 8; margin-top: -60px; padding-bottom: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 226px; padding: 26px 26px 24px; border: 1px solid rgba(7,25,54,.10); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.90), rgba(255,255,255,.68)), radial-gradient(circle at 20% 18%, rgba(0,33,71,.08), transparent 14rem); box-shadow: var(--shadow-sm); backdrop-filter: blur(20px); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(0,33,71,.18); box-shadow: var(--shadow-md); }
.icon-badge { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 999px; color: var(--oxford); background: rgba(0,33,71,.07); }
.icon-badge svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h2 { margin: 22px 0 9px; font-size: 24px; line-height: 1.1; letter-spacing: -.04em; }
.feature-card p { margin: 0; max-width: 310px; color: var(--muted); font-size: 15px; line-height: 1.62; }
.feature-card > a { position: absolute; right: 20px; bottom: 20px; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; color: var(--oxford); transition: background .2s var(--ease), transform .2s var(--ease); }
.feature-card > a:hover { transform: translate(2px,-2px); background: rgba(0,33,71,.07); }
.feature-card > a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

.section { padding: 74px 0 0; }
.split-layout { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(340px,.74fr); gap: 36px; align-items: stretch; }
.section-kicker { color: var(--oxford); margin-bottom: 12px; }
.section-kicker.light { color: rgba(248,248,255,.75); }
.section-copy, .stats-panel, .panel, .application-card, .final-cta { border: 1px solid rgba(7,25,54,.10); background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); backdrop-filter: blur(20px); }
.section-copy { border-radius: var(--radius-lg); padding: clamp(28px,4vw,54px); }
.section-copy h2, .application-card h2, .panel h2 { margin: 0; color: var(--ink); font-size: clamp(32px,3vw,56px); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
.section-copy p:not(.section-kicker), .application-card p { margin: 22px 0 0; color: var(--muted); font-size: 17px; line-height: 1.75; }
.stats-panel { display: grid; grid-template-columns: 1fr; gap: 14px; border-radius: var(--radius-lg); padding: 18px; }
.stats-panel div { display: grid; gap: 8px; align-content: center; min-height: 154px; padding: 28px; border-radius: 20px; color: var(--ghost); background: radial-gradient(circle at 84% 10%, rgba(248,248,255,.18), transparent 12rem), linear-gradient(135deg, var(--oxford), #063367); }
.stats-panel strong { font-size: clamp(44px,4.6vw,66px); line-height: 1; letter-spacing: -.06em; }
.stats-panel span { color: rgba(248,248,255,.78); font-weight: 780; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(360px,.9fr); gap: 28px; align-items: stretch; }
.panel { border-radius: var(--radius-lg); padding: clamp(20px,2.4vw,30px); }
.panel-header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 20px; }
.panel h2 { font-size: clamp(26px,2.1vw,36px); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(7,25,54,.72); font-size: 14px; font-weight: 850; white-space: nowrap; transition: color .2s var(--ease), transform .2s var(--ease); }
.text-link:hover { color: var(--oxford); transform: translateX(2px); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-card { overflow: hidden; border: 1px solid rgba(7,25,54,.09); border-radius: 18px; background: rgba(255,255,255,.78); transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease); }
.event-card:hover { transform: translateY(-5px); border-color: rgba(0,33,71,.17); box-shadow: 0 18px 45px rgba(7,25,54,.11); }
.event-card figure { position: relative; margin: 0; aspect-ratio: 1.72; overflow: hidden; background: rgba(0,33,71,.07); }
.event-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .4s var(--ease); }
.event-card:hover img { transform: scale(1.07); }
.date-badge { position: absolute; top: 14px; left: 14px; width: 58px; min-height: 76px; display: grid; place-items: center; padding: 8px 6px; border: 1px solid rgba(248,248,255,.26); border-radius: 14px; color: var(--ghost); background: rgba(0,33,71,.86); box-shadow: 0 16px 35px rgba(0,0,0,.18); backdrop-filter: blur(12px); text-align: center; }
.date-badge strong { font-size: 28px; line-height: .9; letter-spacing: -.05em; }
.date-badge small { margin-top: 4px; color: rgba(248,248,255,.80); font-size: 12px; line-height: 1.12; font-weight: 800; }
.event-body { padding: 16px 18px 20px; }
.event-body span { display: inline-block; margin-bottom: 8px; color: var(--muted); font-size: 12px; font-weight: 800; }
.event-body h3 { margin: 0 0 16px; font-size: 18px; line-height: 1.22; letter-spacing: -.035em; }
.event-body p { display: inline-flex; align-items: center; gap: 7px; margin: 0 12px 0 0; color: var(--muted); font-size: 12.5px; font-weight: 700; }
.event-body svg, .footer-grid a svg { width: 15px; height: 15px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.instagram-panel { min-width: 0; }
.panel-header.compact { align-items: center; margin-bottom: 17px; }
.instagram-widget { position: relative; overflow: hidden; min-height: 450px; border: 1px solid rgba(7,25,54,.10); border-radius: 22px; background: radial-gradient(circle at 30% 8%, rgba(0,33,71,.08), transparent 15rem), linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.46)); box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.ig-toolbar { position: absolute; z-index: 3; top: 14px; left: 14px; right: 14px; display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 14px; border-radius: 14px; color: var(--ghost); background: rgba(0,33,71,.92); box-shadow: 0 14px 34px rgba(0,33,71,.18); backdrop-filter: blur(14px); font-size: 13px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff3b58; box-shadow: 0 0 0 0 rgba(255,59,88,.55); animation: pulse 1.7s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,59,88,0); } 100% { box-shadow: 0 0 0 0 rgba(255,59,88,0); } }
.instagram-widget iframe { position: absolute; inset: 70px 0 0; width: 100%; height: calc(100% - 70px); border: 0; background: transparent; z-index: 2; }
.ig-fallback { position: absolute; inset: 70px 0 0; z-index: 1; display: grid; place-items: center; align-content: center; gap: 12px; padding: 24px; text-align: center; color: var(--ink); }
.ig-fallback > svg { width: 48px; height: 48px; fill: none; stroke: var(--oxford); stroke-width: 1.8; }
.ig-fallback strong { font-size: 24px; letter-spacing: -.04em; }
.ig-fallback span { max-width: 360px; color: var(--muted); line-height: 1.55; }
.ig-fallback a { display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; min-height: 44px; padding: 0 16px; border-radius: 999px; color: var(--ghost); background: var(--oxford); font-weight: 850; }

.application-card { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,.92fr) minmax(340px,.7fr); gap: 40px; align-items: center; padding: clamp(30px,5vw,64px); border-color: rgba(248,248,255,.18); border-radius: 28px; color: var(--ghost); background: radial-gradient(circle at 13% 20%, rgba(248,248,255,.14), transparent 16rem), radial-gradient(circle at 82% 70%, rgba(64,121,195,.32), transparent 20rem), linear-gradient(135deg, var(--oxford), #001831 100%); box-shadow: var(--shadow-blue); }
.application-card::after { content: ""; position: absolute; right: -140px; top: -160px; width: 420px; height: 420px; border: 1.5px solid rgba(248,248,255,.32); border-radius: 50%; pointer-events: none; }
.application-card h2 { color: var(--ghost); }
.application-card p { color: rgba(248,248,255,.77); }
.join-form { position: relative; z-index: 2; display: grid; gap: 14px; padding: 18px; border: 1px solid rgba(248,248,255,.18); border-radius: 24px; background: rgba(255,255,255,.08); box-shadow: 0 18px 45px rgba(0,0,0,.12); backdrop-filter: blur(20px); }
.join-form label { display: grid; gap: 8px; color: rgba(248,248,255,.86); font-size: 13px; font-weight: 850; }
.join-form input, .join-form select { width: 100%; min-height: 52px; padding: 0 16px; border: 1px solid rgba(248,248,255,.20); border-radius: 16px; outline: none; color: var(--ghost); background: rgba(255,255,255,.10); transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease); }
.join-form select option { color: var(--ink); }
.join-form input::placeholder { color: rgba(248,248,255,.52); }
.join-form input:focus, .join-form select:focus { border-color: rgba(248,248,255,.72); background: rgba(255,255,255,.14); box-shadow: 0 0 0 4px rgba(248,248,255,.10); }
.form-submit { width: 100%; margin-top: 4px; border: 0; }
.form-note { min-height: 38px; margin: 0 !important; font-size: 12px !important; line-height: 1.45 !important; }
.form-note.success { color: #dfffe7; }

.final-cta { position: relative; overflow: hidden; display: grid; place-items: center; gap: 14px; min-height: 108px; margin-top: 36px; border-color: rgba(248,248,255,.14); border-radius: 18px; color: var(--ghost); background: radial-gradient(circle at 20% 20%, rgba(248,248,255,.10), transparent 14rem), linear-gradient(135deg, var(--oxford-3), var(--oxford-2)); box-shadow: var(--shadow-blue); }
.final-cta p { position: relative; z-index: 2; margin: 0; text-align: center; font-size: clamp(22px,2vw,31px); line-height: 1.2; letter-spacing: -.04em; }
.social-row, .footer-socials { display: flex; align-items: center; justify-content: center; gap: 13px; }
.social-row a, .footer-socials a { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(248,248,255,.24); border-radius: 10px; color: var(--ghost); background: rgba(248,248,255,.06); transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease); }
.social-row a:hover, .footer-socials a:hover { transform: translateY(-3px); border-color: rgba(248,248,255,.62); background: rgba(248,248,255,.14); }
.social-row svg, .footer-socials svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.cta-line { position: absolute; top: 0; bottom: 0; width: 32%; opacity: .85; pointer-events: none; }
.cta-line-left { left: 0; }
.cta-line-right { right: 0; }
.cta-swoosh-svg { width: 100%; height: 100%; overflow: visible; }
.cta-swoosh {
  fill: none;
  stroke: rgba(248,248,255,.70);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: draw-swoosh 2.8s var(--ease) .55s forwards;
}
.cta-line-left .cta-swoosh-svg { animation: cta-swoosh-left 8s ease-in-out 3s infinite; }
.cta-line-right .cta-swoosh-svg { animation: cta-swoosh-right 8s ease-in-out 3s infinite; }
.site-footer { position: relative; overflow: hidden; margin-top: 28px; padding: 46px 0 26px; color: var(--ghost); background: radial-gradient(circle at 15% 15%, rgba(248,248,255,.09), transparent 16rem), radial-gradient(circle at 86% 36%, rgba(64,121,195,.22), transparent 18rem), linear-gradient(135deg, var(--oxford-3), var(--oxford)); }
.site-footer::before, .site-footer::after { content: ""; position: absolute; border: 1.5px solid rgba(248,248,255,.35); border-radius: 50%; pointer-events: none; }
.site-footer::before { width: 260px; height: 260px; left: -120px; top: -114px; }
.site-footer::after { width: 330px; height: 330px; right: -150px; bottom: -188px; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px,1.2fr) repeat(4,minmax(140px,.6fr)); gap: 34px; }
.footer-grid .brand strong { color: var(--ghost); }
.footer-grid .brand small, .footer-grid a { color: rgba(248,248,255,.70); }
.footer-grid h3 { margin: 0 0 14px; color: var(--ghost); font-size: 15px; }
.footer-grid a { display: flex; gap: 10px; align-items: flex-start; width: fit-content; margin-top: 10px; font-size: 14px; line-height: 1.45; transition: color .2s var(--ease), transform .2s var(--ease); }
.footer-grid a:hover { color: var(--ghost); transform: translateX(2px); }
.footer-socials { justify-content: flex-start; gap: 10px; }
.footer-socials a { margin-top: 0; }
.footer-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(248,248,255,.14); color: rgba(248,248,255,.62); font-size: 13px; }
.footer-bottom a { color: var(--ghost); font-weight: 800; }

@keyframes draw-swoosh {
  from { stroke-dashoffset: 1800; opacity: .02; }
  to { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes hero-swoosh-float-left {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-6px, -10px, 0); }
}
@keyframes hero-swoosh-float-right {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(6px, -12px, 0); }
}
@keyframes cta-swoosh-left {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-6px, 4px, 0); }
}
@keyframes cta-swoosh-right {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(6px, 4px, 0); }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1320px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1220px) {
  .header-shell { grid-template-columns: 1fr auto auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-toggle { display: grid; }
  .mobile-nav.is-open { display: block; }
  .dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 920px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { padding-top: 10px; }
  .header-shell { border-radius: 26px; }
  .brand small { display: none; }
  .hero { min-height: auto; }
  .hero-grid { padding: 80px 20px 112px; text-align: center; }
  .hero h1 { font-size: clamp(44px,10.8vw,72px); }
  .hero-pattern-left, .hero-pattern-right { opacity: .48; width: 78vw; height: 420px; }
  .hero-pattern-left { left: -30vw; top: 148px; }
  .hero-pattern-right { right: -30vw; top: 118px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .application-card { grid-template-columns: 1fr; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: 1fr; }
  .event-card { display: grid; grid-template-columns: .85fr 1fr; }
  .event-card figure { height: 100%; aspect-ratio: auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .header-shell { min-height: 66px; padding: 10px 12px; }
  .brand img { width: 42px; height: 46px; }
  .brand strong { font-size: 16px; }
  .hero { width: min(calc(100% - 18px), 1880px); border-radius: 24px; }
  .hero-grid { padding-top: 54px; }
  .hero-actions .btn { width: 100%; }
  .value-strip { margin-top: -42px; }
  .feature-grid { width: min(calc(100% - 28px), 1350px); grid-template-columns: 1fr; }
  .section { padding-top: 54px; }
  .section-copy, .panel, .application-card { border-radius: 22px; }
  .stats-panel { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; }
  .event-card figure { aspect-ratio: 1.65; }
  .panel-header { align-items: flex-start; flex-direction: column; }
  .instagram-widget { min-height: 480px; }
  .final-cta { padding: 22px 18px; }
  .cta-line { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
