/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --navy:      #09142A;
  --navy-mid:  #0F2045;
  --navy-soft: #1A3260;
  --accent:    #00C4CC;
  --accent-dim:#009BAA;
  --amber:     #F5A623;
  --white:     #FFFFFF;
  --off-white: #F0F4FF;
  --muted:     #8A9BBF;
  --border:    rgba(255,255,255,0.08);
  --card-bg:   rgba(255,255,255,0.04);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.45);
  --r:         12px;
  --r-lg:      20px;
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, button { font-family: inherit; }

/* ── UTILITY ─────────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.accent    { color: var(--accent); }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: rgba(0,196,204,.1);
  border: 1px solid rgba(0,196,204,.25);
  padding: 5px 12px; border-radius: 99px;
}
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ── NOISE TEXTURE OVERLAY ───────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ── GLOW ────────────────────────────────────────────────────────── */
.glow-orb {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}

/* ── LOGO IMAGE ──────────────────────────────────────────────────── */
.logo-img {
  height: 140px;
  width: auto;
  display: block;
}

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(9,20,42,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}
.logo { display: flex; align-items: center; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px; font-weight: 500; color: var(--muted);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent); color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 9px 20px; border-radius: var(--r);
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #00D4DC; transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy-mid); border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 24px; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border); color: var(--muted);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu a.btn-accent {
  color: var(--navy); background: var(--accent);
  text-align: center; margin: 16px; border-radius: var(--r);
  border: none;
}

/* ── HERO ────────────────────────────────────────────────────────── */
#hero {
  position: relative; overflow: hidden;
  padding: 160px 0 120px;
  text-align: center;
}
#hero .glow-orb:nth-child(1) {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,196,204,.18) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
}
#hero .glow-orb:nth-child(2) {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,166,35,.1) 0%, transparent 70%);
  bottom: 0; right: -100px;
}
.hero-content { position: relative; z-index: 1; }
.hero-tag { margin-bottom: 28px; }
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.04em;
  margin-bottom: 24px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--navy);
  font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(0,196,204,0);
}
.btn-primary:hover {
  background: #00D4DC;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,196,204,.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 500;
  padding: 14px 28px; border-radius: var(--r);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); transform: translateY(-1px); }
.btn-ghost:active { transform: translateY(0); }

/* ── MOCK DASHBOARD ──────────────────────────────────────────────── */
.dashboard-wrap {
  position: relative; z-index: 1;
  margin: 72px auto 0;
  max-width: 900px;
}
.dashboard-chrome {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,196,204,.08);
  overflow: hidden;
}
.chrome-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dot:nth-child(1) { background: #FF5F57; }
.chrome-dot:nth-child(2) { background: #FFBD2E; }
.chrome-dot:nth-child(3) { background: #28C940; }
.chrome-title {
  flex: 1; text-align: center; font-size: 12px; color: var(--muted);
  font-weight: 500;
}
.dashboard-body { padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
}
.dash-card-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 10px; }
.dash-deal-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.dash-score-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.score-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--accent), #00D4DC); }
.score-val { font-size: 13px; font-weight: 700; color: var(--accent); min-width: 32px; text-align: right; }
.dash-tag {
  display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 6px; margin-top: 8px;
}
.dash-tag.hot  { background: rgba(0,196,204,.15); color: var(--accent); }
.dash-tag.warm { background: rgba(245,166,35,.15); color: var(--amber); }
.dash-tag.cold { background: rgba(138,155,191,.12); color: var(--muted); }
.summary-card { grid-column: 1 / -1; }
.summary-text { font-size: 13px; color: var(--muted); line-height: 1.6; }
.summary-text strong { color: var(--white); font-weight: 600; }
.ai-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.ai-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }

/* ── LOGOS / SOCIAL PROOF ────────────────────────────────────────── */
#proof {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-label { text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 28px; }
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-logo {
  font-family: var(--font-head); font-size: 16px; font-weight: 700;
  color: rgba(255,255,255,.22); letter-spacing: -.02em;
}

/* ── HOW IT WORKS ────────────────────────────────────────────────── */
#how { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800; letter-spacing: -.03em;
  margin-top: 16px; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.step {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: background .25s, border-color .25s;
}
.step:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.step:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.step:hover { background: rgba(255,255,255,.06); border-color: rgba(0,196,204,.2); }
.step-num {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 800;
  color: rgba(0,196,204,.15); line-height: 1;
  margin-bottom: 20px; letter-spacing: -.04em;
}
.step-icon {
  width: 44px; height: 44px;
  background: rgba(0,196,204,.1);
  border: 1px solid rgba(0,196,204,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 20px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.connector {
  position: absolute; top: 48px; right: -14px;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(0,196,204,.35));
  z-index: 2;
}
.connector::after {
  content: ''; position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,196,204,.35);
}

/* ── FEATURES ────────────────────────────────────────────────────── */
#features { padding: 100px 0; background: linear-gradient(180deg, transparent, rgba(0,196,204,.03) 50%, transparent); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: background .25s, border-color .25s, transform .2s;
}
.feature-card:hover { background: rgba(255,255,255,.06); border-color: rgba(0,196,204,.2); transform: translateY(-3px); }
.feature-card:hover .feature-icon { background: rgba(0,196,204,.18); border-color: rgba(0,196,204,.35); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(0,196,204,.08);
  border: 1px solid rgba(0,196,204,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  transition: background .25s, border-color .25s;
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700; margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.feature-card.wide { grid-column: 1 / -1; }
.wide-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.wide-inner .feature-icon { margin-bottom: 0; }
.pipeline-viz {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pipe-stage {
  flex: 1; min-width: 80px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 12px; text-align: center;
  font-size: 11px; font-weight: 600; color: var(--muted);
}
.pipe-stage.active {
  border-color: rgba(0,196,204,.4);
  background: rgba(0,196,204,.08);
  color: var(--accent);
}
.pipe-arrow { color: var(--muted); font-size: 12px; flex-shrink: 0; }
.pipe-update {
  margin-top: 12px; font-size: 12px; color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.pipe-update::before { content: '✦'; font-size: 8px; }

/* ── WHO IT'S FOR ────────────────────────────────────────────────── */
#who { padding: 100px 0; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.who-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: background .25s, border-color .25s;
}
.who-card:hover { background: rgba(255,255,255,.06); border-color: rgba(0,196,204,.18); }
.who-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.who-card:nth-child(1) .who-avatar { background: rgba(0,196,204,.1); }
.who-card:nth-child(2) .who-avatar { background: rgba(245,166,35,.1); }
.who-card:nth-child(3) .who-avatar { background: rgba(138,155,191,.1); }
.who-card h3 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.who-card .role { font-size: 12px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.who-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── STATS ───────────────────────────────────────────────────────── */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,196,204,.06) 0%, transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.stat-item {
  padding: 40px 32px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; letter-spacing: -.04em;
  color: var(--accent); margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ── CTA / CONTACT ───────────────────────────────────────────────── */
#contact { padding: 120px 0; position: relative; overflow: hidden; }
#contact .glow-orb {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,196,204,.14) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.cta-box {
  position: relative; z-index: 1;
  max-width: 640px; margin: 0 auto; text-align: center;
}
.cta-box .section-h2 { margin-bottom: 16px; }
.cta-box p { font-size: 17px; color: var(--muted); margin-bottom: 40px; line-height: 1.65; }
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--white);
  font-size: 14px;
  width: 100%;
  transition: border-color .2s, background .2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group select option { background: var(--navy-mid); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(0,196,204,.4);
  background: rgba(0,196,204,.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; margin-top: 8px;
  background: var(--accent); color: var(--navy);
  font-size: 15px; font-weight: 700;
  padding: 14px; border-radius: var(--r);
  border: none; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.form-submit:hover { background: #00D4DC; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(0,196,204,.3); }
.form-submit:active { transform: translateY(0); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 14px; }

/* Form success state */
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success .check { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-head); font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-nav { display: flex; gap: 28px; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(138,155,191,.5); }

/* ── SCROLL OFFSET FOR FIXED NAV ─────────────────────────────────── */
#how, #features, #who, #contact, #testimonials, #guarantee, #offer { scroll-margin-top: 100px; }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
#hero .fade-up:nth-child(1) { transition-delay: .05s; }
#hero .fade-up:nth-child(2) { transition-delay: .15s; }
#hero .fade-up:nth-child(3) { transition-delay: .25s; }
#hero .fade-up:nth-child(4) { transition-delay: .35s; }
#hero .fade-up:nth-child(5) { transition-delay: .45s; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
  .step:last-child  { border-radius: 0 0 var(--r-lg) var(--r-lg); }
  .connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: 1; }
  .wide-inner { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .dashboard-body { grid-template-columns: 1fr; }
  .summary-card { grid-column: 1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  #hero { padding: 120px 0 80px; }
}
