/* ── BASE 44 DESIGN SYSTEM ── */
:root {
  --bg-dark: #000000;
  --bg-offset: #050505;
  --bg-card: #080808;
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.1);
  --text-main: #ffffff;
  --text-dim: #888888;
  --text-mute: #444444;
  --border: rgba(255, 255, 255, 0.08);
  --border-dim: rgba(255, 255, 255, 0.04);
  --radius: 8px;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
  --gradient: linear-gradient(135deg, #ffffff 0%, #888888 100%);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: 800px;
}

/* ── Typography Styling ── */
h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

p {
  color: var(--text-dim);
}

/* ── Nav: Base44 Utility Feel ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img {
  height: 90px;
  width: auto;
  mix-blend-mode: screen;
}

.logo:hover {
  transform: scale(1.05);
}

.browser-viewport {
  height: 480px;
  background: #000;
  position: relative;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-block;
  background: transparent !important;
  color: #fff !important;
  padding: 0.275rem 0.625rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.04em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none !important;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent !important;
  transform: translateY(-3px);
  box-shadow: none !important;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient) !important;
  color: #000 !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
  display: block;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-blue {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ── HERO — The Big Impact ── */
.hero {
  position: relative;
  text-align: center;
  background: var(--bg-dark);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 40%);
  z-index: 0;
}


.hero .container {
  position: relative;
  z-index: 2;
}

#hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
}

.hero h1 {
  font-size: clamp(3.78rem, 8.64vw, 6.48rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 2.25rem;
}

.hero h1 span {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.hero>.container>p {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 5rem;
}

.hero-metrics .metric {
  text-align: center;
}

.hero-metrics .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-metrics .metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Pricing Section ── */
.pricing-section {
  padding: 4rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.03);
}

.price-card-featured {
  border-color: transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--gradient) border-box;
  border: 2px solid transparent;
  transform: scale(1.04);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.price-tier {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.price-name {
  display: none;
}

.price-amount {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
}

.price-amount span:first-child {
  font-size: 1.75rem;
  margin-right: 0.2rem;
  color: var(--accent);
}

.price-period {
  font-size: 1rem;
  color: var(--text-mute);
  margin-left: 0.25rem;
}

.price-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.65rem;
  color: var(--accent);
  font-weight: 800;
}

/* Duplicated Hero block removed */
.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 5rem;
}

.hero-metrics .metric {
  text-align: center;
}

.hero-metrics .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-metrics .metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── Section base ── */
section {
  padding: 4rem 0;
}

.section-label {
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 1.18rem;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Logos ── */
.logos-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
  padding: 3rem 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.logos-strip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Pricing Section ── */
.pricing-section {
  padding: 4rem 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.02), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.01), transparent 50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 5;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--transition);
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  background: var(--bg-hover);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Price cards are now unified */

.price-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #000000;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.price-tier {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.price-name {
  display: none;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.price-tagline {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.price-features li {
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-dim);
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
  top: 0.65rem;
}

.price-note {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}

/* ── Coming Soon Overlay ── */
.price-card-coming-soon {
  position: relative;
  overflow: hidden;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: var(--radius-xl);
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 20%,
      rgba(139, 92, 246, 0.06) 40%,
      rgba(139, 92, 246, 0.12) 50%,
      rgba(139, 92, 246, 0.06) 60%,
      transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.coming-soon-bar {
  margin-top: 1rem;
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-progress {
  width: 40%;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {

  0%,
  100% {
    width: 30%;
    opacity: 0.6;
  }

  50% {
    width: 70%;
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.coming-soon-bar {
  margin-top: 1rem;
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.coming-soon-progress {
  width: 40%;
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  animation: progress-pulse 2s ease-in-out infinite;
}

@keyframes progress-pulse {

  0%,
  100% {
    width: 30%;
    opacity: 0.6;
  }

  50% {
    width: 70%;
    opacity: 1;
  }
}

/* ── How it Works ── */
#how {
  background-color: #ffffff;
  padding: 5rem 0;
  /* Add padding to look section-like */
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.step-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--secondary);
  font-size: 0.95rem;
}

/* ── Terminal — Dark & Cinematic ── */
.terminal-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
}

.terminal-section .section-title {
  color: #fff;
}

.terminal-section .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.terminal-section .badge-blue {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.terminal {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.02), 0 25px 50px rgba(0, 0, 0, 0.4);
}

.terminal-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-dark);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) {
  background: #EF4444;
}

.terminal-dots span:nth-child(2) {
  background: #F59E0B;
}

.terminal-dots span:nth-child(3) {
  background: #10B981;
}

.terminal-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.terminal-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.terminal-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
}

/* ── Terminal Window ── */
.terminal-window {
  background: #0D1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  margin: 2rem 0;
}

.terminal-header {
  background: #161B22;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin-left: 1rem;
  letter-spacing: 0.05em;
}

.terminal-body {
  padding: 1.5rem;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.log-line {
  font-size: 0.9rem;
  line-height: 1.4;
  overflow: hidden;
  white-space: pre-wrap;
  word-break: break-word;
}

.text-dim {
  color: rgba(255, 255, 255, 0.3);
}

.text-warning {
  color: #F59E0B;
}

.text-success {
  color: #10B981;
}

.text-highlight {
  color: #8b5cf6;
  font-weight: 700;
}

@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── Dashboard Interactive Styling ── */
.dashboard-frame {
  position: relative;
  overflow: hidden;
}

.demo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal-body {
  scrollbar-width: none;
}

.terminal-body::-webkit-scrollbar {
  display: none;
}

/* ── Dashboard UI ── */
.dashboard-frame {
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.stability-scorecard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.score-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.score-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.score-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.connect-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.dash-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Fixed dangling properties */

/* Cleaned up syntax */

.terminal-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.terminal-input:focus {
  outline: none;
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.05);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15), 0 0 20px rgba(168, 85, 247, 0.2);
}

textarea.terminal-input {
  resize: vertical;
  min-height: 80px;
}

.input-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.scan-log {
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.82rem;
  color: var(--success);
  background: rgba(0, 0, 0, 0.4);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  max-height: 300px;
  overflow-y: auto;
}

.scan-log::-webkit-scrollbar {
  width: 4px;
}

.scan-log::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

/* ── Confirmation Card (dark variant) ── */
.confirmation-card {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  background: rgba(16, 185, 129, 0.03);
}

.confirm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.15);
}

.confirmation-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.confirmation-card>p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

.confirm-details {
  margin-top: 2rem;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.15rem;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-dark);
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-label {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.confirm-value {
  color: #fff;
  font-weight: 700;
  text-align: right;
  word-break: break-all;
  max-width: 240px;
}

.hidden {
  display: none !important;
}

/* ── Case Studies ── */
#cases {
  background-color: #ffffff;
  padding: 5rem 0;
  /* Add padding to look section-like */
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.case-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.case-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.case-result {
  font-weight: 700;
  color: var(--success);
  font-size: 0.9rem;
}

/* ── Browser Mockup (Mac-style) ── */
.case-card-showcase {
  grid-column: 1 / -1;
}

.case-showcase {
  background: transparent;
  border: none;
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
}

.browser-mockup {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



.browser-mockup:hover {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: #1E1E2E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.02em;
}



.browser-viewport::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-main), transparent);
  pointer-events: none;
}

/* ── Guarantee — Dark Section ── */
.guarantee-section {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.08), transparent 60%);
}

.guarantee {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.guarantee h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 1rem 0;
  color: #fff;
}

.guarantee p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.guarantee .badge-green {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--success);
}

/* ── Enterprise ── */
.enterprise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.enterprise-card {
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  background: var(--bg-main);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.enterprise-card:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.enterprise-card .icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.enterprise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.enterprise-card p {
  color: var(--secondary);
  font-size: 0.85rem;
}

/* ── Stats — Dark Section ── */
.stats-section {
  background: var(--bg-dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.stat h3 {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── FAQ ── */
.faq-grid {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

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

.faq-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.faq-item p {
  color: var(--secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.03), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.02), transparent 50%);
}

.cta-banner * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-banner .btn {
  background: var(--gradient) !important;
  color: #000 !important;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15) !important;
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* ── Footer ── */
footer {
  padding: 3rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  background: var(--bg-dark);
  border-top: none;
}

footer a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.2s;
}

footer a:hover {
  color: #fff;
}

.footer-links {
  margin-bottom: 1rem;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  filter: blur(10px) brightness(0.5);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) brightness(1);
}

/* ── Animated Grid Background ── */
@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── Responsive ── */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
  padding: 0.5rem;
  z-index: 1001;
  transition: opacity 0.2s ease;
}

.mobile-menu-btn:hover {
  opacity: 0.8;
}

.mobile-menu-btn.active {
  color: #fff;
}

@media (max-width: 768px) {

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #050505;
    /* Exact match to main body background */
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--border);
    /* Match main page borders */
    z-index: 1000;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 0;
    width: 100%;
    text-align: center;
  }

  .nav-links li a {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
  }

  .nav-links li a:hover {
    color: #fff;
  }

  .nav-links li a.nav-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
  }

  .pricing-grid,
  .steps-grid,
  .cases-grid,
  .enterprise-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Price cards are now unified */

  .hero-metrics {
    flex-direction: column;
    gap: 2rem;
  }

  .hero {
    padding: 7rem 0 4rem;
    min-height: auto;
  }

  section {
    padding: 4.5rem 0;
  }

  .terminal {
    padding: 1.5rem;
  }

  .cta-banner {
    padding: 3rem 1.5rem;
  }

  .logos-strip {
    gap: 1.5rem;
  }

  .stat h3 {
    font-size: 3rem;
  }

  .case-showcase {
    padding: 0;
  }

  .browser-viewport {
    height: 400px;
  }

  .availability-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .time-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }
}

/* ── Availability ── */
.availability-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.availability-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.time-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-label {
  color: var(--secondary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.time-value {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.time-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

.availability-note {
  color: var(--secondary);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ── Disabled Price Card Teaser ── */
.price-card-disabled {
  position: relative;
  overflow: hidden;
}

.price-card-disabled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10;
  pointer-events: all;
  /* explicitly block clicks */
}

.price-card-disabled::after {
  content: 'COMING SOON';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-5deg);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  z-index: 11;
  pointer-events: none;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

@keyframes ellipsisAnim {
  0% {
    content: 'COMING SOON';
  }

  25% {
    content: 'COMING SOON.';
  }

  50% {
    content: 'COMING SOON..';
  }

  75% {
    content: 'COMING SOON...';
  }

  100% {
    content: 'COMING SOON';
  }
}

.price-card-disabled::after {
  content: 'COMING SOON';
  animation: ellipsisAnim 2s infinite steps(1);
}

/* ── MOBILE OPTIMIZATION ── */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  nav .container {
    height: 72px;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
    line-height: 1.1;
  }

  .hero>.container>p {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }

  .hero-cta-group {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
  }

  .btn {
    width: 100% !important;
    min-width: unset !important;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .price-card-featured {
    transform: scale(1);
    margin: 1rem 0;
  }

  .price-amount {
    font-size: 3rem;
  }

  .dashboard-frame {
    padding: 1rem;
  }

  .stability-scorecard {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .score-card {
    padding: 1rem !important;
  }

  .terminal-title {
    font-size: 0.65rem;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.25rem !important;
    margin-bottom: 2rem !important;
  }

  .footer-links a {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
  }

  footer .container {
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .dash-glow {
    width: 100% !important;
    max-width: 100vw;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-metrics {
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
  }
}

/* ── BLOG LAYOUT SYSTEM ── */
.blog-post-header {
  position: relative;
  padding: 12rem 0 8rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
}

.blog-post-header h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  max-width: 1000px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-meta {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  display: block;
}

.blog-content {
  max-width: 850px;
  margin: 0 auto;
  padding: 6rem 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.25rem;
}

.intro-lead {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4rem;
  line-height: 1.5;
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.1), transparent);
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
}

.blog-content h3 {
  color: #fff;
  margin: 5rem 0 2rem;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
  margin: 4rem 0;
  border-radius: var(--radius);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.evidence-box {
  background: var(--bg-offset);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: var(--radius);
  margin: 4rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.evidence-box h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-weight: 800;
}

.code-log {
  font-family: var(--font-mono);
  color: #10B981;
  font-size: 0.95rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(16, 185, 129, 0.1);
}

.cta-banner {
  background: linear-gradient(135deg, var(--bg-card) 0%, #1a1a2e 100%);
  padding: 5rem;
  border-radius: 16px;
  margin-top: 8rem;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-banner h4 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.related-section {
  margin-top: 8rem;
  padding: 8rem 0;
  background: var(--bg-offset);
  border-top: 1px solid var(--border);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.related-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.1);
}

.related-card h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.related-card p {
  font-size: 1rem;
  color: var(--text-dim);
  margin: 0;
}

/* ── BLOG INDEX (PILLARS) SYSTEM ── */
.hero-mini {
  padding: 15rem 0 8rem;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}

.hero-mini h1 {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 1.5rem 0;
}

.hero-mini h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 6rem 0 10rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 3rem;
  border-radius: 16px;
  transition: all 0.4s var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.1);
}

.blog-card h3 {
  font-size: 1.75rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 800;
  flex: 1;
}

.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card p {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card-tag {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: block;
}

.read-more {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 0.2rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.blog-card:hover .read-more {
  color: var(--accent);
  border-color: #fff;
  padding-left: 0.5rem;
}/* CSS_VERSION_V32_HARD_RELOAD */
