:root {
  --bg: #0d1b1e;
  --panel: #14282d;
  --panel-2: #1b343a;
  --accent: #2dd4bf;
  --accent-2: #38bdf8;
  --text: #e6f1f2;
  --muted: #8fa9ad;
  --line: #244349;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #173238, var(--bg));
  color: var(--text);
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(13, 27, 30, 0.85);
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

header h1 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0.5px;
}
header h1 span { color: var(--accent); font-weight: 400; }

nav { display: flex; gap: 8px; }

.tab {
  background: var(--panel);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.15s;
}
.tab:hover { color: var(--text); }
.tab.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border-color: transparent;
  font-weight: 600;
}

main { max-width: 720px; margin: 0 auto; padding: 18px; }

.view { display: none; }
.view.active { display: block; }

/* Feed */
.feed-list { display: flex; flex-direction: column; gap: 16px; }

.catch-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.catch-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--panel-2);
}
.catch-card .no-photo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--panel-2), var(--panel));
}
.catch-body { padding: 14px 16px; }
.catch-body h3 { margin: 0 0 4px; font-size: 18px; }
.catch-meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.catch-note { font-size: 14px; line-height: 1.4; }
.pill {
  display: inline-block;
  background: var(--panel-2);
  border: 1px solid var(--line);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-right: 6px;
}

/* Map */
#map-canvas {
  height: 70vh;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
}

/* Forms */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
}
.card h2, .card h3 { margin-top: 0; }

label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}
input, textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
}
input:focus, textarea:focus { outline: 2px solid var(--accent); border-color: transparent; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.geo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
#geo-status { font-size: 13px; color: var(--muted); }
#geo-status.ok { color: var(--accent); }

button {
  font-family: inherit;
}
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

#submit-btn, #locate-btn, .secondary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.secondary {
  background: var(--panel-2);
  color: var(--accent);
  border: 1px solid var(--line);
}
#locate-btn { padding: 8px 14px; }

.msg { font-size: 13px; min-height: 18px; margin: 10px 0 0; }
.msg.ok { color: var(--accent); }
.msg.err { color: #f87171; }

.hidden { display: none; }

.spot-item {
  border-top: 1px solid var(--line);
  padding: 10px 0;
  font-size: 14px;
}
.spot-item:first-child { border-top: none; }
.spot-item .dist { color: var(--muted); font-size: 12px; }
.dist { color: var(--muted); font-size: 12px; }

/* Guides */
.guides-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.guides-head h2 { margin: 0; }
.muted-line { color: var(--muted); font-size: 13px; margin: 6px 0 16px; }

.guide-card .rating {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.book-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}

/* Modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 14, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 100;
}
/* Beats .overlay's display:flex (equal specificity, defined later) so the modal can hide. */
.overlay.hidden { display: none; }
.modal {
  width: 100%;
  max-width: 420px;
  position: relative;
  margin: 0;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
}
/* Header user bar */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.user-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
#user-name { color: var(--accent); font-weight: 600; }
.link-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
  padding: 0;
}
.link-btn:hover { color: var(--text); }

/* Auth card */
.auth-card { max-width: 380px; text-align: center; }
.auth-logo { font-size: 28px; margin: 4px 0 8px; }
.auth-logo span { color: var(--accent); font-weight: 400; }
.auth-card label { text-align: left; }
.auth-toggle { font-size: 13px; color: var(--muted); margin: 14px 0 0; }

/* Presence */
.angler-row { display: flex; align-items: center; gap: 14px; }
.angler-row h3 { margin: 0 0 2px; }
.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.online {
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.18);
}
.status-dot.offline { background: #5b6b6e; }
.you { color: var(--muted); font-size: 13px; font-weight: 400; }

/* Leaderboard */
.angler-info { flex: 1; }
.rank {
  font-size: 18px;
  font-weight: 700;
  min-width: 34px;
  text-align: center;
  color: var(--muted);
}
.score {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.score small { font-size: 11px; color: var(--muted); margin-left: 2px; font-weight: 500; }
.me-card { outline: 1px solid var(--accent); }

/* Ranks */
.rank-now { font-size: 16px; margin-bottom: 12px; }
.bar {
  height: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.rank-icon { font-size: 26px; min-width: 38px; text-align: center; }
.rank-row.rank-current { outline: 1px solid var(--accent); }
.rank-row.rank-locked { opacity: 0.55; }
.unlocked { color: var(--accent); font-size: 18px; font-weight: 700; }
.locked { font-size: 16px; }

/* Store / Jerk Plus */
.plus-card {
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 1px solid var(--accent);
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
}
.plus-card.active { border-color: var(--line); }
.plus-title { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.plus-title span { color: var(--accent); font-weight: 400; }
.plus-tag {
  font-size: 12px;
  background: var(--accent);
  color: #06231f;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  vertical-align: middle;
}
.plus-headline {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin: 8px 0 16px;
}
.perks {
  list-style: none;
  padding: 0;
  margin: 0 auto 18px;
  display: inline-block;
  text-align: left;
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
}
.plus-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.plus-price small { font-size: 14px; color: var(--muted); }
.plus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.buy-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
}
.demo-note {
  color: #fbbf24;
  font-size: 12px;
  margin-top: 18px;
  text-align: center;
}
.fake-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 12px 0;
  font-size: 14px;
  letter-spacing: 1px;
}
#checkout-pay {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 15px;
}

/* Points pill */
.pts-pill {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border-color: transparent;
  font-weight: 700;
}

#booking-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f;
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  margin-top: 4px;
}

/* ===================== Phase 2-6 additions ===================== */

/* nav: horizontal scroll for many tabs */
nav#nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
nav#nav::-webkit-scrollbar { height: 0; }
.tab { flex: 0 0 auto; }

/* avatars */
.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.avatar-lg { width: 60px; height: 60px; font-size: 26px; }

/* composer */
.composer .media-row { display: flex; gap: 10px; margin-bottom: 12px; }
.file-pick {
  flex: 1; background: var(--bg); border: 1px dashed var(--line);
  border-radius: 10px; padding: 10px; font-size: 13px; color: var(--muted); cursor: pointer;
}
.file-pick input { margin-top: 6px; font-size: 12px; }

/* strip headings */
.strip-head { font-weight: 700; font-size: 14px; margin: 18px 4px 8px; color: var(--text); }

/* rankings strip */
.rank-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.rank-chip {
  flex: 0 0 auto; width: 96px; text-align: center; background: var(--panel);
  border: 1px solid var(--line); border-radius: 14px; padding: 10px 6px; cursor: pointer;
}
.rank-chip .avatar { margin: 4px auto; }
.rank-chip-pos { font-size: 16px; }
.rank-chip-name { font-size: 12px; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rank-chip-jp { font-size: 12px; color: var(--accent); font-weight: 700; }

/* stories strip */
.stories-strip { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; }
.story { flex: 0 0 auto; text-align: center; cursor: pointer; width: 64px; }
.story-ring {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--line); margin: 0 auto 4px;
}
.story-ring.live { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(45,212,191,0.25); }
.story-ring .avatar { width: 46px; height: 46px; }
.story-name { font-size: 11px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* TikTok-style feed media */
.feed-card .feed-media {
  width: 100%; max-height: 70vh; object-fit: cover; display: block;
  background: var(--panel-2); border-radius: 16px 16px 0 0;
}
.feed-card .feed-media.no-photo {
  height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.feed-angler { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }

/* fish / species */
.sp-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 8px; }
.sp-table th, .sp-table td { text-align: left; padding: 7px 6px; border-bottom: 1px solid var(--line); }
.sp-table th { color: var(--muted); font-weight: 600; font-size: 12px; }
.sp-leaders { margin-top: 8px; font-size: 14px; line-height: 1.7; }

/* follow button */
.follow-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06231f;
  border: none; padding: 7px 14px; border-radius: 999px; font-weight: 700; cursor: pointer; font-size: 13px;
}
.follow-btn.following { background: var(--panel-2); color: var(--accent); border: 1px solid var(--line); }

/* profile */
.profile-top { display: flex; align-items: center; gap: 16px; }
.profile-id h2 { margin: 0 0 4px; }
.profile-stats { display: flex; gap: 22px; margin: 16px 0; }
.profile-stats div { display: flex; flex-direction: column; }
.profile-stats strong { font-size: 20px; color: var(--accent); }
.profile-stats small { font-size: 12px; color: var(--muted); }
.bio-edit { width: 100%; }

/* boost matrix */
.boost-grid { display: grid; grid-template-columns: auto 1fr 1fr 1fr; gap: 8px; align-items: stretch; }
.boost-corner, .boost-colhead { font-size: 12px; color: var(--muted); display: flex; align-items: center; justify-content: center; padding: 4px; }
.boost-colhead { font-weight: 700; color: var(--text); }
.boost-rowhead {
  display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 18px;
  padding: 0 6px; color: var(--text);
}
.boost-rowhead.featured { color: var(--accent); }
.boost-cell {
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px 6px;
  cursor: pointer; text-align: center; transition: border-color 0.15s;
}
.boost-cell:hover { border-color: var(--accent); }
.boost-price { font-weight: 800; font-size: 16px; color: var(--text); }
.boost-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* product grid */
.packs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.pack-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 12px; text-align: center;
}
.pack-emoji { font-size: 36px; }
.pack-name { font-weight: 600; font-size: 14px; margin-top: 6px; }
.pack-cat { font-size: 12px; margin: 2px 0 8px; }
.prod-price { font-size: 18px; font-weight: 800; color: var(--accent); margin-bottom: 10px; }
.pack-card .buy-btn { display: inline-block; width: 100%; text-decoration: none; text-align: center; }
.pack-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06231f;
  font-size: 10px; font-weight: 800; padding: 2px 8px; border-radius: 999px;
}

#checkout-pay {
  width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06231f;
  border: none; padding: 11px; border-radius: 10px; font-weight: 700; cursor: pointer; font-size: 15px;
}

/* ===================== Map layers + controls ===================== */
.map-pin {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  font-size: 19px; border-radius: 50%; background: var(--panel);
  border: 2px solid var(--line); box-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
.pin-catch { border-color: var(--accent-2); }
.pin-guide { border-color: #fbbf24; }
.pin-angler { border-color: #94a3b8; }
.pin-angler.online { border-color: #34d399; box-shadow: 0 0 0 3px rgba(52,211,153,0.3); }
.pin-alert { border-color: #f87171; background: #7f1d1d; }

.map-controls { margin-top: 14px; }
.map-layers { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.map-layers label { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--text); cursor: pointer; }
.map-layers input { width: auto; margin: 0; accent-color: var(--accent); }
.map-filters { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.map-filters label { flex: 1; min-width: 140px; margin: 0; }
select {
  width: 100%; margin-top: 6px; padding: 10px 12px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 10px; color: var(--text); font-size: 14px;
}
.alert-row { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.alert-row input { flex: 1; min-width: 160px; margin: 0; }
#alert-btn { flex: 0 0 auto; }

/* ===================== Combined Ranks page + AI button ===================== */
main { max-width: 960px; }
#feed { max-width: 600px; margin: 0 auto; }

.ranks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.ranks-col { min-width: 0; }
@media (max-width: 800px) { .ranks-grid { grid-template-columns: 1fr; } }

.water-toggle { display: flex; gap: 6px; margin-bottom: 10px; }
.water-toggle button {
  flex: 1; background: var(--panel); border: 1px solid var(--line); color: var(--muted);
  padding: 7px; border-radius: 8px; cursor: pointer; font-size: 12px;
}
.water-toggle button.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f; border-color: transparent; font-weight: 700;
}

.ai-btn {
  width: 100%; background: linear-gradient(135deg, #a855f7, #6366f1); color: #fff;
  border: none; padding: 12px; border-radius: 10px; font-weight: 700; cursor: pointer;
  font-size: 14px; margin-bottom: 4px;
}
.ai-btn:hover { filter: brightness(1.08); }
.or-divider { text-align: center; color: var(--muted); font-size: 12px; margin: 12px 0; }

/* ===================== Feed algo + profile actions ===================== */
.notif-banner {
  background: #7f1d1d; border: 1px solid #f87171; color: #fee2e2;
  border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; font-size: 14px; line-height: 1.5;
}
.friend-tag {
  background: var(--panel-2); color: var(--accent); border: 1px solid var(--line);
  font-size: 10px; padding: 1px 7px; border-radius: 999px; font-weight: 700;
}
.action-row { display: flex; gap: 10px; flex-wrap: wrap; }
.action-row button { flex: 1; min-width: 140px; }
.fishing-badge { background: linear-gradient(135deg, #34d399, #10b981) !important; color: #06231f !important; }
.active-fishing { background: linear-gradient(135deg, #34d399, #10b981) !important; color: #06231f !important; border-color: transparent !important; }
.topangler-row {
  display: flex; align-items: center; gap: 10px; padding: 10px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; cursor: pointer;
}
.topangler-row .angler-info { flex: 1; min-width: 0; }

/* ===================== Login (social/forgot) + spots ===================== */
.oauth-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #fff; color: #111; border: none; padding: 11px; border-radius: 10px;
  font-weight: 600; cursor: pointer; font-size: 14px; margin-bottom: 10px;
}
.oauth-btn.oauth-apple { background: #000; color: #fff; }
.g-mark { font-weight: 800; color: #4285F4; }
.auth-links { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; margin-top: 14px; font-size: 13px; }
.auth-card .auth-links { text-align: left; }
#forgot-submit {
  width: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06231f;
  border: none; padding: 11px; border-radius: 10px; font-weight: 700; cursor: pointer; font-size: 15px; margin-top: 6px;
}
.spot-card {
  display: flex; align-items: center; gap: 10px; padding: 10px;
  background: var(--panel); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px; cursor: pointer;
}
.spot-pin { font-size: 20px; }

/* ============================================================
   LANDING PAGE — "deep water / nocturnal angler"
   ============================================================ */
#landing {
  position: relative;
  min-height: 100vh;
  font-family: "Hanken Grotesk", -apple-system, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}
.lp-bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 700px at 75% -5%, rgba(56,189,248,0.16), transparent 60%),
    radial-gradient(900px 600px at 10% 20%, rgba(45,212,191,0.14), transparent 55%),
    radial-gradient(1200px 900px at 50% 110%, rgba(20,40,45,0.9), transparent 60%),
    linear-gradient(180deg, #06141a, #0a1f25 55%, #06141a);
}
.lp-bg::after { /* caustic grain */
  content: ""; position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 4px 4px;
}

.lp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(18px, 5vw, 64px); max-width: 1200px; margin: 0 auto;
}
.lp-logo { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 24px; letter-spacing: -0.5px; }
.lp-logo span { color: var(--accent); }
.lp-nav-actions { display: flex; gap: 10px; }

.lp-ghost {
  background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; cursor: pointer;
  font-family: inherit; transition: all 0.15s;
}
.lp-ghost:hover { border-color: var(--accent); color: var(--accent); }
.lp-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06231f; border: none;
  padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: inherit; transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 6px 24px rgba(45,212,191,0.3);
}
.lp-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(45,212,191,0.45); }

/* hero */
.lp-hero {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) clamp(18px, 5vw, 64px);
}
.lp-eyebrow { font-size: 13px; letter-spacing: 3px; color: var(--accent); font-weight: 700; margin-bottom: 18px; }
.lp-title {
  font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(54px, 8vw, 104px);
  line-height: 0.92; letter-spacing: -2px; margin: 0 0 24px;
  animation: lp-rise 0.7s cubic-bezier(0.2,0.8,0.2,1) both;
}
.lp-accent { color: var(--accent); -webkit-text-stroke: 0; }
.lp-sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: #b9d2d6; max-width: 520px; margin: 0 0 30px;
  animation: lp-rise 0.7s 0.1s cubic-bezier(0.2,0.8,0.2,1) both; }
.lp-sub strong { color: var(--text); }
.lp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: lp-rise 0.7s 0.2s cubic-bezier(0.2,0.8,0.2,1) both; }
.lp-cta-lg, .lp-ghost-lg { padding: 15px 28px; font-size: 16px; border-radius: 14px; }
.lp-trust { margin-top: 18px; font-size: 14px; color: var(--muted); }

@keyframes lp-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes lp-float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-14px) rotate(var(--r,0deg)); } }

/* hero art */
.lp-hero-art { position: relative; height: 420px; }
.lp-bigfish {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 230px; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); opacity: 0.92;
  animation: lp-float 6s ease-in-out infinite;
}
.lp-chip {
  position: absolute; display: flex; align-items: center; gap: 10px; z-index: 2;
  background: rgba(20,40,45,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}
.lp-chip strong { display: block; font-size: 14px; }
.lp-chip small { display: block; font-size: 12px; color: var(--muted); }
.lp-chip-ic { font-size: 22px; }
.lp-chip-1 { top: 6%; left: -4%; --r: -4deg; animation: lp-float 5s ease-in-out infinite; }
.lp-chip-2 { top: 44%; right: -6%; --r: 5deg; animation: lp-float 6.5s ease-in-out 0.5s infinite; }
.lp-chip-3 { bottom: 4%; left: 6%; --r: 3deg; animation: lp-float 5.8s ease-in-out 0.2s infinite; }

/* features */
.lp-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1200px; margin: 0 auto; padding: 20px clamp(18px, 5vw, 64px) 40px;
}
.lp-feat {
  background: rgba(20,40,45,0.55); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 26px 22px; transition: transform 0.2s, border-color 0.2s;
}
.lp-feat:hover { transform: translateY(-4px); border-color: var(--accent); }
.lp-feat-ic { font-size: 32px; margin-bottom: 12px; }
.lp-feat h3 { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 19px; margin: 0 0 8px; }
.lp-feat p { font-size: 14px; line-height: 1.55; color: #a9c4c8; margin: 0; }

/* steps */
.lp-steps {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto; padding: 50px clamp(18px,5vw,64px);
}
.lp-step { text-align: center; }
.lp-step-n {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06231f; font-family: "Bricolage Grotesque"; font-weight: 800; font-size: 22px; margin-bottom: 12px;
}
.lp-step h4 { font-family: "Bricolage Grotesque"; margin: 0 0 4px; font-size: 20px; }
.lp-step p { margin: 0; color: var(--muted); font-size: 14px; }
.lp-step-arrow { font-size: 28px; color: var(--accent); opacity: 0.6; }

/* final cta + footer */
.lp-final { text-align: center; padding: 60px clamp(18px,5vw,64px); }
.lp-final h2 { font-family: "Bricolage Grotesque"; font-weight: 800; font-size: clamp(32px, 5vw, 56px); margin: 0 0 26px; letter-spacing: -1px; }
.lp-footer { text-align: center; padding: 30px; color: var(--muted); font-size: 13px; border-top: 1px solid rgba(255,255,255,0.07); }

/* landing responsive */
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; }
  .lp-hero-art { height: 300px; order: -1; }
  .lp-bigfish { font-size: 150px; }
  .lp-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .lp-features { grid-template-columns: 1fr; }
  .lp-step-arrow { transform: rotate(90deg); }
  .lp-chip-1 { left: 0; } .lp-chip-2 { right: 0; }
}
