/* DodsonEng static landing page */

:root {
  --bg: #f6f7fb;
  --panel: rgba(255, 255, 255, 0.78);
  --panelSolid: #ffffff;
  --text: #0b1020;
  --muted: #4b5563;
  --border: rgba(17, 24, 39, 0.12);
  --line: rgba(229, 231, 235, 0.9);

  --accent: #2563eb;
  --accent2: #ef4444;

  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }

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

/* Background */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.bgGlow {
  position: absolute;
  width: 900px;
  height: 520px;
  filter: blur(40px);
  opacity: 0.55;
}

.bgGlowA {
  left: -180px;
  top: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.30), transparent 60%);
}

.bgGlowB {
  right: -220px;
  top: 40px;
  background: radial-gradient(circle at 70% 30%, rgba(239,68,68,0.22), transparent 60%);
}

.bgGrid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(17,24,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,24,39,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 40% 15%, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 65%);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,247,251,0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.75);
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brandMark {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.75), rgba(37,99,235,0.9));
  box-shadow: 0 10px 30px rgba(37,99,235,0.28);
}

.brandText { font-size: 16px; }

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

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

.navCta {
  background: linear-gradient(135deg, #0b1020, #111827);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 750;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(17,24,39,0.22);
}

/* Hero */
.hero {
  padding: 52px 0 22px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(239,68,68,0.25);
  color: #b91c1c;
  background: rgba(239,68,68,0.06);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 13px;
}

.hero h1 {
  margin-top: 14px;
  font-size: 56px;
  line-height: 1.03;
  letter-spacing: -0.06em;
}

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

.subhead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 64ch;
}

.ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btnPrimary,
.btnSecondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 750;
  border: 1px solid rgba(17,24,39,0.10);
}

.btnPrimary {
  background: linear-gradient(135deg, #0b1020, #111827);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 14px 40px rgba(17,24,39,0.22);
}

.btnSecondary {
  background: rgba(255,255,255,0.86);
  color: var(--text);
}

.trustRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.trustPill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(229,231,235,0.95);
  background: rgba(255,255,255,0.86);
}

.heroCard {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229,231,235,0.95);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(17,24,39,0.12);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.heroCardTop {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(229,231,235,0.95);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(17,24,39,0.18);
}

.heroCardTitle {
  margin-left: 8px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.heroCardBody {
  padding: 14px;
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17,24,39,0.08);
  background: rgba(255,255,255,0.85);
}

.stepNum {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1d4ed8;
  background: rgba(37,99,235,0.10);
  border: 1px solid rgba(37,99,235,0.20);
}

.stepTitle {
  font-weight: 850;
  letter-spacing: -0.02em;
}

.stepBody {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

/* Sections */
.section {
  padding: 44px 0;
}

.sectionHead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.sectionHead h2 {
  font-size: 30px;
  letter-spacing: -0.03em;
}

.sectionHead p {
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.7;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.card {
  border: 1px solid rgba(229,231,235,0.95);
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 18px 50px rgba(17,24,39,0.07);
}

.cardIcon {
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 7px 10px;
  color: #1d4ed8;
  border: 1px solid rgba(37,99,235,0.22);
  background: rgba(37,99,235,0.08);
}

.card h3 {
  margin-top: 12px;
  letter-spacing: -0.02em;
}

.card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact */
.ctaPanel {
  border: 1px solid rgba(229,231,235,0.95);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.74));
  border-radius: 24px;
  padding: 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  box-shadow: 0 26px 70px rgba(17,24,39,0.10);
}

.ctaPanel a { color: var(--accent); border-bottom: 1px solid rgba(37,99,235,0.22); }

.small { margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.ctaAside {
  display: grid;
  gap: 10px;
}

.ctaBox {
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(246,247,251,0.85);
}

.ctaLabel { color: var(--muted); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.ctaLink { display: inline-block; margin-top: 8px; font-weight: 850; }

/* Footer */
.footer {
  border-top: 1px solid rgba(229,231,235,0.85);
  padding: 22px 0 34px;
  color: var(--muted);
}

.footerInner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.footerBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: var(--text);
}

.footerNote { margin-top: 8px; font-size: 13px; }

.footerLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footerLinks a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 980px) {
  .heroGrid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .grid3 { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .ctaPanel { grid-template-columns: 1fr; }
  .nav a { display: none; }
}
