/* ─── Reset & base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.bot-field { display: none; }

:root {
  --navy:      #0D1B2A;
  --navy-mid:  #112236;
  --navy-card: #162840;
  --navy-border: #1e3450;
  --teal:      #00D4A8;
  --teal-dim:  #00b890;
  --white:     #ffffff;
  --gray-100:  #f0f4f8;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --text:      #e2e8f0;
  --text-muted: #8fa8c8;

  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }

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

/* ─── Utilities ─────────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.accent { color: var(--teal); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ─── Buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dim); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-1px); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-full { width: 100%; }

/* ─── Nav ────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
}

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

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; }

.nav-wordmark {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* ─── Hero ───────────────────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,212,168,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 64px;
}

.hero-text .eyebrow { margin-bottom: 16px; }

.hero-text h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 60px rgba(0,212,168,0.15));
}

/* ─── Hero panel visual ──────────────────────────────────────────────── */
.hero-panel {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  box-shadow: var(--shadow);
}

.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--navy-border);
}

.hero-panel-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2.2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,168,0.45); }
  50%       { opacity: 0.85; box-shadow: 0 0 0 6px rgba(0,212,168,0); }
}

.hero-panel-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.teammate-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}

.teammate-avatar {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.teammate-info { flex: 1; min-width: 0; }

.teammate-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.teammate-role { font-weight: 400; color: var(--text-muted); }

.teammate-task {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.teammate-channels { display: flex; gap: 6px; flex-wrap: wrap; }

.channel-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(0,212,168,0.08);
  border: 1px solid rgba(0,212,168,0.2);
  border-radius: 999px;
  color: var(--teal);
}

.teammate-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.teammate-status.active {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,168,0.12);
}

.hero-panel-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--navy-border);
}

.hero-stat { text-align: center; flex: 1; }

.hero-stat-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--navy-border);
  flex-shrink: 0;
}

/* ─── Features ───────────────────────────────────────────────────────── */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(0,212,168,0.35);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── How it works ───────────────────────────────────────────────────── */
.how-it-works {
  padding: 80px 0 100px;
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 0;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-size: 48px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  opacity: 0.9;
}

.step-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  flex: 0 0 60px;
  height: 2px;
  background: var(--navy-border);
  margin-top: 28px;
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--navy-border);
}

/* ─── Pricing ────────────────────────────────────────────────────────── */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--teal);
  background: linear-gradient(160deg, rgba(0,212,168,0.05) 0%, var(--navy-card) 60%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.price-label {
  font-size: 13px;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: 2px;
}

.price-amount {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.price-range {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.price-coming-soon {
  display: inline-block;
  background: rgba(0,212,168,0.1);
  border: 1px solid rgba(0,212,168,0.25);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin: 8px 0 4px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--navy-border);
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-note a {
  color: var(--teal);
  text-decoration: none;
}
.pricing-note a:hover { text-decoration: underline; }

/* ─── Contact ────────────────────────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text .eyebrow { margin-bottom: 16px; }

.contact-text h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-direct { font-size: 15px; }

.contact-email {
  display: inline-block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}
.contact-email:hover { text-decoration: underline; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-success {
  display: none;
  background: rgba(0,212,168,0.1);
  border: 1px solid rgba(0,212,168,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 15px;
  color: var(--teal);
  text-align: center;
}

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 14px;
  color: var(--text-muted);
}


/* ─── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .proof-inner { gap: 10px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ─── Mobile nav open state ──────────────────────────────────────────── */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy-mid);
  border-bottom: 1px solid var(--navy-border);
  padding: 24px;
  gap: 20px;
  align-items: flex-start;
}
