:root {
  color-scheme: light;
  --ground: #fffaf6;
  --card: #ffffff;
  --ink: #1c1633;
  --ink2: #5c5773;
  --ink3: #9a95ad;
  --line: #f0e7e1;
  --coral: #ff4d6d;
  --orange: #ff8c42;
  --sun: #ffc93c;
  --mint: #1fc8a0;
  --sky: #3fb6ff;
  --violet: #7c5cff;
  --hot: linear-gradient(100deg, var(--coral), var(--orange) 50%, var(--sun));
  --cool: linear-gradient(120deg, var(--violet), var(--sky) 55%, var(--mint));
  --display: "Unbounded", "Arial Rounded MT Bold", "Segoe UI", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 26px;
  --shadow: 0 1px 2px rgba(28,22,51,.04), 0 12px 40px -12px rgba(28,22,51,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ground); color: var(--ink);
  font: 17px/1.6 var(--body); overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding-inline: clamp(18px, 4vw, 40px); }
.narrow { max-width: 820px; }

.aura { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aura i {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
  animation: drift 22s ease-in-out infinite alternate;
}
.aura i:nth-child(1) { width: 46vmax; height: 46vmax; background: #ffd0d9; top: -18vmax; left: -12vmax; }
.aura i:nth-child(2) { width: 38vmax; height: 38vmax; background: #ffe3b8; top: 8vmax; right: -14vmax; animation-duration: 26s; animation-delay: -6s; }
.aura i:nth-child(3) { width: 34vmax; height: 34vmax; background: #d6f5ec; bottom: -16vmax; left: 18vmax; animation-duration: 30s; animation-delay: -12s; }
.aura i:nth-child(4) { width: 28vmax; height: 28vmax; background: #e4ddff; bottom: 6vmax; right: 8vmax; animation-duration: 24s; animation-delay: -3s; opacity: .45; }
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4vmax, 3vmax) scale(1.08); }
  100% { transform: translate(-3vmax, 5vmax) scale(.96); }
}

header.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(255,250,246,.72); border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
header.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,250,246,.88); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.logo { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: .02em; display: flex; align-items: center; gap: 10px; }
.logo .mark { width: 34px; height: 34px; border-radius: 11px; background: var(--hot); display: grid; place-items: center; box-shadow: 0 6px 18px -6px rgba(255,77,109,.6); }
.logo .dot { background: var(--hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; font-weight: 600; font-size: .95rem; color: var(--ink2); }
.nav ul a { transition: color .2s; }
.nav ul a:hover { color: var(--coral); }
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ---------------------------------------------------- the hamburger --------
   ★ Josh, 2026-09-15: every menu collapses to a hamburger, logo upper left.

   ⚠️⚠️ WHAT WAS HERE BEFORE THREW THE MENU AWAY. This stylesheet's only
   narrow-screen rule for navigation was `.nav ul { display: none }` — so below
   960px "Find your club", "Club directory", "Why VYBE", "How it works" and
   "For clubs" did not move, shrink or fold. They CEASED TO EXIST. On a phone,
   which is most of the people a marketing site is for, the front door offered
   two buttons and no way into the rest of the site at all.

   Deliberately the same component as the portal's (vybe-ui.css) — same shape,
   same 960px, same <details> with no script — so the marketing site and the app
   are one product at every width. Repeated here rather than shared because
   these pages load only this file; that is the existing arrangement for the
   tokens above, for the same reason. */
.nav .nav-menu { display: none; position: relative; }
.nav .nav-menu > summary {
  list-style: none; cursor: pointer; user-select: none;
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--card); box-shadow: inset 0 0 0 1.5px var(--line);
}
.nav .nav-menu > summary::-webkit-details-marker { display: none; }
/* ⚠️ The buttons on this site lift on hover (.btn:hover translateY). A menu
   button that jumps under the thumb is not that kind of thing, so it opts out
   rather than inheriting a flourish meant for a call to action. */
.nav .nav-menu > summary:hover { box-shadow: inset 0 0 0 1.5px var(--coral); transform: none; }

.nav .bars { display: block; width: 19px; height: 14px; position: relative; }
.nav .bars i {
  position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--ink); transition: transform .2s ease, opacity .15s ease;
}
.nav .bars i:nth-child(1) { top: 0; }
.nav .bars i:nth-child(2) { top: 50%; margin-top: -1px; }
.nav .bars i:nth-child(3) { bottom: 0; }
.nav .nav-menu[open] .bars i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav .nav-menu[open] .bars i:nth-child(2) { opacity: 0; }
.nav .nav-menu[open] .bars i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Hangs from the right edge: anchored left it opens off the side of a phone. */
.nav .nm-panel {
  position: absolute; z-index: 60; top: calc(100% + 12px); right: 0;
  min-width: min(18rem, calc(100vw - 32px)); max-height: calc(100vh - 110px);
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 10px; box-shadow: 0 2px 4px rgba(28,22,51,.05), 0 24px 60px -20px rgba(28,22,51,.26);
}
.nav .nm-panel a {
  display: block; padding: 12px 14px; border-radius: 13px;
  font-weight: 600; font-size: 1rem; color: var(--ink);
}
.nav .nm-panel a:hover { background: var(--line-soft, #f7f1ec); color: var(--coral); }
/* The two calls to action keep their shape, but full width each — a phone menu
   is a column, and a button floating half-width in it reads as a broken one. */
.nav .nm-panel .nm-cta { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
/* ⚠️ `display` MUST BE RESTATED. The rule above turns every link in the panel
   into a block, and it is more specific than .btn's own `inline-flex` — so the
   two buttons became blocks, `justify-content` had no flex box to act on, and
   both labels sat against the left edge of a full-width pill. Measured, not
   guessed: computed display read `block`. */
.nav .nm-panel .nm-cta .btn { display: flex; width: 100%; justify-content: center; padding: 13px 20px; font-size: .95rem; }
.nav .nm-panel .nm-cta .btn:hover { transform: none; }
.nav .nm-panel .nm-cta .btn + .btn { margin-top: 8px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 0; cursor: pointer; font-family: var(--body);
  transition: transform .2s cubic-bezier(.3,1.6,.5,1), box-shadow .25s;
}
.btn:hover { transform: translateY(-2px) scale(1.02); }
.btn-hot { background: var(--hot); color: #fff; box-shadow: 0 10px 28px -10px rgba(255,77,109,.75); }
.btn-hot:hover { box-shadow: 0 16px 36px -12px rgba(255,77,109,.85); }
.btn-ghost { background: var(--card); color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line), var(--shadow); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }

.hero { position: relative; padding-block: clamp(40px, 7vw, 90px) clamp(60px, 8vw, 110px); }
.ribbons { position: absolute; inset: 0; z-index: -1; pointer-events: none; width: 100%; height: 100%; }
.ribbons path { fill: none; stroke-width: 2; stroke-linecap: round; stroke-dasharray: 12 18; animation: flow 18s linear infinite; }
.ribbons path:nth-child(2) { animation-duration: 24s; animation-direction: reverse; }
.ribbons path:nth-child(3) { animation-duration: 30s; }
@keyframes flow { to { stroke-dashoffset: -600; } }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px;
  background: var(--card); box-shadow: var(--shadow); font-weight: 600; font-size: .9rem; color: var(--ink2);
}
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); position: relative; flex: none; }
.pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid var(--coral); animation: ping 1.6s ease-out infinite; }
@keyframes ping { from { transform: scale(.5); opacity: 1; } to { transform: scale(1.6); opacity: 0; } }
h1 {
  font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -.02em;
  font-size: clamp(2.7rem, 6.6vw, 5.2rem); margin: 26px 0 22px;
}
.hot-text { background: var(--hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cool-text { background: var(--cool); -webkit-background-clip: text; background-clip: text; color: transparent; }
.squiggle { position: relative; display: inline-block; }
.squiggle svg { position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .3em; overflow: visible; }
.squiggle svg path { stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.4s .5s cubic-bezier(.6,0,.2,1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.lede { font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--ink2); max-width: 34rem; margin: 0 0 34px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

.stage { position: relative; }
.screen {
  position: relative; border-radius: 30px; background: var(--card); padding: 12px;
  box-shadow: 0 30px 80px -30px rgba(124,92,255,.35), 0 16px 40px -20px rgba(255,77,109,.35), var(--shadow);
  transform: rotate(1.5deg); animation: bob 7s ease-in-out infinite;
}
@keyframes bob { 50% { transform: rotate(-.5deg) translateY(-10px); } }
.video {
  position: relative; aspect-ratio: 4 / 4.3; border-radius: 22px; overflow: hidden;
  background:
    radial-gradient(60% 55% at 30% 30%, rgba(255,201,60,.95), transparent 70%),
    radial-gradient(55% 60% at 80% 35%, rgba(255,77,109,.9), transparent 70%),
    radial-gradient(70% 60% at 50% 100%, rgba(124,92,255,.85), transparent 70%),
    linear-gradient(160deg, #ffb199, #ff6f91);
  background-size: 160% 160%; animation: shimmer 12s ease-in-out infinite alternate;
}
@keyframes shimmer { from { background-position: 0% 0%; } to { background-position: 100% 100%; } }
.video .mover { position: absolute; inset: 0; display: grid; place-items: center; }
.video .mover svg { width: 58%; filter: drop-shadow(0 18px 30px rgba(28,22,51,.25)); }
.jack { transform-origin: 100px 120px; }
.jack .arm-l { transform-origin: 88px 74px; animation: armL 1.1s ease-in-out infinite; }
.jack .arm-r { transform-origin: 112px 74px; animation: armR 1.1s ease-in-out infinite; }
.jack .leg-l { transform-origin: 92px 128px; animation: legL 1.1s ease-in-out infinite; }
.jack .leg-r { transform-origin: 108px 128px; animation: legR 1.1s ease-in-out infinite; }
.jack .body { animation: hop 1.1s ease-in-out infinite; }
@keyframes armL { 0%,100% { transform: rotate(10deg); } 50% { transform: rotate(125deg); } }
@keyframes armR { 0%,100% { transform: rotate(-10deg); } 50% { transform: rotate(-125deg); } }
@keyframes legL { 0%,100% { transform: rotate(4deg); } 50% { transform: rotate(24deg); } }
@keyframes legR { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(-24deg); } }
@keyframes hop { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.tag {
  position: absolute; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .8rem;
  padding: 7px 12px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink);
}
.tag.live { top: 16px; left: 16px; background: var(--coral); color: #fff; letter-spacing: .08em; }
.tag.live .pulse { background: #fff; width: 8px; height: 8px; }
.tag.live .pulse::after { border-color: #fff; }
.tag.watch { top: 16px; right: 16px; }
.bar {
  position: absolute; left: 14px; right: 14px; bottom: 14px; border-radius: 18px; padding: 14px 16px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.bar b { font-family: var(--display); font-size: .98rem; font-weight: 700; display: block; }
.bar small { color: var(--ink2); font-size: .8rem; font-weight: 500; }
.eq { display: flex; align-items: flex-end; gap: 4px; height: 30px; flex: none; }
.eq span { width: 5px; border-radius: 3px; background: var(--hot); animation: eq 1s ease-in-out infinite; }
.eq span:nth-child(1) { animation-delay: -.2s; } .eq span:nth-child(2) { animation-delay: -.6s; }
.eq span:nth-child(3) { animation-delay: -.1s; } .eq span:nth-child(4) { animation-delay: -.8s; }
.eq span:nth-child(5) { animation-delay: -.4s; }
@keyframes eq { 0%,100% { height: 22%; } 50% { height: 100%; } }
.chip {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-radius: 18px; background: var(--card); box-shadow: var(--shadow); font-weight: 600; font-size: .88rem;
  animation: float 6s ease-in-out infinite; white-space: nowrap;
}
.chip .ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.chip small { display: block; color: var(--ink3); font-weight: 500; font-size: .75rem; }
.chip.c1 { left: -38px; top: 22%; }
.chip.c2 { right: -26px; bottom: 24%; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-12px); } }

.marquee { border-block: 1px solid var(--line); background: rgba(255,255,255,.6); overflow: hidden; padding-block: 20px; }
.marquee .track { display: flex; width: max-content; animation: slide 36s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 2rem); padding-inline: 26px; white-space: nowrap; color: var(--ink); display: flex; align-items: center; gap: 52px; }
.marquee span::after { content: "✦"; font-size: .7em; background: var(--hot); -webkit-background-clip: text; background-clip: text; color: transparent; }
.marquee span:nth-child(3n+2) { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
@keyframes slide { to { transform: translateX(-50%); } }

section { padding-block: clamp(70px, 10vw, 130px); }
.kicker { font-weight: 700; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin: 0 0 14px; }
h2 { font-family: var(--display); font-weight: 800; letter-spacing: -.02em; line-height: 1.08; font-size: clamp(2rem, 4.4vw, 3.3rem); margin: 0 0 18px; }
.sub { color: var(--ink2); font-size: 1.12rem; max-width: 36rem; margin: 0; }
.head { margin-bottom: clamp(36px, 5vw, 60px); }
.center { text-align: center; } .center .sub { margin-inline: auto; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
  position: relative; overflow: hidden; transition: transform .35s cubic-bezier(.3,1.4,.5,1), box-shadow .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 1px 2px rgba(28,22,51,.04), 0 26px 50px -18px rgba(28,22,51,.22); }
.card::before {
  content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; right: -70px; top: -70px;
  background: var(--tint); opacity: .35; filter: blur(30px); transition: opacity .35s;
}
.card:hover::before { opacity: .6; }
.card h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 700; margin: 20px 0 10px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink2); font-size: .98rem; }
.icon { width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: var(--tint); color: #fff; position: relative; }
.icon svg { width: 26px; height: 26px; }
.t-coral { --tint: var(--coral); } .t-orange { --tint: var(--orange); } .t-sun { --tint: #f5b40f; }
.t-mint { --tint: var(--mint); } .t-sky { --tint: var(--sky); } .t-violet { --tint: var(--violet); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.steps::before {
  content: ""; position: absolute; top: 46px; left: 12%; right: 12%; height: 3px; border-radius: 3px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 10px, transparent 10px 20px); opacity: .45;
}
.step { text-align: center; padding: 0 12px; position: relative; }
.num {
  width: 92px; height: 92px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.9rem; color: #fff; position: relative;
  box-shadow: 0 16px 34px -14px rgba(28,22,51,.4);
}
.step:nth-child(1) .num { background: var(--hot); }
.step:nth-child(2) .num { background: linear-gradient(135deg, var(--violet), var(--sky)); }
.step:nth-child(3) .num { background: linear-gradient(135deg, var(--sky), var(--mint)); }
.step h3 { font-family: var(--display); font-weight: 700; font-size: 1.2rem; margin: 0 0 10px; }
.step p { color: var(--ink2); margin: 0 auto; max-width: 20rem; }

.clubs {
  position: relative; border-radius: 40px; overflow: hidden; padding: clamp(32px, 6vw, 72px);
  background: linear-gradient(135deg, #fff1ec 0%, #fff7e6 45%, #eefbf6 100%);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center;
}
.clubs::after {
  content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -140px; top: -160px;
  background: radial-gradient(circle, rgba(124,92,255,.22), transparent 65%); pointer-events: none;
}
.ticks { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.ticks li::before {
  content: ""; flex: none; width: 26px; height: 26px; margin-top: 1px; border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat;
}
.panel { background: var(--card); border-radius: 26px; box-shadow: var(--shadow); padding: 22px; position: relative; z-index: 1; }
.panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.panel-head b { font-family: var(--display); font-size: 1rem; }
.panel-head small { color: var(--ink3); font-weight: 600; font-size: .78rem; }
.member { display: flex; align-items: center; gap: 12px; padding: 12px 4px; border-top: 1px solid var(--line); }
.av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: .85rem; flex: none; }
.member .who { flex: 1; min-width: 0; }
.member .who b { display: block; font-size: .95rem; }
.member .who small { color: var(--ink3); font-size: .78rem; }
.toggle { width: 46px; height: 26px; border-radius: 99px; background: #e7e2ec; position: relative; flex: none; cursor: pointer; border: 0; padding: 0; transition: background .25s; }
.toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.18); transition: transform .3s cubic-bezier(.3,1.5,.5,1); }
.toggle[aria-pressed="true"] { background: var(--mint); }
.toggle[aria-pressed="true"]::after { transform: translateX(20px); }

.finale { text-align: center; position: relative; }
.finale h2 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.finale .sub { margin: 0 auto 34px; }
.sparks { display: flex; justify-content: center; gap: 12px; margin-bottom: 26px; }
.sparks i { width: 12px; height: 12px; border-radius: 50%; animation: pop 1.8s ease-in-out infinite; }
.sparks i:nth-child(1) { background: var(--coral); } .sparks i:nth-child(2) { background: var(--orange); animation-delay: .15s; }
.sparks i:nth-child(3) { background: var(--sun); animation-delay: .3s; } .sparks i:nth-child(4) { background: var(--mint); animation-delay: .45s; }
.sparks i:nth-child(5) { background: var(--sky); animation-delay: .6s; } .sparks i:nth-child(6) { background: var(--violet); animation-delay: .75s; }
@keyframes pop { 0%,100% { transform: translateY(0) scale(1); } 40% { transform: translateY(-14px) scale(1.2); } }

footer { border-top: 1px solid var(--line); padding-block: 34px; color: var(--ink3); font-size: .9rem; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
footer .logo { font-size: 1.05rem; color: var(--ink); }
footer .logo .mark { width: 28px; height: 28px; border-radius: 9px; }
footer nav { display: flex; gap: 20px; font-weight: 600; color: var(--ink2); }
footer nav a:hover { color: var(--coral); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; } .d5 { transition-delay: .4s; }

.teaser {
  position: relative; border-radius: 40px; overflow: hidden; padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(135deg, #fff1ec 0%, #fff7e6 45%, #eefbf6 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.teaser h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.teaser p { margin: 0; color: var(--ink2); max-width: 34rem; }

form.apply { display: grid; gap: 20px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: .92rem; }
.field .hint { color: var(--ink3); font-weight: 500; font-size: .82rem; }
.field input, .field select, .field textarea {
  font: 500 1rem var(--body); color: var(--ink); background: var(--ground);
  border: 1.5px solid var(--line); border-radius: 16px; padding: 14px 16px; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,77,109,.14);
}
.field input.bad, .field select.bad, .field textarea.bad { border-color: var(--coral); background: #fff5f7; }
.err { color: #d6285a; font-weight: 600; font-size: .85rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-card { background: var(--card); border-radius: 32px; box-shadow: var(--shadow); padding: clamp(24px, 4vw, 44px); }
.alert {
  border-radius: 20px; padding: 18px 22px; font-weight: 600; margin-bottom: 26px;
  background: #fff5f7; color: #a3163f; border: 1.5px solid #ffd3de;
}
.thanks { text-align: center; padding-block: 20px; }
.thanks .big {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 24px; background: var(--mint);
  display: grid; place-items: center; box-shadow: 0 18px 40px -16px rgba(31,200,160,.8);
}
.thanks h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 16px; }
.thanks p { color: var(--ink2); font-size: 1.1rem; max-width: 34rem; margin: 0 auto 30px; }

@media (max-width: 960px) {
  .hero-grid, .clubs { grid-template-columns: 1fr; }
  .stage { max-width: 440px; margin: 10px auto 0; width: 100%; }
  .grid3 { grid-template-columns: 1fr 1fr; }
  /* ⚠️ The links are HIDDEN HERE AND KEPT IN THE HAMBURGER, which is the whole
     difference. This rule used to stand alone and simply deleted them. */
  .nav ul, .nav .nav-actions { display: none; }
  .nav .nav-menu { display: block; }
  .nav .wrap { height: 64px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid3, .steps, .row2 { grid-template-columns: 1fr; }
  .steps { gap: 44px; }
  .steps::before { display: none; }
  .chip.c1 { left: -6px; top: 16%; }
  .chip.c2 { right: -6px; bottom: 26%; }
  .chip { padding: 10px 12px; font-size: .8rem; }
  .clubs, .teaser { border-radius: 28px; }
  .btn { width: 100%; justify-content: center; }
  .nav .btn { width: auto; }
  .form-card { border-radius: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .squiggle svg path { stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}
