/* DeskWrench shared styles — used by every page */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #3b82f6;
  --blue-dark: #1d4ed8;
  --blue-light: #93c5fd;
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-light: #fcd34d;
  --bg: #020617;
  --bg2: #0a0f1e;
  --bg3: #0f172a;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #475569;
  --border: rgba(255,255,255,0.08);
  --border-hi: rgba(255,255,255,0.15);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 9px;
  font-family: inherit; font-weight: 600; font-size: 14px;
  transition: all 0.15s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-ghost { color: var(--text-muted); background: transparent; }
.btn-ghost:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(59,130,246,0.40); }
.btn-amber { background: var(--amber); color: #0c0a09; }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(245,158,11,0.35); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-hi);
}
.btn-outline:hover { border-color: var(--text-muted); background: rgba(255,255,255,0.03); }
.btn-large { padding: 14px 24px; font-size: 15px; border-radius: 10px; }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(2,6,23,0.75);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.nav-left { display: flex; align-items: center; gap: 28px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; letter-spacing: -0.02em; }
.nav-logo img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 12px; font-size: 14px; color: var(--text-muted);
  border-radius: 7px; transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.torque-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.28);
  font-size: 11px; font-weight: 700; color: var(--amber-light);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.torque-pill img { width: 12px; height: 12px; object-fit: contain; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ── ORBS / BACKGROUND ── */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; opacity: 0.5; z-index: 0;
}
.orb-blue { background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 70%); }
.orb-amber { background: radial-gradient(circle, rgba(245,158,11,0.30), transparent 70%); }

/* ── HERO ── */
.hero {
  position: relative; padding: 90px 0 60px;
  overflow: hidden;
}
.hero-inner { position: relative; text-align: center; max-width: 920px; margin: 0 auto; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(59,130,246,0.10); border: 1px solid rgba(59,130,246,0.25);
  font-size: 11.5px; font-weight: 700; color: var(--blue-light);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #86efac;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

h1.display {
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.04;
  margin-bottom: 24px;
}
h1.display .gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--amber) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  font-size: clamp(17px, 1.7vw, 21px);
  color: var(--text-muted);
  max-width: 700px; margin: 0 auto 36px;
}

/* ── FORMS ── */
.email-form {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 480px; margin: 0 auto;
}
.email-form input {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-hi);
  color: var(--text);
  border-radius: 10px;
  font-family: inherit; font-size: 15px;
}
.email-form input::placeholder { color: var(--text-dim); }
.email-form input:focus { outline: none; border-color: var(--blue); background: rgba(59,130,246,0.05); }
.form-hint { font-size: 12px; color: var(--text-dim); margin-top: 12px; text-align: center; }
.form-success {
  display: none; align-items: center; justify-content: center; gap: 8px;
  max-width: 480px; margin: 0 auto;
  padding: 14px; border-radius: 10px;
  background: rgba(34,197,94,0.10); border: 1px solid rgba(34,197,94,0.30);
  color: #86efac; font-weight: 600;
}
.form-error {
  display: none; max-width: 480px; margin: 10px auto 0;
  padding: 10px 14px; border-radius: 8px;
  background: rgba(239,68,68,0.10); border: 1px solid rgba(239,68,68,0.30);
  color: #fca5a5; font-size: 13px;
}

/* ── SECTIONS ── */
section { position: relative; padding: 90px 0; }
.section-eyebrow {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.25);
  font-size: 11px; font-weight: 700; color: var(--amber);
  text-transform: uppercase; letter-spacing: 0.10em;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 640px; line-height: 1.65;
  margin-bottom: 48px;
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.feature {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 0.15s, transform 0.15s;
  position: relative;
  overflow: hidden;
}
.feature:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.feature::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.30), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.feature:hover::before { opacity: 1; }
.feature-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-icon.blue   { background: rgba(59,130,246,0.15); color: #93c5fd; }
.feature-icon.amber  { background: rgba(245,158,11,0.15); color: #fcd34d; }
.feature-icon.green  { background: rgba(34,197,94,0.15);  color: #86efac; }
.feature-icon.purple { background: rgba(168,85,247,0.15); color: #d8b4fe; }
.feature-icon.red    { background: rgba(239,68,68,0.15);  color: #fca5a5; }
.feature h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── COMPARE ── */
.compare {
  background: linear-gradient(180deg, var(--bg2), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { padding: 32px; border-radius: 18px; border: 1px solid var(--border); }
.compare-card.them { background: rgba(255,255,255,0.02); }
.compare-card.us {
  background: linear-gradient(135deg, rgba(59,130,246,0.07), rgba(245,158,11,0.07));
  border: 1px solid rgba(59,130,246,0.30);
}
.compare-card h3 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase; margin-bottom: 20px; color: var(--text-muted);
}
.compare-card.us h3 { color: var(--blue-light); }
.compare-card ul { list-style: none; }
.compare-card li {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px; line-height: 1.5;
  display: flex; gap: 12px; align-items: flex-start;
}
.compare-card li:last-child { border-bottom: none; }
.compare-card li::before {
  content: ''; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  margin-top: 2px;
}
.compare-card.them li::before { background: rgba(239,68,68,0.20); border: 1px solid rgba(239,68,68,0.45); }
.compare-card.us li::before { background: rgba(34,197,94,0.20); border: 1px solid rgba(34,197,94,0.45); }
.compare-card li strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 4px; }
.compare-card li span { display: block; color: var(--text-muted); font-size: 13.5px; }

/* ── TORQUE TEASER ── */
.torque-section {
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.08), transparent 60%);
  text-align: center;
  position: relative; overflow: hidden;
}
.torque-wordmark {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 50%, var(--amber-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.torque-tagline {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--text); line-height: 1.45;
  max-width: 720px; margin: 24px auto 0;
}
.torque-sub {
  margin: 24px auto 0;
  max-width: 560px; color: var(--text-muted); font-size: 15.5px; line-height: 1.7;
}
.torque-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 36px;
}
.torque-stat-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(245,158,11,0.06); border: 1px solid rgba(245,158,11,0.20);
  font-size: 13px; color: var(--text-muted);
}
.torque-stat-pill::before {
  content: '—'; color: var(--amber); font-weight: 800;
}

/* ── CTA BOX ── */
.cta-box {
  padding: 48px;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(245,158,11,0.08));
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 18px;
  text-align: center;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  padding: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 18px;
  position: relative;
}
.pricing-card.featured {
  border: 1px solid rgba(245,158,11,0.40);
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(59,130,246,0.04));
}
.pricing-badge {
  position: absolute; top: -12px; right: 24px;
  padding: 5px 12px; border-radius: 999px;
  background: var(--amber); color: #0c0a09;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.pricing-name { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing-price { font-size: 48px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.pricing-price small { color: var(--text-muted); font-size: 17px; font-weight: 500; margin-left: 4px; }
.pricing-desc { color: var(--text-muted); font-size: 14.5px; margin: 12px 0 28px; }
.pricing-list { list-style: none; }
.pricing-list li {
  padding: 9px 0; font-size: 14.5px;
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--text-muted);
}
.pricing-list li::before {
  content: '✓'; flex-shrink: 0; color: #86efac; font-weight: 800; line-height: 1.5;
}

/* ── FAQ ── */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 32px;
}
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.faq-item p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── FOOTER ── */
.site-footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 13px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
  margin-bottom: 36px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.footer-grid h5 { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.10em; margin-bottom: 14px; }
.footer-grid a { display: block; padding: 4px 0; color: var(--text-dim); transition: color 0.15s; }
.footer-grid a:hover { color: var(--text-muted); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
