@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════
   TIDE — Complete Theme
   Single source of truth, no conflicts
   ═══════════════════════════════════════ */

:root {
  /* ── Tide app palette — pure black + blue/cyan ── */
  --bg:             #0a0a0a;
  --surface:        #0d0d0f;
  --card:           #0a0a0a;
  --border:         rgba(255,255,255,0.06);
  --border-accent:  rgba(46,232,255,0.30);
  --cyan:           #2ee8ff;
  --cyan-glow:      rgba(46,232,255,0.16);
  --cyan-dim:       rgba(46,232,255,0.08);
  --text:           #e6e6ea;
  --text-dim:       #bcbcc4;
  --text-muted:     #62626b;

  /* New named design tokens (per Tide desktop app) */
  --accent:         #2ee8ff;
  --accent-deep:    #1466e0;
  --text-label:     #bcbcc4;
  --line-strong:    #25252c;
  --line-soft:      rgba(255,255,255,0.045);
  --err:            #ff6b54;
  --green:          #79dca0;
  --amber:          #e6c468;
  --logo-grad:      linear-gradient(180deg, #5ff2ff 0%, #2ee8ff 45%, #1466e0 100%);
  --headline-grad:  linear-gradient(90deg, #5ff2ff 0%, #2ee8ff 45%, #1466e0 100%);
  --btn-grad:       linear-gradient(95deg, #1466e0, #2ee8ff);

  /* Aliases used by inline component styles */
  --tide-bg:        #0a0a0a;
  --tide-cyan:      #2ee8ff;
  --tide-accent:    #2ee8ff;
  --tide-text:      #e6e6ea;

  --r:              10px;
  --r-lg:           14px;
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
  --spring:         cubic-bezier(0.34, 1.56, 0.64, 1);
  --font:           'Inter', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── Body + background ── */
body {
  font-family: var(--font) !important;
  background-color: var(--bg) !important;
  background-image: linear-gradient(to bottom, #0a0a0a 0%, #0a0a0a 40%, #0b0b0c 70%, #0c0c0d 100%) !important;
  background-attachment: fixed !important;
  color: var(--text) !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Kill Sellauth defaults */
#particles-js { display: none !important; }
.app, #app, main, .main,
[class*="bg-card"], [class*="bg-background"] {
  background-color: transparent !important;
  background-image: none !important;
}
section, [class*="section"] { background: transparent !important; }
h2::after, h2::before { display: none !important; }

/* Rain canvas */
#tide-rain-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* All content above rain */
#app > *, nav, footer, section, .component,
.tide-hero, .tide-section { position: relative; z-index: 2; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
}
p { color: var(--text-dim) !important; }
a { transition: color 0.2s; }

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
.tide-navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,9,10,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.tide-navbar__inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2.5rem; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
}

/* Logo only — no text */
.tide-navbar__brand {
  display: flex; align-items: center;
  text-decoration: none !important; flex-shrink: 0;
}
.tide-navbar__logo { height: 32px; width: auto; }
.tide-navbar__name { display: none !important; }

/* Nav links container — relative for oval */
.tide-navbar__links {
  display: flex; align-items: center;
  gap: 0.15rem; position: relative;
}

/* Gliding oval */
.tide-navbar__oval {
  position: absolute;
  bottom: -19px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  border-radius: 100px;
  pointer-events: none;
  box-shadow: 0 0 8px var(--cyan), 0 0 20px rgba(46,232,255,0.35);
  transition:
    left   0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
    width  0.3s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.2s ease;
}

.tide-navbar__link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(240,244,248,0.55);
  padding: 0.4rem 0.9rem; border-radius: 6px;
  text-decoration: none !important;
  transition: color 0.18s, background 0.18s;
  background: none; border: none; cursor: pointer;
  font-family: var(--font); white-space: nowrap;
  position: relative; z-index: 1;
}

.tide-navbar__link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.tide-navbar__link--active { color: var(--text); }

.tide-navbar__right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.tide-navbar__cart {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border-accent);
  border-radius: 8px; color: var(--cyan);
  font-size: 0.9rem; text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.tide-navbar__cart:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(46,232,255,0.25);
  transform: translateY(-1px);
}

.tide-navbar__cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--cyan); color: var(--bg);
  font-size: 0.55rem; font-weight: 800;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.tide-navbar__hamburger {
  display: none; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 8px;
  color: rgba(240,244,248,0.6); background: none; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.tide-navbar__hamburger:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

.tide-navbar__mobile {
  overflow: hidden; transition: height 0.25s var(--ease);
  border-top: 1px solid var(--border);
}

.tide-navbar__mobile-link {
  display: block; padding: 0.75rem 2.5rem;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(240,244,248,0.65);
  text-decoration: none !important; background: none;
  border: none; cursor: pointer; font-family: var(--font);
  width: 100%; text-align: left; transition: color 0.18s;
}
.tide-navbar__mobile-link:hover { color: var(--text); }

@media (max-width: 1024px) {
  .tide-navbar__links { display: none; }
  .tide-navbar__hamburger { display: flex; }
  .tide-navbar__oval { display: none; }
}
@media (max-width: 768px) { .tide-navbar__inner { padding: 0 1.25rem; } }

/* ══════════════════════════════════════
   BUTTONS — gradient fill + glow hover
   ══════════════════════════════════════ */
.tide-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.72rem 1.6rem;
  border-radius: var(--r);
  font-size: 0.875rem; font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  position: relative; z-index: 3; overflow: hidden;
  /* Gradient fill + elevated look */
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(46,232,255,0.28);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 2px 8px rgba(0,0,0,0.25);
  /* Smooth transition for ALL properties */
  transition:
    transform    0.22s var(--spring),
    box-shadow   0.22s var(--ease),
    border-color 0.22s var(--ease),
    background   0.22s var(--ease),
    color        0.22s var(--ease) !important;
  will-change: transform;
}

/* Glow layer that expands on hover */
.tide-btn::after {
  content: '';
  position: absolute; inset: -2px;
  border-radius: calc(var(--r) + 2px);
  background: radial-gradient(ellipse at 50% 100%, rgba(46,232,255,0.3) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
  z-index: -1;
}

.tide-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  border-color: rgba(46,232,255,0.7) !important;
  box-shadow:
    0 0 20px rgba(46,232,255,0.25),
    0 0 40px rgba(46,232,255,0.1),
    0 6px 20px rgba(0,0,0,0.4),
    0 1px 0 rgba(255,255,255,0.08) inset !important;
}
.tide-btn:hover::after { opacity: 1; }
.tide-btn:active { transform: translateY(-1px) scale(1.01) !important; }

/* Primary — Tide blue/cyan gradient */
.tide-btn-primary {
  background: linear-gradient(95deg, #1466e0, #2ee8ff) !important;
  color: #021018 !important;
  border-color: rgba(46,232,255,0.55) !important;
}
.tide-btn-primary::after {
  background: radial-gradient(ellipse at 50% 100%, rgba(46,232,255,0.35) 0%, transparent 65%);
}
.tide-btn-primary:hover {
  background: linear-gradient(95deg, #1f74ee, #5ff2ff) !important;
  border-color: rgba(46,232,255,0.8) !important;
  box-shadow:
    0 0 20px rgba(46,232,255,0.22),
    0 6px 20px rgba(20,102,224,0.30),
    0 1px 0 rgba(255,255,255,0.15) inset !important;
}

/* Discord */
.tide-btn-discord {
  background: linear-gradient(135deg, rgba(88,101,242,0.18) 0%, rgba(88,101,242,0.09) 100%) !important;
  color: #a5b4fc !important;
  border-color: rgba(88,101,242,0.38) !important;
}
.tide-btn-discord::after {
  background: radial-gradient(ellipse at 50% 100%, rgba(88,101,242,0.3) 0%, transparent 65%);
}
.tide-btn-discord:hover {
  border-color: rgba(88,101,242,0.75) !important;
  box-shadow:
    0 0 20px rgba(88,101,242,0.28),
    0 6px 20px rgba(0,0,0,0.35) !important;
}

/* Outline */
.tide-btn-outline {
  background: linear-gradient(135deg, rgba(46,232,255,0.09) 0%, rgba(20,102,224,0.04) 100%) !important;
  color: var(--cyan) !important;
  border-color: rgba(46,232,255,0.38) !important;
}
.tide-btn-outline:hover {
  background: linear-gradient(135deg, rgba(46,232,255,0.14) 0%, rgba(20,102,224,0.08) 100%) !important;
  border-color: rgba(46,232,255,0.75) !important;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.tide-hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 120px 0 80px;
}

.tide-hero__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: center;
}

@media (max-width: 960px) {
  .tide-hero__inner { grid-template-columns: 1fr; }
  .tide-hero__right { display: none; }
}

.tide-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(46,232,255,0.07);
  border: 1px solid rgba(46,232,255,0.22);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 2rem;
}

.tide-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan); flex-shrink: 0;
}

.tide-headline {
  font-size: clamp(3rem, 6vw, 5.5rem) !important;
  font-weight: 900 !important; line-height: 1.04 !important;
  letter-spacing: -0.035em !important;
  color: var(--text) !important; margin-bottom: 1.5rem;
}
.tide-headline .accent { color: var(--cyan) !important; }

.tide-sub {
  font-size: 1.05rem; color: var(--text-dim) !important;
  max-width: 480px; line-height: 1.7; margin-bottom: 2.5rem;
}

.tide-actions {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
  margin-bottom: 3rem; position: relative; z-index: 3;
}

.tide-tags { display: flex; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 3; }

.tide-tag { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.tide-tag strong { color: var(--text-dim); font-weight: 700; margin-right: 0.3rem; }

/* Hero right panel */
.tide-hero__panel {
  background: linear-gradient(160deg, #141416 0%, #0d0d0f 55%, #0a0a0a 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(46,232,255,0.06), 0 20px 60px rgba(0,0,0,0.5);
}

.tide-hero__panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(46,232,255,0.04);
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-dim);
}

.tide-hero__panel-toggle {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em;
  color: #22c55e; background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 0.18rem 0.6rem; border-radius: 100px;
}

.tide-hero__panel-body { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }

.tide-hero__panel-section-title {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.6rem;
}

.tide-hero__panel-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.35rem 0;
  font-size: 0.82rem; color: var(--text-dim);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tide-hero__panel-row:last-child { border-bottom: none; }
.tide-hero__panel-val { color: var(--cyan); font-weight: 600; font-size: 0.8rem; }

.tide-hero__panel-op {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.3rem 0; font-size: 0.82rem; color: var(--text-dim);
}
.tide-hero__panel-check { color: var(--cyan); font-size: 0.75rem; font-weight: 700; }

.tide-hero__panel-footer {
  padding: 0.85rem 1.25rem;
  font-size: 0.75rem; color: var(--text-muted);
  background: rgba(255,255,255,0.015);
}

/* Hero entrance animations */
.tide-hero .tide-badge {
  animation: tideFadeUp 0.75s var(--ease) 0.05s both;
}
.tide-hero .tide-headline {
  animation: tideFadeUp 0.8s var(--ease) 0.18s both;
}
.tide-hero .tide-sub {
  animation: tideFadeUp 0.75s var(--ease) 0.3s both;
}
.tide-hero .tide-actions {
  animation: tideFadeUp 0.7s var(--ease) 0.42s both;
}
.tide-hero .tide-tags {
  animation: tideFadeUp 0.65s var(--ease) 0.54s both;
}
.tide-hero__right {
  animation: tideFadeUp 0.9s var(--ease) 0.28s both;
}

@keyframes tideFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.tide-section { padding: 100px 0; }

.tide-section-label {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.25rem;
}

.tide-section-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important; color: var(--text) !important;
  margin-bottom: 3rem; letter-spacing: -0.025em !important;
}

/* ── Unified card hover language ── */
.tide-feature-card,
.tide-product-card,
.tide-review-card,
.tide-faq-card,
.tide-install-step,
.tide-rain-card {
  transition:
    border-color 0.25s var(--ease),
    transform    0.25s var(--ease),
    box-shadow   0.25s var(--ease) !important;
  will-change: transform;
}

.tide-feature-card:hover,
.tide-product-card:hover,
.tide-review-card:hover,
.tide-install-step:hover,
.tide-rain-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(46,232,255,0.22) !important;
}

.tide-faq-card:hover {
  border-color: rgba(46,232,255,0.2) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
}

/* ══════════════════════════════════════
   FEATURES — glass cards, Rain grid
   ══════════════════════════════════════ */
.tide-features-rain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 900px) {
  .tide-feature-card:nth-child(1) { grid-column: 1 / 3; }
  .tide-feature-card:nth-child(2) { grid-column: 3 / 4; }
}
@media (max-width: 900px) { .tide-features-rain { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .tide-features-rain { grid-template-columns: 1fr; } }

.tide-feature-card {
  background: #0a0a0a;
  border: none;
  border-radius: var(--r-lg); padding: 1.75rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
  cursor: default; position: relative; overflow: hidden;
}
.tide-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,232,255,0) 14%, rgba(46,232,255,0.42) 30%, rgba(46,232,255,0.42) 70%, rgba(46,232,255,0) 86%, transparent 100%);
  opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none;
}
.tide-feature-card:hover::before { opacity: 1; }

.tide-feature-num {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 1.25rem;
}

.tide-feature-card__icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(240,244,248,0.45);
  margin-bottom: 1.25rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.tide-feature-card:hover .tide-feature-card__icon {
  background: rgba(46,232,255,0.07);
  border-color: rgba(46,232,255,0.22);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(46,232,255,0.12);
}

.tide-feature-card__title {
  font-size: 1.05rem !important; font-weight: 700 !important;
  color: var(--text) !important; margin-bottom: 0.65rem;
  letter-spacing: -0.01em !important; line-height: 1.3 !important;
}

.tide-feature-card__desc {
  font-size: 0.875rem; color: var(--text-dim) !important; line-height: 1.65;
}

/* ══════════════════════════════════════
   PLANS / PRODUCTS
   ══════════════════════════════════════ */
.tide-products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.tide-product-card {
  background: #0a0a0a;
  border: none;
  border-radius: var(--r-lg); padding: 2rem;
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
  overflow: hidden;
}
.tide-product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(46,232,255,0) 14%, rgba(46,232,255,0.45) 30%, rgba(46,232,255,0.45) 70%, rgba(46,232,255,0) 86%, transparent 100%);
  opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none;
}
.tide-product-card:hover::before { opacity: 1; }

.tide-product-card--premium {
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(46,232,255,0.22), 0 0 34px rgba(46,232,255,0.05);
}
.tide-product-card--premium::before { opacity: 1; }

.tide-product-card--premium:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.5), 0 0 28px rgba(46,232,255,0.10), inset 0 0 0 1px rgba(46,232,255,0.35) !important;
}

.tide-product-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.22rem 0.7rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.tide-product-badge--free {
  background: rgba(255,255,255,0.04); color: var(--text-dim);
  border: 1px solid var(--border);
}
.tide-product-badge--premium {
  background: rgba(46,232,255,0.08); color: var(--cyan);
  border: 1px solid rgba(46,232,255,0.25);
}

.tide-product-name {
  font-size: 1.5rem !important; font-weight: 800 !important;
  color: var(--text) !important; margin-bottom: 0.5rem;
}
.tide-product-price {
  font-size: 2.2rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 0.25rem;
}
.tide-product-price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.tide-product-desc {
  font-size: 0.875rem; color: var(--text-dim) !important;
  margin-bottom: 1.75rem; line-height: 1.6;
}

.tide-feature-list {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  flex: 1;
}
.tide-feature-list li {
  font-size: 0.875rem; color: var(--text-dim);
  display: flex; align-items: center; gap: 0.6rem;
}
.tide-feature-list li::before {
  content: '✓'; color: var(--cyan); font-weight: 700; font-size: 0.78rem; flex-shrink: 0;
}
.tide-feature-list li.locked { color: var(--text-muted); }
.tide-feature-list li.locked::before { content: '✕'; color: var(--text-muted); }
.tide-product-card .tide-btn { width: 100%; }

/* ══════════════════════════════════════
   INSTALL — compact steps + panel
   ══════════════════════════════════════ */
.tide-install-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start;
}
@media (max-width: 900px) { .tide-install-grid { grid-template-columns: 1fr; } }

.tide-install-steps { display: flex; flex-direction: column; gap: 0.6rem; }

.tide-install-step {
  display: flex; align-items: flex-start; gap: 1.75rem;
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.tide-install-step:hover {
  border-color: rgba(46,232,255,0.28) !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

.tide-install-step__num {
  font-size: 0.9rem; font-weight: 800; letter-spacing: 0.05em;
  color: var(--cyan); flex-shrink: 0; min-width: 28px; opacity: 0.65;
}
.tide-install-step__body { flex: 1; }
.tide-install-step__title {
  font-size: 0.975rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.3rem; font-family: var(--font); letter-spacing: -0.01em;
}
.tide-install-step__desc {
  font-size: 0.85rem; color: var(--text-dim); line-height: 1.55;
}

.tide-install-panel {
  background: linear-gradient(155deg, #141416 0%, #0d0d0f 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.75rem; position: sticky; top: 82px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.tide-install-panel__label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.tide-install-panel__label::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  background: #22c55e; border-radius: 50%;
  box-shadow: 0 0 6px rgba(34,197,94,0.9);
}

.tide-install-panel__title {
  font-size: 1.8rem; font-weight: 900; color: var(--text);
  letter-spacing: -0.03em; margin-bottom: 0.25rem;
}
.tide-install-panel__sub { font-size: 0.78rem; color: var(--text-muted); }

.tide-install-panel__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.1rem; margin-top: 0.5rem;
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 600; color: var(--text-dim);
  text-decoration: none; font-family: var(--font);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.tide-install-panel__row:hover {
  background: rgba(46,232,255,0.05);
  border-color: rgba(46,232,255,0.28);
  box-shadow: 0 0 12px rgba(46,232,255,0.07);
  color: var(--text);
}
.tide-install-panel__row--active {
  background: rgba(240,244,248,0.05);
  border-color: rgba(255,255,255,0.16); color: var(--text);
}

/* ══════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════ */
.tide-reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem;
}

.tide-review-card {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.5rem; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.tide-review-stars { color: var(--cyan); font-size: 0.85rem; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.tide-review-text { font-size: 0.9rem; color: var(--text-dim) !important; margin-bottom: 1.25rem; line-height: 1.6; }
.tide-review-author { display: flex; align-items: center; gap: 0.75rem; }
.tide-review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; color: var(--cyan); flex-shrink: 0;
}
.tide-review-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.tide-review-meta { font-size: 0.75rem; color: var(--text-muted); }

.tide-rating-summary { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2.5rem; }
.tide-rating-summary__score { font-size: 3.5rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -0.03em; }
.tide-rating-summary__stars { font-size: 1.2rem; color: var(--cyan); margin-bottom: 0.2rem; }
.tide-rating-summary__count { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ══════════════════════════════════════
   FAQ — smooth accordion, starts closed
   ══════════════════════════════════════ */
.tide-faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.85rem; }
@media (max-width: 768px) { .tide-faq-grid { grid-template-columns: 1fr; } }

.tide-faq-card {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 1.15rem 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.tide-faq-card__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; background: none; border: none; cursor: pointer;
  padding: 0; font-family: var(--font);
}
.tide-faq-card__question {
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  text-align: left; line-height: 1.4;
}
.tide-faq-card__icon {
  font-size: 0.72rem; color: var(--text-muted); flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.2s;
  transform: rotate(45deg); font-style: normal;
}
.tide-faq-card__icon.open { transform: rotate(0deg); color: var(--text-dim); }

.tide-faq-card__answer {
  font-size: 0.875rem; color: var(--text-dim) !important;
  line-height: 1.65; padding-top: 0.85rem;
}

/* ══════════════════════════════════════
   STATUS
   ══════════════════════════════════════ */
.tide-status-table {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}

.tide-status-row {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1.25rem 2rem; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.tide-status-row:last-child { border-bottom: none; }
.tide-status-row:hover { background: rgba(255,255,255,0.02); }

.tide-status-row__name { font-size: 0.975rem; font-weight: 700; color: var(--text); min-width: 140px; flex-shrink: 0; }
.tide-status-row__since { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.tide-status-row__since-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.tide-status-row__since-val { font-size: 0.875rem; font-weight: 500; color: var(--text-dim); }

.tide-status-row__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.32rem 0.85rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; flex-shrink: 0;
}
.tide-status-row__badge--green {
  background: rgba(34,197,94,0.09); color: #22c55e;
  border: 1px solid rgba(34,197,94,0.22);
  box-shadow: 0 0 10px rgba(34,197,94,0.1);
}
.tide-status-row__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.tide-status-row__dot.green { background: #22c55e; box-shadow: 0 0 7px rgba(34,197,94,0.9); }
.tide-status-row__dot.yellow { background: #f59e0b; box-shadow: 0 0 7px rgba(245,158,11,0.9); }
.tide-status-row__dot.red { background: #ef4444; box-shadow: 0 0 7px rgba(239,68,68,0.9); }

/* ══════════════════════════════════════
   CTA + FOOTER
   ══════════════════════════════════════ */
.tide-cta-box {
  background: linear-gradient(135deg, #0d1a28 0%, #0e2030 35%, #0f2540 65%, rgba(0,140,180,0.18) 100%);
  border: 1px solid rgba(46,232,255,0.2); border-radius: var(--r-lg);
  padding: 4rem; position: relative; overflow: hidden; z-index: 2;
  box-shadow: 0 0 60px rgba(20,102,224,0.07), inset 0 1px 0 rgba(46,232,255,0.07);
}
.tide-cta-box::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(46,232,255,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.tide-cta-box > * { position: relative; z-index: 1; }

.tide-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ══════════════════════════════════════
   NATIVE SELLAUTH PRODUCT CARDS
   ══════════════════════════════════════ */
.tide-rain-card {
  display: block;
  background: #0a0a0a;
  border: none; border-radius: var(--r-lg);
  overflow: hidden; text-decoration: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
  position: relative;
}
.tide-rain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, rgba(46,232,255,0) 14%, rgba(46,232,255,0.45) 30%, rgba(46,232,255,0.45) 70%, rgba(46,232,255,0) 86%, transparent 100%);
  opacity: 0; transition: opacity 0.3s var(--ease); pointer-events: none;
}
.tide-rain-card:hover::before { opacity: 1; }
.tide-rain-card__image {
  aspect-ratio: var(--product-card-image-aspect-ratio, 16/9);
  width: 100%; overflow: hidden; background: #0a0a0a;
  border-bottom: 1px solid var(--line-soft); position: relative;
}
.tide-rain-card__image img { width: 100%; height: 100%; object-fit: var(--product-image-fit, cover); object-position: center; display: block; }
.tide-rain-card__body { padding: 1.25rem 1.25rem 0; }
.tide-rain-card__name { font-size: 1.1rem !important; font-weight: 700 !important; color: var(--text) !important; margin-bottom: 0.5rem; }
.tide-rain-card__footer { padding: 1rem 1.25rem 1.25rem; }
.tide-rain-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.tide-rain-card__price { font-size: 1.3rem; font-weight: 800; color: var(--cyan) !important; display: flex; align-items: baseline; gap: 0.5rem; }
.tide-rain-card__slash { font-size: 0.9rem; color: var(--text-muted) !important; text-decoration: line-through; }
.tide-rain-card__stock { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }
.tide-rain-card__badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }
.tide-rain-card__badge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 100px; color: #fff; }
.tide-rain-card__btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.65rem 1rem;
  border: 1px solid var(--border-accent); border-radius: var(--r);
  font-size: 0.875rem; font-weight: 600; color: var(--cyan) !important;
  transition: background 0.2s, border-color 0.2s; font-family: var(--font);
}
.tide-rain-card:hover .tide-rain-card__btn { background: linear-gradient(95deg,#1466e0,#2ee8ff); border-color: transparent; color: #021018 !important; }

/* ══════════════════════════════════════
   PRODUCT PAGE
   ══════════════════════════════════════ */
.tide-product-page-wrap { position: relative; z-index: 2; }

.tide-product-page__hero { margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.tide-product-page__headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  font-weight: 900 !important; letter-spacing: -0.03em !important;
  color: var(--text) !important; line-height: 1.05 !important; margin: 0 !important;
}

.tide-product-page__grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start;
}
@media (max-width: 900px) { .tide-product-page__grid { grid-template-columns: 1fr; } }

.tide-product-page__img {
  width: 100%; border-radius: var(--r-lg); border: 1px solid var(--border); display: block; margin-bottom: 1.5rem;
}

.tide-product-page__desc-card {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}

.tide-product-page__tabs { display: flex; gap: 0.5rem; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); }
.tide-product-page__tab {
  font-size: 0.85rem; font-weight: 600; color: var(--text-dim);
  background: none; border: 1px solid transparent; border-radius: 6px;
  padding: 0.35rem 0.85rem; cursor: pointer; font-family: var(--font);
  transition: color 0.18s, background 0.18s, border-color 0.18s;
}
.tide-product-page__tab:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.tide-product-page__tab.active { color: var(--cyan); background: var(--cyan-dim); border-color: rgba(46,232,255,0.25); }

.tide-product-page__desc-content { padding: 1.5rem 1.75rem; color: var(--text-dim); font-size: 0.925rem; line-height: 1.75; }
.tide-product-page__desc-content h1, .tide-product-page__desc-content h2, .tide-product-page__desc-content h3 { color: var(--text) !important; font-weight: 800 !important; letter-spacing: -0.02em !important; margin: 1.5rem 0 0.6rem !important; }
.tide-product-page__desc-content h1 { font-size: 1.3rem !important; }
.tide-product-page__desc-content h2 { font-size: 1.1rem !important; }
.tide-product-page__desc-content strong { color: var(--cyan) !important; font-weight: 700 !important; }
.tide-product-page__desc-content p { color: var(--text-dim) !important; margin-bottom: 0.75rem; }
.tide-product-page__desc-content ul { list-style: none !important; padding: 0 !important; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.tide-product-page__desc-content ul li { display: flex; align-items: center; gap: 0.6rem; color: var(--text-dim); font-size: 0.9rem; }
.tide-product-page__desc-content ul li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; }

.tide-product-page__panel {
  background: linear-gradient(155deg, #141416 0%, #0d0d0f 100%);
  border: 1px solid var(--border-accent); border-radius: var(--r-lg);
  overflow: hidden; position: sticky; top: 80px;
}
.tide-product-page__price-row {
  display: flex; align-items: baseline; gap: 0.75rem;
  padding: 1.5rem 1.75rem; border-bottom: 1px solid var(--border);
  background: rgba(46,232,255,0.025); flex-wrap: wrap;
}
.tide-product-page__price { font-size: 2rem; font-weight: 900; color: var(--text); font-family: var(--font); letter-spacing: -0.02em; }
.tide-product-page__price-each { font-size: 0.85rem; color: var(--text-muted); }
.tide-product-page__stock { margin-left: auto; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

.tide-product-page__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1rem 1.75rem; border-bottom: 1px solid var(--border); }
.tide-product-page__badge-item {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 100px;
  background: var(--cyan-dim); border: 1px solid rgba(46,232,255,0.25); color: var(--cyan);
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
}

.tide-product-page__live-stats { display: flex; flex-direction: column; gap: 0.6rem; padding: 1rem 1.75rem; border-top: 1px solid var(--border); }
.tide-product-page__live-stat { display: flex; align-items: center; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted); }
.tide-product-page__live-stat strong { color: var(--text-dim); }

/* ══════════════════════════════════════
   PRODUCT FORM
   ══════════════════════════════════════ */
.tide-pform-wrap { padding: 1.5rem 1.75rem; }
.tide-pform-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.7rem; font-family: var(--font); }

.tide-pform-qty {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; margin-bottom: 1.25rem; background: var(--surface);
}
.tide-pform-qty-btn {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03); border: none; color: var(--text-dim);
  cursor: pointer; transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.tide-pform-qty-btn:hover:not(:disabled) { background: var(--cyan-dim); color: var(--cyan); }
.tide-pform-qty-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.tide-pform-qty-input {
  flex: 1; background: transparent; border: none; color: var(--text);
  text-align: center; font-size: 1rem; font-weight: 600; font-family: var(--font); outline: none;
}

.tide-pform-actions { display: flex; flex-direction: row; gap: 0.75rem; }

.tide-pform-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  flex: 1; padding: 0.75rem 1rem; border-radius: var(--r);
  font-size: 0.875rem; font-weight: 700; font-family: var(--font);
  cursor: pointer; white-space: nowrap;
  transition: background 0.2s var(--ease), transform 0.22s var(--spring), box-shadow 0.22s var(--ease);
  border: none; letter-spacing: 0.01em;
}
.tide-pform-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

.tide-pform-btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #00b8d9 100%);
  color: var(--bg) !important;
}
.tide-pform-btn--primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #20e8ff 0%, var(--cyan) 100%);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(46,232,255,0.3), 0 4px 12px rgba(0,0,0,0.3);
}

.tide-pform-btn--outline {
  background: transparent; color: var(--cyan) !important;
  border: 1px solid rgba(46,232,255,0.35) !important;
}
.tide-pform-btn--outline:hover:not(:disabled) {
  background: var(--cyan-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(46,232,255,0.15);
}

/* ══════════════════════════════════════
   LOGIN MODAL
   ══════════════════════════════════════ */
.fixed [class*="bg-card"], [class*="modal"] [class*="bg-card"] {
  background-color: #0d0d0f !important;
  border-color: rgba(46,232,255,0.22) !important;
  border-radius: var(--r-lg) !important;
}
[class*="modal"] input, [class*="modal"] select, [class*="modal"] textarea {
  background-color: var(--surface) !important; border-color: var(--border) !important;
  color: var(--text) !important; border-radius: 8px !important;
}
[class*="modal"] input::placeholder { color: var(--text-muted) !important; }
[class*="modal"] label { color: var(--text-dim) !important; }
[class*="modal"] button.bg-accent-500 {
  background: var(--cyan) !important; color: var(--bg) !important;
  font-weight: 700 !important; border-radius: var(--r) !important;
}
.fixed.inset-0.bg-black, [class*="modal"] .bg-black\/50, [class*="modal"] .bg-black\/75 {
  background-color: rgba(0,0,0,0.8) !important; backdrop-filter: blur(4px) !important;
}

/* ══════════════════════════════════════
   CART PAGE
   ══════════════════════════════════════ */
[data-component-id="cart-page"] .bg-card\/75, [data-component-id="cart-page"] .bg-card {
  background: var(--card) !important; border-color: var(--border) !important; border-radius: var(--r-lg) !important;
}
[data-component-id="cart-page"] .text-accent-500 { color: var(--cyan) !important; }
[data-component-id="cart-page"] button.bg-accent-500 {
  background: var(--cyan) !important; color: var(--bg) !important;
  font-weight: 700 !important; border-radius: var(--r) !important;
}
[data-component-id="cart-page"] input {
  background: var(--surface) !important; border-color: var(--border) !important;
  color: var(--text) !important; border-radius: 8px !important;
}

/* ══════════════════════════════════════
   POLICY PAGES
   ══════════════════════════════════════ */
.tide-policy-wrap { max-width: 780px; margin: 0 auto; padding: 100px 2rem 80px; }
.tide-policy-card {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%) !important;
  border: 1px solid var(--border) !important; border-radius: var(--r-lg) !important;
  padding: 2.5rem !important; color: var(--text-dim) !important;
  font-size: 0.925rem !important; line-height: 1.75 !important;
}
.tide-policy-card h1, .tide-policy-card h2, .tide-policy-card h3 { color: var(--text) !important; font-weight: 700 !important; margin: 1.5rem 0 0.5rem !important; }
.tide-policy-card p { color: var(--text-dim) !important; margin-bottom: 0.75rem; }
.tide-policy-card a { color: var(--cyan) !important; }
.tide-policy-card strong { color: var(--text) !important; }
.tide-policy-card hr { border: none; border-top: 1px solid var(--border) !important; margin: 1.5rem 0; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════ */
.tide-anim--up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease) !important;
}
.tide-anim--fade {
  opacity: 0; transition: opacity 0.65s var(--ease) !important;
}
.tide-anim--left {
  opacity: 0; transform: translateX(-18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease) !important;
}
.tide-anim--scale {
  opacity: 0; transform: scale(0.97) translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease) !important;
}
.tide-anim.tide-visible {
  opacity: 1 !important; transform: none !important;
}

/* Page entrance */
.components { animation: tideFadeUp 0.5s var(--ease) 0.05s both; }

/* ══════════════════════════════════════
   SALES TOAST
   ══════════════════════════════════════ */
.tide-sales-toast {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5); max-width: 300px;
}
.tide-sales-toast__img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.tide-sales-toast__line1 { font-size: 0.75rem; color: var(--text-muted); }
.tide-sales-toast__name { font-size: 0.875rem; font-weight: 700; color: var(--text); }
.tide-sales-toast__time { font-size: 0.72rem; color: var(--text-muted); }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .tide-headline { font-size: clamp(2.5rem, 10vw, 4rem) !important; }
  .tide-section { padding: 70px 0; }
  .tide-cta-box { padding: 2.5rem 1.5rem; }
  .tide-actions { flex-direction: column; }
  .tide-status-row { flex-wrap: wrap; gap: 0.75rem; padding: 1rem 1.25rem; }
}

/* ══════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .tide-btn, .tide-feature-card, .tide-product-card,
  .tide-review-card, .tide-faq-card, .tide-install-step,
  .tide-anim--up, .tide-anim--fade, .tide-anim--left, .tide-anim--scale {
    transition: none !important; animation: none !important;
  }
  .tide-hero .tide-badge, .tide-hero .tide-headline, .tide-hero .tide-sub,
  .tide-hero .tide-actions, .tide-hero .tide-tags, .tide-hero__right {
    animation: none !important; opacity: 1 !important;
  }
}

/* ════════════════════════════════════════
   POLISH PASS 2
   FAQ animation, button gradients,
   feature glow, install compact, CTA wide
   ════════════════════════════════════════ */

/* ── FAQ - proper collapse ── */
.tide-faq-card {
  padding: 1.1rem 1.4rem !important;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease) !important;
  transform: none !important;
}

.tide-faq-card__btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; background: none; border: none; cursor: pointer; padding: 0;
  font-family: var(--font);
}

.tide-faq-card__question {
  font-size: 0.9rem; font-weight: 600; color: var(--text-dim);
  text-align: left; line-height: 1.4;
  transition: color 0.2s;
}

.tide-faq-q--open { color: var(--text) !important; }

.tide-faq-card__icon {
  font-size: 1rem; color: var(--text-muted); flex-shrink: 0;
  line-height: 1; font-style: normal; width: 20px; text-align: center;
  transition: color 0.2s;
}

.tide-faq-icon--open { color: var(--text-dim) !important; }

.tide-faq-card__answer {
  font-size: 0.875rem; color: var(--text-dim) !important;
  line-height: 1.65; padding-top: 0.85rem; padding-bottom: 0.1rem;
}

/* Open card gets slightly lighter bg */
.tide-faq-card:has(.tide-faq-q--open) {
  background: linear-gradient(155deg, #18253a 0%, #111e2d 100%) !important;
  border-color: rgba(255,255,255,0.1) !important;
}

/* ── Buttons - Rain-style teal gradient ── */
.tide-btn {
  background: linear-gradient(180deg,
    rgba(255,255,255,0.07) 0%,
    rgba(20,102,224,0.12) 40%,
    rgba(20,102,224,0.18) 100%
  ) !important;
  border: 1px solid rgba(46,232,255,0.32) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 2px 8px rgba(0,0,0,0.3) !important;
  transition:
    transform    0.22s var(--spring),
    box-shadow   0.22s var(--ease),
    border-color 0.22s var(--ease),
    filter       0.22s var(--ease) !important;
}

.tide-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  filter: brightness(1.15) !important;
  border-color: rgba(46,232,255,0.65) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 18px rgba(46,232,255,0.22),
    0 0 36px rgba(46,232,255,0.08),
    0 6px 18px rgba(0,0,0,0.4) !important;
}

.tide-btn:active {
  transform: translateY(-1px) scale(1.01) !important;
  filter: brightness(1.05) !important;
}

/* Primary button - Tide blue/cyan gradient with dark text */
.tide-btn-primary {
  background: linear-gradient(95deg, #1466e0, #2ee8ff) !important;
  color: #021018 !important;
  border: 1px solid rgba(46,232,255,0.55) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 2px 10px rgba(20,102,224,0.30) !important;
}

.tide-btn-primary:hover {
  background: linear-gradient(95deg, #1f74ee, #5ff2ff) !important;
  color: #021018 !important;
  border-color: rgba(46,232,255,0.8) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    0 0 20px rgba(46,232,255,0.28),
    0 6px 22px rgba(20,102,224,0.35) !important;
  filter: none !important;
}

/* Discord button */
.tide-btn-discord {
  background: linear-gradient(180deg,
    rgba(88,101,242,0.22) 0%,
    rgba(88,101,242,0.14) 100%
  ) !important;
  color: #c4caff !important;
  border: 1px solid rgba(88,101,242,0.38) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 2px 8px rgba(0,0,0,0.3) !important;
}

.tide-btn-discord:hover {
  background: linear-gradient(180deg,
    rgba(88,101,242,0.32) 0%,
    rgba(88,101,242,0.22) 100%
  ) !important;
  border-color: rgba(88,101,242,0.65) !important;
  box-shadow:
    0 0 18px rgba(88,101,242,0.28),
    0 6px 18px rgba(0,0,0,0.35) !important;
  filter: brightness(1.1) !important;
}

/* Outline button */
.tide-btn-outline {
  background: linear-gradient(180deg,
    rgba(46,232,255,0.1) 0%,
    rgba(20,102,224,0.06) 100%
  ) !important;
  color: var(--cyan) !important;
  border: 1px solid rgba(46,232,255,0.35) !important;
}

.tide-btn-outline:hover {
  background: linear-gradient(180deg,
    rgba(46,232,255,0.16) 0%,
    rgba(20,102,224,0.1) 100%
  ) !important;
  border-color: rgba(46,232,255,0.65) !important;
  filter: brightness(1.12) !important;
}

/* ── Feature card - text glow on hover ── */
.tide-feature-card__title {
  transition: color 0.25s, text-shadow 0.25s !important;
}

.tide-feature-card:hover .tide-feature-card__title {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(200,230,255,0.35) !important;
}

.tide-feature-card__desc {
  transition: color 0.25s !important;
}

.tide-feature-card:hover .tide-feature-card__desc {
  color: rgba(180,210,230,0.85) !important;
}

/* ── Install steps - compact ── */
.tide-install-step {
  padding: 1.1rem 1.6rem !important;
  gap: 1.5rem !important;
}

.tide-install-step__title {
  font-size: 0.95rem !important;
  margin-bottom: 0.2rem !important;
}

.tide-install-step__desc {
  font-size: 0.8rem !important;
  line-height: 1.4 !important;
  color: var(--text-muted) !important;
}

.tide-install-steps { gap: 0.5rem !important; }

/* ── CTA box - full width like Rain ── */
.tide-cta-box {
  background: linear-gradient(135deg,
    #091622 0%,
    #0c1e30 25%,
    #0e2438 50%,
    rgba(0,160,200,0.2) 80%,
    rgba(20,102,224,0.12) 100%
  ) !important;
  border-radius: 16px !important;
  padding: 4.5rem 5rem !important;
  border: 1px solid rgba(46,232,255,0.18) !important;
  box-shadow:
    0 0 80px rgba(20,102,224,0.08),
    inset 0 1px 0 rgba(46,232,255,0.07) !important;
}

@media (max-width: 768px) {
  .tide-cta-box { padding: 3rem 2rem !important; }
}

/* ════════════════════════════════════════
   POLISH PASS 3
   ════════════════════════════════════════ */

/* ── FAQ Alpine transitions ── */
.tide-faq-enter {
  transition: max-height 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease !important;
}
.tide-faq-enter-start { max-height: 0 !important; opacity: 0 !important; }
.tide-faq-enter-end { max-height: 200px !important; opacity: 1 !important; }

.tide-faq-leave {
  transition: max-height 0.32s cubic-bezier(0.22,1,0.36,1), opacity 0.22s ease !important;
}
.tide-faq-leave-start { max-height: 200px !important; opacity: 1 !important; }
.tide-faq-leave-end { max-height: 0 !important; opacity: 0 !important; }

/* ── Card hover expansion ── */
.tide-feature-card,
.tide-product-card,
.tide-review-card,
.tide-faq-card,
.tide-install-step,
.tide-rain-card {
  transition:
    border-color 0.25s var(--ease),
    transform    0.3s var(--spring),
    box-shadow   0.25s var(--ease) !important;
}

.tide-feature-card:hover {
  transform: translateY(-4px) scale(1.012) !important;
  border-color: rgba(46,232,255,0.3) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(46,232,255,0.06) !important;
}

.tide-product-card:hover {
  transform: translateY(-4px) scale(1.012) !important;
  border-color: rgba(46,232,255,0.35) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4) !important;
}

.tide-review-card:hover {
  transform: translateY(-3px) scale(1.01) !important;
  border-color: rgba(46,232,255,0.25) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35) !important;
}

.tide-faq-card:hover {
  transform: scale(1.008) !important;
  border-color: rgba(46,232,255,0.2) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
}

.tide-install-step:hover {
  transform: translateX(4px) scale(1.005) !important;
  border-color: rgba(46,232,255,0.28) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

/* Open FAQ card - slightly brighter bg */
.tide-faq-card:has(.tide-faq-q--open) {
  background: linear-gradient(155deg, #18253a 0%, #111e2d 100%) !important;
  border-color: rgba(255,255,255,0.1) !important;
}

/* ── CTA box - proper width like Rain ── */
.tide-cta-box {
  padding: 4rem 4.5rem !important;
  max-width: 100% !important;
}

/* Ensure footer CTA wrapper has right padding */
[class*="tide-cta"],
.tide-cta-box {
  box-sizing: border-box;
}

/* ── Install steps height alignment ── */
.tide-install-steps {
  display: flex;
  flex-direction: column;
  gap: 0.55rem !important;
  justify-content: space-between;
}

.tide-install-step {
  flex: 1;
  padding: 1.2rem 1.6rem !important;
}

/* ════════════════════════════════════════
   POLISH PASS 4
   ════════════════════════════════════════ */

/* ── FAQ - slow down open to match close ── */
.tide-faq-enter {
  transition: max-height 0.38s cubic-bezier(0.22,1,0.36,1), opacity 0.32s ease !important;
}
.tide-faq-enter-start { max-height: 0 !important; opacity: 0 !important; }
.tide-faq-enter-end { max-height: 300px !important; opacity: 1 !important; }
.tide-faq-leave {
  transition: max-height 0.36s cubic-bezier(0.22,1,0.36,1), opacity 0.28s ease !important;
}
.tide-faq-leave-start { max-height: 300px !important; opacity: 1 !important; }
.tide-faq-leave-end { max-height: 0 !important; opacity: 0 !important; }

/* ── Section spacing - reduce all except hero ── */
.tide-section { padding: 70px 0 !important; }
.tide-hero { padding: 120px 0 80px !important; }

/* ── White gradient buttons - more pronounced ── */
.tide-btn-primary {
  background: linear-gradient(180deg,
    #ffffff 0%,
    #e8f4fc 50%,
    #cce8f8 100%
  ) !important;
  color: #060e18 !important;
  border: 1px solid rgba(255,255,255,0.5) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 -2px 0 rgba(0,80,120,0.15),
    0 3px 12px rgba(0,0,0,0.35),
    0 0 0 1px rgba(180,220,240,0.2) !important;
}

.tide-btn-primary:hover {
  background: linear-gradient(180deg,
    #ffffff 0%,
    #f0f8ff 50%,
    #ddf2ff 100%
  ) !important;
  border-color: rgba(255,255,255,0.7) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 0 20px rgba(200,235,255,0.3),
    0 6px 18px rgba(0,0,0,0.35) !important;
  filter: none !important;
}

/* ── Card gradients + edge glow ── */
.tide-feature-card {
  background: linear-gradient(155deg,
    rgba(30,30,34,0.95) 0%,
    rgba(20,20,23,0.97) 50%,
    rgba(14,14,16,1) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 0 0 1px rgba(46,232,255,0.04),
    0 4px 24px rgba(0,0,0,0.3) !important;
}

.tide-feature-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(46,232,255,0.12),
    0 0 20px rgba(46,232,255,0.07),
    0 12px 36px rgba(0,0,0,0.4) !important;
}

.tide-product-card {
  background: linear-gradient(155deg,
    rgba(28,28,32,0.95) 0%,
    rgba(18,18,21,0.97) 55%,
    rgba(13,13,15,1) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(46,232,255,0.04),
    0 4px 24px rgba(0,0,0,0.3) !important;
}

.tide-product-card--premium {
  background: linear-gradient(155deg,
    rgba(24,24,28,0.95) 0%,
    rgba(0,140,180,0.08) 50%,
    rgba(12,12,14,1) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(46,232,255,0.08),
    0 0 0 1px rgba(46,232,255,0.1),
    0 0 24px rgba(46,232,255,0.06),
    0 4px 24px rgba(0,0,0,0.3) !important;
}

.tide-product-card--premium:hover {
  box-shadow:
    inset 0 1px 0 rgba(46,232,255,0.1),
    0 0 0 1px rgba(46,232,255,0.2),
    0 0 30px rgba(46,232,255,0.1),
    0 12px 36px rgba(0,0,0,0.4) !important;
}

.tide-product-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 0 0 1px rgba(46,232,255,0.1),
    0 0 18px rgba(46,232,255,0.06),
    0 12px 36px rgba(0,0,0,0.4) !important;
}

.tide-review-card {
  background: linear-gradient(155deg,
    rgba(24,24,28,0.95) 0%,
    rgba(16,16,18,0.97) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(46,232,255,0.03),
    0 4px 16px rgba(0,0,0,0.25) !important;
}

.tide-review-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(46,232,255,0.1),
    0 0 16px rgba(46,232,255,0.06),
    0 8px 28px rgba(0,0,0,0.35) !important;
}

.tide-faq-card {
  background: linear-gradient(155deg,
    rgba(22,22,25,0.95) 0%,
    rgba(18,18,20,0.97) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(46,232,255,0.03),
    0 2px 12px rgba(0,0,0,0.2) !important;
}

.tide-faq-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(46,232,255,0.09),
    0 0 12px rgba(46,232,255,0.05),
    0 4px 16px rgba(0,0,0,0.3) !important;
}

.tide-install-step {
  background: linear-gradient(155deg,
    rgba(22,22,25,0.95) 0%,
    rgba(18,18,20,0.97) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(46,232,255,0.03),
    0 2px 12px rgba(0,0,0,0.2) !important;
}

.tide-install-step:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 0 1px rgba(46,232,255,0.1),
    0 0 14px rgba(46,232,255,0.06),
    0 4px 20px rgba(0,0,0,0.3) !important;
}

.tide-install-panel {
  background: linear-gradient(155deg,
    rgba(26,26,30,0.97) 0%,
    rgba(18,18,20,1) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 0 0 1px rgba(46,232,255,0.06),
    0 0 20px rgba(46,232,255,0.04),
    0 4px 24px rgba(0,0,0,0.3) !important;
}

.tide-status-table {
  background: linear-gradient(155deg,
    rgba(22,22,25,0.95) 0%,
    rgba(18,18,20,0.97) 100%
  ) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(46,232,255,0.05),
    0 0 16px rgba(46,232,255,0.03),
    0 4px 20px rgba(0,0,0,0.25) !important;
}

.tide-cta-box {
  box-shadow:
    inset 0 1px 0 rgba(46,232,255,0.08),
    0 0 60px rgba(20,102,224,0.1),
    0 0 0 1px rgba(46,232,255,0.1) !important;
}

/* ── Install steps equal height to match panel ── */
.tide-install-grid {
  align-items: stretch !important;
}

.tide-install-steps {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.55rem !important;
}

.tide-install-step {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
}

/* ── Policy page social links ── */
.tide-policy-socials {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.tide-policy-socials__label {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #62626b !important;
  margin-bottom: 1rem !important;
}

.tide-policy-socials__links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tide-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #bcbcc4 !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.tide-social-link:hover {
  background: rgba(46,232,255,0.07);
  border-color: rgba(46,232,255,0.25);
  color: #e6e6ea !important;
  transform: translateY(-1px);
}

/* ── Product page description - cleaner, matches site aesthetic ── */
.tide-product-page__desc-content {
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #c0cdd9 !important;
}

.tide-product-page__desc-content h1 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #e6e6ea !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 0.5rem !important;
  line-height: 1.25 !important;
}

.tide-product-page__desc-content h2 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #e6e6ea !important;
  margin: 1.25rem 0 0.5rem !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.tide-product-page__desc-content h3 {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #e6e6ea !important;
  margin: 1rem 0 0.4rem !important;
}

.tide-product-page__desc-content p {
  color: #c0cdd9 !important;
  margin: 0 0 0.6rem !important;
  line-height: 1.6 !important;
}

.tide-product-page__desc-content strong {
  color: #e6e6ea !important;
  font-weight: 700 !important;
}

.tide-product-page__desc-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 0.85rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.35rem !important;
}

.tide-product-page__desc-content ul li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.6rem !important;
  font-size: 0.875rem !important;
  color: #c0cdd9 !important;
  line-height: 1.55 !important;
}

.tide-product-page__desc-content ul li::before {
  content: '✓' !important;
  color: #2ee8ff !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  flex-shrink: 0 !important;
  margin-top: 3px !important;
}

/* No special treatment for first paragraph — keep description uniform */
.tide-product-page__desc-content > p:first-child {
  font-size: 0.9rem !important;
  color: #c0cdd9 !important;
  line-height: 1.6 !important;
  margin-bottom: 0.6rem !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

/* ── CTA box size fix ── */
.tide-cta-box {
  padding: 3.5rem 4rem !important;
}

@media (max-width: 768px) {
  .tide-cta-box { padding: 2.5rem 1.75rem !important; }
}

/* ── FAQ animation speed fix - slower open ── */
.tide-faq-card [x-ref="ans"] {
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.38s ease !important;
}

/* ── Review card animation ── */
.tide-review-card [x-ref="full"] {
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.38s ease !important;
}

/* ── Stats bar ── */
.tide-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  background: linear-gradient(155deg, rgba(22,22,25,0.95) 0%, rgba(18,18,20,0.97) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(46,232,255,0.03),
    0 4px 20px rgba(0,0,0,0.25);
}

.tide-stat-item {
  flex: 1;
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.2s;
}

.tide-stat-item:hover {
  background: rgba(46,232,255,0.03);
}

.tide-stat-item__value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: var(--font);
}

.tide-stat-item__stars {
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.tide-stat-item__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.tide-stats-bar__divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .tide-stats-bar { flex-wrap: wrap; }
  .tide-stats-bar__divider { display: none; }
  .tide-stat-item { flex: 1 1 45%; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

/* ── Hero inline stats row ── */
.tide-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tide-hero-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0 1.25rem 0 0;
}

.tide-hero-stat:first-child { padding-left: 0; }

.tide-hero-stat__val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  font-family: var(--font);
}

.tide-hero-stat__stars {
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.tide-hero-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tide-hero-stat__sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.1);
  margin: 0 1.25rem 0 0;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .tide-hero-stat__sep { display: none; }
  .tide-hero-stat { padding: 0.25rem 0; }
}

/* ── Free plan - white/blue gradient card ── */
.tide-product-card:not(.tide-product-card--premium) {
  background: linear-gradient(155deg,
    rgba(240,248,255,0.06) 0%,
    rgba(1846,232,255,0.04) 30%,
    rgba(18,18,20,0.97) 70%,
    rgba(12,12,14,1) 100%
  ) !important;
  border-color: rgba(1846,232,255,0.15) !important;
}

.tide-product-card:not(.tide-product-card--premium):hover {
  border-color: rgba(200,230,255,0.25) !important;
  box-shadow:
    0 0 0 1px rgba(1846,232,255,0.1),
    0 0 20px rgba(1846,232,255,0.06),
    0 12px 36px rgba(0,0,0,0.4) !important;
}

/* ── Hero panel interactive elements ── */
.tide-hero__panel-toggle {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font);
}

.tide-hero__panel-toggle:hover {
  background: rgba(34,197,94,0.18);
}

/* Checkbox rows */
.tide-panel-check-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.38rem 0;
  font-size: 0.82rem;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.18s;
  user-select: none;
}

.tide-panel-check-row:hover { color: var(--text); }

.tide-panel-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.tide-panel-checkbox.checked {
  border-color: rgba(46,232,255,0.5);
  background: rgba(46,232,255,0.1);
}

/* Dropdown rows */
.tide-panel-dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.38rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.tide-panel-dropdown-row:last-child { border-bottom: none; }

.tide-panel-dropdown-label {
  font-size: 0.8rem;
  color: var(--text-dim);
  flex-shrink: 0;
}

.tide-panel-dropdown {
  position: relative;
}

.tide-panel-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 0.22rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.tide-panel-dropdown__btn:hover {
  background: rgba(46,232,255,0.07);
  border-color: rgba(46,232,255,0.25);
}

.tide-panel-dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background: #0d0d0f;
  border: 1px solid rgba(46,232,255,0.2);
  border-radius: 8px;
  overflow: hidden;
  z-index: 50;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.tide-panel-dropdown__item {
  display: block;
  width: 100%;
  padding: 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s, color 0.15s;
}

.tide-panel-dropdown__item:hover {
  background: rgba(46,232,255,0.08);
  color: var(--text);
}

/* ── Gradient headline text — Tide logo gradient ── */
.gradient-text {
  background: linear-gradient(90deg, #5ff2ff 0%, #2ee8ff 45%, #1466e0 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 220% 100% !important;
  animation: gradientShift 3.5s ease-in-out infinite !important;
  display: inline !important;
}

@keyframes gradientShift {
  0% { background-position: 100% center; }
  50% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* ── Free badge fix - pill not bar ── */
.tide-product-badge--free {
  display: inline-block !important;
  width: auto !important;
  background: rgba(255,255,255,0.06) !important;
  color: var(--text-dim) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  padding: 0.22rem 0.75rem !important;
  border-radius: 100px !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* ── Products page ── */
.tide-searchbar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(18,18,20,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(240,244,248,0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.tide-searchbar:focus-within {
  border-color: rgba(46,232,255,0.35);
}

.tide-searchbar input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #e6e6ea !important;
  font-family: var(--font) !important;
  font-size: 0.875rem !important;
  width: 100% !important;
}

.tide-searchbar input::placeholder { color: #62626b !important; }

/* ════════════════════════════════════════
   HERO PANEL — full interactive redesign
   ════════════════════════════════════════ */

.tide-hero__panel {
  background: linear-gradient(160deg, #141416 0%, #0d0d0f 55%, #0a0a0a 100%);
  border: 1px solid rgba(46,232,255,0.2);
  border-radius: var(--r-lg);
  overflow: visible;
  box-shadow:
    0 0 40px rgba(46,232,255,0.07),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: panelFloat 6s ease-in-out infinite;
}

@keyframes panelFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ── Header ── */
.tide-panel__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(90deg, rgba(46,232,255,0.06) 0%, rgba(20,102,224,0.03) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tide-panel__header-brand {
  display: flex; align-items: center; gap: 0.55rem;
}

.tide-panel__brand-text {
  font-size: 0.78rem; font-weight: 600; color: var(--text-dim);
  font-family: var(--font);
}

.tide-panel__status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  transition: all 0.4s var(--ease);
}

.tide-panel__status-dot--on {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.9), 0 0 16px rgba(34,197,94,0.4);
  animation: dotPulse 2s ease-in-out infinite;
}

.tide-panel__status-dot--off {
  background: #62626b;
  box-shadow: none;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.8), 0 0 12px rgba(34,197,94,0.3); }
  50% { box-shadow: 0 0 10px rgba(34,197,94,1), 0 0 22px rgba(34,197,94,0.5); }
}

.tide-panel__toggle {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.15em;
  padding: 0.22rem 0.7rem; border-radius: 100px;
  cursor: pointer; font-family: var(--font);
  transition: all 0.3s var(--ease);
  border: 1px solid;
}

.tide-panel__toggle--on {
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 0 10px rgba(34,197,94,0.15);
}

.tide-panel__toggle--on:hover {
  background: rgba(34,197,94,0.18);
  box-shadow: 0 0 16px rgba(34,197,94,0.25);
}

.tide-panel__toggle--off {
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

/* ── Sections ── */
.tide-panel__section {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tide-panel__section-title {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.65rem;
  font-family: var(--font);
}

/* ── Settings rows — clickable to edit ── */
.tide-panel__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.32rem 0.5rem; border-radius: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.18s, box-shadow 0.18s;
}

.tide-panel__row:last-child { border-bottom: none; }

.tide-panel__row--editable {
  cursor: pointer;
}

.tide-panel__row--editable:hover {
  background: rgba(46,232,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(46,232,255,0.12);
}

.tide-panel__row-label {
  font-size: 0.8rem; color: var(--text-dim); font-family: var(--font);
}

.tide-panel__row-val {
  font-size: 0.8rem; font-weight: 700; color: var(--cyan);
  font-family: var(--font);
  transition: text-shadow 0.2s;
}

.tide-panel__row--editable:hover .tide-panel__row-val {
  text-shadow: 0 0 8px rgba(46,232,255,0.6);
}

.tide-panel__input {
  background: rgba(46,232,255,0.08) !important;
  border: 1px solid rgba(46,232,255,0.4) !important;
  border-radius: 5px !important;
  color: var(--cyan) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  font-family: var(--font) !important;
  padding: 0.15rem 0.4rem !important;
  width: 60px !important;
  text-align: right !important;
  outline: none !important;
  box-shadow: 0 0 8px rgba(46,232,255,0.15) !important;
}

/* ── Checkbox rows ── */
.tide-panel__checkbox-row {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.42rem 0.5rem; border-radius: 8px;
  font-size: 0.82rem; color: var(--text-dim);
  cursor: pointer; position: relative; overflow: hidden;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), color 0.2s;
  font-family: var(--font);
  user-select: none;
}

.tide-panel__checkbox-row:hover {
  background: rgba(46,232,255,0.06);
  transform: scale(1.02);
  color: var(--text);
}

.tide-panel__checkbox-row--active {
  color: var(--text);
}

.tide-panel__checkbox {
  width: 17px; height: 17px;
  border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--spring);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.tide-panel__checkbox--checked {
  border-color: var(--cyan);
  background: rgba(46,232,255,0.12);
  box-shadow: 0 0 8px rgba(46,232,255,0.3), 0 0 16px rgba(46,232,255,0.1);
  animation: checkboxPop 0.3s var(--spring);
}

@keyframes checkboxPop {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.tide-panel__checkbox-row:hover .tide-panel__checkbox:not(.tide-panel__checkbox--checked) {
  border-color: rgba(46,232,255,0.3);
  background: rgba(46,232,255,0.05);
}

/* ── Dropdown rows ── */
.tide-panel__dropdown-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.35rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.tide-panel__dropdown-row:last-child { border-bottom: none; }

.tide-panel__dropdown-label {
  font-size: 0.8rem; color: var(--text-dim); font-family: var(--font);
}

.tide-panel__dropdown { position: relative; }

.tide-panel__dropdown-btn {
  display: flex; align-items: center; gap: 0.45rem;
  background: linear-gradient(135deg, rgba(46,232,255,0.08) 0%, rgba(20,102,224,0.05) 100%);
  border: 1px solid rgba(46,232,255,0.2);
  border-radius: 6px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem; font-weight: 600;
  color: var(--cyan); cursor: pointer;
  font-family: var(--font);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.tide-panel__dropdown-btn:hover,
.tide-panel__dropdown-btn--open {
  background: linear-gradient(135deg, rgba(46,232,255,0.14) 0%, rgba(20,102,224,0.09) 100%);
  border-color: rgba(46,232,255,0.45);
  box-shadow: 0 0 10px rgba(46,232,255,0.15);
}

.tide-panel__dropdown-menu {
  position: absolute; right: 0; top: calc(100% + 5px);
  background: linear-gradient(155deg, #141416 0%, #0d0d0f 100%);
  border: 1px solid rgba(46,232,255,0.25);
  border-radius: 10px; overflow: hidden; z-index: 50;
  min-width: 150px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 0 1px rgba(46,232,255,0.05);
}

/* Dropdown transition classes */
.tide-drop-enter { transition: opacity 0.18s ease, transform 0.18s var(--ease) !important; }
.tide-drop-start { opacity: 0 !important; transform: translateY(-6px) scale(0.97) !important; }
.tide-drop-end { opacity: 1 !important; transform: translateY(0) scale(1) !important; }

.tide-panel__dropdown-item {
  display: block; width: 100%;
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-dim); background: none; border: none;
  text-align: left; cursor: pointer; font-family: var(--font);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.tide-panel__dropdown-item:last-child { border-bottom: none; }

.tide-panel__dropdown-item:hover {
  background: rgba(46,232,255,0.08);
  color: var(--text);
  padding-left: 1.15rem;
}

.tide-panel__dropdown-item--active {
  color: var(--cyan) !important;
  background: rgba(46,232,255,0.06) !important;
}

/* ── Footer ── */
.tide-panel__footer {
  padding: 0.75rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.tide-panel__footer-key {
  font-size: 0.72rem; font-weight: 700;
  color: var(--cyan); font-family: var(--font);
  background: rgba(46,232,255,0.07);
  border: 1px solid rgba(46,232,255,0.2);
  padding: 0.12rem 0.45rem; border-radius: 4px;
  letter-spacing: 0.05em;
}

.tide-panel__footer-text {
  font-size: 0.75rem; color: var(--text-muted); font-family: var(--font);
}

/* ── Panel disabled state ── */
.tide-hero__panel:has(.tide-panel__toggle--off) {
  opacity: 0.7;
  filter: grayscale(0.4);
  transition: opacity 0.4s, filter 0.4s;
}

/* ── Feature card border gradient — brightest on left ── */
.tide-feature-card {
  border: none !important;
  position: relative !important;
}

.tide-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(210,240,255,0.8) 0%,
    rgba(180,225,255,0.4) 8%,
    rgba(140,210,255,0.1) 18%,
    transparent 28%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.3s var(--ease);
}

.tide-feature-card:hover::before {
  background: linear-gradient(
    90deg,
    rgba(235,248,255,1) 0%,
    rgba(200,235,255,0.55) 8%,
    rgba(160,215,255,0.15) 18%,
    transparent 28%
  );
}

/* Left edge glow */
.tide-feature-card::after {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(210,238,255,0.65) 20%,
    rgba(230,246,255,0.9) 50%,
    rgba(210,238,255,0.65) 80%,
    transparent 100%
  );
  box-shadow: 0 0 5px rgba(210,238,255,0.55), 0 0 10px rgba(180,225,255,0.25);
  border-radius: 1px;
  pointer-events: none;
  transition: box-shadow 0.3s;
}

.tide-feature-card:hover::after {
  box-shadow: 0 0 8px rgba(230,246,255,0.8), 0 0 16px rgba(200,235,255,0.35);
}

/* ════════════════════════════════════════
   POLISH PASS 5 — Glows, gradients,
   animations across the whole site
   ════════════════════════════════════════ */

/* ── Products native grid fix ── */
.tide-products-native-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.tide-products-native-item {
  min-width: 0;
}

/* ── Hero badge pulse ── */
.tide-badge {
  animation: badgePulse 3s ease-in-out infinite !important;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,232,255,0); }
  50% { box-shadow: 0 0 12px 2px rgba(46,232,255,0.15); }
}

/* ── Stats row hover glow ── */
.tide-hero-stat {
  transition: transform 0.2s var(--ease);
}

.tide-hero-stat:hover { transform: translateY(-2px); }

.tide-hero-stat:hover .tide-hero-stat__val {
  text-shadow: 0 0 12px rgba(46,232,255,0.5);
}

.tide-hero-stat__val {
  transition: text-shadow 0.25s;
}

/* ── Plans cards — gradient borders ── */
/* Featured card — top brightest */
.tide-product-card--premium {
  border: none !important;
  position: relative !important;
}

.tide-product-card--premium::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    170deg,
    rgba(46,232,255,0.7) 0%,
    rgba(46,232,255,0.3) 25%,
    rgba(46,232,255,0.1) 60%,
    rgba(255,255,255,0.04) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: opacity 0.3s;
}

.tide-product-card--premium::after {
  content: '';
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,232,255,0.8), transparent);
  box-shadow: 0 0 10px rgba(46,232,255,0.5);
  border-radius: 1px;
  pointer-events: none;
}

.tide-product-card--premium:hover::before {
  background: linear-gradient(
    170deg,
    rgba(46,232,255,0.9) 0%,
    rgba(46,232,255,0.45) 25%,
    rgba(46,232,255,0.15) 60%,
    rgba(255,255,255,0.06) 100%
  );
}

/* Free — bottom brightest, white/blue tint */
.tide-product-card:not(.tide-product-card--premium) {
  border: none !important;
  position: relative !important;
}

.tide-product-card:not(.tide-product-card--premium)::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    170deg,
    rgba(255,255,255,0.06) 0%,
    rgba(1846,232,255,0.08) 40%,
    rgba(1846,232,255,0.2) 80%,
    rgba(1846,232,255,0.35) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Install steps — left sweep on hover ── */
.tide-install-step {
  position: relative !important;
  overflow: hidden !important;
}

.tide-install-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(46,232,255,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.tide-install-step:hover::before { opacity: 1; }

.tide-install-step::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(46,232,255,0.04) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.tide-install-step:hover::after { opacity: 1; }

/* ── Install panel gradient border ── */
.tide-install-panel {
  border: none !important;
  position: relative !important;
}

.tide-install-panel::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    175deg,
    rgba(46,232,255,0.5) 0%,
    rgba(46,232,255,0.15) 40%,
    rgba(255,255,255,0.04) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Reviews — star glow, avatar ring ── */
.tide-review-card:hover .tide-review-stars {
  text-shadow: 0 0 10px rgba(46,232,255,0.5);
}

.tide-review-stars { transition: text-shadow 0.25s; }

.tide-review-avatar {
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease) !important;
}

.tide-review-card:hover .tide-review-avatar {
  box-shadow: 0 0 0 2px rgba(46,232,255,0.4), 0 0 12px rgba(46,232,255,0.2) !important;
  transform: scale(1.08) !important;
}

/* ── FAQ — question text glow when open ── */
.tide-faq-q--open {
  text-shadow: 0 0 16px rgba(200,230,255,0.25) !important;
}

/* FAQ thin left border gradient */
.tide-faq-card {
  position: relative !important;
}

.tide-faq-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(46,232,255,0.2) 0%,
    rgba(46,232,255,0.05) 30%,
    transparent 70%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.tide-faq-card:hover::before,
.tide-faq-card:has(.tide-faq-q--open)::before {
  opacity: 1;
}

/* ── Status — row left sweep ── */
.tide-status-row {
  position: relative !important;
  overflow: hidden !important;
}

.tide-status-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(46,232,255,0.05);
  transition: width 0.35s var(--ease);
  pointer-events: none;
}

.tide-status-row:hover::before { width: 100%; }

/* Status dot pulse */
.tide-status-row__dot.green {
  animation: statusPulse 2.5s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(34,197,94,0.7); }
  50% { box-shadow: 0 0 12px rgba(34,197,94,1), 0 0 20px rgba(34,197,94,0.4); }
}

/* ── CTA box — animated gradient sweep ── */
.tide-cta-box {
  position: relative !important;
  overflow: hidden !important;
}

.tide-cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -100%;
  width: 60%; height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(46,232,255,0.04) 50%,
    transparent 100%
  );
  animation: ctaSweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes ctaSweep {
  0% { left: -100%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

/* ── Section titles — glow on scroll in ── */
.tide-section-title.tide-visible {
  text-shadow: 0 0 40px rgba(200,225,255,0.08);
}

/* ── Navbar active link glow ── */
.tide-navbar__link--active {
  text-shadow: 0 0 10px rgba(240,244,248,0.3);
}

/* ── Section label glow ── */
.tide-section-label {
  transition: text-shadow 0.3s;
}

.tide-section-label:hover {
  text-shadow: 0 0 8px rgba(61,90,110,0.6);
}

/* ── Product page panel gradient border ── */
.tide-product-page__panel {
  border: none !important;
  position: relative !important;
}

.tide-product-page__panel::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    170deg,
    rgba(46,232,255,0.5) 0%,
    rgba(46,232,255,0.2) 35%,
    rgba(46,232,255,0.06) 70%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Rating summary value glow ── */
.tide-stat-item:hover .tide-stat-item__value {
  text-shadow: 0 0 16px rgba(46,232,255,0.5);
}

.tide-stat-item__value { transition: text-shadow 0.25s; }

/* ── CTA box buttons extra glow ── */
.tide-cta-box .tide-btn-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 0 24px rgba(220,240,255,0.3),
    0 6px 18px rgba(0,0,0,0.35) !important;
}

.tide-cta-box .tide-btn-discord:hover {
  box-shadow:
    0 0 24px rgba(88,101,242,0.35),
    0 6px 18px rgba(0,0,0,0.35) !important;
}

/* ── Fix stretched badges on plan cards ── */
.tide-product-card .tide-product-badge,
.tide-product-card .tide-product-badge--free,
.tide-product-card .tide-product-badge--premium {
  display: inline-block !important;
  width: auto !important;
  align-self: flex-start !important;
}

/* Fix the badge wrapper divs */
.tide-product-card > div:first-child {
  align-items: flex-start !important;
}

/* ── Install grid alignment fix ── */
.tide-install-grid {
  align-items: start !important;
}

.tide-install-steps {
  justify-content: flex-start !important;
}

/* ── Reviews grid - expand centered ── */
.tide-reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 1.25rem !important;
  align-items: start !important;
}

.tide-review-card {
  width: 100% !important;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease) !important;
}

/* When review expands, it grows in place without affecting grid */
.tide-review-card [x-ref="full"] {
  transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.38s ease !important;
}

/* ── Install steps - match panel height exactly ── */
.tide-install-grid {
  align-items: stretch !important;
}

.tide-install-steps {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  height: 100% !important;
}

.tide-install-step {
  flex: 1 !important;
  padding: 0.85rem 1.4rem !important;
  align-items: center !important;
}

.tide-install-step__title {
  font-size: 0.9rem !important;
  margin-bottom: 0.15rem !important;
}

.tide-install-step__desc {
  font-size: 0.775rem !important;
  line-height: 1.35 !important;
}

/* ── Install - force both columns to same top alignment ── */
.tide-install-grid {
  display: grid !important;
  grid-template-columns: 1fr 360px !important;
  gap: 2rem !important;
  align-items: stretch !important;
}

.tide-install-panel {
  position: sticky !important;
  top: 82px !important;
  align-self: start !important;
  margin-top: 0 !important;
}

.tide-install-steps {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  margin-top: 0 !important;
}

.tide-install-step {
  flex: 1 !important;
  min-height: 0 !important;
  padding: 0.85rem 1.4rem !important;
}

/* ── Navbar link hover — glow + expand ── */
.tide-navbar__link {
  transition: color 0.2s, background 0.2s, transform 0.2s var(--spring), text-shadow 0.2s !important;
  display: inline-block !important;
}

.tide-navbar__link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.05) !important;
  transform: scale(1.08) !important;
  text-shadow:
    0 0 8px rgba(255,255,255,0.7),
    0 0 16px rgba(200,235,255,0.3) !important;
}

.tide-navbar__link--active {
  color: #ffffff !important;
  text-shadow: 0 0 6px rgba(255,255,255,0.4) !important;
}

/* ── Policy pages — Rain-style sidebar layout ── */
.tide-policy-page {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 2rem 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .tide-policy-page { grid-template-columns: 1fr; }
  .tide-policy-sidebar { display: none; }
}

/* Sidebar */
.tide-policy-sidebar__inner {
  position: sticky;
  top: 82px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.tide-policy-sidebar__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  margin-top: 0.5rem;
}

.tide-policy-sidebar__label:first-child { margin-top: 0; }

.tide-policy-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none !important;
  transition: background 0.18s, color 0.18s, transform 0.18s var(--spring);
}

.tide-policy-sidebar__link:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  transform: translateX(3px);
}

.tide-policy-sidebar__link--social {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.tide-policy-sidebar__link--social:hover {
  color: var(--cyan);
}

.tide-policy-sidebar__divider {
  height: 1px;
  background: var(--border);
  margin: 0.6rem 0.75rem;
}

/* Content */
.tide-policy-content .tide-policy-card {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-lg) !important;
  padding: 2.5rem !important;
  position: relative;
}

/* Gradient border on policy card */
.tide-policy-content .tide-policy-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    170deg,
    rgba(46,232,255,0.2) 0%,
    rgba(46,232,255,0.06) 30%,
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tide-policy-wrap { display: none !important; }

/* ── Product page — Rain style ── */

/* Big headline area */
.tide-product-page__hero {
  margin-bottom: 0.75rem;
}

.tide-product-page__headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  color: var(--text) !important;
  line-height: 1.05 !important;
  margin: 0 0 0.5rem !important;
}

/* Breadcrumb/badge row below headline */
.tide-product-page__meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tide-product-page__meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: rgba(46,232,255,0.08);
  border: 1px solid rgba(46,232,255,0.22);
  color: var(--cyan);
}

/* Image styling */
.tide-product-page__img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  display: block;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Description card */
.tide-product-page__desc-card {
  background: linear-gradient(155deg, #121214 0%, #0d0d0f 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}

/* Gradient border on desc card */
.tide-product-page__desc-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(210,240,255,0.4) 0%,
    rgba(46,232,255,0.08) 20%,
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Purchase panel */
.tide-product-page__panel {
  position: sticky !important;
  top: 80px !important;
  border-radius: var(--r-lg) !important;
  overflow: hidden;
}

/* Panel gradient border */
.tide-product-page__panel::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: linear-gradient(
    170deg,
    rgba(46,232,255,0.55) 0%,
    rgba(46,232,255,0.2) 25%,
    rgba(46,232,255,0.06) 60%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* Price */
.tide-product-page__price {
  font-size: 2.2rem !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  letter-spacing: -0.03em !important;
  font-family: var(--font) !important;
  line-height: 1 !important;
}

/* Add to cart button — cyan gradient like panel toggle */
.tide-product-page__panel button.bg-accent-500,
.tide-product-page__panel .tide-pform-btn--primary {
  background: linear-gradient(135deg, var(--cyan) 0%, #00b8d9 100%) !important;
  color: #060e18 !important;
  font-weight: 800 !important;
  border-radius: var(--r) !important;
  border: none !important;
  font-family: var(--font) !important;
  letter-spacing: 0.01em !important;
  transition: filter 0.2s, transform 0.2s var(--spring), box-shadow 0.2s !important;
}

.tide-product-page__panel button.bg-accent-500:hover,
.tide-product-page__panel .tide-pform-btn--primary:hover {
  filter: brightness(1.12) !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 0 24px rgba(46,232,255,0.35), 0 4px 12px rgba(0,0,0,0.3) !important;
}

/* Buy Now button */
.tide-product-page__panel .tide-pform-btn--outline {
  border-color: rgba(46,232,255,0.35) !important;
  color: var(--cyan) !important;
  background: rgba(46,232,255,0.05) !important;
  border-radius: var(--r) !important;
  font-family: var(--font) !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--spring), box-shadow 0.2s !important;
}

.tide-product-page__panel .tide-pform-btn--outline:hover {
  background: rgba(46,232,255,0.1) !important;
  border-color: var(--cyan) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 16px rgba(46,232,255,0.15) !important;
}

/* Stock badge */
.tide-product-page__stock {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Tab buttons */
.tide-product-page__tab {
  transition: color 0.18s, background 0.18s, transform 0.18s var(--spring) !important;
}

.tide-product-page__tab:hover {
  transform: translateY(-1px) !important;
}

.tide-product-page__tab.active {
  color: var(--cyan) !important;
  background: rgba(46,232,255,0.08) !important;
  border-color: rgba(46,232,255,0.25) !important;
  box-shadow: 0 0 8px rgba(46,232,255,0.1) !important;
}

/* ════════════════════════════════════════
   MOBILE FIXES
   ════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Show hero panel on mobile, stacked below ── */
  .tide-hero__inner {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .tide-hero__right {
    display: block !important;
    animation: tideFadeUp 0.9s var(--ease) 0.4s both !important;
  }

  .tide-hero__panel {
    max-width: 100% !important;
    animation: panelFloat 6s ease-in-out infinite !important;
  }

  /* ── General mobile sizing ── */
  .tide-section { padding: 55px 0 !important; }

  .tide-section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
    margin-bottom: 1.75rem !important;
  }

  /* ── Features grid ── */
  .tide-features-rain {
    grid-template-columns: 1fr !important;
  }

  .tide-feature-card:nth-child(1),
  .tide-feature-card:nth-child(2) {
    grid-column: 1 !important;
  }

  /* ── Plans cards ── */
  .tide-products-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Install ── */
  .tide-install-grid {
    grid-template-columns: 1fr !important;
  }

  .tide-install-panel {
    position: relative !important;
    top: 0 !important;
  }

  /* ── Reviews ── */
  .tide-reviews-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── FAQ ── */
  .tide-faq-grid {
    grid-template-columns: 1fr !important;
  }

  /* ── Status ── */
  .tide-status-row {
    flex-wrap: wrap !important;
    padding: 1rem 1.25rem !important;
    gap: 0.6rem !important;
  }

  /* ── Stats bar ── */
  .tide-stats-bar {
    flex-wrap: wrap !important;
  }

  .tide-stat-item {
    flex: 1 1 45% !important;
    padding: 1.25rem 1rem !important;
  }

  .tide-stats-bar__divider {
    display: none !important;
  }

  /* ── Hero stats ── */
  .tide-hero-stats {
    gap: 0.5rem !important;
    flex-wrap: wrap !important;
  }

  .tide-hero-stat__sep { display: none !important; }

  .tide-hero-stat {
    padding: 0.2rem 0.5rem 0.2rem 0 !important;
  }

  /* ── CTA box ── */
  .tide-cta-box {
    padding: 2.5rem 1.75rem !important;
  }

  /* ── Hero headline ── */
  .tide-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem) !important;
  }

  /* ── Navbar inner ── */
  .tide-navbar__inner {
    padding: 0 1.25rem !important;
  }

  /* ── Product page ── */
  .tide-product-page__grid {
    grid-template-columns: 1fr !important;
  }

  .tide-product-page__panel {
    position: relative !important;
    top: 0 !important;
  }

  /* ── Policy pages ── */
  .tide-policy-page {
    grid-template-columns: 1fr !important;
    padding: 90px 1.25rem 60px !important;
  }

  .tide-policy-sidebar { display: none !important; }

  /* ── Buttons ── */
  .tide-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .tide-btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* ── Plan card buttons ── */
  .tide-product-card .tide-btn {
    width: 100% !important;
  }

  /* ── Hero panel panel body padding ── */
  .tide-panel__section {
    padding: 0.75rem 1rem !important;
  }

  .tide-panel__header {
    padding: 0.75rem 1rem !important;
  }

  .tide-panel__footer {
    padding: 0.6rem 1rem !important;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .tide-headline {
    font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
  }

  .tide-products-grid,
  .tide-features-rain,
  .tide-reviews-grid,
  .tide-faq-grid {
    grid-template-columns: 1fr !important;
  }

  .tide-stat-item {
    flex: 1 1 100% !important;
  }
}

/* ════════════════════════════════════════
   MOBILE PADDING + OVERFLOW FIX
   ════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Prevent anything from overflowing screen */
  html, body { overflow-x: hidden !important; }

  /* All sections get proper side padding */
  .tide-section,
  [style*="max-width:1200px"],
  [style*="max-width: 1200px"] {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Force all cards to stay within screen */
  .tide-feature-card,
  .tide-product-card,
  .tide-review-card,
  .tide-faq-card,
  .tide-install-step,
  .tide-install-panel,
  .tide-status-table,
  .tide-stats-bar,
  .tide-hero__panel,
  .tide-rain-card,
  .tide-policy-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Grids full width */
  .tide-features-rain,
  .tide-products-grid,
  .tide-reviews-grid,
  .tide-faq-grid,
  .tide-status-grid,
  .tide-install-grid,
  .tide-products-native-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0 !important;
  }

  /* Fix inline max-width containers */
  section > div,
  .tide-section > div {
    max-width: 100% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
  }

  /* Status table rows don't overflow */
  .tide-status-row {
    padding: 1rem !important;
    gap: 0.5rem !important;
  }

  .tide-status-row__name {
    min-width: 0 !important;
    font-size: 0.875rem !important;
  }

  .tide-status-row__since { flex: 1 !important; min-width: 0 !important; }

  /* FAQ cards don't overflow when expanded */
  .tide-faq-card {
    overflow: hidden !important;
  }

  .tide-faq-card [x-ref="ans"] {
    word-break: break-word !important;
  }

  /* Review cards don't overflow */
  .tide-review-card {
    overflow: hidden !important;
  }

  .tide-review-card [x-ref="full"] {
    word-break: break-word !important;
  }

  /* Product description doesn't overflow */
  .tide-product-page__desc-content {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  /* Hero panel fits screen */
  .tide-hero__inner {
    padding: 0 1rem !important;
  }

  /* Stats bar fits */
  .tide-stats-bar {
    width: 100% !important;
    overflow: hidden !important;
  }

  /* CTA inner */
  .tide-cta-box {
    padding: 2rem 1.5rem !important;
    word-break: break-word !important;
  }

  /* Reduce feature card padding */
  .tide-feature-card { padding: 1.25rem !important; }
  .tide-product-card { padding: 1.5rem !important; }
  .tide-review-card { padding: 1.25rem !important; }
  .tide-faq-card { padding: 0.9rem 1.1rem !important; }
  .tide-install-step { padding: 0.85rem 1.1rem !important; }
  .tide-install-panel { padding: 1.25rem !important; }

  /* Tide hero panel sections */
  .tide-panel__section { padding: 0.7rem 0.9rem !important; }
  .tide-panel__header { padding: 0.7rem 0.9rem !important; }

  /* Product page grid */
  .tide-product-page__grid {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
  }

  /* Prevent hero right panel from overflowing */
  .tide-hero__right {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .tide-feature-card { padding: 1rem !important; }
  .tide-product-card { padding: 1.25rem !important; }
  .tide-install-panel { padding: 1rem !important; }
  .tide-panel__section { padding: 0.6rem 0.8rem !important; }
}

/* ════════════════════════════════════════
   HERO PANEL — enhanced hover glows
   ════════════════════════════════════════ */

/* Panel outer glow intensifies on any interaction */
.tide-hero__panel:hover {
  box-shadow:
    0 0 60px rgba(46,232,255,0.12),
    0 0 120px rgba(46,232,255,0.05),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08) !important;
  border-color: rgba(46,232,255,0.35) !important;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease) !important;
}

/* Settings rows — stronger glow on hover */
.tide-panel__row--editable:hover {
  background: rgba(46,232,255,0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgba(46,232,255,0.2),
    0 0 12px rgba(46,232,255,0.08) !important;
}

.tide-panel__row--editable:hover .tide-panel__row-val {
  text-shadow:
    0 0 8px rgba(46,232,255,0.8),
    0 0 16px rgba(46,232,255,0.4) !important;
}

/* Checkbox rows — glow when checked AND on hover */
.tide-panel__checkbox-row--active {
  background: rgba(46,232,255,0.05) !important;
  box-shadow: inset 0 0 0 1px rgba(46,232,255,0.1) !important;
}

.tide-panel__checkbox-row:hover {
  background: rgba(46,232,255,0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgba(46,232,255,0.18),
    0 0 10px rgba(46,232,255,0.06) !important;
}

.tide-panel__checkbox--checked {
  box-shadow:
    0 0 10px rgba(46,232,255,0.45),
    0 0 20px rgba(46,232,255,0.2),
    inset 0 0 6px rgba(46,232,255,0.15) !important;
}

/* Dropdown button — stronger glow */
.tide-panel__dropdown-btn:hover,
.tide-panel__dropdown-btn--open {
  box-shadow:
    0 0 14px rgba(46,232,255,0.25),
    0 0 28px rgba(46,232,255,0.1),
    inset 0 0 0 1px rgba(46,232,255,0.3) !important;
}

/* Dropdown menu items — glow on hover */
.tide-panel__dropdown-item:hover {
  background: rgba(46,232,255,0.1) !important;
  color: var(--text) !important;
  box-shadow: inset 2px 0 0 var(--cyan) !important;
  padding-left: 1.15rem !important;
  text-shadow: 0 0 8px rgba(46,232,255,0.3) !important;
}

.tide-panel__dropdown-item--active {
  box-shadow: inset 2px 0 0 var(--cyan) !important;
  text-shadow: 0 0 6px rgba(46,232,255,0.25) !important;
}

/* Toggle button — stronger glow when ON */
.tide-panel__toggle--on {
  box-shadow:
    0 0 12px rgba(34,197,94,0.3),
    0 0 24px rgba(34,197,94,0.12) !important;
}

.tide-panel__toggle--on:hover {
  box-shadow:
    0 0 18px rgba(34,197,94,0.45),
    0 0 36px rgba(34,197,94,0.18) !important;
}

/* Status dot — brighter pulse */
.tide-panel__status-dot--on {
  animation: dotPulse 1.8s ease-in-out infinite !important;
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 6px rgba(34,197,94,0.8), 0 0 12px rgba(34,197,94,0.3);
  }
  50% {
    box-shadow: 0 0 14px rgba(34,197,94,1), 0 0 28px rgba(34,197,94,0.5), 0 0 40px rgba(34,197,94,0.2);
  }
}

/* Input field glow */
.tide-panel__input {
  box-shadow:
    0 0 12px rgba(46,232,255,0.25),
    0 0 24px rgba(46,232,255,0.1),
    inset 0 0 8px rgba(46,232,255,0.08) !important;
  animation: inputPulse 1.5s ease-in-out infinite !important;
}

@keyframes inputPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(46,232,255,0.2), inset 0 0 6px rgba(46,232,255,0.06); }
  50% { box-shadow: 0 0 18px rgba(46,232,255,0.35), inset 0 0 10px rgba(46,232,255,0.1); }
}

/* Section headers glow on hover */
.tide-panel__section-title {
  transition: color 0.2s, text-shadow 0.2s !important;
}

.tide-panel__section:hover .tide-panel__section-title {
  color: rgba(100,160,200,0.8) !important;
  text-shadow: 0 0 8px rgba(46,232,255,0.2) !important;
}

/* ── Legacy hero app-preview frame (unused) ── */
.tide-app-preview{
  position:relative;
  width:100%;
  max-width:620px;
  margin-left:auto;
  aspect-ratio:4 / 3;
  border-radius:22px;
  overflow:hidden;
  background:#0a0a0a;
  box-shadow:0 40px 120px rgba(0,0,0,.55), 0 0 70px rgba(47,125,255,.12);
}
.tide-app-preview__frame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  display:block;
}
@media (max-width:1024px){
  .tide-app-preview{ margin:0 auto; }
}

/* ── Legacy hero replica responsive (unused) ── */
@media (max-width:640px){
  .tide-rep__grid{ grid-template-columns:1fr !important; }
}

/* ═══════════════════════════════════════════════════════════
   TIDE REDESIGN — fixed product image, feature blocks, app mock
   (appended overrides — match Tide desktop app: pure black + cyan)
   ═══════════════════════════════════════════════════════════ */

/* ── Fixed rectangle product image (cards, product page, upsells, toast) ── */
.tide-product-image {
  aspect-ratio: var(--product-card-image-aspect-ratio, 16/9);
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.tide-product-image img {
  width: 100%;
  height: 100%;
  object-fit: var(--product-image-fit, cover);
  object-position: center;
  display: block;
}

/* Branded placeholder rectangle when no image is uploaded */
.tide-product-image--ph,
.tide-img-placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(46,232,255,0.08) 0%, transparent 55%),
    #0a0a0a;
  position: relative;
}
.tide-img-placeholder__logo {
  font-weight: 800; letter-spacing: -0.02em; line-height: 1;
  font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  background: linear-gradient(180deg, #5ff2ff 0%, #2ee8ff 45%, #1466e0 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-align: center; padding: 0 1rem;
}

/* ── Product page: lock gallery to a fixed rectangle (no autoHeight jump) ── */
.tide-product-page__gallery { width: 100%; margin-bottom: 1.5rem; }
.tide-product-page__gallery .tide-product-image { margin-bottom: 0; }
.tide-product-page__gallery .splide,
.tide-product-page__gallery .splide__track,
.tide-product-page__gallery .splide__list,
.tide-product-page__gallery .splide__slide {
  height: 100%;
}
.tide-product-page__gallery .splide__slide {
  aspect-ratio: var(--product-page-image-aspect-ratio, 16/9);
  overflow: hidden;
}
.tide-product-page__img {
  width: 100%; height: 100%;
  object-fit: var(--product-image-fit, cover); object-position: center;
  border-radius: 0; border: none; margin-bottom: 0; display: block;
}

/* Flatten desc-card + purchase panel to pure black with inset border */
.tide-product-page__desc-card {
  background: #0a0a0a !important;
  border: none !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
}
.tide-product-page__panel {
  background: #0a0a0a !important;
  border: none !important;
  box-shadow: inset 0 0 0 1px rgba(46,232,255,0.20), 0 0 30px rgba(46,232,255,0.04);
}

/* ── Product-specific feature block (rendered on product pages) ── */
.tide-pp-features {
  background: #0a0a0a; border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.045);
  padding: 1.5rem 1.75rem; margin-bottom: 1.5rem; position: relative; overflow: hidden;
}
.tide-pp-features::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(46,232,255,0.45) 30%, rgba(46,232,255,0.45) 70%, transparent);
}
.tide-pp-features__title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1rem;
}
.tide-pp-features__title.ai { color: var(--green); }
.tide-pp-features__group + .tide-pp-features__group { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft); }
.tide-pp-features ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.tide-pp-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-dim); line-height: 1.4; }
.tide-pp-features li::before { content: '✓'; color: var(--cyan); font-weight: 800; font-size: 0.8rem; flex-shrink: 0; margin-top: 1px; }
.tide-pp-features li.ai::before { color: var(--green); }
.tide-pp-features li.locked { color: var(--text-muted); }
.tide-pp-features li.locked::before { content: '✕'; color: var(--text-muted); }

/* Sales toast image -> fixed rectangle */
.tide-sales-toast__img {
  width: 56px; height: 56px; border-radius: 8px; object-fit: cover; object-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06); flex-shrink: 0;
}

/* ── Featured ("Best value") tag used on plan cards ── */
.tide-plan-tag {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); background: rgba(121,220,160,0.10);
  border: 1px solid rgba(121,220,160,0.28); padding: 0.2rem 0.6rem; border-radius: 100px;
}

/* Mobile: stack product page image -> panel -> features */
@media (max-width: 900px) {
  .tide-product-page__panel { position: static; top: auto; }
}

/* ═══════════════════════════════════════════════════════════
   TIDE v2 — GLASSY / APPLE THEME: moving light, slower motion,
   centered hero, live app frame, glass surfaces (keeps blue)
   ═══════════════════════════════════════════════════════════ */
:root{ --ease-glass: cubic-bezier(0.33, 1, 0.68, 1); }

/* ── Ambient site light (replaces rain) ── */
.tide-ambient{ position:fixed; inset:0; height:100vh; z-index:-1; pointer-events:none; overflow:hidden; }
.tide-ambient__beam{ position:absolute; top:-30%; width:52vw; height:130vh; filter:blur(70px); mix-blend-mode:screen; opacity:.55; will-change:transform; }

/* soft light flashes that pulse in the background across the whole page */
.tide-flash{ position:absolute; border-radius:50%; filter:blur(80px); mix-blend-mode:screen; opacity:0; will-change:opacity,transform; }
.tide-flash--1{ top:14%;  left:10%; width:360px; height:360px; background:radial-gradient(circle, rgba(46,232,255,.16), transparent 66%); animation:tide-flash 11s ease-in-out infinite; animation-delay:0s; }
.tide-flash--2{ top:30%;  right:8%; width:420px; height:420px; background:radial-gradient(circle, rgba(20,102,224,.16), transparent 66%); animation:tide-flash 13s ease-in-out infinite; animation-delay:2.5s; }
.tide-flash--3{ top:58%;  left:16%; width:320px; height:320px; background:radial-gradient(circle, rgba(255,255,255,.08), transparent 64%); animation:tide-flash 10s ease-in-out infinite; animation-delay:5s; }
.tide-flash--4{ top:72%;  right:14%; width:460px; height:460px; background:radial-gradient(circle, rgba(46,232,255,.13), transparent 66%); animation:tide-flash 14s ease-in-out infinite; animation-delay:1.2s; }
.tide-flash--5{ top:44%;  left:46%; width:300px; height:300px; background:radial-gradient(circle, rgba(95,242,255,.10), transparent 64%); animation:tide-flash 12s ease-in-out infinite; animation-delay:6.5s; }
.tide-flash--6{ top:88%;  left:30%; width:380px; height:380px; background:radial-gradient(circle, rgba(20,102,224,.14), transparent 66%); animation:tide-flash 15s ease-in-out infinite; animation-delay:3.8s; }
@keyframes tide-flash{ 0%,100%{ opacity:0; transform:scale(.82);} 42%{ opacity:.9; transform:scale(1);} 64%{ opacity:.55; transform:scale(1.04);} }
.tide-ambient__beam--1{ left:6%; background:linear-gradient(180deg, rgba(255,255,255,.07), transparent 68%); transform:rotate(-14deg); animation:tide-amb-1 26s var(--ease-glass) infinite alternate; }
.tide-ambient__beam--2{ right:4%; background:linear-gradient(180deg, rgba(200,230,255,.06), transparent 68%); transform:rotate(12deg); animation:tide-amb-2 30s var(--ease-glass) infinite alternate; }
.tide-ambient__glow{ position:absolute; top:-18%; left:50%; transform:translateX(-50%); width:82vw; height:60vh; background:radial-gradient(ellipse at center top, rgba(255,255,255,.055), rgba(46,232,255,.025) 45%, transparent 62%); animation:tide-glow-breathe 16s ease-in-out infinite; }
@keyframes tide-amb-1{ from{ transform:translateX(-6%) rotate(-16deg);} to{ transform:translateX(6%) rotate(-10deg);} }
@keyframes tide-amb-2{ from{ transform:translateX(6%) rotate(14deg);} to{ transform:translateX(-4%) rotate(9deg);} }
@keyframes tide-glow-breathe{ 0%,100%{ opacity:.65; } 50%{ opacity:1; } }

/* ── Hero v2 ── */
.tide-hero.tide-hero--v2{
  position:relative; overflow:hidden; min-height:auto;
  padding:150px 1.5rem 90px !important; display:flex; flex-direction:column;
  align-items:center; text-align:center;
}
.tide-hero__beams{ position:absolute; top:-8%; left:0; right:0; height:860px; pointer-events:none; z-index:0; overflow:hidden; }
.tide-hero__beams{ position:absolute; top:0; left:0; right:0; height:900px; pointer-events:none; z-index:0; overflow:hidden; }

/* light source at top-center */
.tide-hero__source{
  position:absolute; top:-140px; left:50%; transform:translateX(-50%);
  width:520px; height:420px;
  background:radial-gradient(ellipse at center, rgba(255,255,255,.35) 0%, rgba(255,255,255,.10) 30%, transparent 62%);
  filter:blur(30px); mix-blend-mode:screen; opacity:.9;
  animation:tide-source-pulse 7s ease-in-out infinite;
}
@keyframes tide-source-pulse{ 0%,100%{ opacity:.75; transform:translateX(-50%) scale(1);} 50%{ opacity:1; transform:translateX(-50%) scale(1.06);} }

/* god-rays — all fan out from the same top-center point */
.tide-beam{
  position:absolute; top:-120px; left:50%;
  width:clamp(70px, 9vw, 150px); height:1150px;
  background:linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.09) 34%, rgba(255,255,255,0) 74%);
  transform-origin:top center; filter:blur(26px); mix-blend-mode:screen;
  border-radius:0 0 50% 50%; will-change:transform,opacity;
}
.tide-beam--1{ transform:translateX(-50%) rotate(-34deg); opacity:.55; animation:tide-ray-a 11s ease-in-out infinite; }
.tide-beam--2{ transform:translateX(-50%) rotate(-22deg); opacity:.8;  width:clamp(50px,6vw,110px); animation:tide-ray-b 9s  ease-in-out infinite; }
.tide-beam--3{ transform:translateX(-50%) rotate(-11deg); opacity:.9;  animation:tide-ray-c 13s ease-in-out infinite; }
.tide-beam--4{ transform:translateX(-50%) rotate(0deg);   opacity:1;   width:clamp(60px,7vw,130px); animation:tide-ray-d 8s  ease-in-out infinite; }
.tide-beam--5{ transform:translateX(-50%) rotate(11deg);  opacity:.9;  animation:tide-ray-c 12s ease-in-out infinite reverse; }
.tide-beam--6{ transform:translateX(-50%) rotate(22deg);  opacity:.8;  width:clamp(50px,6vw,110px); animation:tide-ray-b 10s ease-in-out infinite reverse; }
.tide-beam--7{ transform:translateX(-50%) rotate(34deg);  opacity:.55; animation:tide-ray-a 12s ease-in-out infinite reverse; }

@keyframes tide-ray-a{ 0%,100%{ transform:translateX(-50%) rotate(-36deg); opacity:.35;} 50%{ transform:translateX(-50%) rotate(-30deg); opacity:.6;} }
@keyframes tide-ray-b{ 0%,100%{ transform:translateX(-50%) rotate(-24deg); opacity:.55;} 50%{ transform:translateX(-50%) rotate(-18deg); opacity:.85;} }
@keyframes tide-ray-c{ 0%,100%{ transform:translateX(-50%) rotate(-13deg); opacity:.6;} 50%{ transform:translateX(-50%) rotate(-7deg); opacity:.95;} }
@keyframes tide-ray-d{ 0%,100%{ transform:translateX(-50%) rotate(-3deg); opacity:.7;} 50%{ transform:translateX(-50%) rotate(3deg); opacity:1;} }

.tide-hero__glow{
  position:absolute; top:-200px; left:50%; transform:translateX(-50%);
  width:760px; max-width:110vw; height:520px;
  background:radial-gradient(ellipse at center top, rgba(255,255,255,.14), rgba(46,232,255,.05) 42%, transparent 66%);
  filter:blur(18px); animation:tide-glow-drift 14s ease-in-out infinite;
}
@keyframes tide-glow-drift{ 0%,100%{ opacity:.7; transform:translateX(-54%) scale(1);} 50%{ opacity:1; transform:translateX(-46%) scale(1.05);} }
.tide-hero__center{ position:relative; z-index:2; width:100%; max-width:900px; display:flex; flex-direction:column; align-items:center; }

.tide-hero__pill{
  display:inline-flex; align-items:center; gap:.55rem; margin-bottom:2rem;
  padding:.5rem 1.05rem; border-radius:100px; font-size:.72rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; color:var(--text-dim);
  background:rgba(255,255,255,.035); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  box-shadow:inset 0 0 0 1px rgba(46,232,255,.20), 0 0 30px rgba(46,232,255,.05);
}
.tide-hero__pill svg{ color:var(--cyan); }

.tide-hero__title{ font-size:clamp(2.7rem, 7.2vw, 5.6rem); line-height:.97; font-weight:800; letter-spacing:-.032em; margin:0 0 1.6rem; }
.tide-hero__line{
  display:block;
  background:linear-gradient(180deg, #ffffff 0%, #e2ecf4 52%, #a8c4d8 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
}
.tide-hero__line--accent{
  background:linear-gradient(180deg, #5ff2ff 0%, #2ee8ff 45%, #1466e0 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
}
.tide-hero__sub{ max-width:600px; margin:0 auto 2rem; font-size:1.05rem; line-height:1.6; color:var(--text-dim); }
.tide-hero__cta{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:2.75rem; }
.tide-hero--v2 .tide-hero-stats{ display:flex; align-items:center; justify-content:center; gap:1.5rem; flex-wrap:wrap; margin:0 auto; }

/* Live app frame (glass window) */
.tide-hero__app{ position:relative; z-index:2; width:100%; max-width:960px; margin:3.5rem auto 0; }
.tide-hero__app-glass{
  position:relative; border-radius:16px; overflow:hidden;
  background:rgba(12,12,15,.55); backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.06), 0 40px 120px rgba(0,0,0,.6), 0 0 70px rgba(46,232,255,.06);
}
.tide-hero__app-glass::before{
  content:''; position:absolute; top:0; left:0; right:0; height:1.5px; z-index:6;
  background:linear-gradient(90deg, transparent, rgba(46,232,255,.5) 30%, rgba(46,232,255,.5) 70%, transparent);
}
.tide-hero__app-bar{ display:flex; align-items:center; gap:.5rem; padding:.7rem 1rem; border-bottom:1px solid rgba(255,255,255,.05); background:rgba(255,255,255,.015); }
.tide-hero__app-dot{ width:11px; height:11px; border-radius:50%; background:rgba(255,255,255,.13); }
.tide-hero__app-title{ margin-left:.6rem; font-size:.75rem; color:var(--text-muted); font-weight:500; }
.tide-app-frame{ display:block; width:100%; height:660px; border:0; background:#0a0a0a; }
.tide-hero__app-cap{ text-align:center; margin-top:1rem; font-size:.85rem; color:var(--text-muted); }

/* ── Product media: video slides (fixed rectangle, same as images) ── */
.tide-product-video{ position:relative; }
.tide-product-video video{ width:100%; height:100%; object-fit:cover; object-position:center; display:block; background:#0a0a0a; }
.tide-product-video__tag{
  position:absolute; top:.6rem; left:.6rem; z-index:2;
  display:inline-flex; align-items:center; gap:.35rem;
  padding:.2rem .55rem; border-radius:100px; font-size:.6rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--cyan);
  background:rgba(10,10,10,.6); backdrop-filter:blur(8px); box-shadow:inset 0 0 0 1px rgba(46,232,255,.25);
}
.tide-card-media{ position:relative; }

/* ── Glass surfaces (apply the new aesthetic everywhere; keep blue) ── */
.tide-product-card,
.tide-feature-card,
.tide-rain-card,
.tide-review-card,
.tide-faq-card,
.tide-install-step,
.tide-pp-features{
  background:rgba(17,17,21,.42) !important;
  backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px);
}
.tide-product-page__desc-card{ background:rgba(17,17,21,.44) !important; backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); }
.tide-product-page__panel{ background:rgba(17,17,21,.5) !important; backdrop-filter:blur(22px); -webkit-backdrop-filter:blur(22px); }
/* Fully invisible navbar — no fill, no blur, no border */
.tide-navbar{ background:transparent !important; backdrop-filter:none !important; -webkit-backdrop-filter:none !important; border-bottom:none !important; box-shadow:none !important; }
.tide-navbar__oval{ background:transparent !important; backdrop-filter:none !important; -webkit-backdrop-filter:none !important; box-shadow:none !important; }
.tide-navbar__wordmark{
  font-size:1.6rem; font-weight:800; letter-spacing:-0.5px; line-height:1; display:inline-block;
  background:linear-gradient(180deg,#5ff2ff 0%,#2ee8ff 45%,#1466e0 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
  font-family:'Inter',sans-serif;
}

/* ── Slower, smoother motion (glassy-apple) ── */
.tide-anim--up,   .tide-anim--scale{ transition:opacity 1.15s var(--ease-glass), transform 1.15s var(--ease-glass) !important; }
.tide-anim--fade{ transition:opacity 1.1s var(--ease-glass) !important; }
.tide-anim--left{ transition:opacity 1.1s var(--ease-glass), transform 1.1s var(--ease-glass) !important; }
.gradient-text{ animation-duration:9s !important; }
.tide-feature-card, .tide-product-card, .tide-review-card, .tide-install-step, .tide-rain-card{
  transition: transform 0.5s var(--ease-glass), box-shadow 0.5s var(--ease-glass), border-color 0.5s var(--ease-glass) !important;
}
.tide-btn{ transition: transform 0.35s var(--ease-glass), box-shadow 0.35s var(--ease-glass), background 0.35s var(--ease-glass), filter 0.35s var(--ease-glass) !important; }

/* ── Responsive ── */
@media (max-width:900px){
  .tide-hero.tide-hero--v2{ padding:120px 1rem 64px !important; }
  .tide-hero__app{ margin-top:2.5rem; }
  .tide-app-frame{ height:560px; }
}
@media (max-width:560px){
  .tide-app-frame{ height:480px; }
  .tide-hero__app-title{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  .tide-beam, .tide-hero__glow, .tide-ambient__beam, .tide-ambient__glow, .gradient-text{ animation:none !important; }
}

/* ═══════════════════════════════════════════════════════════
   v3 — centered section headers (pill + gradient title + subtitle)
   ═══════════════════════════════════════════════════════════ */
.tide-section-label{
  display:flex !important; align-items:center; gap:.45rem; width:fit-content;
  margin:0 auto 1.15rem !important;
  padding:.42rem .95rem !important; border-radius:100px !important;
  font-size:.66rem !important; font-weight:700 !important; letter-spacing:.14em !important; text-transform:uppercase !important;
  color:var(--cyan) !important; border:none !important;
  background:rgba(255,255,255,.035) !important;
  box-shadow:inset 0 0 0 1px rgba(46,232,255,.22), 0 0 24px rgba(46,232,255,.05) !important;
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
}
.tide-section-label::before{
  content:''; width:6px; height:6px; border-radius:50%; flex-shrink:0;
  background:var(--cyan); box-shadow:0 0 8px rgba(46,232,255,.85);
}
.tide-section-title{
  text-align:center !important; margin-left:auto !important; margin-right:auto !important;
  margin-bottom:.85rem !important;
  background:linear-gradient(115deg,#ffffff 0%, #eaf3f9 46%, #7fd8ff 100%) !important;
  -webkit-background-clip:text !important; background-clip:text !important;
  -webkit-text-fill-color:transparent !important; color:transparent !important;
}
.tide-section-sub{
  text-align:center; color:var(--text-muted); max-width:560px;
  margin:0 auto 3rem; font-size:1rem; line-height:1.6;
}

/* FAQ — single centered column, glassy (matches reference) */
.tide-faq-grid{ grid-template-columns:1fr !important; max-width:840px; margin-left:auto !important; margin-right:auto !important; gap:.7rem !important; }
.tide-faq-card{ background:rgba(16,16,20,.5) !important; backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); }

/* Feature card titles in accent (like reference) */
.tide-feature-card__title{ color:var(--cyan) !important; }

/* ═══════════════════════════════════════════════════════════
   v4 — hero background (dots + operators), softer forest light,
   airy spacing, floating glass navbar
   ═══════════════════════════════════════════════════════════ */

/* Hero background layers */
.tide-hero__bg{ position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden; }
.tide-hero__dots{
  position:absolute; inset:0;
  background-image:radial-gradient(rgba(255,255,255,.11) 1px, transparent 1.6px);
  background-size:26px 26px;
  -webkit-mask-image:radial-gradient(ellipse 88% 62% at 50% 22%, #000 0%, rgba(0,0,0,.5) 52%, transparent 82%);
          mask-image:radial-gradient(ellipse 88% 62% at 50% 22%, #000 0%, rgba(0,0,0,.5) 52%, transparent 82%);
  opacity:.5;
}
.tide-hero__ops{
  position:absolute; left:50%; top:52px; transform:translateX(-50%);
  width:min(1180px, 100%); height:auto; opacity:.8;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 33%, rgba(0,0,0,.35) 52%, transparent 64%);
          mask-image:linear-gradient(to bottom, #000 0%, #000 33%, rgba(0,0,0,.35) 52%, transparent 64%);
}
.tide-hero__bg-fade{ position:absolute; left:0; right:0; bottom:0; height:60%; background:linear-gradient(to bottom, transparent 0%, rgba(10,10,10,.65) 55%, #0a0a0a 88%); }

/* stacking: bg < light < content */
.tide-hero__beams{ z-index:1 !important; }
.tide-hero--v2 .tide-hero__center{ z-index:3 !important; }
.tide-hero--v2 .tide-hero__app{ z-index:3 !important; }
.tide-hero__title{ text-shadow:0 2px 40px rgba(0,0,0,.55); }

/* Softer, dappled "light through the trees" */
.tide-beam{ filter:blur(38px) !important; }
.tide-beam--1{ opacity:.45 !important; }
.tide-beam--2{ opacity:.7  !important; }
.tide-beam--3{ opacity:.8  !important; }
.tide-beam--4{ opacity:.92 !important; }
.tide-beam--5{ opacity:.8  !important; }
.tide-beam--6{ opacity:.7  !important; }
.tide-beam--7{ opacity:.45 !important; }
.tide-hero__source{ width:600px !important; height:480px !important; filter:blur(42px) !important; }

/* Airy spacing at the top + more room before the interactive menu */
.tide-hero.tide-hero--v2{ padding:184px 1.5rem 96px !important; }
.tide-hero__pill{ margin-bottom:2.4rem !important; }
.tide-hero__title{ margin-bottom:2rem !important; }
.tide-hero__sub{ margin-bottom:2.75rem !important; }
.tide-hero__cta{ margin-bottom:3.25rem !important; }
.tide-hero__app{ margin-top:8rem !important; }

/* Floating curved glass navbar that pops out */
.tide-navbar{ background:transparent !important; backdrop-filter:none !important; -webkit-backdrop-filter:none !important; border:none !important; box-shadow:none !important; }
.tide-navbar__inner{
  max-width:1140px !important; margin:16px auto 0 !important;
  height:60px !important; padding:0 1.4rem 0 1.7rem !important;
  border-radius:100px !important;
  background:rgba(255,255,255,.06) !important;
  backdrop-filter:blur(24px) saturate(1.35) !important; -webkit-backdrop-filter:blur(24px) saturate(1.35) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 12px 34px rgba(0,0,0,.5),
    0 2px 10px rgba(0,0,0,.35) !important;
}
.tide-navbar__oval{ background:rgba(255,255,255,.08) !important; }

@media (max-width:900px){
  .tide-hero__app{ margin-top:5rem !important; }
  .tide-navbar__inner{ max-width:none !important; margin:10px 12px 0 !important; }
}
@media (prefers-reduced-motion:reduce){ .tide-hero__source{ animation:none !important; } }

/* ── v5 — visibility + mobile menu glass ── */
/* operators a touch more visible */
.tide-hero__ops{ opacity:.95 !important; }

/* smaller hero headline */
.tide-hero__title{ font-size:clamp(2.2rem, 5.4vw, 4.3rem) !important; }

/* Mobile dropdown menu — glass panel so text is readable */
.tide-navbar__mobile{
  background:rgba(12,12,15,.92) !important;
  backdrop-filter:blur(24px) saturate(1.3) !important; -webkit-backdrop-filter:blur(24px) saturate(1.3) !important;
  border:1px solid rgba(255,255,255,.08) !important; border-top:1px solid rgba(255,255,255,.08) !important;
  border-radius:18px !important; margin:10px 12px 0 !important;
  box-shadow:0 18px 44px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.tide-navbar__mobile-link{ color:#e6e6ea !important; font-weight:600 !important; }
.tide-navbar__mobile-link:hover{ color:var(--cyan) !important; }

/* ── v6 — navbar morph (bar → glass pill on scroll), spacing, UI border ── */

/* Top of page: full-width classic bar — no glass, no line */
.tide-navbar__inner{
  max-width:1400px !important; margin:0 auto !important;
  height:66px !important; padding:0 2.5rem !important;
  border-radius:0 !important; border:none !important;
  background:transparent !important;
  backdrop-filter:none !important; -webkit-backdrop-filter:none !important;
  box-shadow:none !important;
  transition:max-width .55s var(--ease-glass), margin .55s var(--ease-glass),
             height .4s var(--ease-glass), padding .45s var(--ease-glass),
             border-radius .55s var(--ease-glass), background .4s ease,
             box-shadow .45s ease, backdrop-filter .4s ease !important;
}
/* Scrolled: morph into the floating glass pill */
.tide-navbar.is-scrolled .tide-navbar__inner{
  max-width:1140px !important; margin:12px auto 0 !important;
  height:58px !important; padding:0 1.4rem 0 1.7rem !important;
  border-radius:100px !important;
  background:rgba(255,255,255,.06) !important;
  backdrop-filter:blur(24px) saturate(1.35) !important; -webkit-backdrop-filter:blur(24px) saturate(1.35) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 0 0 1px rgba(255,255,255,.06),
    0 12px 34px rgba(0,0,0,.5),
    0 2px 10px rgba(0,0,0,.35) !important;
}
/* Never a full-width line under the bar */
.tide-navbar{ border:none !important; border-bottom:none !important; box-shadow:none !important; }

/* More space between the title block and the interactive UI */
.tide-hero__app{ margin-top:11rem !important; }

/* Remove the grey border around the app UI (keep the glow + cyan topline) */
.tide-hero__app-glass{ box-shadow:0 40px 120px rgba(0,0,0,.6), 0 0 70px rgba(46,232,255,.06) !important; }

@media (max-width:900px){
  .tide-navbar.is-scrolled .tide-navbar__inner{ max-width:none !important; margin:10px 12px 0 !important; }
  .tide-hero__app{ margin-top:6.5rem !important; }
}

/* ═══════════════════════════════════════════════════════════
   v7 — kill the grey hairline, dimmer thin light shafts
   ═══════════════════════════════════════════════════════════ */

/* The grey line was the collapsed mobile menu's border/shadow drawing at height:0.
   Remove border+shadow so nothing shows when closed; hide entirely on desktop. */
.tide-navbar__mobile{
  border:none !important; box-shadow:none !important; border-top:none !important;
  background:rgba(12,12,15,.94) !important;
  backdrop-filter:blur(24px) saturate(1.3) !important; -webkit-backdrop-filter:blur(24px) saturate(1.3) !important;
  border-radius:18px !important; margin:10px 12px 0 !important;
}
@media (min-width:1025px){ .tide-navbar__mobile{ display:none !important; } }

/* ── Dimmer, thin, varied light shafts from one point (like sun through trees) ── */
.tide-beam{
  height:1120px !important; filter:blur(13px) !important; mix-blend-mode:screen;
  background:linear-gradient(180deg, rgba(255,255,255,.15) 0%, rgba(255,255,255,.045) 46%, transparent 78%) !important;
  border-radius:0 !important;
}
.tide-beam--1{ width:30px !important; opacity:.24 !important; animation:tide-shaft-a 13s ease-in-out infinite !important; }
.tide-beam--2{ width:9px  !important; opacity:.34 !important; animation:tide-shaft-b 10s ease-in-out infinite !important; }
.tide-beam--3{ width:22px !important; opacity:.28 !important; animation:tide-shaft-c 15s ease-in-out infinite !important; }
.tide-beam--4{ width:7px  !important; opacity:.42 !important; animation:tide-shaft-d 9s  ease-in-out infinite !important; }
.tide-beam--5{ width:17px !important; opacity:.3  !important; animation:tide-shaft-e 14s ease-in-out infinite !important; }
.tide-beam--6{ width:11px !important; opacity:.26 !important; animation:tide-shaft-f 12s ease-in-out infinite !important; }
.tide-beam--7{ width:26px !important; opacity:.2  !important; animation:tide-shaft-g 16s ease-in-out infinite !important; }
@keyframes tide-shaft-e{ 0%,100%{ transform:translateX(-50%) rotate(11deg);} 50%{ transform:translateX(-50%) rotate(15deg);} }
@keyframes tide-shaft-f{ 0%,100%{ transform:translateX(-50%) rotate(20deg);} 50%{ transform:translateX(-50%) rotate(24deg);} }
@keyframes tide-shaft-g{ 0%,100%{ transform:translateX(-50%) rotate(29deg);} 50%{ transform:translateX(-50%) rotate(33deg);} }
@keyframes tide-shaft-a{ 0%,100%{ transform:translateX(-50%) rotate(-31deg);} 50%{ transform:translateX(-50%) rotate(-27deg);} }
@keyframes tide-shaft-b{ 0%,100%{ transform:translateX(-50%) rotate(-19deg);} 50%{ transform:translateX(-50%) rotate(-14deg);} }
@keyframes tide-shaft-c{ 0%,100%{ transform:translateX(-50%) rotate(-9deg);} 50%{ transform:translateX(-50%) rotate(-4deg);} }
@keyframes tide-shaft-d{ 0%,100%{ transform:translateX(-50%) rotate(2deg);} 50%{ transform:translateX(-50%) rotate(7deg);} }
/* dimmer, smaller source */
.tide-hero__source{ width:460px !important; height:360px !important; filter:blur(46px) !important; opacity:.5 !important;
  background:radial-gradient(ellipse at center, rgba(255,255,255,.22) 0%, rgba(255,255,255,.06) 32%, transparent 62%) !important; }
.tide-hero__glow{ background:radial-gradient(ellipse at center top, rgba(255,255,255,.08), rgba(46,232,255,.03) 42%, transparent 66%) !important; }

/* operators a touch brighter on screen */
.tide-hero__ops{ opacity:1 !important; }

/* ═══════════════════════════════════════════════════════════
   v8 — bigger operators (real transparency), text lower, no nav bar
   ═══════════════════════════════════════════════════════════ */

/* Operators now use their real alpha channel — no rectangle, no side cut-off */
.tide-hero__ops{
  width:min(1500px, 122%) !important; max-width:1500px !important;
  left:50% !important; top:44px !important; transform:translateX(-50%) !important;
  opacity:1 !important; mix-blend-mode:normal !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.45) 64%, transparent 77%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 48%, rgba(0,0,0,.45) 64%, transparent 77%) !important;
}

/* Move the hero text block down (over the operators, like the reference) */
.tide-hero.tide-hero--v2{ padding:330px 1.5rem 110px !important; }

/* Remove the small grey bar / active-link indicator under the nav (every page) */
.tide-navbar__oval{ display:none !important; }
.tide-navbar__link::after,
.tide-navbar__link--active::after{ display:none !important; }

@media (max-width:900px){
  .tide-hero.tide-hero--v2{ padding:200px 1.2rem 80px !important; }
  .tide-hero__ops{ width:min(760px,150%) !important; top:70px !important; }
}

/* ── v8 — operators dimmer/fade higher, dots brighter + fade with operators ── */
.tide-hero__ops{
  opacity:.9 !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 22%, rgba(0,0,0,.32) 40%, transparent 54%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 22%, rgba(0,0,0,.32) 40%, transparent 54%) !important;
}
.tide-hero__dots{
  opacity:.95 !important;
  background-image:radial-gradient(rgba(255,255,255,.2) 1px, transparent 1.7px) !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 22%, rgba(0,0,0,.32) 40%, transparent 58%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 22%, rgba(0,0,0,.32) 40%, transparent 58%) !important;
}

/* ── v9 — match reference: large operators with a long smooth fade,
   very subtle dots, strong central spotlight ── */
.tide-hero__ops{
  top:44px !important;
  width:min(1300px, 108%) !important;
  opacity:.92 !important;
  /* long, gradual dissolve into black past the waist */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 46%, rgba(0,0,0,.55) 64%, rgba(0,0,0,.2) 78%, transparent 90%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 46%, rgba(0,0,0,.55) 64%, rgba(0,0,0,.2) 78%, transparent 90%) !important;
}
.tide-hero__dots{
  opacity:.45 !important;
  background-image:radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.7px) !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 42%, rgba(0,0,0,.28) 64%, transparent 84%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 42%, rgba(0,0,0,.28) 64%, transparent 84%) !important;
}
/* strong central spotlight that lights the helmet (sits above operators, screen-blends) */
.tide-hero__source{
  width:640px !important; height:540px !important; top:-120px !important; opacity:.75 !important; filter:blur(48px) !important;
  background:radial-gradient(ellipse at center, rgba(255,255,255,.32) 0%, rgba(255,255,255,.1) 32%, transparent 64%) !important;
}
.tide-hero__glow{
  width:920px !important; height:660px !important;
  background:radial-gradient(ellipse at center top, rgba(255,255,255,.14), rgba(46,232,255,.04) 42%, transparent 66%) !important;
}
/* softer, slightly broader rays (volumetric like the reference) */
.tide-beam{ filter:blur(20px) !important; }
.tide-beam--1{ width:52px !important; } .tide-beam--2{ width:20px !important; } .tide-beam--3{ width:40px !important; }
.tide-beam--4{ width:16px !important; } .tide-beam--5{ width:34px !important; } .tide-beam--6{ width:22px !important; } .tide-beam--7{ width:48px !important; }
/* nudge hero content down a touch so the title sits over the torsos */
.tide-hero.tide-hero--v2{ padding-top:214px !important; }

/* ── v10 — bigger operators, fast fade that ends at the torso, dots back ── */
.tide-hero__ops{
  top:36px !important;
  width:min(1650px, 126%) !important;      /* bigger */
  opacity:.95 !important;
  /* fast fade: solid head→chest, fully gone by the waist (~46% = torso) */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 22%, rgba(0,0,0,.5) 34%, transparent 46%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 22%, rgba(0,0,0,.5) 34%, transparent 46%) !important;
}
.tide-hero__dots{
  opacity:.7 !important;                    /* visible again */
  background-image:radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.7px) !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 30%, rgba(0,0,0,.4) 55%, transparent 80%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 30%, rgba(0,0,0,.4) 55%, transparent 80%) !important;
}

/* ═══════════════════════════════════════════════════════════
   v11 — TRUE BLACK bg, big operators as a backdrop, text pushed down
   ═══════════════════════════════════════════════════════════ */
:root{ --bg:#000000; }
body{ background:#000 !important; }
.tide-hero.tide-hero--v2{ background:#000 !important; }
.tide-hero__bg-fade{ background:linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.6) 52%, #000 86%) !important; }

/* push the whole text block down so the operators are visible above/behind it */
.tide-hero.tide-hero--v2{ padding-top:clamp(340px, 42vh, 480px) !important; }

/* BIG operators, heads just under the nav, fading into black around the thighs */
.tide-hero__ops{
  top:76px !important;
  width:min(1900px, 140%) !important;
  opacity:.96 !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 46%, rgba(0,0,0,.45) 62%, transparent 74%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 46%, rgba(0,0,0,.45) 62%, transparent 74%) !important;
}
.tide-hero__dots{
  opacity:.55 !important;
  background-image:radial-gradient(rgba(255,255,255,.12) 1px, transparent 1.7px) !important;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 42%, rgba(0,0,0,.35) 64%, transparent 84%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 42%, rgba(0,0,0,.35) 64%, transparent 84%) !important;
}

@media (max-width:900px){
  .tide-hero.tide-hero--v2{ padding-top:clamp(240px, 34vh, 360px) !important; }
  .tide-hero__ops{ width:158% !important; top:64px !important; }
}

/* ═══════════════════════════════════════════════════════════
   v12 — final reference match: vignette spotlight, pill, title,
   soft ray cone, scroll-down cue
   ═══════════════════════════════════════════════════════════ */

/* spotlight vignette: darker edges, light pooled center-top like the reference */
.tide-hero__bg::after{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 62% 55% at 50% 18%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(ellipse 120% 90% at 50% 40%, transparent 42%, rgba(0,0,0,.55) 78%, rgba(0,0,0,.85) 100%);
}

/* reference-style pill: rounded outline, tinted text, roomy */
.tide-hero__pill{
  padding:.6rem 1.35rem !important; border-radius:100px !important;
  background:rgba(46,232,255,.05) !important;
  box-shadow:inset 0 0 0 1px rgba(46,232,255,.32) !important;
  color:#9feeff !important; font-size:.82rem !important; font-weight:500 !important;
  letter-spacing:.01em !important; text-transform:none !important;
}
.tide-hero__pill::after{ content:'→'; margin-left:.55rem; font-size:.85rem; }

/* headline: bright soft gradient, tighter, heavier like the reference */
.tide-hero__title{
  font-size:clamp(2.8rem, 7vw, 5.6rem) !important;
  line-height:1.04 !important; letter-spacing:-0.02em !important; font-weight:800 !important;
}

/* softer wide light cone behind everything (volumetric like reference) */
.tide-hero__beams::after{
  content:''; position:absolute; top:-160px; left:50%; transform:translateX(-50%);
  width:1100px; max-width:130vw; height:900px; pointer-events:none;
  background:conic-gradient(from 180deg at 50% 0%, transparent 40%, rgba(255,255,255,.05) 47%, rgba(255,255,255,.09) 50%, rgba(255,255,255,.05) 53%, transparent 60%);
  filter:blur(22px); mix-blend-mode:screen;
}

/* scroll-down chevron circle under the CTA */
.tide-hero__cta{ position:relative; }
.tide-hero__scrollcue{
  width:44px; height:44px; margin:3.4rem auto 0; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16);
  background:rgba(255,255,255,.03); color:#cfd3d8;
  animation:tide-cue 2.6s ease-in-out infinite;
}
@keyframes tide-cue{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(6px);} }

/* ── v13 — operators HUGE and much darker (reference match) ── */
.tide-hero__ops{
  top:0 !important;
  width:min(2400px, 178%) !important;
  opacity:1 !important;
  filter:brightness(.52) !important;   /* barely above black, like the reference */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 52%, rgba(0,0,0,.4) 72%, transparent 88%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 52%, rgba(0,0,0,.4) 72%, transparent 88%) !important;
}
@media (max-width:900px){ .tide-hero__ops{ width:230% !important; } }

/* ── v14 — use the exact hero image (baked bg), full-bleed, center guy fades out ── */
.tide-hero__ops{
  top:0 !important; left:50% !important; transform:translateX(-50%) !important;
  width:100% !important; max-width:none !important;
  height:min(92vh, 980px) !important; object-fit:cover !important; object-position:top center !important;
  opacity:1 !important; filter:none !important;   /* darkening is baked into the image */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.45) 78%, transparent 94%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.45) 78%, transparent 94%) !important;
}
/* the image brings its own light + haze: mute our overlay rays/dots so they don't double up */
.tide-beam{ opacity:.12 !important; }
.tide-hero__source{ opacity:.3 !important; }
.tide-hero__dots{ opacity:.35 !important; }

/* ═══════════════════════════════════════════════════════════
   v15 — smaller hero image, text up, uppercase pill,
   whole site matched to the dark cinematic theme
   ═══════════════════════════════════════════════════════════ */

/* hero image a bit smaller */
.tide-hero__ops{
  width:min(1240px, 96%) !important;
  height:min(78vh, 820px) !important;
}

/* bring the text up a bit */
.tide-hero.tide-hero--v2{ padding-top:clamp(280px, 34vh, 400px) !important; }

/* pill text uppercase */
.tide-hero__pill{ text-transform:uppercase !important; letter-spacing:.09em !important; font-size:.74rem !important; font-weight:600 !important; }

/* ── site-wide: match the cinematic black theme ── */
/* every section on pure black */
.tide-section, footer, .tide-footer{ background:#000 !important; }

/* cards: near-black glass with hairline edges (not grey panels) */
.tide-product-card, .tide-feature-card, .tide-rain-card, .tide-review-card,
.tide-faq-card, .tide-install-step, .tide-pp-features, .tide-product-page__panel{
  background:rgba(255,255,255,.028) !important;
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05), inset 0 0 0 1px rgba(255,255,255,.045), 0 20px 60px rgba(0,0,0,.5) !important;
  border:none !important;
}

/* soft spotlight behind each section header, like the hero's light pool */
.tide-section{ position:relative; }
.tide-section::before{
  content:''; position:absolute; top:-40px; left:50%; transform:translateX(-50%);
  width:820px; max-width:92vw; height:340px; pointer-events:none;
  background:radial-gradient(ellipse at center top, rgba(255,255,255,.045), transparent 66%);
  filter:blur(10px);
}

/* footer hairline + black */
footer{ border-top:1px solid rgba(255,255,255,.05) !important; }

/* buttons: keep the blue gradient but deepen resting shadow for the dark scene */
.tide-btn--primary{ box-shadow:0 10px 34px rgba(20,102,224,.35), inset 0 1px 0 rgba(255,255,255,.25) !important; }

/* ═══════════════════════════════════════════════════════════
   v16 — hero image edges melt into black on all sides;
   ambient lights live IN the page (encountered while scrolling)
   ═══════════════════════════════════════════════════════════ */

/* image: fade bottom AND sides so it reads as part of the site, not a placed image */
.tide-hero__ops{
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.45) 78%, transparent 94%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
          mask-image:
    linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.45) 78%, transparent 94%),
    linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%) !important;
  -webkit-mask-composite:source-in !important;
          mask-composite:intersect !important;
}
/* belt-and-braces: soft black side wash over the image zone for browsers without mask-composite */
.tide-hero__bg::before{
  content:''; position:absolute; inset:0; pointer-events:none; z-index:1;
  background:
    linear-gradient(to right, #000 0%, transparent 16%, transparent 84%, #000 100%);
  opacity:.9;
}

/* ambient lights: no longer glued to the viewport — placed through the document,
   so you come across them as you scroll */
body{ position:relative; }
.tide-ambient{ position:absolute !important; top:0; left:0; right:0; height:100% !important; }
/* spread the flashes across the full page height */
.tide-flash--1{ top:16% !important; left:8% !important; }
.tide-flash--2{ top:31% !important; right:6% !important; }
.tide-flash--3{ top:47% !important; left:14% !important; }
.tide-flash--4{ top:62% !important; right:12% !important; }
.tide-flash--5{ top:76% !important; left:42% !important; }
.tide-flash--6{ top:90% !important; left:24% !important; }
/* retire the viewport-following beams; flashes carry the effect */
.tide-ambient__beam{ display:none !important; }
.tide-ambient__glow{ display:none !important; }

/* ── v17 — dots back, clearly visible ── */
.tide-hero__dots{
  opacity:.85 !important;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1.7px) !important;
  background-size:26px 26px !important;
  z-index:2;
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 40%, rgba(0,0,0,.4) 66%, transparent 88%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 40%, rgba(0,0,0,.4) 66%, transparent 88%) !important;
}

/* ── v18 — dots behind the operators, fading with them, more transparent ── */
.tide-hero__dots{
  z-index:0 !important;
  opacity:.5 !important;
  background-image:radial-gradient(rgba(255,255,255,.1) 1px, transparent 1.7px) !important;
  /* same fade curve as the operators */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.45) 78%, transparent 94%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.45) 78%, transparent 94%) !important;
}
.tide-hero__ops{ position:absolute; z-index:1 !important; }
.tide-hero__bg-fade{ z-index:2 !important; }

/* ── v19 — operators a bit lower, smaller pill ── */
.tide-hero__ops{ top:64px !important; }
.tide-hero__pill{
  padding:.42rem 1rem !important;
  font-size:.66rem !important;
  letter-spacing:.08em !important;
}
.tide-hero__pill svg{ width:12px !important; height:12px !important; }
.tide-hero__pill::after{ font-size:.72rem !important; margin-left:.45rem !important; }

/* ═══════════════════════════════════════════════════════════
   v20 — extend the image's own light to the very top of the page.
   Colors sampled from the top edge of operators.jpg:
   34%: rgb(48,53,59) · 42%: rgb(32,36,39) · 50%: rgb(20,23,28)
   58%: rgb(41,44,49) · 66%: rgb(41,44,49) · faint 8-16% / 75-84%
   ═══════════════════════════════════════════════════════════ */

/* the image starts 64px down and is min(1240px,96%) wide, centered.
   This layer fills from the page top down over the image top edge,
   painting the same tones so the seam disappears. */
.tide-hero__bg::after{
  content:'' !important; position:absolute !important; pointer-events:none !important;
  top:0 !important; bottom:auto !important; left:50% !important; transform:translateX(-50%) !important;
  width:min(1240px, 96%) !important; height:240px !important;
  background:
    /* bright ray group left-of-center (34%) */
    linear-gradient(100deg, transparent 26%, rgba(48,53,59,.95) 33%, rgba(48,53,59,.35) 37%, transparent 41%),
    /* mid ray (42%) */
    linear-gradient(95deg, transparent 37%, rgba(32,36,39,.9) 42%, transparent 47%),
    /* center soft (50%) */
    linear-gradient(90deg, transparent 45%, rgba(20,23,28,.9) 50%, transparent 55%),
    /* right-of-center pair (58% & 66%) */
    linear-gradient(85deg, transparent 53%, rgba(41,44,49,.9) 58%, transparent 63%),
    linear-gradient(80deg, transparent 61%, rgba(41,44,49,.95) 66%, rgba(41,44,49,.3) 70%, transparent 74%),
    /* faint outer haze */
    linear-gradient(105deg, transparent 4%, rgba(11,12,14,.85) 12%, transparent 20%),
    linear-gradient(75deg, transparent 72%, rgba(8,9,11,.85) 80%, transparent 88%);
  filter:blur(6px) !important;
  /* fade this extension out as the real image takes over below */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 40%, transparent 100%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 40%, transparent 100%) !important;
  z-index:0 !important;
  opacity:1 !important;
}

/* remove the old leftover CSS rays/source — the extension above replaces them */
.tide-beam{ display:none !important; }
.tide-hero__source{ display:none !important; }
.tide-hero__glow{ display:none !important; }
.tide-hero__beams::after{ display:none !important; }

/* ═══════════════════════════════════════════════════════════
   v21 — new photo with built-in headroom light.
   Shift it up so the guy stays where he is; the light column
   now runs to the very top natively. Bottom cut stays put.
   ═══════════════════════════════════════════════════════════ */
.tide-hero__ops{
  top:-170px !important;
  height:auto !important; object-fit:initial !important;
  -webkit-mask-image:
    linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,.4) 80%, transparent 95%),
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
          mask-image:
    linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,.4) 80%, transparent 95%),
    linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%) !important;
  -webkit-mask-composite:source-in !important;
          mask-composite:intersect !important;
}
/* the painted ray extension is no longer needed — the photo's own light reaches the top */
.tide-hero__bg::after{ display:none !important; }

@media (max-width:900px){
  .tide-hero__ops{ top:-13vw !important; }
}

/* ── v22 — dots are baked into the hero image (with gaps over the operators);
   hide the CSS dot layer so they don't double up ── */
.tide-hero__dots{ display:none !important; }

/* ── v23 — operators full-bleed again (dots reach both page edges), sitting lower ── */
.tide-hero__ops{
  width:100% !important; max-width:none !important;
  top:-220px !important;
  /* bottom fade only — sides now end at the page edges, so no side fade needed */
  -webkit-mask-image:linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,.4) 80%, transparent 95%) !important;
          mask-image:linear-gradient(to bottom, #000 0%, #000 60%, rgba(0,0,0,.4) 80%, transparent 95%) !important;
  -webkit-mask-composite:initial !important; mask-composite:initial !important;
}
/* side black wash no longer needed at full bleed */
.tide-hero__bg::before{ display:none !important; }
@media (max-width:900px){
  .tide-hero__ops{ top:-10vw !important; }
}

/* ── v24 — image up a bit; cursor glow ── */
.tide-hero__ops{ top:-185px !important; }
@media (max-width:900px){ .tide-hero__ops{ top:-8vw !important; } }

.tide-cursor-glow{
  position:fixed; top:0; left:0; width:340px; height:340px;
  pointer-events:none; z-index:60;
  background:radial-gradient(circle at center, rgba(180,230,255,.05) 0%, rgba(46,232,255,.025) 38%, transparent 65%);
  mix-blend-mode:screen; transform:translate(-500px,-500px);
  will-change:transform;
}
@media (hover:none){ .tide-cursor-glow{ display:none; } }
@media (prefers-reduced-motion:reduce){ .tide-cursor-glow{ display:none; } }

/* ── v25 — person higher: neck lands below the pill ── */
.tide-hero__ops{ top:-255px !important; }
@media (max-width:900px){ .tide-hero__ops{ top:-14vw !important; } }

/* ── v26 — logo symbol replaces wordmark ── */
.tide-navbar__symbol{
  height:40px; width:auto; display:block;
  filter:drop-shadow(0 0 12px rgba(46,232,255,.25));
}
@media (max-width:900px){ .tide-navbar__symbol{ height:34px; } }

/* ── v27 — bigger logo (thin nav padding), pill removed ── */
.tide-navbar__symbol{ height:56px !important; }
.tide-navbar.is-scrolled .tide-navbar__symbol{ height:48px !important; }
@media (max-width:900px){ .tide-navbar__symbol{ height:46px !important; } }

/* ── v28 — compressed navbar, logo fills it ── */
.tide-navbar__inner{ height:54px !important; }
.tide-navbar.is-scrolled .tide-navbar__inner{ height:50px !important; }
.tide-navbar__symbol{ height:46px !important; }
.tide-navbar.is-scrolled .tide-navbar__symbol{ height:42px !important; }
@media (max-width:900px){
  .tide-navbar__inner{ height:50px !important; }
  .tide-navbar__symbol{ height:40px !important; }
}

/* ── v29 — flashes render OVER content (screen-blend), subtle white ── */
.tide-ambient{ z-index:30 !important; }   /* above sections, below navbar/cursor glow */
.tide-flash{ mix-blend-mode:screen !important; }
.tide-flash--1{ background:radial-gradient(circle, rgba(255,255,255,.06), transparent 65%) !important; }
.tide-flash--2{ background:radial-gradient(circle, rgba(255,255,255,.05), transparent 65%) !important; }
.tide-flash--3{ background:radial-gradient(circle, rgba(255,255,255,.045), transparent 64%) !important; }
.tide-flash--4{ background:radial-gradient(circle, rgba(255,255,255,.055), transparent 66%) !important; }
.tide-flash--5{ background:radial-gradient(circle, rgba(255,255,255,.04), transparent 64%) !important; }
.tide-flash--6{ background:radial-gradient(circle, rgba(255,255,255,.05), transparent 66%) !important; }
@keyframes tide-flash{ 0%,100%{ opacity:0; transform:scale(.85);} 45%{ opacity:.75; transform:scale(1);} 65%{ opacity:.45; transform:scale(1.03);} }

/* ═══════════════════════════════════════════════════════════
   v30 — navbar polish: same logo size in both states, white cart,
   Support button, wide top-state spread; install panel color
   ═══════════════════════════════════════════════════════════ */

/* logo: same size whether transparent bar or glass pill */
.tide-navbar__symbol{ height:42px !important; }
.tide-navbar.is-scrolled .tide-navbar__symbol{ height:42px !important; }

/* transparent (top) state: logo + right cluster pushed toward the edges */
.tide-navbar__inner{ max-width:none !important; padding:0 3.2rem !important; }
.tide-navbar.is-scrolled .tide-navbar__inner{ max-width:1140px !important; padding:0 1.4rem 0 1.7rem !important; }
@media (max-width:900px){ .tide-navbar__inner{ padding:0 1.2rem !important; } }

/* clean white cart icon — no fill, no border */
.tide-navbar__cart{
  background:none !important; border:none !important; box-shadow:none !important;
  color:#e6e6ea !important; font-size:1.05rem !important;
  width:auto !important; height:auto !important; padding:.35rem !important;
}
.tide-navbar__cart:hover{ color:#fff !important; }
.tide-navbar__cart-count{ background:var(--accent-deep) !important; color:#fff !important; }

/* login sits with the cart */
.tide-navbar__login{ font-size:.88rem !important; }
.tide-navbar__right{ display:flex; align-items:center; gap:1.1rem !important; }

/* Support button (replaces Get Started) */
.tide-navbar__support{
  padding:.5rem 1.15rem; border-radius:100px; font-size:.85rem; font-weight:600;
  background:linear-gradient(95deg,#1466e0,#2ee8ff); color:#021018 !important;
  text-decoration:none !important; white-space:nowrap;
  box-shadow:0 6px 22px rgba(20,102,224,.35), inset 0 1px 0 rgba(255,255,255,.25);
  transition:transform .35s var(--ease-glass), box-shadow .35s ease;
}
.tide-navbar__support:hover{ transform:translateY(-1px); box-shadow:0 10px 28px rgba(20,102,224,.45), inset 0 1px 0 rgba(255,255,255,.3); }

/* install panel: same near-black glass as the other cards */
.tide-install-panel{
  background:rgba(255,255,255,.028) !important;
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05), inset 0 0 0 1px rgba(255,255,255,.045), 0 20px 60px rgba(0,0,0,.5) !important;
  border:none !important;
}
.tide-install-panel__row{ background:rgba(255,255,255,.03) !important; border:1px solid rgba(255,255,255,.05) !important; }


/* ── reviews pagination ── */
.tide-pager{ display:flex; gap:.45rem; justify-content:center; margin-top:2.4rem; flex-wrap:wrap; }
.tide-pager button{
  min-width:40px; height:40px; padding:0 .7rem; border-radius:10px; cursor:pointer;
  background:rgba(255,255,255,.03); color:#cfd3d8; border:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.09); font-weight:600; font-family:var(--font);
  transition:background .2s ease;
}
.tide-pager button:hover{ background:rgba(255,255,255,.07); }
.tide-pager button.is-active{ background:#1466e0; color:#fff; box-shadow:none; }
.tide-pager button:disabled{ opacity:.35; cursor:default; }

/* ── navbar morph smoothing ── */
.tide-navbar__inner{
  will-change:max-width,margin,height,padding,border-radius,background,box-shadow;
  transition:max-width .6s var(--ease-glass), margin .6s var(--ease-glass),
             height .45s var(--ease-glass), padding .5s var(--ease-glass),
             border-radius .6s var(--ease-glass), background .45s ease,
             box-shadow .5s ease, backdrop-filter .45s ease !important;
}
