/* ============================================================
   SolutionVeda — Editorial Theme
   Inspired by long-form consulting / studio sites.
   ============================================================ */

/* -------- Tokens -------- */
:root {
  /* Surfaces */
  --bg: #FFFFFF;
  --cream: #F5F2EC;
  --cream-2: #EFEAE0;
  --ink: #0E0E0E;
  --ink-2: #14191F;

  /* Text */
  --text: #14191F;
  --text-muted: #5A6675;
  --text-dim: #8B96A5;
  --on-dark: #F1EEE7;
  --on-dark-muted: #BFB8AC;

  /* Borders */
  --line: #E8E4DA;
  --line-strong: #C9C4B7;
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Brand */
  --indigo: #4F46E5;
  --indigo-dark: #3730A3;
  --violet: #8B5CF6;
  --cyan: #06B6D4;
  --gradient: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #06B6D4 100%);

  /* Type */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container: 1280px;
  --gutter: 24px;
  --section-y: clamp(80px, 10vw, 144px);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--ink); color: white; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 10px; }

/* -------- Skip link -------- */
.skip-link {
  position: absolute;
  left: 12px; top: -40px;
  padding: 8px 12px;
  background: var(--ink);
  color: white;
  border-radius: 4px;
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-dark a { color: var(--on-dark); }

.section-divider { border-top: 1px solid var(--line); }

/* Section heads — editorial style */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 24px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: currentColor;
}
.section-dark .section-eyebrow { color: var(--on-dark-muted); }

.section-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin: 0 0 24px;
  display: inline-block;
}
.section-dark .section-num { color: var(--on-dark-muted); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 18ch;
}
.section-lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0;
}
.section-dark .section-lede { color: var(--on-dark-muted); }

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 80px);
  max-width: 1000px;
}

.h-rule { height: 1px; background: var(--line); margin-block: clamp(48px, 6vw, 80px); }
.section-dark .h-rule { background: var(--line-dark); }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--indigo); border-color: var(--indigo); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-secondary:hover { background: var(--text); color: white; border-color: var(--text); }

.btn-light {
  background: white;
  color: var(--ink);
  border-color: white;
}
.btn-light:hover { background: var(--indigo); border-color: var(--indigo); color: white; }

.btn-outline-light {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover { background: white; color: var(--ink); border-color: white; }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-mark { display: inline-flex; flex: 0 0 auto; }
.brand-block { display: inline-flex; flex-direction: column; gap: 3px; }
.brand-text { font-size: 19px; line-height: 1; color: var(--ink); }
.brand-text-accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  line-height: 1;
}

.nav {
  display: none;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}
.nav a {
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--indigo); }
.nav a.active { color: var(--indigo); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { display: none; }

.menu-toggle {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line-strong);
  background: white;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 28px;
  border-top: 1px solid var(--line);
  background: white;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
  font-size: 17px;
  transition: background 0.2s var(--ease);
}
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--cream); }
.mobile-nav .btn { margin-top: 12px; padding: 14px 20px; }

/* -------- Hero — editorial massive headline -------- */
.hero {
  position: relative;
  padding-block: clamp(40px, 5vw, 72px) clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9.5vw, 132px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 14ch;
}
.hero-title .grad {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 0 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-art {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
}
.hero-art svg { width: 100%; height: 100%; display: block; }

/* Marquee strip */
.marquee-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  animation: marquee 36s linear infinite;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track span::after {
  content: '·';
  color: var(--line-strong);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- Hero pledge chip -------- */
.hero-pledge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}
.pledge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

/* ============================================================
   AI / Veda section
   ============================================================ */
.ai-section { background: var(--bg); }

.ai-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.ai-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--ink);
}
.ai-headline em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ai-lede {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 32px;
}
.ai-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ai-hero-art {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
}
.ai-hero-art svg { width: 100%; height: 100%; }

/* AI deliverables grid */
.ai-block { padding-block: 16px; }
.ai-block-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 32px;
}
.ai-deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.ai-deliv {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.ai-deliv h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.ai-deliv p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 60ch;
}

/* AI stack columns */
.ai-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.ai-stack-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 14px;
}
.ai-stack-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--ink);
}
.ai-stack-col li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

/* ============================================================
   30-day commitment section
   ============================================================ */
.commitment { padding-block: clamp(96px, 12vw, 160px); }
.commitment-head { margin-bottom: clamp(56px, 8vw, 96px); max-width: 1000px; }
.commitment-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7.2vw, 96px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: white;
  margin: 0 0 28px;
  max-width: 16ch;
}
.commitment-headline em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.commitment-lede {
  font-size: clamp(17px, 1.9vw, 21px);
  color: var(--on-dark-muted);
  line-height: 1.6;
  max-width: 64ch;
  margin: 0;
}

.commitment-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.commitment-step {
  position: relative;
  padding: 36px 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.commitment-step:last-child { border-bottom: 1px solid var(--line-dark); }
.commitment-tier {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.commitment-step h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
  margin: 0;
}
.commitment-step > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark-muted);
  max-width: 60ch;
  margin: 0;
}
.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--on-dark);
}
.commitment-list li {
  padding-left: 18px;
  position: relative;
  color: var(--on-dark-muted);
}
.commitment-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: currentColor;
}

.commitment-footnote {
  margin-top: clamp(40px, 6vw, 64px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
}
.commitment-footnote p {
  margin: 0;
  font-size: 16px;
  color: var(--on-dark-muted);
  line-height: 1.65;
  max-width: 80ch;
}
.commitment-footnote strong { color: white; font-weight: 600; }

/* -------- What we do -------- */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
.service-item:hover { padding-block: 44px 36px; }
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.service-item:hover .service-name { color: var(--indigo); }
.service-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  max-width: 60ch;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.service-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--text-muted);
}

/* -------- Industries -------- */
.industries {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.section-dark .industries { border-top-color: var(--line-dark); }
.industry {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line-dark);
  cursor: default;
  transition: padding 0.3s var(--ease);
}
.industry:hover { padding-left: 12px; }
.industry-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.industry-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--on-dark);
  transition: color 0.2s var(--ease);
}
.industry:hover .industry-name { color: var(--cyan); }
.industry-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  white-space: nowrap;
}
.industry-desc { color: var(--on-dark-muted); margin: 0; max-width: 70ch; }

/* -------- Selected work -------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.work-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  transition: transform 0.3s var(--ease);
}
.work-card:hover { transform: translateY(-4px); }
.work-thumb {
  aspect-ratio: 16 / 11;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.work-thumb svg, .work-thumb-bg {
  width: 100%; height: 100%; display: block;
}
.work-thumb-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: white;
}
.work-thumb[data-color="indigo"] { background: linear-gradient(135deg, #4F46E5, #6366F1); }
.work-thumb[data-color="violet"] { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.work-thumb[data-color="cyan"]   { background: linear-gradient(135deg, #0891B2, #06B6D4); }
.work-thumb[data-color="emerald"]{ background: linear-gradient(135deg, #059669, #10B981); }
.work-thumb[data-color="amber"]  { background: linear-gradient(135deg, #D97706, #F59E0B); }
.work-thumb[data-color="rose"]   { background: linear-gradient(135deg, #BE123C, #F43F5E); }
.work-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.work-tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 4px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.work-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.work-card:hover h3 { color: var(--indigo); }
.work-card p { color: var(--text-muted); margin: 0 0 16px; line-height: 1.55; }
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: auto;
}
.work-link svg { transition: transform 0.2s var(--ease); }
.work-card:hover .work-link svg { transform: translate(3px, -3px); }

/* -------- Perspectives / Insights -------- */
.perspectives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.perspective-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  cursor: default;
}
.perspective-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
}
.perspective-card h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.perspective-card p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.perspective-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  margin-top: auto;
}

/* -------- Why us — value props -------- */
.values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.value {
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.value h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}
.value p { color: var(--text-muted); margin: 0; max-width: 60ch; }

/* -------- Stats strip -------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line-dark);
}
.stat:nth-child(2n) { border-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--on-dark);
}
.stat-label {
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--on-dark-muted);
}

/* -------- CTA banner / Careers -------- */
.cta-banner {
  background: var(--ink);
  color: var(--on-dark);
  padding-block: clamp(72px, 10vw, 128px);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
.cta-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  max-width: 16ch;
  color: white;
}
.cta-grid p { color: var(--on-dark-muted); margin: 0; font-size: 18px; max-width: 50ch; line-height: 1.55; }
.cta-grid .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* -------- Trust strip -------- */
.trust-strip {
  padding-block: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 32px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}
.trust-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: 0.01em;
  color: var(--text);
  opacity: 0.55;
  transition: opacity 0.2s var(--ease);
}
.trust-logo:hover { opacity: 1; }

/* -------- Contact -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.contact-info .section-eyebrow { margin-bottom: 18px; }
.contact-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--ink);
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 2px;
}
.contact-list a {
  color: var(--ink);
  font-weight: 500;
  word-break: break-word;
  transition: color 0.2s var(--ease);
}
.contact-list a:hover { color: var(--indigo); }

/* Form */
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 40px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field { display: block; margin-bottom: 16px; }
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.field-optional { color: var(--text-dim); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  font-size: 16px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235A6675' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(14, 14, 14, 0.06);
}
.form-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-muted);
  min-height: 20px;
}
.form-note.success { color: #047857; }
.form-note.error { color: #BE123C; }

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px; height: 1px;
  overflow: hidden;
}
button[disabled], button:disabled { opacity: 0.65; cursor: wait; }

/* -------- Footer -------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: 32px;
}
.site-footer a { color: var(--on-dark); }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand-block .brand-text { color: white; }
.footer-tagline {
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: white;
  max-width: 16ch;
}
.footer-tag {
  margin: 0;
  color: var(--on-dark-muted);
  max-width: 360px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 10px; }
.footer-cols a {
  color: var(--on-dark-muted);
  font-size: 14px;
  transition: color 0.2s var(--ease);
  word-break: break-word;
}
.footer-cols a:hover { color: white; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 32px;
  font-size: 13px;
  color: var(--on-dark-muted);
}

/* -------- Reveal -------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}

/* ============================================================
   Tablet (>= 720px)
   ============================================================ */
@media (min-width: 720px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(2n) { border-right: 1px solid var(--line-dark); }
  .stat:last-child { border-right: 0; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .perspectives { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  .service-item {
    grid-template-columns: 80px 1fr 1.4fr;
    gap: 32px;
    align-items: baseline;
  }
  .service-item > .service-tags { grid-column: 2 / -1; }

  .value {
    grid-template-columns: 80px 1fr 1.4fr;
    gap: 32px;
    align-items: baseline;
  }

  .ai-deliverables { grid-template-columns: 1fr 1fr; gap: 0 48px; }
  .ai-deliv { padding: 28px 0; }
  .ai-stack { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  .commitment-step {
    grid-template-columns: 220px 1fr 1.2fr;
    gap: 32px;
    align-items: baseline;
  }
  .commitment-step h3 { align-self: baseline; }
  .commitment-list { grid-column: 3; }
}

/* ============================================================
   Desktop (>= 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-actions .btn { display: inline-flex; }
  .menu-toggle { display: none; }

  .hero-grid { grid-template-columns: 1.4fr 1fr; align-items: end; }

  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .perspectives { grid-template-columns: repeat(3, 1fr); }

  .cta-grid { grid-template-columns: 1.5fr 1fr; align-items: end; }

  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 96px; align-items: start; }

  .footer-top { grid-template-columns: 1.4fr 2fr; gap: 96px; }

  .ai-hero { grid-template-columns: 1.4fr 1fr; }
  .ai-stack { grid-template-columns: repeat(4, 1fr); gap: 40px; }
  .ai-deliverables { gap: 0 56px; }
}

/* ============================================================
   Wide (>= 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  :root { --gutter: 40px; }
}
