/* ScumOps Landing Page — Standalone styles for _LandingLayout.cshtml */

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

:root {
  --bg-abyss: var(--so-void);
  --bg-deep: var(--so-void);
  --bg-surface: var(--so-void);
  --bg-card: var(--so-void);
  --bg-card-hover: var(--so-void);
  --bg-elevated: var(--so-inset);
  --orange: var(--so-accent);
  --orange-hot: #ff9a2a;
  --orange-glow: rgba(var(--so-accent-rgb),0.12);
  --orange-ember: rgba(var(--so-accent-rgb),0.06);
  --red: #ff3b3b;
  --green: var(--so-green-bright);
  --cyan: #00e5ff;
  --text-primary: var(--so-a95);
  --text-secondary: var(--so-a60);
  --text-muted: var(--so-a35);
  --border: var(--so-a06);
  --border-orange: rgba(var(--so-accent-rgb),0.2);
}

[data-theme="light"] {
  --bg-abyss: var(--so-void);
  --bg-deep: var(--so-void);
  --bg-surface: var(--so-void);
  --bg-card: var(--so-surface);
  --bg-card-hover: var(--so-surface);
  --bg-elevated: var(--so-well);
  --orange-hot: #c14f07;
  --red: #dc2626;
  --cyan: #0891b2;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-abyss);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TACTICAL BACKGROUND
   ============================================ */
.tactical-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(var(--so-accent-rgb),0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--so-accent-rgb),0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}
.glow-top {
  position: fixed;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(var(--so-accent-rgb),0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.glow-mid {
  position: fixed;
  top: 55%;
  right: -400px;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.025) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   NAV
   ============================================ */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(var(--so-void-rgb),0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Teko', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  line-height: 1;
}
.nav-brand span { color: var(--orange); }
.nav-center { display: flex; gap: 36px; }
.nav-center a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--orange);
  color: var(--so-text-on-green);
  box-shadow: 0 0 20px rgba(var(--so-accent-rgb),0.15);
}
.btn-primary:hover {
  background: var(--orange-hot);
  box-shadow: 0 0 40px rgba(var(--so-accent-rgb),0.3);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--so-a12);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--so-a25);
  background: var(--so-a03);
}
.btn-large { padding: 14px 36px; font-size: 0.95rem; }
.btn-cta {
  padding: 16px 44px;
  font-family: 'Teko', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================
   CONTAINER
   ============================================ */
section { position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 150px 0 80px;
  text-align: center;
}
.status-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 2px;
  background: rgba(var(--so-green-bright-rgb),0.06);
  border: 1px solid rgba(var(--so-green-bright-rgb),0.15);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 36px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 0.6s ease-out;
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-family: 'Teko', sans-serif;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease-out 0.1s both;
}
.hero h1 .accent {
  color: var(--orange);
  text-shadow: 0 0 60px rgba(var(--so-accent-rgb),0.3);
}

/* Two firsts */
.hero-firsts {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease-out 0.2s both;
  flex-wrap: wrap;
}
.hero-first {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-first::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.hero-first .hf-badge {
  font-family: 'Teko', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--so-text-on-green);
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.hero-first .hf-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}
.hero-first .hf-text em {
  font-style: normal;
  color: var(--orange);
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 36px;
  animation: fadeUp 0.6s ease-out 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
  animation: fadeUp 0.6s ease-out 0.4s both;
}
.hero-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  animation: fadeUp 0.6s ease-out 0.45s both;
}

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

/* ============================================
   HERO SCREENSHOT
   ============================================ */
.hero-visual {
  margin-top: 72px;
  animation: fadeUp 0.8s ease-out 0.55s both;
}
.screen-outer {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--border-orange);
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 8px 80px rgba(var(--so-black-rgb),0.5), 0 0 0 1px rgba(var(--so-accent-rgb),0.05);
}
.screen-bar {
  height: 32px;
  background: var(--bg-elevated);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}
.screen-dot { width:8px; height:8px; border-radius:50%; background:var(--so-a10); }
.screen-dot:first-child { background:var(--red); opacity:0.7; }
.screen-dot:nth-child(2) { background:var(--orange); opacity:0.7; }
.screen-dot:nth-child(3) { background:var(--green); opacity:0.7; }
.screen-tab {
  margin-left: 16px;
  font-size: 0.65rem;
  color: var(--text-muted);
  background: var(--bg-card);
  padding: 4px 12px;
  border-radius: 4px 4px 0 0;
}
.screen-inner {
  background: var(--bg-surface);
  border-radius: 0 0 6px 6px;
  height: 400px;
  display: flex;
  overflow: hidden;
}
/* Mockup internals */
.mock-sidebar {
  width: 200px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 14px 10px;
  flex-shrink: 0;
}
.mock-logo {
  font-family: 'Teko', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 6px 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.mock-logo span { color: var(--orange); }
.mock-.landing-nav { font-size:0.68rem; padding:5px 8px; border-radius:3px; color:var(--text-muted); margin-bottom:2px; }
.mock-nav.active { background:var(--orange-glow); color:var(--orange); }
.mock-nav.indent { padding-left:20px; }
.mock-nav.sub { padding-left:32px; font-size:0.62rem; }

.mock-main { flex:1; display:flex; flex-direction:column; }
.mock-topbar {
  height:36px; background:var(--bg-card); border-bottom:1px solid var(--border);
  display:flex; align-items:center; padding:0 16px;
  font-size:0.62rem; color:var(--text-muted); gap:6px;
}
.mock-topbar .crumb { color:var(--orange); }
.mock-content {
  flex:1; display:grid;
  grid-template-columns: 220px 1fr 240px;
  gap:12px; padding:12px;
}
.mock-panel {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:6px; padding:12px; overflow:hidden;
}
.mock-panel-head {
  font-family:'Teko',sans-serif; font-size:0.72rem;
  text-transform:uppercase; letter-spacing:0.1em;
  color:var(--text-muted); margin-bottom:10px;
  display:flex; justify-content:space-between; align-items:center;
}
.mock-tag {
  display:inline-block; padding:1px 6px; border-radius:2px;
  font-size:0.5rem; font-weight:700; text-transform:uppercase; letter-spacing:0.05em;
}
.mock-tag.orange { background:rgba(var(--so-accent-rgb),0.15); color:var(--orange); }
.mock-tag.green { background:rgba(var(--so-green-bright-rgb),0.12); color:var(--green); }
.mock-tag.cyan { background:rgba(0,229,255,0.12); color:var(--cyan); }
.mock-tag.red { background:rgba(255,59,59,0.12); color:var(--red); }

.mock-row {
  display:flex; align-items:center; gap:6px;
  padding:4px 0; border-bottom:1px solid var(--so-a03);
  font-size:0.58rem; color:var(--text-secondary);
}
.mock-row:last-child { border:none; }
.mock-dot { width:4px; height:4px; border-radius:50%; flex-shrink:0; }
.mock-dot.orange { background:var(--orange); }
.mock-dot.green { background:var(--green); }
.mock-dot.cyan { background:var(--cyan); }

.mock-bar-row { display:flex; align-items:center; gap:6px; padding:4px 0; font-size:0.55rem; color:var(--text-muted); }
.mock-bar { flex:1; height:3px; background:var(--so-a06); border-radius:2px; overflow:hidden; }
.mock-bar-fill { height:100%; border-radius:2px; }
.mock-bar-fill.orange { background:var(--orange); }
.mock-bar-fill.green { background:var(--green); }
.mock-bar-fill.cyan { background:var(--cyan); }

/* ============================================
   SECTION STYLING
   ============================================ */
.section-header { text-align:center; margin-bottom:64px; }
.section-tag {
  font-family:'Teko',sans-serif; font-size:0.85rem; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--orange); margin-bottom:12px;
}
.section-title {
  font-family:'Teko',sans-serif; font-size:3rem; font-weight:700;
  text-transform:uppercase; letter-spacing:0.02em; line-height:1; margin-bottom:16px;
}
.section-desc {
  font-size:1.05rem; color:var(--text-secondary); font-weight:300;
  max-width:580px; margin:0 auto;
}

/* ============================================
   FEATURE SPOTLIGHTS
   ============================================ */
.spotlights { padding:80px 0; }
.spotlight {
  display:grid; grid-template-columns:1fr 1fr;
  gap:64px; align-items:center; margin-bottom:100px;
}
.spotlight:last-child { margin-bottom:0; }
.spotlight.reverse .spot-text { order:2; }
.spotlight.reverse .spot-visual { order:1; }

.spot-tag {
  font-family:'Teko',sans-serif; font-size:0.75rem; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase; color:var(--orange); margin-bottom:8px;
  display: flex; align-items: center; gap: 12px;
}
.spot-badge {
  display:inline-block; background:rgba(var(--so-accent-rgb),0.1);
  border:1px solid rgba(var(--so-accent-rgb),0.2);
  color:var(--orange); font-size:0.6rem; font-weight:700;
  letter-spacing:0.1em; text-transform:uppercase;
  padding:2px 10px; border-radius:2px;
}
.spot-title {
  font-family:'Teko',sans-serif; font-size:2.4rem; font-weight:700;
  text-transform:uppercase; line-height:1; margin-bottom:16px;
}
.spot-desc {
  font-size:1rem; color:var(--text-secondary); font-weight:300;
  margin-bottom:24px; line-height:1.7;
}
.spot-features { list-style:none; }
.spot-features li {
  display:flex; align-items:flex-start; gap:10px;
  padding:6px 0; font-size:0.9rem; color:var(--text-secondary);
}
.spot-features .icon { color:var(--orange); font-size:0.8rem; margin-top:4px; flex-shrink:0; }

/* Tabbed screenshot tour */
.spot-tour {
  display:flex; flex-direction:column;
}
.spot-tour-tabs {
  display:flex; gap:0; margin-bottom:0;
}
.spot-tour-tab {
  padding:8px 16px;
  font-family:'Teko',sans-serif; font-size:0.82rem; font-weight:600;
  letter-spacing:0.06em; text-transform:uppercase;
  color:var(--text-muted); background:none; border:none;
  cursor:pointer; position:relative;
  transition:color 0.2s;
}
.spot-tour-tab::after {
  content:''; position:absolute; bottom:0; left:8px; right:8px;
  height:2px; background:transparent; transition:background 0.2s;
}
.spot-tour-tab:hover { color:var(--text-secondary); }
.spot-tour-tab.active { color:var(--orange); }
.spot-tour-tab.active::after { background:var(--orange); }

.spot-tour-frame {
  position:relative;
  border-radius:8px; border:1px solid var(--border);
  background:var(--bg-card);
  overflow:hidden; height:340px;
  box-shadow:0 8px 40px rgba(0,0,0,0.4);
}
.spot-tour-frame img {
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:top left;
  opacity:0; pointer-events:none;
  transition:opacity 0.35s ease;
  cursor:zoom-in;
}
.spot-tour-frame img.active { opacity:1; pointer-events:auto; }

/* Single image (no tabs needed) */
.spot-visual-single {
  border-radius:8px; border:1px solid var(--border);
  background:var(--bg-card);
  overflow:hidden; height:340px;
  box-shadow:0 8px 40px rgba(0,0,0,0.4);
}
.spot-visual-single img {
  width:100%; height:100%;
  object-fit:cover; object-position:top left;
  cursor:zoom-in;
}

/* Lightbox overlay */
.landing-lightbox {
  position:fixed; inset:0; z-index:9999;
  background:rgba(0,0,0,0.85);
  backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  cursor:zoom-out;
  animation:lbFadeIn 0.2s ease;
}
.landing-lightbox img {
  max-width:90vw; max-height:90vh;
  border-radius:8px;
  border:1px solid var(--border-orange);
  box-shadow:0 16px 80px rgba(0,0,0,0.6);
  object-fit:contain;
}
@keyframes lbFadeIn {
  from { opacity:0; }
  to { opacity:1; }
}

/* ============================================
   FEATURE GRID
   ============================================ */
.features-grid-section { padding:80px 0; }
.feat-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
}
.feat-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:6px; padding:28px 24px; transition:all 0.25s; position:relative;
}
.feat-card::after {
  content:''; position:absolute; bottom:0; left:24px; right:24px;
  height:1px; background:linear-gradient(90deg,transparent,var(--orange),transparent);
  opacity:0; transition:opacity 0.25s;
}
.feat-card:hover {
  background:var(--bg-card-hover); border-color:var(--border-orange); transform:translateY(-2px);
}
.feat-card:hover::after { opacity:0.5; }
.feat-icon { font-size:1.5rem; margin-bottom:14px; }
.feat-card h3 {
  font-family:'Teko',sans-serif; font-size:1.2rem; font-weight:600;
  text-transform:uppercase; letter-spacing:0.03em; margin-bottom:6px;
}
.feat-card p { font-size:0.82rem; color:var(--text-secondary); font-weight:300; line-height:1.6; }

/* ============================================
   APP STUDIO MOCK VISUAL (spotlight #0)
   ============================================ */
.mock {
  background: linear-gradient(135deg, #1a2330 0%, #0f1620 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-family: 'Share Tech Mono', monospace;
}
.mock-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mock-title {
  margin-left: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.mock-body {
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.mock-trigger,
.mock-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(var(--so-accent-rgb), 0.06);
  border: 1px solid rgba(var(--so-accent-rgb), 0.2);
  border-radius: 6px;
  padding: 12px 14px;
}
.mock-trigger {
  background: rgba(var(--so-accent-rgb), 0.12);
  border-color: rgba(var(--so-accent-rgb), 0.4);
}
.mock-card {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.mock-icon {
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
.mock-step-label {
  font-family: 'Teko', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.mock-step-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.mock-vars {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.mock-arrow {
  color: rgba(var(--so-accent-rgb), 0.4);
  text-align: center;
  font-size: 0.7rem;
  padding: 2px 0;
}
.feat-card-featured {
  border-color: var(--border-orange);
  box-shadow: 0 0 24px rgba(var(--so-accent-rgb), 0.08);
  position: relative;
}
.feat-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--orange) 50%, transparent 90%);
  border-radius: 6px 6px 0 0;
}

/* Light mode for App Studio mock */
[data-theme="light"] .mock {
  background: linear-gradient(135deg, var(--so-surface) 0%, var(--so-well) 100%);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .mock-header {
  background: rgba(0,0,0,0.04);
}
[data-theme="light"] .mock-card {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.08);
}

/* ============================================
   HOST COMPATIBILITY
   ============================================ */
.hosts { padding:80px 0; }
.hosts-inner {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-card);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hosts-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--so-accent-rgb),0.02), transparent 40%, rgba(0,229,255,0.02));
}
.hosts-label {
  font-family: 'Teko', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
  position: relative;
}
.hosts-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
}
.hosts-grid {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  position: relative;
}
.host-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Teko', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  transition: all 0.2s;
}
.host-chip:hover {
  border-color: var(--border-orange);
  color: var(--text-primary);
  background: rgba(var(--so-accent-rgb),0.05);
}
.host-chip .host-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 6px var(--green);
}
.hosts-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 20px;
  position: relative;
}

/* ============================================
   HOSTING PARTNERS (tiles inside HOSTS section)
   ============================================ */
.partners-label {
  font-family: 'Teko', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 40px; margin-bottom: 18px;
  position: relative;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.partner-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
}
.partner-tile-placeholder {
  background: transparent;
  border: 1px dashed var(--border);
  opacity: 0.85;
}
.partner-tile-placeholder:hover {
  border-color: var(--border-orange);
  opacity: 1;
}
.partner-tile-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.partner-tile-title {
  font-family: 'Teko', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}
.partner-tile-placeholder .partner-tile-title {
  color: var(--text-secondary);
}
.partner-tile-body {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.partner-tile-cta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}
.partner-tile .btn {
  margin-top: 6px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing { padding:100px 0; }
.pricing-toggle {
  display:flex; align-items:center; justify-content:center;
  gap:14px; margin-bottom:48px;
}
.pricing-toggle span { font-size:0.88rem; color:var(--text-muted); font-weight:500; cursor:pointer; transition:color 0.2s; }
.pricing-toggle span.active { color:var(--text-primary); }
.toggle-track {
  width:44px; height:24px; background:var(--bg-elevated);
  border:1px solid var(--border); border-radius:12px;
  position:relative; cursor:pointer; transition:all 0.3s;
}
.toggle-track.on { background:rgba(var(--so-accent-rgb),0.15); border-color:var(--border-orange); }
.toggle-thumb {
  width:18px; height:18px; background:var(--orange); border-radius:50%;
  position:absolute; top:2px; left:2px;
  transition:transform 0.3s ease; box-shadow:0 0 10px rgba(var(--so-accent-rgb),0.3);
}
.toggle-track.on .toggle-thumb { transform:translateX(20px); }
.save-tag {
  font-size:0.68rem; font-weight:700; color:var(--green);
  background:rgba(var(--so-green-bright-rgb),0.08); padding:3px 10px;
  border-radius:2px; letter-spacing:0.06em; text-transform:uppercase;
}

.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.price-card {
  background:var(--bg-card); border:1px solid var(--border);
  border-radius:6px; padding:36px 28px; position:relative; transition:all 0.25s;
}
.price-card:hover { transform:translateY(-3px); border-color:var(--so-a10); }
.price-card.featured {
  border-color:var(--border-orange);
  box-shadow:0 0 60px rgba(var(--so-accent-rgb),0.06);
}
.price-card.featured::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent 10%, var(--orange) 50%, transparent 90%);
}
.price-card.featured:hover { border-color:rgba(var(--so-accent-rgb),0.4); }
.popular-badge {
  position:absolute; top:-11px; left:50%; transform:translateX(-50%);
  background:var(--orange); color:var(--so-text-on-green);
  font-family:'Teko',sans-serif; font-size:0.75rem; font-weight:700;
  padding:2px 16px; border-radius:2px; text-transform:uppercase; letter-spacing:0.1em;
}

.price-card .tier-name {
  font-family:'Teko',sans-serif; font-size:1rem; font-weight:600;
  letter-spacing:0.15em; text-transform:uppercase;
  color:var(--text-muted); margin-bottom:16px;
}
.price-card .price {
  font-family:'Teko',sans-serif; font-size:3.5rem; font-weight:700;
  line-height:1; margin-bottom:2px;
}
.price-card .price sup { font-size:1.5rem; vertical-align:super; }
.price-card .period { font-size:0.82rem; color:var(--text-muted); margin-bottom:20px; }
.price-card .tier-desc {
  font-size:0.88rem; color:var(--text-secondary);
  margin-bottom:24px; padding-bottom:20px; border-bottom:1px solid var(--border);
}
.price-card .tier-list { list-style:none; margin-bottom:28px; }
.price-card .tier-list li {
  display:flex; align-items:center; gap:8px;
  padding:5px 0; font-size:0.85rem; color:var(--text-secondary);
}
.tier-list .chk { color:var(--green); font-weight:700; font-size:0.85rem; }
.tier-includes {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.price-card .btn { width:100%; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta { padding:80px 0 100px; }
.cta-container {
  text-align:center; padding:72px 48px;
  border:1px solid var(--border-orange); border-radius:8px;
  background:linear-gradient(180deg, rgba(var(--so-accent-rgb),0.04) 0%, var(--bg-deep) 60%);
  position:relative; overflow:hidden;
}
.cta-container::before {
  content:''; position:absolute; top:-1px; left:15%; right:15%; height:2px;
  background:linear-gradient(90deg, transparent, var(--orange), transparent);
}
.cta-container h2 {
  font-family:'Teko',sans-serif; font-size:3rem; font-weight:700;
  text-transform:uppercase; margin-bottom:12px;
}
.cta-container p {
  font-size:1.05rem; color:var(--text-secondary); font-weight:300;
  max-width:520px; margin:0 auto 32px;
}
.cta-fine { font-size:0.75rem; color:var(--text-muted); margin-top:12px; }

/* ============================================
   FOOTER
   ============================================ */
.landing-footer { padding:32px 0; border-top:1px solid var(--border); }
.footer-inner { display:flex; justify-content:space-between; align-items:center; }
.footer-inner p { font-size:0.78rem; color:var(--text-muted); }
.footer-links { display:flex; gap:24px; }
.footer-links a { font-size:0.78rem; color:var(--text-muted); text-decoration:none; transition:color 0.2s; }
.footer-links a:hover { color:var(--text-secondary); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:900px) {
  .hero h1 { font-size:3.5rem; }
  .hero-firsts { flex-direction:column; align-items:center; gap:12px; }
  .spotlight { grid-template-columns:1fr; gap:32px; }
  .spotlight.reverse .spot-text { order:1; }
  .spotlight.reverse .spot-visual { order:2; }
  .feat-grid, .pricing-grid { grid-template-columns:1fr; max-width:400px; margin:0 auto; }
  .mock-content { grid-template-columns:1fr !important; }
  .landing-nav { padding:0 20px; }
  .nav-center { display:none; }
}
/* Annual bonus callout */
.annual-bonus {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(var(--so-green-bright-rgb),0.08);
    border: 1px solid rgba(var(--so-green-bright-rgb),0.15);
    border-radius: 3px;
    padding: 4px 10px;
    margin-top: 6px;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: 0.02em;
}


/* ============================================
   LIGHT MODE OVERRIDES
   ============================================ */

[data-theme="light"] .tactical-bg {
  background:
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
[data-theme="light"] .glow-top,
[data-theme="light"] .glow-mid { opacity: 0.3; }

/* Nav */
[data-theme="light"] .landing-nav {
  background: rgba(var(--so-void-rgb),0.85);
}

/* Hero */
[data-theme="light"] .hero h1 {
  text-shadow: none;
}
[data-theme="light"] .status-bar {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.08);
  color: var(--so-a60);
}
[data-theme="light"] .hero-note { color: var(--so-a40); }

/* Mockup screen */
[data-theme="light"] .screen-outer {
  background: var(--so-surface);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.06);
}
[data-theme="light"] .screen-bar { background: var(--so-well); }
[data-theme="light"] .screen-inner { background: var(--so-void); }
[data-theme="light"] .mock-sidebar { background: rgba(0,0,0,0.03); }

/* Spotlights */
[data-theme="light"] .spotlight { border-color: rgba(0,0,0,0.06); }
[data-theme="light"] .spot-visual {
  background: var(--so-well);
  border-color: rgba(0,0,0,0.06);
}

/* Feature grid */
[data-theme="light"] .feat-card {
  background: var(--so-surface);
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .feat-card:hover {
  border-color: rgba(var(--so-brand-rgb),0.3);
}
[data-theme="light"] .feat-card h3 { color: var(--so-text-max); }

/* Hosts */
[data-theme="light"] .hosts-inner {
  background: var(--so-surface);
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .host-chip {
  background: var(--so-well);
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .partner-tile {
  background: var(--so-well);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .partner-tile-placeholder {
  background: transparent;
  border-color: rgba(0,0,0,0.18);
}

/* Pricing */
[data-theme="light"] .price-card {
  background: var(--so-surface);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .price-card.featured {
  border-color: var(--so-brand);
  background: rgba(var(--so-brand-rgb),0.03);
}
[data-theme="light"] .tier-list li { border-color: rgba(0,0,0,0.04); }

/* CTA */
[data-theme="light"] .cta-container {
  background: var(--so-surface);
  border-color: rgba(0,0,0,0.06);
}

/* Footer */
[data-theme="light"] .landing-footer {
  background: var(--so-well);
  border-color: rgba(0,0,0,0.06);
}

/* Buttons */
[data-theme="light"] .btn-ghost {
  color: var(--so-a70);
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .btn-ghost:hover {
  color: var(--so-a95);
  border-color: rgba(0,0,0,0.3);
}
