  :root {
    --chalk: #F5F0E8;
    --chalk-dark: #E8E0D0;
    --rock: #1A1614;
    --granite: #2C2825;
    --sandstone: #C4834A;
    --lichen: #5A7A4E;
    --sky: #4A7FA5;
    --rope: #E8A32C;
    --hold-red: #C24B3A;
    --hold-blue: #3A6EC2;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--rock);
    color: var(--chalk);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: default;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(26,22,20,0.95), transparent);
  }
.nav-burger { display: none; }

  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 36px;
    width: auto;
    display: block;
  }

  .logo span { color: var(--rope); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
  }

  nav a {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--chalk-dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--rope); }

  .nav-cta {
    background: var(--sandstone);
    color: var(--rock) !important;
    padding: 0.5rem 1.2rem;
    font-weight: 700 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--rope) !important; color: var(--rock) !important; }

  /* HERO */
  .hero {
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 3rem 8rem;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(74,127,165,0.12), transparent),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(196,131,74,0.08), transparent),
      linear-gradient(160deg, #1A1614 0%, #0F0D0C 100%);
  }

  /* Rope line SVG decoration */
  .rope-line {
    position: absolute;
    top: 0;
    right: 10%;
    width: 2px;
    height: 100%;
    background: repeating-linear-gradient(
      to bottom,
      var(--rope) 0,
      var(--rope) 6px,
      transparent 6px,
      transparent 14px,
      var(--sandstone) 14px,
      var(--sandstone) 20px,
      transparent 20px,
      transparent 28px
    );
    opacity: 0.3;
  }

  .carabiner {
    position: absolute;
    top: 12vh;
    right: calc(10% - 14px);
    width: 30px;
    height: 50px;
    border: 3px solid var(--rope);
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    opacity: 0.5;
    animation: sway 4s ease-in-out infinite;
  }

  @keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
  }

  .hero-content { position: relative; max-width: 700px; }

  .hero-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rope);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--rope);
  }

  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
  }

  h1 em {
    font-style: normal;
    color: var(--sandstone);
    display: block;
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: #B5ADA5;
    max-width: 480px;
    margin-bottom: 3rem;
  }

  .hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--sandstone);
    color: var(--rock);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--rope); transform: translateY(-2px); }

  .btn-ghost {
    border: 1px solid rgba(245,240,232,0.2);
    color: var(--chalk);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    background: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--chalk); background: rgba(245,240,232,0.05); }

  .hero-stats {
    position: absolute;
    right: 3rem;
    bottom: 8rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: right;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--chalk);
    line-height: 1;
    display: block;
  }

  .stat-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7A736B;
  }

  /* HOW IT WORKS */
  .section {
    padding: 8rem 3rem;
    position: relative;
  }

  .section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rope);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    margin-bottom: 5rem;
    letter-spacing: 0.02em;
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(245,240,232,0.08);
  }

  .how-step {
    padding: 3rem;
    border-right: 1px solid rgba(245,240,232,0.08);
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .how-step:last-child { border-right: none; }
  .how-step:hover { background: rgba(196,131,74,0.05); }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    color: rgba(245,240,232,0.04);
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    line-height: 1;
    user-select: none;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    position: relative;
  }

  .step-icon svg { width: 100%; height: 100%; }

  h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    color: var(--chalk);
  }

  .how-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #8A837B;
    font-weight: 300;
  }

  /* PROFILE CARDS SECTION */
  .profiles-section {
    padding: 8rem 3rem;
    background: var(--granite);
  }

  .profiles-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }

  .profiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(245,240,232,0.05);
  }

  .climber-card {
    background: var(--granite);
    padding: 2rem;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .climber-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--sandstone);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .climber-card:hover::after { transform: scaleX(1); }
  .climber-card:hover { background: #322E2A; }

  .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    display: block;
  }

  .card-location {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--rope);
    text-transform: uppercase;
  }

  .card-visiting {
    font-size: 0.75rem;
    color: #8A837B;
    margin-bottom: 1rem;
    font-style: italic;
  }

  .card-visiting strong { color: var(--chalk-dark); font-style: normal; }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
  }

  .tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border: 1px solid rgba(245,240,232,0.15);
    color: #9A938B;
  }

  .tag.highlight {
    border-color: var(--lichen);
    color: var(--lichen);
  }

  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(245,240,232,0.06);
  }

  .guest-pass-badge {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rope);
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .guest-pass-badge::before {
    content: '✓';
    background: var(--rope);
    color: var(--rock);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
  }

  .connect-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: none;
    border: 1px solid var(--sandstone);
    color: var(--sandstone);
    padding: 0.35rem 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .connect-btn:hover { background: var(--sandstone); color: var(--rock); }

  /* GYM MAP SECTION */
  .map-section {
    padding: 8rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .map-visual {
    position: relative;
    height: 450px;
    overflow: hidden;
  }

  .map-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(rgba(245,240,232,0.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,240,232,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .gym-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
  }
  .gym-pin:hover { transform: scale(1.15); }

  .pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--sandstone);
    border: 2px solid var(--chalk);
    box-shadow: 0 0 0 4px rgba(196,131,74,0.2);
    animation: pulse 2s ease-in-out infinite;
  }

  .pin-dot.active {
    background: var(--rope);
    box-shadow: 0 0 0 4px rgba(232,163,44,0.3);
  }

  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(196,131,74,0.2); }
    50% { box-shadow: 0 0 0 8px rgba(196,131,74,0.05); }
  }

  .pin-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.08em;
    background: var(--granite);
    color: var(--chalk);
    padding: 0.2rem 0.5rem;
    margin-top: 0.3rem;
    white-space: nowrap;
    border: 1px solid rgba(245,240,232,0.1);
  }

  .map-members {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(26,22,20,0.9);
    border: 1px solid rgba(245,240,232,0.08);
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .map-members span {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7A736B;
  }

  .map-members strong { color: var(--rope); }

  /* VALUE PROPS */
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
  }

  .value-item {
    border-left: 2px solid var(--sandstone);
    padding-left: 1.5rem;
  }

  .value-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
  }

  .value-item p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #8A837B;
    font-weight: 300;
  }

  /* CTA SECTION */
  .cta-section {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(74,127,165,0.12), transparent),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(196,131,74,0.08), transparent),
    linear-gradient(160deg, #1A1614 0%, #0F0D0C 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,131,74,0.06) 0%, transparent 70%);
  pointer-events: none;
}

  .cta-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
    position: relative;
  }

  .cta-section h2 span { color: var(--sandstone); }

  .cta-section p {
    font-size: 1rem;
    color: #8A837B;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.7;
  }

  .email-form {
    display: flex;
    max-width: 420px;
    margin: 0 auto;
    gap: 0;
  }

  .email-form input {
    flex: 1;
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(245,240,232,0.15);
    border-right: none;
    color: var(--chalk);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    padding: 0.9rem 1.2rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .email-form input:focus { border-color: var(--sandstone); }
  .email-form input::placeholder { color: #5A534B; }

  .email-form button {
    background: var(--sandstone);
    color: var(--rock);
    border: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .email-form button:hover { background: var(--rope); }

  /* FOOTER */
  footer {
    padding: 3rem;
    border-top: 1px solid rgba(245,240,232,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  footer .logo { font-size: 1.4rem; }
  .logo-img--footer { height: 30px; }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .footer-links a {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5A534B;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--chalk); }

  .footer-copy {
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    color: #3A332E;
    letter-spacing: 0.08em;
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * {
    opacity: 0;
    animation: fadeUp 0.8s forwards;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  h1 { animation-delay: 0.25s; }
  .hero-sub { animation-delay: 0.4s; }
  .hero-ctas { animation-delay: 0.55s; }
  .hero-stats { animation: fadeUp 1s 0.7s forwards; opacity: 0; }

  /* Divider */
  .divider {
    width: 60px;
    height: 2px;
    background: var(--sandstone);
    margin-bottom: 3rem;
  }

  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
  }

  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--chalk);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Animate to X when open */
  .nav-burger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-burger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-burger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  nav ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15,14,13,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 150;
  }

  nav ul.open {
    display: flex;
  }

  nav ul a {
    font-size: 1rem;
  }
    .hero { padding: 0 1.5rem 6rem; }
    .hero-stats { display: none; }
    .how-grid { grid-template-columns: 1fr; }
    .how-step { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.08); }
    .profiles-grid { grid-template-columns: 1fr; }
    .map-section { grid-template-columns: 1fr; gap: 3rem; }
    .value-grid { grid-template-columns: 1fr; }
    .section, .profiles-section, .cta-section { padding: 5rem 1.5rem; }
    footer { flex-direction: column; gap: 2rem; text-align: center; }
  }

  /* ---- CARABINER SVG OVERRIDE ---- */
  .carabiner {
    position: absolute;
    top: 10vh;
    right: calc(10% - 36px);
    width: 72px;
    height: 72px;
    opacity: 0.8;
    animation: sway 4s ease-in-out infinite;
    transform-origin: top center;
    filter: drop-shadow(0 6px 18px rgba(232,163,44,0.25));
    border: none;
    border-radius: 0;
    background: none;
  }
  .carabiner svg { width: 100%; height: 100%; display: block; }

  /* ---- BETA PILL ---- */
  .beta-pill {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--rock);
    background: var(--rope);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 2rem;
  }

  /* ---- WAITLIST FORM (CTA SECTION) ---- */
  #waitlist-form {
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
  }

  /* ── FORM BASE ─────────────────────────────────────────── */
  .wl-step { width: 100%; }
  .wl-step.hidden { display: none; }

  #waitlist-form { max-width: 560px; margin: 0 auto; text-align: left; }

  .wl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.1rem;
  }

  .wl-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.1rem;
  }

  .wl-field label,
  .wl-group-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rope);
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .wl-req  { color: var(--sandstone); font-size: 0.65rem; }
  .wl-hint {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: #4A4440;
  }

  .wl-field input,
  .wl-field textarea {
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(245,240,232,0.15);
    color: var(--chalk);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    padding: 0.85rem 1rem;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
    width: 100%;
    box-sizing: border-box;
  }
  .wl-field input:focus,
  .wl-field textarea:focus  { border-color: var(--rope); }
  .wl-field input::placeholder,
  .wl-field textarea::placeholder { color: #4A4440; }
  .wl-field input.wl-error { border-color: #C0392B; }

  /* ── GYM SEARCH ─────────────────────────────────────── */
  .gym-search-wrap {
    position: relative;
  }

  .gym-search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: #4A4440;
    pointer-events: none;
    display: flex;
    align-items: center;
  }

  .gym-search-wrap input {
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(245,240,232,0.15);
    color: var(--chalk);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
  }
  .gym-search-wrap input:focus   { border-color: var(--rope); }
  .gym-search-wrap input::placeholder { color: #4A4440; }
  .gym-search-wrap.wl-error input { border-color: #C0392B; }

  .gym-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 3px);
    left: 0; right: 0;
    background: #1E1B18;
    border: 1px solid rgba(232,163,44,0.2);
    z-index: 300;
    max-height: 260px;
    overflow-y: auto;
  }
  .gym-dropdown.open { display: block; }

  .gym-drop-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(245,240,232,0.04);
    transition: background 0.12s;
    color: var(--chalk);
  }
  .gym-drop-row:last-child { border-bottom: none; }
  .gym-drop-row:hover { background: rgba(232,163,44,0.07); }
  .gym-drop-loading { color: #5A534B; font-style: italic; cursor: default; }
  .gym-drop-empty   { color: #5A534B; cursor: default; }
  .gym-drop-manual  { color: var(--sandstone); font-size: 0.78rem; }

  .gdr-icon { flex-shrink: 0; font-size: 0.9rem; margin-top: 0.1rem; }
  .gdr-text { display: flex; flex-direction: column; gap: 0.1rem; }
  .gdr-name { font-weight: 500; color: var(--chalk); }
  .gdr-addr { font-size: 0.7rem; color: #6A6360; }

  /* Selected gym pill */
  .gym-selected-pill {
    display: none;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding: 0.45rem 0.75rem;
    background: rgba(232,163,44,0.07);
    border: 1px solid rgba(232,163,44,0.2);
    font-size: 0.78rem;
  }
  .gym-selected-pill.visible { display: flex; }
  .gsp-name { flex: 1; color: var(--chalk); font-weight: 500; }
  .gsp-addr { color: #6A6360; font-size: 0.7rem; }
  .gsp-clear {
    background: none; border: none;
    color: #5A534B; cursor: pointer;
    font-size: 0.75rem; padding: 0 0.2rem;
    transition: color 0.15s; line-height: 1;
    flex-shrink: 0;
  }
  .gsp-clear:hover { color: #C0392B; }

  /* ── INTEREST CARDS ──────────────────────────────────── */
  .interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .interest-grid.wl-error .interest-inner { border-color: #C0392B !important; }

  .interest-card { cursor: pointer; }
  .interest-card input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

  .interest-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.1rem 0.75rem 1rem;
    border: 1px solid rgba(245,240,232,0.12);
    background: rgba(245,240,232,0.03);
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    position: relative;
    gap: 0.2rem;
  }
  .interest-inner:hover {
    border-color: rgba(232,163,44,0.35);
    background: rgba(232,163,44,0.05);
  }
  .interest-card input:checked + .interest-inner {
    border-color: var(--rope);
    background: rgba(232,163,44,0.09);
    transform: translateY(-2px);
  }

  /* Checkmark badge top-right */
  .interest-check {
    position: absolute;
    top: 0.4rem; right: 0.4rem;
    width: 15px; height: 15px;
    border: 1.5px solid rgba(245,240,232,0.2);
    border-radius: 3px;
    background: transparent;
    transition: all 0.15s;
    display: flex; align-items: center; justify-content: center;
  }
  .interest-card input:checked + .interest-inner .interest-check {
    background: var(--rope);
    border-color: var(--rope);
  }
  .interest-card input:checked + .interest-inner .interest-check::after {
    content: '✓';
    font-size: 0.55rem;
    color: var(--rock);
    font-weight: 800;
    line-height: 1;
  }

  .interest-icon  { font-size: 1.5rem; display: block; margin-bottom: 0.15rem; }
  .interest-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: var(--chalk);
    display: block;
  }
  .interest-desc  { font-size: 0.65rem; color: #7A736B; line-height: 1.3; display: block; }

  /* ── TEXTAREA / CHAR COUNT ───────────────────────────── */
  .wl-charcount {
    font-family: 'Space Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    color: #3A332E;
    text-align: right;
    margin-top: 0.25rem;
  }

  /* ── SUBMIT + PRIVACY ────────────────────────────────── */
  .wl-submit-btn {
    width: 100%; justify-content: center;
    margin-top: 0.25rem;
    padding: 1.05rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  }
  .wl-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

  .wl-privacy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0;
    color: #8A837B;
    text-align: center;
    margin-top: 0.75rem;
    line-height: 1.7;
  }

  /* ── SUCCESS ─────────────────────────────────────────── */
  .success-inner   { text-align: center; padding: 2.5rem 0 1rem; }
  .success-icon    { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
  .success-title   {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.06em;
    color: var(--rope);
    display: block;
    margin-bottom: 0.75rem;
  }
  .success-inner p { color: #8A837B; font-size: 0.9rem; font-weight: 300; margin-bottom: 0.4rem; }
  .success-sub     { font-size: 0.78rem !important; color: #4A4440 !important; }

  @media (max-width: 560px) {
    .wl-row          { grid-template-columns: 1fr; }
    .interest-grid   { grid-template-columns: 1fr; }
    .interest-inner  {
      flex-direction: row; text-align: left;
      padding: 0.75rem 1rem; gap: 0.75rem; align-items: center;
    }
    .interest-icon   { font-size: 1.3rem; flex-shrink: 0; margin-bottom: 0; }
    .interest-title,
    .interest-desc   { display: block; }
  }

  /* ── GYM CHANNEL SECTION ─────────────────────────── */
  .channel-section {
    background: var(--granite);
    padding: 8rem 3rem;
  }

  .channel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }

  .channel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
  }
  .channel-title em {
    font-style: normal;
    color: var(--sandstone);
    display: block;
  }

  .channel-sub {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: #9A938B;
    margin-bottom: 2.5rem;
    max-width: 460px;
  }

  .channel-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .cf-item {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
  }

  .cf-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 2rem;
    text-align: center;
  }

  .cf-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--chalk);
    margin-bottom: 0.2rem;
  }

  .cf-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: #7A736B;
    font-weight: 300;
  }

  /* Phone mockup */
  .channel-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .mockup-phone {
    width: 280px;
    background: #0F0D0C;
    border-radius: 36px;
    border: 2px solid rgba(245,240,232,0.12);
    padding: 14px;
    box-shadow:
      0 0 0 1px rgba(245,240,232,0.04),
      0 32px 64px rgba(0,0,0,0.6),
      inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
  }

  .mockup-notch {
    width: 80px;
    height: 10px;
    background: #0F0D0C;
    border: 2px solid rgba(245,240,232,0.1);
    border-radius: 10px;
    margin: 0 auto 10px;
  }

  .mockup-screen {
    background: #1A1614;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 420px;
  }

  .sms-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1rem;
    background: #222;
    border-bottom: 1px solid rgba(245,240,232,0.06);
    flex-shrink: 0;
  }

  .sms-avatar {
    width: 34px;
    height: 34px;
    background: rgba(232,163,44,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .sms-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--chalk);
  }

  .sms-sub {
    font-family: 'Space Mono', monospace;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rope);
  }

  .sms-messages {
    flex: 1;
    overflow: hidden;
    padding: 0.75rem 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .sms-bubble {
    max-width: 85%;
    padding: 0.5rem 0.75rem;
    border-radius: 14px;
    font-size: 0.72rem;
    line-height: 1.5;
    color: var(--chalk);
  }

  .sms-bubble.other {
    background: #2C2825;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
  }

  .sms-bubble.me {
    background: var(--sandstone);
    color: var(--rock);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 500;
  }

  .sms-sender {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rope);
    margin-bottom: 0.2rem;
  }

  .sms-input-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    border-top: 1px solid rgba(245,240,232,0.06);
    background: #222;
    flex-shrink: 0;
  }

  .sms-input-fake {
    flex: 1;
    font-size: 0.68rem;
    color: #5A534B;
    background: rgba(245,240,232,0.05);
    border: 1px solid rgba(245,240,232,0.08);
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
  }

  .sms-send-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sandstone);
    color: var(--rock);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  /* QR hint */
  .mockup-qr-hint {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(232,163,44,0.06);
    border: 1px solid rgba(232,163,44,0.18);
    padding: 0.9rem 1.2rem;
    max-width: 280px;
    width: 100%;
  }

  .qr-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
  }
  .qr-box svg { width: 100%; height: 100%; }

  .qr-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--chalk);
    margin-bottom: 0.2rem;
  }

  .qr-desc {
    font-size: 0.7rem;
    line-height: 1.4;
    color: #7A736B;
  }

  @media (max-width: 900px) {
    .channel-inner { grid-template-columns: 1fr; gap: 3rem; }
    .channel-section { padding: 5rem 1.5rem; }
    .channel-mockup { align-items: flex-start; }
  }
