/* ==========================================================================
   VIDNETS MODERN & MINIMAL DESIGN SYSTEM
   Brand Essence: Modern. Minimal. Intelligent. Built to scale.
   Colors: #0D0F14 (Pitch Dark) | #1F2329 (Surface) | #2B6BFF (Blue) | #7842F6 (Purple) | #FF4DD2 (Pink) | #00D1BC (Cyan)
   ========================================================================== */

:root {
  --bg-pitch: #0D0F14;
  --bg-surface: #14171F;
  --bg-surface-card: #181C26;
  --bg-surface-elevated: #202634;
  
  --color-blue: #2B6BFF;
  --color-purple: #7842F6;
  --color-pink: #FF4DD2;
  --color-cyan: #00D1BC;
  --color-green: #10B981;
  --color-red: #EF4444;

  --text-main: #FFFFFF;
  --text-heading: #F8FBFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --gradient-brand: linear-gradient(135deg, #2B6BFF 0%, #7842F6 50%, #FF4DD2 100%);
  --gradient-cyan-blue: linear-gradient(135deg, #00D1BC 0%, #2B6BFF 100%);
  --gradient-blue-purple: linear-gradient(135deg, #2B6BFF 0%, #7842F6 100%);

  --border-subtle: 1px solid rgba(255, 255, 255, 0.08);
  --border-glass: 1px solid rgba(255, 255, 255, 0.12);
  --border-cyan: 1px solid rgba(0, 209, 188, 0.4);

  --font-sans: 'Sora', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-pitch);
  color: var(--text-main);
  overflow-x: hidden;
}

body.dark-theme {
  background-color: var(--bg-pitch);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  line-height: 1.6;
}

/* Subtle Ambient Glow */
.ambient-glow {
  position: fixed;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(43, 107, 255, 0.15) 0%, rgba(120, 66, 246, 0.1) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* Gradients & Typography Helpers */
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-vidzeo {
  background: var(--gradient-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cyan);
  background: rgba(0, 209, 188, 0.1);
  border: 1px solid rgba(0, 209, 188, 0.25);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  color: var(--text-heading);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.45rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary-glow {
  background: var(--gradient-blue-purple);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(43, 107, 255, 0.35);
}
.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(43, 107, 255, 0.5);
}

.btn-secondary-glow {
  background: rgba(255, 255, 255, 0.04);
  border: var(--border-glass);
  color: var(--text-main);
}
.btn-secondary-glow:hover {
  background: rgba(43, 107, 255, 0.15);
  border-color: var(--color-blue);
  transform: translateY(-2px);
}

.btn-primary-hero {
  background: var(--gradient-brand);
  color: #FFFFFF;
  padding: 0.95rem 2rem;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(120, 66, 246, 0.35);
}
.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(120, 66, 246, 0.55);
}

.btn-secondary-hero {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-heading);
  padding: 0.95rem 2rem;
  font-size: 1rem;
}
.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-cyan);
  transform: translateY(-2px);
}

.btn-vidzeo-primary {
  background: var(--gradient-cyan-blue);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 209, 188, 0.35);
}
.btn-vidzeo-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 209, 188, 0.5);
}

.btn-vidzeo-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 209, 188, 0.3);
  color: var(--text-main);
}
.btn-vidzeo-secondary:hover {
  background: rgba(0, 209, 188, 0.1);
  border-color: var(--color-cyan);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: var(--border-subtle);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo-img {
  height: 38px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0, 209, 188, 0.15);
  border: 1px solid rgba(0, 209, 188, 0.4);
  color: var(--color-cyan);
  padding: 0.1rem 0.45rem;
  border-radius: 9999px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: rgba(13, 15, 20, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  z-index: 99;
}
.mobile-drawer.active {
  display: block;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 5.5rem 0 4.5rem 0;
  text-align: center;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(43, 107, 255, 0.08);
  border: 1px solid rgba(43, 107, 255, 0.28);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan);
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #D6E4FF;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 900px;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

/* Minimal Stats Ribbon */
.hero-stats-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-surface);
  border: var(--border-subtle);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  max-width: 640px;
  width: 100%;
}

.stat-box {
  text-align: center;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   PIPELINE / HOW IT WORKS
   ========================================================================== */
.section-how {
  padding: 5rem 0;
}

.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.pipeline-card {
  background: var(--bg-surface);
  border: var(--border-subtle);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pipeline-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-glow-border {
  border: 1.5px solid rgba(0, 209, 188, 0.4) !important;
  background: linear-gradient(180deg, #151A24 0%, #10131B 100%) !important;
  box-shadow: 0 0 25px rgba(0, 209, 188, 0.15);
}

.pipeline-step-badge {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.flagship-tag {
  color: var(--color-cyan) !important;
}

.pipeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-blue { color: var(--color-blue); }
.icon-purple { color: var(--color-purple); }
.icon-cyan { color: var(--color-cyan); }

.pipeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.pipeline-role {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--color-cyan);
  margin-bottom: 0.85rem;
}

.pipeline-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.pipeline-tech-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--color-cyan);
  background: rgba(0, 209, 188, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 209, 188, 0.2);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-vidzeo-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 4px;
}

.mockup-center-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 20px rgba(0, 209, 188, 0.5));
  animation: float-slow 5s ease-in-out infinite alternate;
}

/* ==========================================================================
   FEATURED PRODUCT: VIDZEO
   ========================================================================== */
.section-products {
  padding: 5rem 0;
}

.featured-card {
  background: linear-gradient(180deg, #161A24 0%, #10131B 100%);
  border: 1.5px solid rgba(0, 209, 188, 0.35);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.featured-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.25rem;
}

.featured-tags {
  display: flex;
  gap: 0.6rem;
}

.badge-featured {
  background: rgba(0, 209, 188, 0.15);
  border: 1px solid var(--color-cyan);
  color: var(--color-cyan);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.badge-soon {
  background: rgba(255, 77, 210, 0.15);
  border: 1px solid rgba(255, 77, 210, 0.5);
  color: #FF7BE5;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}

.brand-tagline-mini {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.featured-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.featured-brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.featured-title-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 209, 188, 0.4));
}

.featured-product-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.featured-product-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.featured-product-desc {
  font-size: 0.95rem;
  color: #D1D9E6;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.featured-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.f-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.f-bullet i {
  color: var(--color-cyan);
}

.f-bullet strong {
  color: #FFFFFF;
}

.featured-tiers-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.strip-label {
  color: var(--color-cyan);
  font-weight: 700;
}

.strip-item strong {
  color: #FFFFFF;
}

.strip-soon strong {
  color: #FF7BE5;
}

.strip-sep {
  color: rgba(255, 255, 255, 0.2);
}

.featured-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Minimal Mockup */
.minimal-mockup-frame {
  background: #080A0E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}

.mockup-top-bar {
  background: #11141C;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.m-dot.red { background: #ef4444; }
.m-dot.yellow { background: #eab308; }
.m-dot.green { background: #22c55e; }

.m-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.mockup-display {
  aspect-ratio: 16/9;
  background: #030508;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
}

.mockup-badge-live {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--color-green);
  background: rgba(16, 185, 129, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.mockup-main-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.mockup-subtitle-text {
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.mockup-track-preview {
  background: #0E1017;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.track-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  height: 20px;
}

.track-tag {
  font-size: 0.6rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  width: 42px;
}

.track-bar {
  height: 14px;
  border-radius: 3px;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.bar-blue { background: rgba(43, 107, 255, 0.4); border: 1px solid var(--color-blue); }
.bar-cut { background: rgba(239, 68, 68, 0.2); border: 1px dashed var(--color-red); color: #F87171; }
.bar-pink { background: rgba(255, 77, 210, 0.3); border: 1px solid var(--color-pink); }

/* ==========================================================================
   HUMAN COST VS VIDNETS (COMPARISON)
   ========================================================================== */
.section-comparison {
  padding: 5rem 0;
}

.comparison-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.comp-card {
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Human Card */
.card-human {
  background: #11131A;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.human-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #F87171;
}

.cost-expensive {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cost-expensive .comp-price {
  color: #F87171;
}

/* Vidnets Winner Card */
.card-vidnets {
  background: linear-gradient(180deg, #161B29 0%, #101420 100%);
  border: 2px solid var(--color-blue);
  box-shadow: 0 10px 40px rgba(43, 107, 255, 0.25);
}

.comp-badge-winner {
  position: absolute;
  top: 0;
  right: 2rem;
  transform: translateY(-50%);
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(120, 66, 246, 0.4);
}

.vidnets-icon {
  width: 44px;
  height: 44px;
}
.vidnets-icon img {
  width: 100%;
  height: 100%;
}

.cost-vidnets {
  background: rgba(43, 107, 255, 0.08);
  border: 1px solid rgba(43, 107, 255, 0.3);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.comp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.comp-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.comp-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.comp-cost-box {
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.comp-price {
  font-size: 1.85rem;
  font-weight: 800;
  font-family: var(--font-mono);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.comp-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.comp-price-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.comp-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.comp-features-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.9rem;
}

.comp-features-list li strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}

.comp-features-list li span {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

.list-human i {
  color: #F87171;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.list-vidnets i {
  color: var(--color-green);
  margin-top: 0.2rem;
  font-size: 1rem;
}

/* Savings Callout */
.savings-callout {
  background: linear-gradient(90deg, rgba(43, 107, 255, 0.1) 0%, rgba(120, 66, 246, 0.12) 50%, rgba(0, 209, 188, 0.1) 100%);
  border: 1px solid rgba(43, 107, 255, 0.3);
  border-radius: 18px;
  padding: 1.75rem 2.5rem;
}

.savings-callout-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.s-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  display: block;
}

.s-amount {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #FFFFFF;
}

.s-period {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.s-right p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 480px;
}

/* ==========================================================================
   EMPIRE SCALE CALCULATOR
   ========================================================================== */
.section-calculator {
  padding: 5rem 0;
}

.calc-card {
  background: linear-gradient(135deg, #131722 0%, #0F121A 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.75rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.calc-field:last-child {
  margin-bottom: 0;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.slider-display {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-cyan);
  background: rgba(0, 209, 188, 0.1);
  border: 1px solid rgba(0, 209, 188, 0.25);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #1C212E;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-cyan);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(0, 209, 188, 0.6);
  transition: transform 0.15s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.calc-results-side {
  background: rgba(8, 10, 15, 0.6);
  border: 1px solid rgba(43, 107, 255, 0.3);
  border-radius: 20px;
  padding: 2.25rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.results-header {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  margin-bottom: 0.5rem;
}

.results-main-value {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-mono);
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.results-subtext {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.r-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.r-num {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: #FFFFFF;
}

.r-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MINIMAL CONTACT / EARLY ACCESS
   ========================================================================== */
.section-contact {
  padding: 5rem 0;
}

.contact-minimal-card {
  background: var(--bg-surface);
  border: var(--border-glass);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.minimal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: #FFFFFF;
  font-size: 0.92rem;
  outline: none;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-blue);
  background: rgba(255, 255, 255, 0.06);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   MINIMAL FOOTER
   ========================================================================== */
.site-footer {
  background: #080A0E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #141824;
  border: 1px solid var(--color-green);
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.toast i {
  color: var(--color-green);
  font-size: 1.3rem;
}
.toast strong {
  font-size: 0.9rem;
  color: #FFFFFF;
  display: block;
}
.toast p {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .pipeline-grid {
    grid-template-columns: 1fr;
  }
  .featured-content-grid {
    grid-template-columns: 1fr;
  }
  .comparison-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-stats-ribbon {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }
  .stat-sep {
    width: 40px;
    height: 1px;
  }
  .featured-card {
    padding: 2rem 1.5rem;
  }
  .comp-card {
    padding: 2rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
