/* ═══════════════════════════════════════════════
   SIGNALFRAG.XYZ — Custom CSS
   Theme: Dark Navy + Teal Cyberpunk
   Completely different from driftclutch & rocketclash
   ═══════════════════════════════════════════════ */

:root {
  --sf-bg:        #0a0f1a;
  --sf-surface:   #0f1626;
  --sf-card:      #131d2e;
  --sf-border:    #1e2d45;
  --sf-teal:      #00e5cc;
  --sf-teal-dim:  #00b8a4;
  --sf-teal-glow: rgba(0,229,204,.15);
  --sf-cyan:      #00cfff;
  --sf-text:      #c8d8e8;
  --sf-muted:     #5a7a9a;
  --sf-white:     #e8f4ff;
  --sf-success:   #00e5cc;
  --sf-gradient:  linear-gradient(135deg, #00e5cc 0%, #00cfff 100%);
  --sf-gradient-dark: linear-gradient(135deg, #003d36 0%, #002a40 100%);
  --sf-font:      'Segoe UI', system-ui, -apple-system, sans-serif;
  --sf-mono:      'Courier New', 'Consolas', monospace;
  --sf-radius:    6px;
  --sf-radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--sf-bg);
  color: var(--sf-text);
  font-family: var(--sf-font);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sf-surface); }
::-webkit-scrollbar-thumb { background: var(--sf-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sf-teal); }

/* ── SELECTION ── */
::selection { background: var(--sf-teal); color: #000; }

/* ═══════════════════════════════════════════════
   NAVBAR — slim dark bar with teal accent line
   ═══════════════════════════════════════════════ */
.sf-navbar {
  background: rgba(10,15,26,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sf-border);
  padding: .65rem 0;
  position: relative;
}
.sf-navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--sf-gradient);
  opacity: .5;
}

.sf-navbar .navbar-brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--sf-white) !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.sf-navbar .navbar-brand .brand-icon {
  display: inline-block;
  width: 28px; height: 28px;
  background: var(--sf-gradient);
  clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
  flex-shrink: 0;
}
.sf-navbar .navbar-brand .brand-teal { color: var(--sf-teal); }

.sf-navbar .nav-link {
  color: var(--sf-muted) !important;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .3px;
  padding: .4rem .75rem !important;
  border-radius: var(--sf-radius);
  transition: color .2s, background .2s;
  text-decoration: none;
}
.sf-navbar .nav-link:hover,
.sf-navbar .nav-link.active {
  color: var(--sf-teal) !important;
  background: var(--sf-teal-glow);
}

.sf-navbar .nav-cta {
  color: var(--sf-bg) !important;
  background: var(--sf-teal) !important;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .4rem 1rem !important;
  border-radius: var(--sf-radius);
}
.sf-navbar .nav-cta:hover {
  background: var(--sf-cyan) !important;
  color: #000 !important;
}

.sf-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300e5cc' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ═══════════════════════════════════════════════
   HERO — full-viewport split layout with scan-line overlay
   ═══════════════════════════════════════════════ */
.sf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--sf-bg);
}
.sf-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(.25) saturate(1.4);
  z-index: 0;
}
.sf-hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,229,204,.015) 2px,
    rgba(0,229,204,.015) 4px
  );
  z-index: 1;
  pointer-events: none;
}
.sf-hero-glow {
  position: absolute;
  top: -20%; left: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(0,229,204,.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.sf-hero .container { position: relative; z-index: 2; }

.sf-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sf-teal);
  border: 1px solid rgba(0,229,204,.3);
  background: rgba(0,229,204,.06);
  padding: .35rem .85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.sf-hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--sf-teal);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .2; }
}

.sf-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--sf-white);
  letter-spacing: -1px;
  margin-bottom: 1.25rem;
}
.sf-hero h1 .line-teal {
  display: block;
  background: var(--sf-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sf-hero-lead {
  font-size: 1.05rem;
  color: var(--sf-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.sf-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.btn-sf-primary {
  display: inline-block;
  background: var(--sf-teal);
  color: #000 !important;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: var(--sf-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-sf-primary:hover {
  background: var(--sf-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,229,204,.35);
}

.btn-sf-ghost {
  display: inline-block;
  background: transparent;
  color: var(--sf-teal) !important;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: var(--sf-radius);
  border: 1px solid rgba(0,229,204,.4);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-sf-ghost:hover {
  background: var(--sf-teal-glow);
  border-color: var(--sf-teal);
  transform: translateY(-2px);
}

/* Hero stats row */
.sf-hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--sf-border);
}
.sf-hero-stats .stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--sf-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.sf-hero-stats .stat-lbl {
  font-size: .75rem;
  color: var(--sf-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero right panel — terminal-style */
.sf-hero-panel {
  background: rgba(15,22,38,.85);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.sf-hero-panel-header {
  background: var(--sf-surface);
  border-bottom: 1px solid var(--sf-border);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--sf-muted);
  font-family: var(--sf-mono);
}
.sf-hero-panel-header .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.sf-hero-panel-header .dot-r { background: #ff5f57; }
.sf-hero-panel-header .dot-y { background: #febc2e; }
.sf-hero-panel-header .dot-g { background: #28c840; }
.sf-hero-panel-body { padding: 1.25rem; }

.sf-live-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--sf-border);
  text-decoration: none;
  transition: background .15s;
  border-radius: var(--sf-radius);
}
.sf-live-item:last-child { border-bottom: none; padding-bottom: 0; }
.sf-live-item:hover { background: var(--sf-teal-glow); padding-left: .5rem; }
.sf-live-item-img {
  width: 64px; height: 48px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--sf-border);
}
.sf-live-item-meta { flex: 1; min-width: 0; }
.sf-live-item-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sf-teal);
  margin-bottom: .2rem;
}
.sf-live-item-title {
  font-size: .875rem;
  font-weight: 600;
  color: var(--sf-white);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-live-item-sub {
  font-size: .75rem;
  color: var(--sf-muted);
  margin-top: .15rem;
}
.sf-score-badge {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 900;
  font-family: var(--sf-mono);
  background: var(--sf-teal-glow);
  border: 1px solid rgba(0,229,204,.3);
  color: var(--sf-teal);
}

/* ═══════════════════════════════════════════════
   SECTION LABELS
   ═══════════════════════════════════════════════ */
.sf-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sf-teal);
  font-family: var(--sf-mono);
}
.sf-label::before {
  content: '//';
  opacity: .5;
}

.sf-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--sf-white);
  letter-spacing: -.5px;
  line-height: 1.2;
  margin: .4rem 0 0;
}

/* ═══════════════════════════════════════════════
   REVIEW CARDS — horizontal list style
   ═══════════════════════════════════════════════ */
.sf-review-card {
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.sf-review-card:hover {
  border-color: rgba(0,229,204,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4), 0 0 0 1px rgba(0,229,204,.1);
}
.sf-review-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.sf-review-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.sf-review-card:hover .sf-review-card-img img { transform: scale(1.05); }
.sf-review-card-score {
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(10,15,26,.9);
  border: 1px solid rgba(0,229,204,.4);
  color: var(--sf-teal);
  font-family: var(--sf-mono);
  font-weight: 900;
  font-size: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.sf-review-card-genre {
  position: absolute;
  bottom: .75rem; left: .75rem;
  background: rgba(0,229,204,.15);
  border: 1px solid rgba(0,229,204,.3);
  color: var(--sf-teal);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  font-family: var(--sf-mono);
}
.sf-review-card-body {
  padding: 1.1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sf-review-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sf-white);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.sf-review-card-excerpt {
  font-size: .825rem;
  color: var(--sf-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: .85rem;
}
.sf-review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--sf-muted);
  border-top: 1px solid var(--sf-border);
  padding-top: .75rem;
  margin-top: auto;
}
.sf-review-card-footer .platform {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  padding: .15rem .5rem;
  border-radius: 3px;
  font-family: var(--sf-mono);
  font-size: .7rem;
}

/* ═══════════════════════════════════════════════
   FILTER TABS
   ═══════════════════════════════════════════════ */
.sf-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.sf-filter-btn {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  color: var(--sf-muted);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sf-mono);
  transition: all .2s;
}
.sf-filter-btn:hover,
.sf-filter-btn.active {
  background: var(--sf-teal-glow);
  border-color: var(--sf-teal);
  color: var(--sf-teal);
}

/* ═══════════════════════════════════════════════
   TOURNAMENT TABLE
   ═══════════════════════════════════════════════ */
.sf-table-wrap {
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  overflow: hidden;
}
.sf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.sf-table thead th {
  background: var(--sf-surface);
  color: var(--sf-teal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--sf-mono);
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--sf-border);
  white-space: nowrap;
}
.sf-table tbody td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--sf-border);
  color: var(--sf-text);
  vertical-align: middle;
}
.sf-table tbody tr:last-child td { border-bottom: none; }
.sf-table tbody tr:hover td { background: rgba(0,229,204,.03); }
.sf-status {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  font-family: var(--sf-mono);
}
.sf-status-live { background: rgba(0,229,204,.15); color: var(--sf-teal); border: 1px solid rgba(0,229,204,.3); }
.sf-status-live::before { content: '● '; animation: blink 1s infinite; }
.sf-status-upcoming { background: rgba(0,207,255,.1); color: var(--sf-cyan); border: 1px solid rgba(0,207,255,.25); }
.sf-status-closed { background: rgba(90,122,154,.1); color: var(--sf-muted); border: 1px solid var(--sf-border); }

/* ═══════════════════════════════════════════════
   FEATURED REVIEW — wide horizontal card
   ═══════════════════════════════════════════════ */
.sf-featured {
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .sf-featured { flex-direction: row; }
}
.sf-featured-img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.sf-featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sf-featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--sf-card));
}
@media (max-width: 767px) {
  .sf-featured-img::after { background: linear-gradient(to bottom, transparent 60%, var(--sf-card)); }
}
.sf-featured-body {
  flex: 1;
  padding: 2rem 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sf-featured-score {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--sf-mono);
  background: var(--sf-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}
.sf-featured-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sf-white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.sf-featured-excerpt {
  color: var(--sf-muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.sf-featured-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  font-family: var(--sf-mono);
}
.sf-featured-meta span {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  padding: .2rem .65rem;
  border-radius: 3px;
  color: var(--sf-muted);
}
.sf-featured-meta span strong { color: var(--sf-teal); }

/* ═══════════════════════════════════════════════
   STAT CARDS
   ═══════════════════════════════════════════════ */
.sf-stat-card {
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sf-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sf-gradient);
}
.sf-stat-card .num {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--sf-mono);
  background: var(--sf-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}
.sf-stat-card .lbl {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sf-muted);
  font-family: var(--sf-mono);
}

/* ═══════════════════════════════════════════════
   PAGE HERO — inner pages
   ═══════════════════════════════════════════════ */
.sf-page-hero {
  background: var(--sf-surface);
  border-bottom: 1px solid var(--sf-border);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
}
.sf-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sf-gradient);
}
.sf-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--sf-white);
  letter-spacing: -.5px;
  margin-bottom: 0;
}
.sf-breadcrumb {
  font-size: .78rem;
  color: var(--sf-muted);
  margin-bottom: .75rem;
  font-family: var(--sf-mono);
}
.sf-breadcrumb a {
  color: var(--sf-muted);
  text-decoration: none;
  transition: color .2s;
}
.sf-breadcrumb a:hover { color: var(--sf-teal); }
.sf-breadcrumb span { color: var(--sf-teal); }

/* ═══════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════ */
.sf-cta {
  background: var(--sf-surface);
  border-top: 1px solid var(--sf-border);
  border-bottom: 1px solid var(--sf-border);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.sf-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--sf-gradient);
}
.sf-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--sf-gradient);
}
.sf-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--sf-white);
  letter-spacing: -.5px;
}
.sf-cta p { color: var(--sf-muted); }

/* ═══════════════════════════════════════════════
   NEWSLETTER FORM
   ═══════════════════════════════════════════════ */
.sf-nl-wrap {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  margin: 0 auto;
}
.sf-nl-input {
  flex: 1;
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  color: var(--sf-white);
  font-size: .875rem;
  padding: .7rem 1rem;
  border-radius: var(--sf-radius);
  outline: none;
  transition: border-color .2s;
}
.sf-nl-input::placeholder { color: var(--sf-muted); }
.sf-nl-input:focus { border-color: var(--sf-teal); }
.sf-nl-success {
  display: none;
  font-size: .85rem;
  color: var(--sf-teal);
  font-weight: 600;
  text-align: center;
  margin-top: .75rem;
  font-family: var(--sf-mono);
}

/* ═══════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════ */
.sf-form-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--sf-muted);
  text-transform: uppercase;
  font-family: var(--sf-mono);
  margin-bottom: .4rem;
}
.sf-form-control {
  width: 100%;
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  color: var(--sf-white);
  font-size: .9rem;
  padding: .7rem 1rem;
  border-radius: var(--sf-radius);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: var(--sf-font);
}
.sf-form-control::placeholder { color: var(--sf-muted); }
.sf-form-control:focus {
  border-color: var(--sf-teal);
  box-shadow: 0 0 0 3px rgba(0,229,204,.1);
}
textarea.sf-form-control { min-height: 140px; resize: vertical; }
select.sf-form-control { cursor: pointer; }
select.sf-form-control option { background: var(--sf-card); }

.sf-form-success {
  display: none;
  background: rgba(0,229,204,.08);
  border: 1px solid rgba(0,229,204,.3);
  color: var(--sf-teal);
  font-size: .875rem;
  padding: .85rem 1rem;
  border-radius: var(--sf-radius);
  margin-top: 1rem;
  font-family: var(--sf-mono);
}

/* ═══════════════════════════════════════════════
   CONTACT INFO ITEMS
   ═══════════════════════════════════════════════ */
.sf-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--sf-border);
}
.sf-contact-item:last-child { border-bottom: none; }
.sf-contact-icon {
  width: 40px; height: 40px;
  background: var(--sf-teal-glow);
  border: 1px solid rgba(0,229,204,.25);
  border-radius: var(--sf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sf-contact-item strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--sf-white);
  text-transform: uppercase;
  font-family: var(--sf-mono);
  margin-bottom: .2rem;
}
.sf-contact-item span,
.sf-contact-item address {
  font-size: .875rem;
  color: var(--sf-muted);
  font-style: normal;
  line-height: 1.6;
}
.sf-contact-item a {
  color: var(--sf-teal);
  text-decoration: none;
}
.sf-contact-item a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   ABOUT — team cards
   ═══════════════════════════════════════════════ */
.sf-team-card {
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
  height: 100%;
}
.sf-team-card:hover {
  border-color: rgba(0,229,204,.35);
  transform: translateY(-3px);
}
.sf-team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--sf-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  border: 2px solid rgba(0,229,204,.2);
}
.sf-team-card h6 {
  font-weight: 800;
  color: var(--sf-white);
  margin-bottom: .2rem;
}
.sf-team-role {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sf-teal);
  font-family: var(--sf-mono);
  margin-bottom: .75rem;
}
.sf-team-card p {
  font-size: .825rem;
  color: var(--sf-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════
   POLICY PAGES
   ═══════════════════════════════════════════════ */
.sf-policy {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.sf-policy .last-updated {
  font-size: .8rem;
  color: var(--sf-muted);
  font-family: var(--sf-mono);
  margin-bottom: 2rem;
  padding: .5rem .85rem;
  background: var(--sf-surface);
  border-left: 3px solid var(--sf-teal);
  border-radius: 0 var(--sf-radius) var(--sf-radius) 0;
  display: inline-block;
}
.sf-policy h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sf-white);
  margin-top: 2.5rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--sf-border);
}
.sf-policy h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sf-teal);
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-family: var(--sf-mono);
}
.sf-policy p, .sf-policy li {
  color: var(--sf-muted);
  font-size: .9rem;
  line-height: 1.8;
}
.sf-policy ul { padding-left: 1.25rem; }
.sf-policy li { margin-bottom: .4rem; }
.sf-policy a { color: var(--sf-teal); }
.sf-policy a:hover { color: var(--sf-cyan); }
.sf-policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .85rem;
}
.sf-policy table th {
  background: var(--sf-surface);
  color: var(--sf-teal);
  font-family: var(--sf-mono);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .65rem 1rem;
  border: 1px solid var(--sf-border);
  text-align: left;
}
.sf-policy table td {
  padding: .65rem 1rem;
  border: 1px solid var(--sf-border);
  color: var(--sf-muted);
}
.sf-policy code {
  background: var(--sf-surface);
  border: 1px solid var(--sf-border);
  color: var(--sf-teal);
  padding: .1rem .4rem;
  border-radius: 3px;
  font-family: var(--sf-mono);
  font-size: .85em;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.sf-footer {
  background: var(--sf-surface);
  border-top: 1px solid var(--sf-border);
  padding: 3.5rem 0 0;
  position: relative;
}
.sf-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--sf-gradient);
}
.sf-footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--sf-white);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .85rem;
  text-decoration: none;
}
.sf-footer-brand .brand-icon {
  width: 24px; height: 24px;
  background: var(--sf-gradient);
  clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
  flex-shrink: 0;
}
.sf-footer-brand .brand-teal { color: var(--sf-teal); }
.sf-footer p {
  font-size: .85rem;
  color: var(--sf-muted);
  line-height: 1.7;
  margin-bottom: .75rem;
}
.sf-footer address {
  font-style: normal;
  font-size: .82rem;
  color: var(--sf-muted);
  line-height: 1.7;
}
.sf-footer address a { color: var(--sf-teal); text-decoration: none; }
.sf-footer h6 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sf-white);
  font-family: var(--sf-mono);
  margin-bottom: 1rem;
}
.sf-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sf-footer ul li { margin-bottom: .5rem; }
.sf-footer ul a {
  font-size: .85rem;
  color: var(--sf-muted);
  text-decoration: none;
  transition: color .2s;
}
.sf-footer ul a:hover { color: var(--sf-teal); }
.sf-footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--sf-border);
  font-size: .78rem;
  color: var(--sf-muted);
  font-family: var(--sf-mono);
}
.sf-footer-bottom a {
  color: var(--sf-muted);
  text-decoration: none;
  transition: color .2s;
}
.sf-footer-bottom a:hover { color: var(--sf-teal); }

/* ═══════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════ */
.sf-cookie {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 680px;
  background: var(--sf-card);
  border: 1px solid var(--sf-border);
  border-radius: var(--sf-radius-lg);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
}
.sf-cookie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sf-gradient);
  border-radius: var(--sf-radius-lg) var(--sf-radius-lg) 0 0;
}
.sf-cookie p {
  flex: 1;
  font-size: .82rem;
  color: var(--sf-muted);
  margin: 0;
  min-width: 200px;
}
.sf-cookie a { color: var(--sf-teal); }
.sf-cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════ */
.text-teal { color: var(--sf-teal) !important; }
.text-sf-muted { color: var(--sf-muted) !important; }
.text-sf-white { color: var(--sf-white) !important; }
.bg-sf-surface { background: var(--sf-surface) !important; }
.bg-sf-card { background: var(--sf-card) !important; }
.border-sf { border-color: var(--sf-border) !important; }
.font-mono { font-family: var(--sf-mono) !important; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 991px) {
  .sf-hero { min-height: auto; padding: 5rem 0 4rem; }
  .sf-hero-panel { margin-top: 2.5rem; }
}
@media (max-width: 575px) {
  .sf-hero h1 { font-size: 2rem; }
  .sf-hero-stats { gap: 1.5rem; }
  .sf-nl-wrap { flex-direction: column; }
  .sf-cookie { flex-direction: column; text-align: center; }
  .sf-cookie-btns { justify-content: center; }
  .sf-table { font-size: .78rem; }
  .sf-table thead th,
  .sf-table tbody td { padding: .65rem .75rem; }
}
