/* SilverQueen · design tokens + global styles */

:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --ink-muted: #86868b;
  --bg: #fbfbfd;
  --surface: #f5f5f7;
  --surface-2: #ececef;
  --rule: #d2d2d7;
  --accent: #0071e3;
  --accent-hover: #0077ed;
  --ink-invert: #f5f5f7;
  --bg-invert: #000;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --nav-h: 48px;
  --rail: 1180px;
  --rail-narrow: 980px;
  --silver-1: #e6e6ea;
  --silver-2: #c0c0c7;
  --silver-3: #7a7a85;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Helvetica Neue", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.003em;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; }

/* Typography */
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.015em; font-weight: 600; }
.eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.002em;
  margin: 0 0 14px;
}
.display {
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 600;
  margin: 0 0 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.headline {
  font-size: clamp(30px, 4.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 600;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.subhead {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.4;
  color: var(--ink-soft);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 680px;
  margin-top: 0;
}
.kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.lede { font-size: 21px; line-height: 1.4; color: var(--ink-soft); max-width: 60ch; }

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(251, 251, 253, 0.72);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.site-nav .nav-inner {
  max-width: var(--rail);
  margin: 0 auto;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}
.nav-brand:hover { text-decoration: none; }
.nav-brand .brand-mark { width: 26px; height: 26px; display: block; }
.nav-brand .brand-word {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -0.01em;
  opacity: 0.88;
  text-decoration: none;
}
.nav-links a:hover { opacity: 1; text-decoration: none; }
.nav-links a.active { opacity: 1; font-weight: 500; }

@media (max-width: 720px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border-color: transparent;
}
.btn-ghost:hover { text-decoration: none; color: var(--accent-hover); }
.btn-ghost .chev { transition: transform .25s var(--ease); }
.btn-ghost:hover .chev { transform: translateX(3px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--bg); text-decoration: none; }
.btn-lg { padding: 14px 28px; font-size: 19px; }

/* Sections */
section { position: relative; }
.section {
  padding: clamp(56px, 6.5vw, 96px) 22px;
}
.section-tight { padding: clamp(40px, 5vw, 64px) 22px; }
.rail { max-width: var(--rail); margin: 0 auto; }
.rail-narrow { max-width: var(--rail-narrow); margin: 0 auto; }
.section.dark {
  background: #000;
  color: var(--ink-invert);
}
.section.dark .subhead,
.section.dark .lede,
.section.dark .eyebrow { color: #a1a1a6; }
.section.dark h1, .section.dark h2, .section.dark h3 { color: #f5f5f7; }

.section.surface { background: var(--surface); }

/* Hero */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 88px) 22px clamp(36px, 4.5vw, 64px);
  text-align: center;
  background: var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% -25% -5%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 30% 35%, rgba(169,199,255,0.50) 0%, rgba(169,199,255,0) 70%),
    radial-gradient(ellipse 40% 45% at 72% 65%, rgba(245,208,201,0.45) 0%, rgba(245,208,201,0) 70%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,255,255,0.9) 0%, rgba(230,230,234,0.55) 45%, rgba(251,251,253,0) 78%);
  -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 50%, #000 40%, transparent 90%);
          mask-image: radial-gradient(ellipse 65% 70% at 50% 50%, #000 40%, transparent 90%);
}
.hero.compact {
  padding: clamp(40px, 5vw, 72px) 22px clamp(32px, 3.5vw, 56px);
}
.hero.compact .display {
  font-size: clamp(32px, 4.6vw, 60px);
}
.hero-orb { display: none !important; }
.hero .rail { position: relative; z-index: 1; }
.hero .ctas {
  display: inline-flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.hero-orb {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-orb svg {
  width: min(1200px, 120%);
  height: auto;
  filter: blur(6px);
  opacity: 0.9;
  transform: translateY(8%);
  animation: orb-float 14s ease-in-out infinite alternate;
}
@keyframes orb-float {
  from { transform: translate3d(-1%, 9%, 0) scale(1); }
  to   { transform: translate3d( 2%, 6%, 0) scale(1.04); }
}

/* Reveal animation */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-orb svg { animation: none; }
  html { scroll-behavior: auto; }
}

/* Cards grid (three-up) */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.card h3 {
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.012em;
}
.card p { color: var(--ink-soft); font-size: 17px; margin: 10px 0 0; }
.card .card-illo {
  width: 100%;
  max-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card .card-illo svg { width: 100%; height: auto; max-height: 220px; }
.card.dark { background: #1d1d1f; color: var(--ink-invert); }
.card.dark p { color: #a1a1a6; }

/* Product tiles (In production) */
.product-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 900px) { .product-strip { grid-template-columns: 1fr; } }
.product-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  min-height: 560px;
  transition: transform .5s var(--ease);
}
.product-tile:hover { text-decoration: none; transform: translateY(-4px); }
.product-tile .tile-copy {
  padding: 48px 40px 28px;
}
.product-tile .tile-copy .eyebrow { margin-bottom: 10px; }
.product-tile h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  max-width: 24ch;
}
.product-tile p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  max-width: 48ch;
}
.product-tile .tile-shot {
  margin: 24px 40px 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.35), 0 10px 30px -15px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.08);
}
.product-tile .tile-shot img { width: 100%; display: block; }
.product-tile.dark {
  background: #111;
  color: #f5f5f7;
}
.product-tile.dark p { color: #a1a1a6; }
.product-tile .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--accent);
  font-size: 17px;
}

/* Companies grid */
.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .companies-grid { grid-template-columns: 1fr; } }

.company-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 380px;
}
.company-card .company-logo {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company-card .company-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.company-card .company-logo.logo-tile {
  overflow: hidden;
  border-radius: 16px;
}
.company-card .company-logo.logo-tile-dark {
  background: #101113;
  padding: 6px;
}
.company-card .company-logo.company-logo-large {
  width: 72px;
  height: 72px;
}
.company-card h3 { font-size: 26px; letter-spacing: -0.012em; }
.company-card p { color: var(--ink-soft); margin: 0; }
.company-card .company-link { margin-top: auto; color: var(--accent); font-size: 17px; }
.company-card.placeholder {
  background: transparent;
  border: 2px dashed var(--rule);
  color: var(--ink-muted);
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Metrics ribbon */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}
@media (max-width: 720px) { .metrics { grid-template-columns: 1fr; } }
.metric .metric-num {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(180deg, #1d1d1f 0%, #6e6e73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section.dark .metric .metric-num {
  background: linear-gradient(180deg, #f5f5f7 0%, #a1a1a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric .metric-label {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 17px;
  letter-spacing: -0.003em;
}

/* Closing CTA */
.cta-band {
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 22px;
}
.cta-band .display { max-width: 18ch; margin: 0 auto 18px; }

/* Case study layout */
.case-hero {
  padding: clamp(72px, 9vw, 128px) 22px 32px;
  text-align: center;
}
.case-hero .display { max-width: 22ch; margin-left: auto; margin-right: auto; }
.case-hero .subhead { margin-left: auto; margin-right: auto; }
.case-shot-full {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 22px;
}
.case-shot-full .shot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 50px 100px -40px rgba(0,0,0,0.4), 0 20px 40px -20px rgba(0,0,0,0.25);
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.case-shot-full .shot-frame img { width: 100%; display: block; }

/* Two-column content blocks */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.two-col.reverse .col-text { order: 2; }
@media (max-width: 900px) { .two-col.reverse .col-text { order: 0; } }
.two-col .col-text h2 { margin-bottom: 16px; }
.two-col .col-text p { color: var(--ink-soft); font-size: 19px; line-height: 1.45; }
.two-col .col-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.3), 0 10px 30px -15px rgba(0,0,0,0.2);
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
}
.two-col .col-media img { width: 100%; display: block; }

/* Feature list (solutions) */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.45;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c0c0c7, #7a7a85);
}
.section.dark .feature-list li { color: #a1a1a6; }

/* Chips (integrations) */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.chip {
  padding: 8px 14px;
  border-radius: 980px;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -0.005em;
}
.section.dark .chip { background: #1d1d1f; color: #f5f5f7; }

/* Numbered workflow */
.workflow {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}
.workflow li {
  counter-increment: step;
  position: relative;
  padding: 20px 24px 20px 72px;
  background: var(--surface);
  border-radius: var(--radius-md);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}
.workflow li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1d1d1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.section.dark .workflow li { background: #1d1d1f; color: #f5f5f7; }
.section.dark .workflow li::before { background: #f5f5f7; color: #000; }

/* Gallery (case study) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 720px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid .shot-frame { background: #fff; border-radius: var(--radius-md); overflow: hidden; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2); }

/* Form */
.form {
  display: grid;
  gap: 16px;
  max-width: 560px;
  margin: 32px auto 0;
}
.form label { display: grid; gap: 6px; font-size: 14px; color: var(--ink-muted); text-align: left; }
.form input, .form textarea {
  font: inherit;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0,113,227,0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* Values list (about) */
.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}
@media (max-width: 900px) { .values-list { grid-template-columns: 1fr; } }
.values-list li {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
}
.values-list li h4 { font-size: 22px; letter-spacing: -0.012em; margin-bottom: 10px; }
.values-list li p { color: var(--ink-soft); margin: 0; }

/* Footer */
.site-footer {
  background: var(--surface);
  color: var(--ink-soft);
  padding: 56px 22px 40px;
  font-size: 12px;
  line-height: 1.5;
  border-top: 1px solid var(--rule);
}
.site-footer .footer-inner {
  max-width: var(--rail);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
@media (max-width: 720px) { .site-footer .footer-inner { grid-template-columns: 1fr; } }
.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.site-footer .footer-brand img { width: 28px; height: 28px; display: block; }
.site-footer .footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.site-footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); margin: 0 0 10px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.site-footer ul a { color: var(--ink-soft); text-decoration: none; }
.site-footer ul a:hover { color: var(--ink); text-decoration: underline; }
.site-footer .copyright {
  max-width: var(--rail);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
}

/* Inline SVG helpers */
.chev { width: 10px; height: 10px; display: inline-block; }

/* Utility */
.center { text-align: center; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 64px; }
.text-muted { color: var(--ink-muted); }
.divider { height: 1px; background: var(--rule); margin: 0; border: 0; }

/* Hero product tile variant for case-study quick links (home) */
.product-tile .tile-foot {
  padding: 0 40px 40px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-tile .tile-foot .chip { background: rgba(0,0,0,0.06); }
.product-tile.dark .tile-foot .chip { background: rgba(255,255,255,0.08); color: #f5f5f7; }

/* ---- Mobile polish ---- */

/* Tablet and below */
@media (max-width: 900px) {
  .hero { padding: 72px 20px 56px; }
  .hero.compact { padding: 56px 20px 40px; }
  .case-hero { padding: 72px 20px 24px; }
  .cta-band { padding: 80px 20px; }
  .two-col { gap: 40px; }
  .product-tile { min-height: auto; }
  .product-tile .tile-copy { padding: 36px 28px 20px; }
  .product-tile .tile-shot { margin: 20px 28px 0; }
  .product-tile .tile-foot { padding: 0 28px 28px; }
  .case-shot-full { padding: 0 16px; margin-top: 32px; }
  .values-list { gap: 14px; }
}

/* Phones */
@media (max-width: 720px) {
  html, body { overflow-x: hidden; }
  .site-nav { height: auto; min-height: 48px; }
  .site-nav .nav-inner { padding: 8px 16px; flex-wrap: wrap; row-gap: 6px; }
  .nav-brand .brand-word { font-size: 16px; }
  .nav-links {
    margin-left: 0;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { white-space: nowrap; font-size: 13px; }

  .hero { padding: 56px 18px 48px; }
  .hero.compact { padding: 44px 18px 36px; }
  .case-hero { padding: 56px 18px 16px; }
  .section, .section-tight { padding-left: 18px; padding-right: 18px; }
  .cta-band { padding: 72px 18px; }

  .display { font-size: clamp(32px, 10vw, 48px); letter-spacing: -0.02em; }
  .hero.compact .display { font-size: clamp(30px, 9vw, 44px); }
  .headline { font-size: clamp(26px, 7.4vw, 40px); }
  .subhead { font-size: 17px; line-height: 1.4; }
  .lede { font-size: 18px; }
  .eyebrow { font-size: 15px; margin-bottom: 10px; }

  .btn { padding: 11px 18px; font-size: 15px; }
  .btn-lg { padding: 12px 22px; font-size: 16px; }
  .ctas { gap: 12px; margin-top: 14px; }

  .card { padding: 28px 22px; min-height: auto; gap: 18px; }
  .card h3 { font-size: 24px; }

  .product-tile { min-height: auto; border-radius: 22px; }
  .product-tile .tile-copy { padding: 28px 22px 16px; }
  .product-tile h3 { font-size: 26px; }
  .product-tile p { font-size: 17px; }
  .product-tile .tile-shot { margin: 16px 22px 0; border-radius: 14px; }
  .product-tile .tile-foot { padding: 0 22px 22px; gap: 6px; }

  .company-card { padding: 28px 22px; min-height: auto; }
  .company-card h3 { font-size: 22px; }

  .workflow li { padding: 16px 18px 16px 60px; font-size: 17px; }
  .workflow li::before { left: 16px; top: 14px; width: 28px; height: 28px; font-size: 13px; }

  .feature-list li { font-size: 17px; padding-left: 24px; }
  .feature-list li::before { width: 12px; height: 12px; top: 8px; }

  .values-list li { padding: 22px; }
  .values-list li h4 { font-size: 20px; }

  .form { margin-top: 24px; gap: 14px; }
  .form input, .form textarea { padding: 12px 14px; font-size: 16px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; }

  .site-footer { padding: 40px 18px 32px; }
  .site-footer .footer-cols { gap: 28px; }
  .site-footer .footer-inner { gap: 28px; }

  .case-shot-full { padding: 0 12px; margin-top: 24px; }
  .case-shot-full .shot-frame { border-radius: 18px; }

  .two-col { gap: 28px; }
  .two-col .col-text h3 { font-size: 22px !important; }
  .two-col .col-media { border-radius: 14px; }

  .metrics { gap: 32px; }
  .metric .metric-num { font-size: clamp(44px, 12vw, 64px); }

  .chips { gap: 8px; }
  .chip { padding: 7px 12px; font-size: 13px; }
}

/* Small phones */
@media (max-width: 380px) {
  .section, .section-tight, .hero, .case-hero, .cta-band { padding-left: 14px; padding-right: 14px; }
  .display { font-size: clamp(28px, 10vw, 40px); }
  .headline { font-size: clamp(24px, 7vw, 34px); }
}
