@charset "UTF-8";

:root {
  --navy: #0F1E2F;
  --navy-800: #162A42;
  --navy-700: #1C3554;
  --navy-600: #234166;
  --sky: #2AADCF;
  --sky-dim: #1F8FAD;
  --sky-glow: rgba(42, 173, 207, 0.12);
  --orange: #E87A2F;
  --orange-dim: #D06B24;
  --orange-glow: rgba(232, 122, 47, 0.1);
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-50: #EEF1F5;
  --gray-100: #DDE3EB;
  --gray-300: #A4B0BF;
  --gray-500: #6B7A8D;
  --gray-700: #3D4F63;
  --red: #E65B5B;
  --green: #34C77B;
  --font: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════ NAV ═══════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(15, 30, 47, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(42, 173, 207, 0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 28px; height: 28px;
  position: relative;
}

.nav-logo-icon svg { width: 100%; height: 100%; }

.nav-logo-text {
  font-weight: 700; font-size: 1.35rem; color: var(--white);
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--sky); }

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

.nav-links a {
  color: var(--gray-300); text-decoration: none;
  font-size: 0.88rem; font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--sky) !important; color: var(--navy) !important;
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.88rem !important;
  transition: all 0.2s !important;
}

.btn-nav:hover { background: var(--sky-dim) !important; }

/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 7rem 2.5rem 5rem;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 75% 20%, rgba(42, 173, 207, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(232, 122, 47, 0.04) 0%, transparent 100%);
}

.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(42, 173, 207, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 173, 207, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

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

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sky-glow);
  border: 1px solid rgba(42, 173, 207, 0.2);
  padding: 0.35rem 1rem; border-radius: 100px;
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--sky); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 2rem;
  animation: fadeUp 0.5s ease both;
}

.hero-tag .dot {
  width: 6px; height: 6px; background: var(--sky);
  border-radius: 50%; animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.12; letter-spacing: -1.5px;
  margin-bottom: 1.5rem; max-width: 900px; margin-inline: auto;
  animation: fadeUp 0.5s 0.05s ease both;
}

.hero h1 .highlight-sky { color: var(--sky); }
.hero h1 .highlight-orange { color: var(--orange); }

.hero-sub {
  font-size: 1.15rem; color: var(--gray-300);
  line-height: 1.7; max-width: 640px; margin: 0 auto 2.5rem;
  animation: fadeUp 0.5s 0.1s ease both;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center;
  animation: fadeUp 0.5s 0.15s ease both;
}

.btn-primary {
  background: var(--sky); color: var(--navy);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: none; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--sky-dim); transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(42, 173, 207, 0.25);
}

.btn-ghost {
  border: 1.5px solid var(--gray-500); color: var(--white);
  padding: 0.9rem 2rem; border-radius: 8px;
  font-weight: 500; font-size: 1rem; text-decoration: none;
  background: transparent; cursor: pointer; transition: all 0.2s;
}

.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.04); }

/* Social proof bar */
.hero-proof {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: fadeUp 0.5s 0.25s ease both;
}

.hero-proof-label {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--gray-500); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 1.25rem;
}

.hero-proof-items {
  display: flex; gap: 3rem; justify-content: center; align-items: center;
  flex-wrap: wrap;
}

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

.proof-stat-num {
  font-size: 1.6rem; font-weight: 700; color: var(--white);
}

.proof-stat-num span { color: var(--sky); }

.proof-stat-label {
  font-size: 0.78rem; color: var(--gray-500); margin-top: 0.15rem;
}

/* ═══════════════════════ PAIN ═══════════════════════ */
.pain {
  padding: 6rem 2.5rem;
  background: var(--off-white);
}

.container { max-width: 1120px; margin: 0 auto; }

.section-tag {
  font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.75rem;
  font-weight: 500;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700; letter-spacing: -0.5px;
  line-height: 1.2; margin-bottom: 1rem; color: var(--navy);
}

.section-sub {
  font-size: 1.05rem; color: var(--gray-500);
  max-width: 660px; line-height: 1.7; margin-bottom: 3rem;
}

.pain-quotes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-bottom: 3rem;
}

.pain-quote {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 3px solid var(--orange);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-style: italic;
}

.pain-bottom {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
}

.pain-item { text-align: center; }

.pain-item-title {
  font-size: 0.85rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.35rem;
}

.pain-item-desc {
  font-size: 0.78rem; color: var(--gray-300); line-height: 1.5;
}

.pain-result {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  padding-top: 1.25rem;
  border-top: 1px solid var(--navy-700);
  margin-top: 0.5rem;
}

/* ═══════════════════════ APPROACH ═══════════════════════ */
.approach {
  padding: 6rem 2.5rem;
  background: var(--white);
}

.approach-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}

.approach-text .section-heading { max-width: 480px; }

.approach-desc {
  font-size: 1.05rem; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 2rem;
}

.foundation-bar {
  background: var(--navy);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.foundation-label {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 1rem;
}

.foundation-items {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}

.foundation-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: var(--gray-300); font-weight: 500;
}

.foundation-item .fi-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.blocks-note {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.6;
}

/* Steps */
.approach-steps {
  display: flex; flex-direction: column; gap: 0.75rem;
}

.a-step {
  display: grid; grid-template-columns: 40px 1fr;
  gap: 1rem; align-items: start;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 10px;
  transition: all 0.2s;
}

.a-step:hover {
  border-color: var(--sky);
  background: var(--white);
}

.a-step-num {
  font-family: var(--mono); font-size: 0.7rem;
  color: var(--sky); font-weight: 600;
  padding-top: 2px;
}

.a-step h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.2rem;
}

.a-step p {
  font-size: 0.85rem; color: var(--gray-500); line-height: 1.5;
}

.a-step-timeline {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--sky); font-weight: 600;
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--sky-glow);
  border: 1px solid rgba(42, 173, 207, 0.15);
  border-radius: 8px;
  text-align: center;
}

/* ═══════════════════════ USE CASES ═══════════════════════ */
.use-cases {
  padding: 6rem 2.5rem;
  background: var(--navy);
}

.use-cases .section-heading { color: var(--white); }
.use-cases .section-sub { color: var(--gray-300); }

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

.uc-card {
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s;
  position: relative;
}

.uc-card:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.uc-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, var(--navy-800) 0%, rgba(232, 122, 47, 0.05) 100%);
}

.uc-card.featured:hover { border-color: var(--orange); }

.uc-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--orange); font-weight: 600;
  background: var(--orange-glow);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.uc-border-sky { border-left: 3px solid var(--sky); }
.uc-border-orange { border-left: 3px solid var(--orange); }

.uc-card h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.5rem;
}

.uc-card p {
  font-size: 0.9rem; color: var(--gray-300); line-height: 1.6;
}

.uc-more {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 1rem; font-weight: 600;
  color: var(--sky);
  padding: 1.75rem;
  border: 1px dashed var(--navy-600);
  border-radius: 12px;
  margin-top: 0.5rem;
}

/* ═══════════════════════ WHY FASTER ═══════════════════════ */
.faster {
  padding: 6rem 2.5rem;
  background: var(--white);
}

.faster-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}

.faster-card {
  padding: 2rem 1.5rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  transition: all 0.2s;
}

.faster-card:hover {
  border-color: var(--sky);
  transform: translateY(-2px);
}

.faster-icon {
  width: 40px; height: 40px;
  background: var(--sky-glow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.faster-card h3 {
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.4rem;
}

.faster-card p {
  font-size: 0.85rem; color: var(--gray-500); line-height: 1.55;
}

/* ═══════════════════════ COMPARISON ═══════════════════════ */
.comparison {
  padding: 6rem 2.5rem;
  background: var(--off-white);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.comp-table thead th {
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray-500);
  background: var(--off-white);
  border-bottom: 2px solid var(--gray-100);
}

.comp-table thead th:last-child {
  color: var(--navy);
  background: var(--sky-glow);
  border-bottom-color: var(--sky);
}

.comp-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-50);
  color: var(--gray-700);
}

.comp-table tbody td:first-child {
  font-weight: 600; color: var(--navy);
}

.comp-table tbody td:last-child {
  color: var(--navy); font-weight: 600;
  background: rgba(42, 173, 207, 0.03);
}

.comp-table tbody tr:last-child td { border-bottom: none; }

/* ═══════════════════════ DEPLOYMENT ═══════════════════════ */
.deployment {
  padding: 6rem 2.5rem;
  background: var(--white);
}

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

.deploy-card {
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.deploy-card:hover { border-color: var(--sky); }

.deploy-card-top { height: 4px; }

.deploy-card-top.sky { background: var(--sky); }
.deploy-card-top.orange { background: var(--orange); }
.deploy-card-top.mixed { background: linear-gradient(90deg, var(--sky), var(--orange)); }

.deploy-card-body { padding: 2rem; }

.deploy-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.deploy-card h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.5rem;
}

.deploy-card p {
  font-size: 0.9rem; color: var(--gray-500); line-height: 1.6;
  margin-bottom: 0.75rem;
}

.deploy-card .deploy-highlight {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--sky); font-weight: 500;
}

/* ═══════════════════════ PRICING ═══════════════════════ */
.pricing {
  padding: 6rem 2.5rem;
  background: var(--navy);
}

.pricing .section-heading { color: var(--white); }
.pricing .section-sub { color: var(--gray-300); }

.pricing-principles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}

.pp-card {
  padding: 1.75rem;
  background: var(--navy-800);
  border: 1px solid var(--navy-700);
  border-radius: 10px;
}

.pp-card h4 {
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  margin-bottom: 0.35rem;
}

.pp-card p {
  font-size: 0.85rem; color: var(--gray-300); line-height: 1.55;
}

/* ═══════════════════════ CREDIBILITY ═══════════════════════ */
.credibility {
  padding: 6rem 2.5rem;
  background: var(--off-white);
}

.cred-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  align-items: start;
}

.cred-desc {
  font-size: 1.05rem; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 2rem;
}

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

.cred-tag {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
}

.cred-quote-box {
  background: var(--navy);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--white);
  position: relative;
}

.cred-quote-box::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--sky);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.cred-quote-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--gray-100);
  margin-bottom: 1.25rem;
  position: relative; z-index: 1;
}

.cred-quote-attr {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ═══════════════════════ CTA ═══════════════════════ */
.cta-section {
  padding: 6rem 2.5rem;
  background: var(--white);
  text-align: center;
}

.cta-inner { max-width: 680px; margin: 0 auto; }

.cta-tagline {
  font-size: 1.1rem; color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.cta-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

.cta-heading em {
  font-style: normal; color: var(--sky);
}

.cta-sub {
  font-size: 1rem; color: var(--gray-500);
  line-height: 1.7; margin-bottom: 2rem;
  max-width: 540px; margin-inline: auto;
}

.cta-steps {
  display: flex; gap: 2rem; justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.cta-step {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--gray-500);
  display: flex; align-items: center; gap: 0.5rem;
}

.cta-step .num {
  width: 24px; height: 24px;
  background: var(--sky-glow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; color: var(--sky);
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  padding: 2.5rem;
  background: var(--navy);
  border-top: 1px solid var(--navy-700);
}

.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.footer-brand { font-weight: 700; font-size: 1.15rem; color: var(--white); }
.footer-brand span { color: var(--sky); }

.footer-links { display: flex; gap: 2rem; list-style: none; }

.footer-links a {
  color: var(--gray-500); text-decoration: none;
  font-size: 0.82rem; transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.78rem; color: var(--gray-500); }

/* ═══════════════════════ ANIMATIONS ═══════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 960px) {
  .pain-quotes { grid-template-columns: 1fr; }
  .pain-bottom { grid-template-columns: repeat(2, 1fr); }
  .approach-layout { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .faster-grid { grid-template-columns: 1fr 1fr; }
  .deploy-grid { grid-template-columns: 1fr; }
  .pricing-principles { grid-template-columns: 1fr; }
  .cred-layout { grid-template-columns: 1fr; }
  .comp-table { font-size: 0.8rem; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 6rem 1.5rem 4rem; }
  .faster-grid { grid-template-columns: 1fr; }
  .pain-bottom { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}
