:root {
  --bg: #050505;
  --bg-elev: #0a0a0a;
  --bg-card: #0e0e0e;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,255,255,0.14);
  --ink: #f5f5f3;
  --ink-dim: #a8a8a6;
  --ink-mute: #6b6b69;

  --c-red: #ff3366;
  --c-orange: #ff8c42;
  --c-yellow: #ffd23f;
  --c-green: #06d6a0;
  --c-blue: #3a86ff;

  --pad-section: 160px;
  --pad-x: clamp(20px, 5vw, 80px);
  --max: 1320px;

  --serif: "Instrument Serif", "Times New Roman", serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --sans: "Geist", system-ui, -apple-system, sans-serif;
}

[data-density="compact"] {
  --pad-section: 96px;
}
[data-density="airy"] {
  --pad-section: 200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--c-orange); color: #000; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: linear-gradient(to bottom, rgba(5,5,5,0.85), rgba(5,5,5,0));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav.scrolled {
  background: rgba(5,5,5,0.85);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.nav-logo-mark {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: conic-gradient(from 0deg, var(--c-red), var(--c-orange), var(--c-yellow), var(--c-green), var(--c-red));
  filter: saturate(1.1);
  position: relative;
}
.nav-logo-mark::after {
  content: "";
  position: absolute; inset: 5px;
  background: var(--bg);
  border-radius: 2px;
}
.nav-links {
  display: flex; gap: 28px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
}
.nav-links a {
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-family: var(--mono);
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #000;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); background: #fff; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  padding: 120px var(--pad-x) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-orb-wrap {
  position: absolute;
  inset: 0;
  display: flex; justify-content: center; align-items: center;
  z-index: -1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 30%, transparent 75%);
  z-index: -2;
  opacity: 0.5;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
  padding: 8px 14px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 12px var(--c-green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0 0 32px;
  max-width: 14ch;
  text-shadow:
    0 2px 30px rgba(0,0,0,0.85),
    0 0 60px rgba(0,0,0,0.6),
    0 0 120px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
}
.hero h1 em {
  font-family: "Caveat", "Brush Script MT", cursive;
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(110deg, var(--c-red), var(--c-orange) 30%, var(--c-yellow) 60%, var(--c-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 8s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink);
  max-width: 56ch;
  text-align: center;
  margin: 0 0 44px;
  line-height: 1.55;
  text-shadow:
    0 2px 12px rgba(0,0,0,1),
    0 0 24px rgba(0,0,0,0.95),
    0 0 60px rgba(0,0,0,0.85),
    0 0 120px rgba(0,0,0,0.6);
  position: relative;
  z-index: 2;
  padding: 14px 22px;
  background: radial-gradient(ellipse at center, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.45) 50%, rgba(5,5,5,0) 100%);
  border-radius: 12px;
}
.hero-cta-row {
  display: flex; gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.btn-primary {
  font-family: var(--mono);
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #000;
  border: none;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.6),
    0 2px 8px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.1);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06), 0 8px 24px rgba(255,255,255,0.08);
}
.btn-ghost {
  font-family: var(--mono);
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.btn-ghost:hover { border-color: var(--ink-dim); background: rgba(255,255,255,0.04); }

.hero-meta {
  margin-top: 64px;
  display: flex; gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}
.hero-meta-item {
  display: flex; align-items: center; gap: 8px;
}
.hero-meta-item::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--c-orange);
  border-radius: 50%;
}

/* ===== Section common ===== */
section.block {
  position: relative;
  padding: var(--pad-section) var(--pad-x);
  border-top: 1px solid var(--line);
}
.container { max-width: var(--max); margin: 0 auto; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.section-eyebrow-num {
  color: var(--c-orange);
}
.section-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
  max-width: 18ch;
}
.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-dim);
}
.section-desc {
  color: var(--ink-dim);
  font-size: 15px;
  max-width: 38ch;
  line-height: 1.55;
  margin: 0;
}

/* ===== Logos strip ===== */
.logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  overflow: hidden;
  background: var(--bg);
}
.logos-track {
  display: flex;
  gap: 80px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.logo-item {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: color 0.2s;
}
.logo-item:hover { color: var(--ink); }
.logo-mark {
  width: 22px; height: 22px;
  display: inline-block;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.service-card {
  background: var(--bg-card);
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 18px;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
  min-height: 280px;
}
.service-card:hover {
  background: #131313;
}
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.service-icon {
  width: 56px; height: 56px;
  position: relative;
}
.service-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
}
.service-meta strong {
  color: var(--ink);
  font-weight: 500;
}

/* ===== Case studies ===== */
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 24px;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.case-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
}
.case-stat {
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-family: var(--sans);
}
.case-stat-suffix {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.case-stat.red { color: var(--c-red); }
.case-stat.orange { color: var(--c-orange); }
.case-stat.green { color: var(--c-green); }
.case-stat.yellow { color: var(--c-yellow); }
.case-card h4 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
  max-width: 22ch;
}
.case-card p {
  font-size: 14px;
  color: var(--ink-dim);
  margin: 0;
  line-height: 1.55;
}
.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.case-tag {
  display: inline-flex;
  gap: 6px; align-items: center;
}
.case-cta {
  color: var(--ink);
  display: flex; gap: 6px; align-items: center;
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 20px;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  animation: rise 0.25s ease-out;
}
@keyframes rise { from { transform: translateY(20px); opacity: 0; } }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink-dim);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s;
}
.modal-close:hover { color: var(--ink); border-color: var(--line-2); }
.modal h3 {
  font-size: 32px;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 8px;
  max-width: 24ch;
  line-height: 1.15;
}
.modal-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--c-orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.modal-stat .num {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.modal-stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.modal-section { margin: 24px 0; }
.modal-section h5 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 8px;
  font-weight: 500;
}
.modal-section p {
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}
.modal-section ul {
  margin: 0; padding: 0; list-style: none;
}
.modal-section li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.modal-section li:last-child { border-bottom: none; }
.modal-section li strong {
  color: var(--ink);
  font-weight: 500;
}

/* ===== Testimonial ===== */
.testimonial {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 40px;
  color: var(--ink);
}
.testimonial-quote em {
  font-style: italic;
}
.testimonial-attr {
  display: flex; gap: 16px;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange), var(--c-red));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.testimonial-name {
  font-family: var(--mono);
  font-size: 13px;
  text-align: left;
}
.testimonial-name .role {
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ===== Comparison table ===== */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-card);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 14px;
}
.compare-table th {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  background: var(--bg-elev);
}
.compare-table th.us {
  color: var(--c-orange);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .row-label {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  width: 30%;
}
.compare-table .us-cell {
  background: rgba(255, 140, 66, 0.04);
  color: var(--ink);
  font-weight: 500;
}
.compare-table td.dim { color: var(--ink-mute); }
.check { color: var(--c-green); }
.cross { color: var(--ink-mute); }
.partial { color: var(--c-yellow); }

/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none; border: none;
  text-align: left;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--c-orange); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--c-orange);
  color: #000;
  border-color: var(--c-orange);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 80px 0 0;
  max-width: 80ch;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 80px 28px 0;
}

/* ===== Calendly ===== */
.calendly-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: start;
}
.calendly-side h2 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 28px;
  max-width: 14ch;
}
.calendly-side h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-orange);
}
.calendly-side p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 40ch;
}
.calendly-bullets {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.calendly-bullets li {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.calendly-bullets li::before {
  content: "→";
  color: var(--c-orange);
  font-family: var(--sans);
}
.calendly-embed {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 640px;
  position: relative;
}

/* Mock calendly placeholder when no real URL */
.cal-mock {
  padding: 28px;
  display: flex; flex-direction: column; height: 640px;
}
.cal-mock-header {
  display: flex; gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.cal-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-orange), var(--c-red));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}
.cal-mock-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
}
.cal-mock-title strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 2px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cal-month {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 13px;
}
.cal-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: none; color: var(--ink-dim);
  cursor: pointer;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-mute);
  text-align: center;
  padding: 4px 0;
  letter-spacing: 0.08em;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-mute);
  border-radius: 50%;
  cursor: default;
  transition: background 0.15s;
  position: relative;
}
.cal-day.avail {
  color: var(--ink);
  background: rgba(255, 140, 66, 0.08);
  cursor: pointer;
}
.cal-day.avail:hover { background: rgba(255, 140, 66, 0.2); }
.cal-day.selected {
  background: var(--c-orange);
  color: #000;
}
.cal-day.today::after {
  content: "";
  position: absolute;
  bottom: 4px;
  width: 3px; height: 3px;
  background: var(--c-orange);
  border-radius: 50%;
}
.cal-times {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  flex-grow: 1;
  align-content: start;
  overflow-y: auto;
}
.cal-time {
  padding: 12px;
  border: 1px solid var(--line-2);
  background: var(--bg-elev);
  color: var(--ink);
  border-radius: 8px;
  font-family: var(--mono);
  font-size: 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
}
.cal-time:hover { border-color: var(--c-orange); }

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--line);
  padding: 80px var(--pad-x) 32px;
  background: var(--bg);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand h4 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.footer-brand p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  max-width: 30ch;
  margin: 0;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col a {
  color: var(--ink-dim);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-badges {
  display: flex; gap: 14px;
  align-items: center;
}
.footer-badge {
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 6px;
}
.footer-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
}
.footer-badge.tier-diamond .footer-badge-dot { background: var(--c-red); }
.footer-badge.tier-platinum .footer-badge-dot { background: var(--c-yellow); }
.footer-badge.tier-elite .footer-badge-dot { background: var(--c-green); }
.footer-copy {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* Big footer wordmark */
.footer-wordmark {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(120px, 22vw, 360px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  text-align: center;
  background: linear-gradient(180deg, var(--ink) 30%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 100px 0 0;
  user-select: none;
  pointer-events: none;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .calendly-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-table th, .compare-table td { padding: 14px 12px; font-size: 12px; }
  .compare-table .row-label { width: 36%; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .modal-stats { grid-template-columns: 1fr; }
}

/* Reduced motion respect */
[data-motion="calm"] .hero-orb,
[data-motion="calm"] .orb-particle,
[data-motion="calm"] .workflow-pulse {
  animation-duration: 30s !important;
}
[data-motion="hyper"] .hero-orb {
  animation-duration: 8s !important;
}
