/* ==========================================
   SYNAPSE RELAY — Master Stylesheet
   Theme: Obsidian / Neon Cyan / Energetic Yellow
   Typography: Outfit / Plus Jakarta Sans / Fira Code
   ========================================== */

:root {
  --bg-dark: #0d0e15;
  --card-bg: rgba(18, 20, 29, 0.82);
  --card-border: rgba(255, 255, 255, 0.08);
  --accent-cyan: #00f2fe;
  --accent-cyan-glow: rgba(0, 242, 254, 0.35);
  --accent-yellow: #ffea00;
  --accent-yellow-glow: rgba(255, 234, 0, 0.3);
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --input-bg: rgba(10, 12, 18, 0.9);
  --input-border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Section scroll margins for smooth navigation anchoring */
section, header {
  scroll-margin-top: 2rem;
}

/* Repaired Canvas Sizing: 100% avoids Windows scrollbar 100vw horizontal overflow */
#synapse-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.page-wrapper {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

/* ==========================================
   1. Video Hero Screen
   ========================================== */

.screen-video-hero {
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3.5rem 1.25rem 2rem;
  z-index: 1;
}

.hero-video-outer-card {
  position: relative;
  width: 100%;
  max-width: 980px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 242, 254, 0.15);
  z-index: 1;
  background: #06070a;
  border: 1px solid rgba(0, 242, 254, 0.3);
}

.hero-video-frame {
  width: 100%;
  height: 100%;
  border-radius: 19px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sound-toggle-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(13, 14, 21, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 0.45rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10;
}

.sound-toggle-btn:active {
  transform: scale(0.96);
}

.sound-icon {
  font-size: 0.9rem;
  line-height: 1;
}

.sound-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  opacity: 0.75;
}

.scroll-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.scroll-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent-cyan);
  border-bottom: 2px solid var(--accent-cyan);
  transform: rotate(45deg);
  animation: chevronBounce 1.8s ease-in-out infinite;
}

@keyframes chevronBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}

/* ==========================================
   2. Kinetic Title Stage
   ========================================== */

.screen-title-stage {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
  position: relative;
  z-index: 1;
}

.title-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.stagger-title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.title-mask {
  overflow: hidden;
  display: block;
}

.title-line {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.025em;
  color: #ffffff;
  will-change: transform, opacity;
}

.title-lead-in {
  font-size: clamp(1.4rem, 4.2vw, 3.1rem);
  font-weight: 700;
  color: #94a3b8;
  line-height: 1.2;
}

.title-dominant {
  font-size: clamp(2.2rem, 7.4vw, 5.4rem);
  font-weight: 900;
  line-height: 1.08;
}

.gradient-accent {
  background: linear-gradient(135deg, #00f2fe 0%, #ffea00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-text {
  color: #94a3b8;
  font-size: clamp(1.05rem, 3.2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.35;
}

.title-subtext-wrapper {
  overflow: hidden;
  margin-top: 0.5rem;
}

.title-subtext {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* ==========================================
   Speed-to-Lead Benchmark Metrics Ribbon
   ========================================== */

.metrics-ribbon-section {
  padding: 1.5rem 0 3.5rem;
  position: relative;
  z-index: 1;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.metric-card {
  background: rgba(18, 20, 29, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
}

.metric-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.metric-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.metric-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .metric-card {
    padding: 1.25rem 1rem;
  }
}

/* ==========================================
   3. Staggered Story Stream
   ========================================== */

.stream-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.stream-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.stream-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-tag {
  font-family: 'Fira Code', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 0.5rem;
}

.section-tag.yellow-tag {
  color: var(--accent-yellow);
}

.stream-timeline {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.timeline-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.6) 0%, rgba(255, 234, 0, 0.6) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.4);
}

.stream-item {
  display: flex;
  position: relative;
  width: 50%;
}

.stream-item.left {
  align-self: flex-start;
  padding-right: 3rem;
  text-align: right;
  justify-content: flex-end;
}

.stream-item.right {
  align-self: flex-end;
  padding-left: 3rem;
  text-align: left;
  justify-content: flex-start;
}

.stream-node {
  position: absolute;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0d0e15;
  border: 2px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--accent-cyan-glow);
  z-index: 2;
}

.stream-item.left .stream-node {
  right: -14px;
}

.stream-item.right .stream-node {
  left: -14px;
}

.stream-node.yellow-node {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 16px var(--accent-yellow-glow);
}

.node-dash {
  font-family: 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

.yellow-node .node-dash {
  color: var(--accent-yellow);
}

.stream-step-number {
  font-family: 'Fira Code', monospace;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 0.35rem;
}

.yellow-text {
  color: var(--accent-yellow) !important;
}

.stream-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.stream-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 14px;
  }
  .stream-item.left,
  .stream-item.right {
    width: 100%;
    align-self: flex-start;
    padding-left: 48px;
    padding-right: 0;
    text-align: left;
    justify-content: flex-start;
  }
  .stream-item.left .stream-node,
  .stream-item.right .stream-node {
    left: 0;
    right: auto;
  }
}

/* ==========================================
   4. Interactive Sandbox Stage
   ========================================== */

.sandbox-section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.sandbox-headline-area {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sandbox-headline-area h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}

.sandbox-headline-area p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

.sandbox-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.25rem;
  align-items: start;
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 1.75rem 1.4rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.col-span-2 {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-mb {
  margin-bottom: 1.15rem;
}

label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* 16px font-size prevents iOS Safari form zoom bugs */
input, select {
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 16px;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}

input:focus, select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px var(--accent-cyan-glow);
}

.sandbox-alert-bar {
  border-left: 3px solid var(--accent-yellow);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #e2e8f0;
  margin-bottom: 1.35rem;
  background: rgba(255, 234, 0, 0.05);
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #0d0e15;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 12px;
  padding: 1.05rem 1.25rem;
  min-height: 50px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-submit-mt {
  margin-top: 1rem;
}

/* Phone Mockup */
.phone-outer {
  background: linear-gradient(145deg, #ffffff 0%, #e2e8f0 100%);
  border-radius: 36px;
  padding: 8px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 25px -5px rgba(255, 234, 0, 0.15);
  position: relative;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.phone-screen {
  background: #000000;
  border-radius: 28px;
  height: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  z-index: 20;
}

.status-carrier {
  font-size: 0.65rem;
  font-family: 'Fira Code', monospace;
  color: var(--accent-cyan);
}

.dynamic-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 20px;
  background: #000000;
  border-radius: 16px;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 6px;
}

.camera-lens {
  width: 7px;
  height: 7px;
  background: #111422;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: inset 0 0 3px rgba(0, 242, 254, 0.4);
}

.messages-header {
  background: rgba(22, 24, 34, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-arrow {
  color: var(--accent-cyan);
  font-size: 0.95rem;
}

.contact-avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #0d0e15;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-meta {
  flex: 1;
  overflow: hidden;
}

.contact-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-status {
  font-family: 'Fira Code', monospace;
  font-size: 0.62rem;
  color: var(--accent-cyan);
}

.chat-stream {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-date {
  text-align: center;
  font-size: 0.62rem;
  color: #64748b;
}

.sms-bubble {
  background: #1f2330;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 8px 11px;
  max-width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  animation: messagePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.sms-bubble.pulse-highlight {
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 0 14px rgba(0, 242, 254, 0.2);
}

.sms-bubble.owner-alert-bubble {
  border-color: rgba(255, 234, 0, 0.45);
  background: #171b26;
  box-shadow: 0 0 16px rgba(255, 234, 0, 0.15);
}

.sms-sender {
  font-family: 'Fira Code', monospace;
  font-size: 0.68rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 2px;
}

.sms-text {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #f8fafc;
  white-space: pre-line;
}

.sms-time {
  font-size: 0.6rem;
  color: #94a3b8;
  text-align: right;
  margin-top: 3px;
}

@keyframes messagePop {
  0% { opacity: 0; transform: scale(0.6) translateY(14px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.phone-footer {
  background: rgba(18, 20, 28, 0.9);
  padding: 8px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sim-input {
  flex: 1;
  height: 28px;
  background: #11131a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0 10px;
  font-size: 0.7rem;
  color: #64748b;
  display: flex;
  align-items: center;
}

.sim-btn {
  width: 24px;
  height: 24px;
  background: var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0e15;
  font-size: 0.72rem;
  font-weight: bold;
}

.home-bar {
  width: 100px;
  height: 3px;
  background: #ffffff;
  opacity: 0.35;
  border-radius: 4px;
  margin: 4px auto 3px;
}

@media (max-width: 960px) {
  .sandbox-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .col-span-2 {
    grid-column: span 1;
  }
}

/* ==========================================
   5. Comparison & Pricing Stage
   ========================================== */

.screen-pricing-stage {
  min-height: 100svh;
  padding: 4.5rem 1.25rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 242, 254, 0.15);
  overflow: hidden;
}

.pricing-ambient-glow {
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, rgba(255, 234, 0, 0.05) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.pricing-main-wrapper {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-deepdive-container {
  width: 100%;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.why-synapse-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.why-synapse-stacked-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin: 0.35rem 0 1rem;
}

.stacked-prefix {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.95rem);
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stacked-main {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.why-synapse-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.why-synapse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.why-card {
  background: rgba(18, 20, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.why-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--accent-yellow);
}

.why-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .why-synapse-grid {
    grid-template-columns: 1fr;
  }
}

/* Competitor Matrix: Desktop vs. Mobile Optimized */
.comparison-matrix-wrapper {
  position: relative;
  background: rgba(12, 14, 21, 0.96);
  border: 1px solid rgba(0, 242, 254, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  padding: 1.25rem 1rem;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;
}

.table-scroll-hint {
  font-family: 'Fira Code', monospace;
  font-size: 0.7rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.hint-icon {
  font-size: 0.85rem;
  color: var(--accent-yellow);
}

.matrix-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 620px;
}

.matrix-head-cell {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffea00;
  padding: 0.85rem 0.75rem;
  border-bottom: 2px solid rgba(255, 234, 0, 0.25);
  background: rgba(12, 14, 21, 0.98);
}

.comparison-table td {
  padding: 0.95rem 0.75rem;
  font-size: 0.86rem;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  vertical-align: middle;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-icon-sq {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-podium {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bg-birdeye {
  background: #1e293b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.bg-activecamp {
  background: #004cff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-synapse {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #0d0e15;
  font-size: 0.9rem;
  font-weight: 900;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.2;
}

.brand-sub {
  font-family: 'Fira Code', monospace;
  font-size: 0.62rem;
  color: #64748b;
}

.brand-badge-tag {
  font-family: 'Fira Code', monospace;
  font-size: 0.6rem;
  color: var(--accent-yellow);
}

.rate-cell {
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

.strike {
  text-decoration: line-through;
  opacity: 0.65;
  color: #ef4444;
}

.comparison-table .synapse-row td {
  background: rgba(0, 242, 254, 0.08);
  border-top: 1.5px solid rgba(0, 242, 254, 0.45);
  border-bottom: 1.5px solid rgba(0, 242, 254, 0.45);
  color: #f8fafc;
}

.comparison-table .highlight-brand {
  color: var(--accent-cyan) !important;
  font-weight: 800;
}

.comparison-table .highlight-rate {
  color: var(--accent-yellow) !important;
  font-size: 1.1rem !important;
}

.comparison-table .highlight-perk {
  color: #ffffff;
  font-weight: 600;
}

/* Mobile View: Clean compact comparison */
@media (max-width: 680px) {
  .table-scroll-hint {
    display: none;
  }
  .comparison-table {
    min-width: 100%;
  }
  .desktop-col {
    display: none !important;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.85rem 0.6rem;
  }
  .rate-cell {
    text-align: right;
  }
  .matrix-head-cell:last-child {
    text-align: right;
  }
}

/* Pricing Action Grid */
.pricing-stage-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .pricing-stage-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.stacked-lead-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.lead-top-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.1;
}

.lead-bottom-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 6.8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.pricing-lead-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.trial-highlight-banner {
  background: rgba(255, 234, 0, 0.05);
  border: 1px solid rgba(255, 234, 0, 0.3);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.5rem;
}

.trial-pill-badge {
  display: inline-block;
  font-family: 'Fira Code', monospace;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0d0e15;
  background: var(--accent-yellow);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.trial-pill-body {
  font-size: 0.88rem;
  color: #f8fafc;
  line-height: 1.5;
}

.trial-pill-body strong {
  color: var(--accent-cyan);
}

.price-mega-callout {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-mega-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.8rem, 8.5vw, 6.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  letter-spacing: -0.03em;
  text-shadow: 0 0 35px rgba(0, 242, 254, 0.35);
}

.price-mega-number .currency-symbol {
  font-size: 2.4rem;
  color: var(--accent-cyan);
}

.price-mega-number .frequency {
  font-size: 1.3rem;
  color: #94a3b8;
  font-weight: 500;
  text-shadow: none;
}

.price-setup-tag {
  font-family: 'Fira Code', monospace;
  font-size: 0.85rem;
  color: var(--accent-yellow);
  margin-top: 0.5rem;
  font-weight: 600;
}

.pricing-mega-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-mega-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #e2e8f0;
  font-size: 0.98rem;
  line-height: 1.55;
}

.mega-dash {
  font-family: 'Fira Code', monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
}

/* ==========================================
   Rotating Neon Laser Border: Contact Card (Isolation Protected)
   ========================================== */

.pricing-terminal-card {
  position: relative;
  padding: 2.25rem 1.65rem;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
  animation: cyberBreathe 5s ease-in-out infinite;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.pricing-terminal-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent 0deg,
    rgba(0, 242, 254, 0.95) 55deg,
    rgba(255, 234, 0, 0.95) 85deg,
    transparent 110deg
  );
  animation: borderRotate 6s linear infinite;
  z-index: -2;
}

.pricing-terminal-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: rgba(14, 16, 24, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  z-index: -1;
}

@keyframes borderRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes cyberBreathe {
  0%, 100% {
    box-shadow: 
      0 20px 50px rgba(0, 0, 0, 0.8),
      0 0 25px rgba(0, 242, 254, 0.2),
      0 0 10px rgba(255, 234, 0, 0.1);
  }
  50% {
    box-shadow: 
      0 25px 60px rgba(0, 0, 0, 0.9),
      0 0 45px rgba(0, 242, 254, 0.4),
      0 0 20px rgba(255, 234, 0, 0.25);
  }
}

.setup-fee-callout {
  font-family: 'Fira Code', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-bottom: 1.25rem;
}

.sms-compliance-notice {
  font-size: 0.72rem;
  color: #64748b;
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.45;
}

.inquiry-feedback-hidden {
  display: none;
  font-size: 0.9rem;
  margin-top: 0.85rem;
  text-align: center;
  font-family: 'Fira Code', monospace;
}

.terminal-status-header {
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.terminal-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

.pricing-terminal-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.pricing-terminal-card .card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

/* ==========================================
   6. Interactive FAQ Accordion Stage
   ========================================== */

.screen-faq-stage {
  padding: 4.5rem 1.25rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3rem;
}

.faq-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.faq-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-accordion-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(18, 20, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(0, 242, 254, 0.4);
}

.faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.25rem 1.25rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.faq-question {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.faq-item.is-open .faq-question {
  color: var(--accent-cyan);
}

.faq-icon {
  font-family: 'Fira Code', monospace;
  font-size: 1.3rem;
  color: var(--accent-yellow);
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer-inner strong {
  color: #ffffff;
}

.faq-platform-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-platform-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.plat-bullet {
  color: var(--accent-yellow);
  font-size: 0.8rem;
}

@media (max-width: 650px) {
  .faq-platform-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   7. Footer
   ========================================== */

.synapse-footer {
  width: 100%;
  background: #07080c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 1.25rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.footer-watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 320px;
  height: auto;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: screen;
  z-index: 0;
}

.footer-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.footer-brand-title .highlight-cyan {
  color: var(--accent-cyan);
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 1.5rem;
}

.footer-parent-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.parent-label {
  font-family: 'Fira Code', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.dopamine-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #111218;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.65rem 1.15rem;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.dopamine-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #ffea00;
  letter-spacing: 0.25em;
  line-height: 1;
}

.designs-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: #00f2fe;
  letter-spacing: 0.1em;
  line-height: 1;
}

.pill-arrow {
  font-size: 0.9rem;
  color: #64748b;
}

.footer-col-header {
  font-family: 'Fira Code', monospace;
  font-size: 0.78rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-links span {
  font-size: 0.92rem;
  color: #94a3b8;
  text-decoration: none;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  font-size: 0.82rem;
  color: #64748b;
}

.footer-inline-parent {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
}

.footer-back-to-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  min-height: 44px;
}

.top-arrow {
  font-size: 0.9rem;
}

@media (max-width: 850px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 650px) {
  .footer-bottom-bar {
    flex-direction: column-reverse;
    gap: 1.25rem;
    align-items: flex-start;
  }
}

/* ==========================================
   Radial HUD Navigation Menu (Mobile Viewport Safe)
   ========================================== */

.fab-wrap {
  position: fixed;
  bottom: calc(20px + env(safe-area-inset-bottom));
  right: 20px;
  z-index: 999;
}

.fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #00f2fe 0%, #ffea00 100%);
  color: #0d0e15;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 242, 254, 0.35);
  transition: transform 0.2s ease;
}

.fab:active {
  transform: scale(0.95);
}

.fab svg {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.fab-item {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(18, 20, 29, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.fab-item svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.fab-label {
  position: absolute;
  right: 52px;
  background: rgba(13, 14, 21, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab-item:hover .fab-label,
.fab-item:focus .fab-label {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 601px) {
  .fab-wrap {
    bottom: calc(35px + env(safe-area-inset-bottom));
    right: 35px;
  }
  .fab {
    width: 68px;
    height: 68px;
  }
  .fab svg {
    width: 28px;
    height: 28px;
  }
  .fab-item {
    width: 50px;
    height: 50px;
    bottom: 9px;
    right: 9px;
  }
  .fab-item svg {
    width: 20px;
    height: 20px;
  }
}