/* ============================================================
   GayWhere — Landing page (index-new.html)
   Light, warm, glassy. Brand: terracotta / pink / blue / purple.
   ============================================================ */

:root {
    /* Brand */
    --terracotta: #E2725B;
    --terracotta-dark: #d4624c;
    --pink: #EC4899;
    --blue: #3B82F6;
    --purple: #8B5CF6;

    --grad-sunset: linear-gradient(135deg, #E2725B, #EC4899);
    --grad-ocean: linear-gradient(135deg, #3B82F6, #8B5CF6);
    --grad-rainbow: linear-gradient(110deg, #E2725B, #EC4899, #8B5CF6, #3B82F6);

    /* Surfaces (warm light) */
    --bg: #FAF8F4;
    --bg-soft: #F4F0E9;
    --card: #FFFFFF;
    --ink: #1F1B27;
    --ink-soft: #46404F;
    --ink-muted: #645E6E;

    --border: rgba(34, 30, 42, 0.08);
    --shadow-sm: 0 2px 12px rgba(34, 30, 42, 0.06);
    --shadow-md: 0 12px 40px rgba(34, 30, 42, 0.10);
    --shadow-lg: 0 24px 80px rgba(34, 30, 42, 0.14);

    /* Glass */
    --glass: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.65);

    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --font-display: 'Asap', sans-serif;   /* same family as the iOS app */
    /* Body = system stack: renders as SF Pro on Apple devices, same as the app */
    --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

    --max-w: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.14; letter-spacing: -0.01em; }
img { display: block; }
a { color: inherit; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   NAV — liquid glass pill
   ============================================================ */
.glass-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: min(var(--max-w), calc(100% - 32px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px 10px 20px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset, 0 8px 32px rgba(34,30,42,0.08);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    transition: box-shadow 0.35s ease, background 0.35s ease, top 0.35s ease;
}
.glass-nav.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 1px 0 rgba(255,255,255,0.9) inset, 0 12px 40px rgba(34,30,42,0.13);
}

.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo { height: 32px; width: 32px; object-fit: contain; }
.nav-wordmark { height: 18px; }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
    display: block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: rgba(34,30,42,0.06); color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 999px;
    white-space: nowrap;
    transition: color 0.2s ease;
}
.nav-login:hover { color: var(--ink); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(34,30,42,0.25); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 168px 24px 96px;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    pointer-events: none;
}
.glow-1 { width: 520px; height: 520px; background: rgba(226, 114, 91, 0.35); top: -140px; left: -120px; }
.glow-2 { width: 460px; height: 460px; background: rgba(236, 72, 153, 0.22); top: 10%; right: -140px; }
.glow-3 { width: 420px; height: 420px; background: rgba(59, 130, 246, 0.16); bottom: -180px; left: 35%; }

.hero-inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    margin-bottom: 26px;
}
.badge-pulse {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
    70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 4.1rem);
    font-weight: 700;
    margin-bottom: 22px;
}
.hero h1 em {
    font-style: normal;
    background: var(--grad-rainbow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

.hero-sub {
    font-size: 1.13rem;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 34px;
}

.store-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.store-badge { position: relative; display: inline-block; transition: transform 0.2s ease; }
.store-badge img { height: 52px; }
.store-badge:hover { transform: translateY(-2px); }
.store-badge.big img { height: 60px; }

.store-soon { opacity: 0.45; filter: saturate(0.4); cursor: default; }
.store-soon:hover { transform: none; }
.soon-pill {
    position: absolute;
    top: -8px; right: -10px;
    padding: 3px 9px;
    border-radius: 999px;
    background: var(--grad-sunset);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    filter: none;
    opacity: 1;
}

.hero-meta { margin-top: 18px; font-size: 0.85rem; color: var(--ink-muted); }
.hero-partner-hint { margin-top: 8px; font-size: 0.9rem; color: var(--ink-muted); }
.hero-partner-hint a { color: var(--terracotta); font-weight: 600; text-decoration: none; }
.hero-partner-hint a:hover { text-decoration: underline; }

/* --- phone --- */
.hero-visual { position: relative; display: flex; justify-content: center; }

.phone {
    position: relative;
    width: 290px;
    aspect-ratio: 9 / 19.2;
    border-radius: 46px;
    background: #14121a;
    padding: 9px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(34,30,42,0.25);
    animation: floaty 7s ease-in-out infinite;
}
.phone-island {
    position: absolute;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: 86px; height: 24px;
    border-radius: 999px;
    background: #14121a;
    z-index: 2;
}
.phone-screen {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 38px;
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    font-size: 0.8rem;
    white-space: nowrap;
}
.float-card strong { display: block; font-size: 0.84rem; font-weight: 650; }
.float-card span:not(.now-pill):not(.float-emoji), .float-card em { display: block; font-style: normal; color: var(--ink-muted); font-size: 0.74rem; }
.float-icon { width: 26px; height: 26px; object-fit: contain; flex-shrink: 0; }
.float-card svg, .notif-toast svg {
    width: 21px; height: 21px;
    fill: none;
    stroke: var(--terracotta);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.float-thumb {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--grad-sunset);
    flex-shrink: 0;
}

/* notifications live at the top of an iPhone, so the notif card sits high */
.float-notif { top: 3%; right: -15%; animation: floaty 8.5s ease-in-out infinite 1s; }
.float-event { top: 46%; left: -22%; animation: floaty 8s ease-in-out infinite 0.6s; }
.float-hh    { bottom: 14%; right: -20%; animation: floaty 9s ease-in-out infinite 1.4s; }

.now-pill {
    padding: 3px 9px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--card);
    padding: 18px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-set { display: flex; align-items: center; }
.ticker-set span {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink-soft);
    padding: 0 22px;
    white-space: nowrap;
}
.ticker-set i {
    font-style: normal;
    background: var(--grad-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.8rem;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { padding: 110px 24px; max-width: var(--max-w); margin: 0 auto; }

.section-head { text-align: center; max-width: 620px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(226, 114, 91, 0.1);
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-head h2, .partners-copy h2, .community h2, .final-cta h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 700;
}
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.05rem; }

/* ============================================================
   BENTO FEATURES
   ============================================================ */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(150px, auto);
    gap: 18px;
}

.tile {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tile h3 { font-size: 1.2rem; font-weight: 650; margin-bottom: 6px; }
.tile p { font-size: 0.92rem; color: var(--ink-soft); }

.tile-ui { margin-bottom: 20px; }

/* tile spans */
.tile-feed  { grid-column: span 2; grid-row: span 2; }
.tile-map   { grid-column: span 1; grid-row: span 2; }
.tile-hh    { grid-column: span 1; }
.tile-notif { grid-column: span 1; }
.tile-fav   { grid-column: span 1; }
.tile-pride { grid-column: span 3; background: var(--grad-rainbow); border: none; justify-content: center; }
.tile-pride h3, .tile-pride p { color: #fff; }
.tile-pride p { opacity: 0.95; max-width: none; }

/* mini event feed */
.mini-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 14px;
    background: var(--bg-soft);
    margin-bottom: 9px;
}
.mini-thumb { width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0; }
.mini-thumb.t1 { background: var(--grad-sunset); }
.mini-thumb.t2 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.mini-thumb.t3 { background: var(--grad-ocean); }
.mini-info { flex: 1; min-width: 0; }
.mini-info strong { display: block; font-size: 0.9rem; font-weight: 650; }
.mini-info span { font-size: 0.78rem; color: var(--ink-muted); }

/* map tile */
.map-ui {
    position: relative;
    flex: 1;
    min-height: 180px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft);
}
.map-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.map-pin {
    position: absolute;
    width: 16px; height: 16px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: var(--shadow-sm);
}
.map-pin.p1 { background: var(--terracotta); top: 22%; left: 28%; }
.map-pin.p2 { background: var(--pink); top: 48%; left: 60%; }
.map-pin.p3 { background: var(--blue); top: 68%; left: 30%; }
.map-pin.p4 { background: var(--purple); top: 30%; left: 74%; }

/* happy hour tile — clock + tag.fill icons, same as the app */
.hh-ui { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.hh-clock {
    width: 26px; height: 26px;
    fill: none;
    stroke: var(--terracotta);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.deal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(226, 114, 91, 0.1);
    color: var(--terracotta-dark);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}
.deal svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }

/* notif tile */
.notif-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    background: var(--bg-soft);
    font-size: 0.82rem;
}
.notif-toast strong { display: block; font-size: 0.84rem; font-weight: 650; }
.notif-toast em { font-style: normal; font-size: 0.75rem; color: var(--ink-muted); }

/* favorites tile — heart.fill, same as the app */
.fav-ui { display: flex; }
.heart {
    width: 34px; height: 34px;
    fill: var(--pink);
    animation: heartbeat 2.4s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    12% { transform: scale(1.25); }
    24% { transform: scale(1); }
}

/* ============================================================
   COMMUNITY BAND
   ============================================================ */
.community { background: var(--bg-soft); padding: 100px 24px; }
.community-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.community h2 { margin-bottom: 52px; }
.community-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
}
.point {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}
.point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 13px;
    background: rgba(226, 114, 91, 0.1);
    margin-bottom: 14px;
}
.point-icon svg {
    width: 21px; height: 21px;
    fill: none;
    stroke: var(--terracotta);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.point strong { display: block; font-family: var(--font-display); font-size: 1.06rem; font-weight: 650; margin-bottom: 6px; }
.point p { font-size: 0.92rem; color: var(--ink-soft); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.partners-copy h2 { margin: 0 0 16px; }
.partners-sub { color: var(--ink-soft); font-size: 1.04rem; margin-bottom: 28px; }

.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 15px; margin-bottom: 34px; }
.benefit-list li { display: flex; gap: 13px; align-items: flex-start; }
.benefit-list li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--grad-sunset);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-list div { font-size: 0.95rem; color: var(--ink-soft); }
.benefit-list strong { color: var(--ink); }

.partner-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: var(--grad-sunset);
    color: #fff;
    font-weight: 650;
    font-size: 0.96rem;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(226, 114, 91, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(226, 114, 91, 0.45); }
.btn-ghost {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 14px 10px;
}
.btn-ghost:hover { color: var(--ink); }

/* dashboard preview */
.dash {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: rotate(1.2deg);
    transition: transform 0.4s ease;
}
.dash:hover { transform: rotate(0deg); }
.dash-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-soft);
}
.dash-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.dash-bar em {
    font-style: normal;
    font-size: 0.74rem;
    color: var(--ink-muted);
    margin-left: 10px;
    background: var(--card);
    padding: 3px 14px;
    border-radius: 999px;
}
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 20px 20px 6px; }
.dash-stat { background: var(--bg-soft); border-radius: 14px; padding: 14px; }
.dash-stat span { display: block; font-size: 0.72rem; color: var(--ink-muted); margin-bottom: 4px; }
.dash-stat strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
.dash-stat em { display: block; font-style: normal; font-size: 0.72rem; font-weight: 700; color: #22c55e; }
.c-pink { color: var(--pink); } .c-blue { color: var(--blue); } .c-purple { color: var(--purple); }

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 120px;
    padding: 18px 20px 0;
}
.dash-chart i {
    flex: 1;
    height: var(--h);
    border-radius: 7px 7px 3px 3px;
    background: linear-gradient(180deg, var(--pink), var(--terracotta));
    opacity: 0.85;
}
.dash-labels { display: flex; padding: 8px 20px 20px; }
.dash-labels span { flex: 1; text-align: center; font-size: 0.68rem; color: var(--ink-muted); }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
    gap: 24px;
}
.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 34px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
}
.grad-sunset { background: var(--grad-sunset); }
.grad-ocean { background: var(--grad-ocean); }
.team-card h3 { font-size: 1.2rem; font-weight: 650; }
.team-role {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--grad-sunset);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 4px 0 10px;
}
.team-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: 40px 24px 110px; }
.final-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
    background: var(--grad-rainbow);
    border-radius: var(--r-xl);
    padding: 88px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.final-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(255,255,255,0.28), transparent 55%);
    pointer-events: none;
}
.final-inner h2 { margin-bottom: 14px; }
.final-inner > p { opacity: 0.92; font-size: 1.07rem; margin-bottom: 32px; }
.final-inner .store-badge { background: #fff; border-radius: 13px; padding: 0; box-shadow: var(--shadow-md); }
.final-meta { margin-top: 20px; font-size: 0.85rem; opacity: 0.85; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); background: var(--card); padding: 48px 24px; }
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { height: 30px; width: 30px; object-fit: contain; }
.footer-wordmark { height: 16px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.9rem; color: var(--ink-soft); text-decoration: none; }
.footer-links a:hover { color: var(--terracotta); }
.footer-copy { font-size: 0.82rem; color: var(--ink-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 72px; }
    .hero-copy { display: flex; flex-direction: column; align-items: center; }
    .hero-sub { max-width: 560px; }
    .float-event { left: -4%; }
    .float-hh { right: -6%; }
    .float-notif { right: -4%; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .tile-feed { grid-column: span 2; }
    .tile-map { grid-column: span 1; grid-row: span 1; }
    .tile-pride { grid-column: span 2; }
    .map-ui { min-height: 130px; }
    .partners-grid { grid-template-columns: 1fr; gap: 48px; }
    .community-points { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-links, .nav-login { display: none; }
    .glass-nav { padding: 8px 8px 8px 16px; }
    .hero { padding: 140px 20px 72px; }
    .section { padding: 80px 20px; }
    .bento { grid-template-columns: 1fr; }
    .tile-feed, .tile-pride { grid-column: span 1; }
    .float-card { font-size: 0.62rem; padding: 7px 10px; border-radius: 13px; gap: 7px; }
    .float-card strong { font-size: 0.68rem; }
    .float-card span:not(.now-pill):not(.float-emoji), .float-card em { font-size: 0.6rem; }
    .float-thumb { width: 26px; height: 26px; border-radius: 8px; }
    .float-card svg { width: 16px; height: 16px; }
    .now-pill { padding: 2px 7px; font-size: 0.55rem; }
    .float-event { left: 0; top: 46%; }
    .float-hh { right: 0; bottom: 12%; }
    .float-notif { right: 0; top: 1%; }
    .phone { width: 250px; }
    .team-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
    .partner-ctas { flex-direction: column; align-items: stretch; text-align: center; }
    .final-inner { padding: 64px 22px; }
}

@media (max-width: 480px) {
    .hero-sub { font-size: 1rem; }
    .store-badge img { height: 46px; }
    .phone { width: 225px; }
    .section-head h2, .partners-copy h2, .community h2, .final-cta h2 { font-size: 1.75rem; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .phone, .float-card, .heart, .badge-pulse, .ticker-track, .hero h1 em { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
