/* ============================================================= */
/* DESIGN TOKENS */
/* ============================================================= */
:root {
  --orange: #D94F2A;
  --orange-dark: #A93A1D;
  --orange-soft: #FDF2EB;
  --orange-glow: rgba(217,79,42,0.18);
  --navy: #1E3A5F;
  --navy-dark: #0F2038;
  --paper: #F7F3EE;
  --paper-warm: #EDE5D8;
  --ink: #1A1A1A;
  --ink-mid: #4A4A4A;
  --ink-light: #8A8A8A;
  --rule: rgba(26,26,26,0.12);
  --rule-strong: rgba(26,26,26,0.22);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { overflow-x: hidden; }
section[id] { scroll-margin-top: 96px; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(217,79,42,0.15);
}
img, svg { max-width: 100%; }
img { height: auto; }

/* ============================================================= */
/* PAPER TEXTURE */
/* ============================================================= */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0 0.1  0 0 0 0.035 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
main, header, footer, nav, section { position: relative; z-index: 1; }

/* ============================================================= */
/* ACCESSIBILITY */
/* ============================================================= */
.skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  left: 16px; top: 16px; width: auto; height: auto;
  padding: 10px 14px; background: var(--paper); border-radius: 2px;
  z-index: 2000; outline: 2px solid var(--orange);
}

/* ============================================================= */
/* SCROLL PROGRESS BAR */
/* ============================================================= */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: rgba(26,26,26,0.06);
  z-index: 200; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--orange), #F5A623);
  box-shadow: 0 0 10px rgba(217,79,42,0.6);
  transform-origin: left;
  transition: width 0.08s linear;
}

/* ============================================================= */
/* TOP RIBBON */
/* ============================================================= */
.ribbon {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.ribbon::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(217,79,42,0.06) 50%, transparent 100%);
  animation: ribbonShimmer 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ribbonShimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.ribbon .container { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.ribbon a { color: inherit; text-decoration: none; transition: color 0.2s; }
.ribbon a:hover { color: var(--orange); }
.ribbon .pulse {
  display: inline-block; width: 6px; height: 6px;
  background: #5CD78B; border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
  box-shadow: 0 0 8px #5CD78B;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 8px #5CD78B; } 50% { opacity: 0.4; box-shadow: 0 0 2px #5CD78B; } }

.container {
  max-width: 1200px; margin: 0 auto;
  padding-left: max(32px, env(safe-area-inset-left));
  padding-right: max(32px, env(safe-area-inset-right));
}

/* ============================================================= */
/* HEADER / NAV */
/* ============================================================= */
header.site {
  background: rgba(247,243,238,0.92);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s var(--ease-in-out), padding 0.3s var(--ease-in-out);
}
header.site.scrolled {
  box-shadow: 0 4px 24px -8px rgba(15,32,56,0.12);
  padding: 12px 0;
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand-img {
  height: 44px; width: auto; display: block;
  transition: transform 0.3s var(--ease-out-expo);
}
.brand:hover .brand-img { transform: scale(1.04); }
header.site nav { position: relative; }
nav ul { list-style: none; display: flex; gap: 32px; align-items: center; margin: 0; padding: 0; }
nav ul li { list-style: none; }
nav a {
  text-decoration: none; color: var(--ink-mid); font-size: 14px; font-weight: 500;
  padding: 8px 0; position: relative; transition: color 0.2s;
  letter-spacing: 0.01em;
}
nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--orange);
  transition: right 0.3s var(--ease-out-expo);
}
nav a:hover::after, nav a.active::after { right: 0; }
nav a:hover, nav a.active { color: var(--orange); }
nav a.cta {
  background: var(--navy); color: white; padding: 10px 20px;
  border-radius: 2px; font-weight: 500;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}
nav a.cta::after { display: none; }
nav a.cta:hover {
  background: var(--orange); color: white;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(217,79,42,0.5);
}
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 10px; width: 42px; height: 42px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 4px 0;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s ease, background 0.2s;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: var(--orange); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: var(--orange); }

/* ============================================================= */
/* HERO */
/* ============================================================= */
.hero {
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}

/* Animated dot grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(30,58,95,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: gridDrift 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 32px 32px; }
}

/* Orange accent blob */
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(217,79,42,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: blobPulse 8s ease-in-out infinite;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.15) translate(-20px, 20px); }
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0;
  animation: fadeInLeft 0.8s var(--ease-out-expo) 0.2s forwards;
}
.hero-meta::before { content: ''; width: 48px; height: 1px; background: var(--orange); }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--navy-dark);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.35s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-weight: 500;
  font-variation-settings: "opsz" 144;
}
.hero-sub {
  font-size: 19px; color: var(--ink-mid);
  max-width: 560px; line-height: 1.55;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.5s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s var(--ease-out-expo) 0.65s forwards;
}
.hero-side {
  border-left: 1px solid var(--rule);
  padding-left: 48px; padding-bottom: 8px;
  opacity: 0;
  animation: fadeInRight 0.9s var(--ease-out-expo) 0.5s forwards;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--navy-dark); color: white;
  text-decoration: none; font-weight: 500; font-size: 15px;
  transition: all 0.3s var(--ease-out-expo);
  border: none; cursor: pointer; font-family: inherit;
  position: relative; overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange);
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out-expo);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px -12px rgba(217,79,42,0.45); }
.btn.ghost {
  background: transparent; color: var(--navy-dark);
  border: 1px solid var(--rule-strong);
}
.btn.ghost::before { background: var(--navy-dark); }
.btn.ghost:hover { color: white; border-color: var(--navy-dark); }
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out-expo); }
.btn:hover svg { transform: translateX(4px); }
a:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.ledger { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-mid); }
.ledger-row {
  display: flex; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px dashed var(--rule);
  transition: background 0.2s;
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row:hover { background: rgba(217,79,42,0.03); }
.ledger-key { color: var(--ink-light); letter-spacing: 0.05em; text-transform: uppercase; font-size: 10px; }
.ledger-val { color: var(--navy-dark); font-weight: 500; text-align: right; }

.serial {
  position: absolute; top: 40px; right: -20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 140px; font-weight: 400;
  color: rgba(30,58,95,0.04);
  pointer-events: none; letter-spacing: -0.05em;
}

/* ============================================================= */
/* HERO DECORATIONS */
/* ============================================================= */
.hero-decor {
  position: absolute;
  width: 56px; height: 56px;
  color: var(--orange); opacity: 0.7;
  pointer-events: none; z-index: 1;
  animation: decorFade 1.2s ease 0.3s both;
}
.hero-decor-tl { top: 24px; left: 24px; }
.hero-decor-tr { top: 24px; right: 24px; }
.hero-decor-br { right: 24px; bottom: 24px; }
@keyframes decorFade { from { opacity: 0; transform: scale(0.5) rotate(-10deg); } to { opacity: 0.7; transform: scale(1) rotate(0deg); } }

.hero-compass {
  position: absolute; right: 6%; bottom: -40px;
  width: 180px; height: 180px;
  color: var(--navy-dark); opacity: 0.08;
  pointer-events: none; z-index: 1;
}
.compass-rose {
  transform-origin: 60px 60px; transform-box: fill-box;
  animation: compassSpin 60s linear infinite;
}
@keyframes compassSpin { to { transform: rotate(360deg); } }

.hero-ticks {
  position: absolute; left: 0; right: 0; bottom: 18px;
  width: 100%; height: 28px;
  color: var(--navy-dark); opacity: 0.12;
  pointer-events: none; z-index: 1;
}

/* ============================================================= */
/* BASE ANIMATION KEYFRAMES */
/* ============================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================= */
/* REVEAL ON SCROLL */
/* ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0; transform: scale(0.93);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.stagger-children.in > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.stagger-children.in > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
.stagger-children.in > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.2s; }
.stagger-children.in > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.3s; }
.stagger-children.in > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.4s; }

/* ============================================================= */
/* STAGGER (hero page load) */
/* ============================================================= */
.stagger > * { opacity: 0; animation: slideUp 0.7s ease forwards; }
.stagger > *:nth-child(1) { animation-delay: 0.05s; }
.stagger > *:nth-child(2) { animation-delay: 0.15s; }
.stagger > *:nth-child(3) { animation-delay: 0.25s; }
.stagger > *:nth-child(4) { animation-delay: 0.35s; }
.stagger > *:nth-child(5) { animation-delay: 0.45s; }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }

/* ============================================================= */
/* SERVICE CARD ICONS */
/* ============================================================= */
.service-icon {
  width: 72px; height: 54px; color: var(--navy-dark);
  margin-bottom: 20px; display: block;
  transition: color 0.3s, transform 0.4s var(--ease-out-expo);
}
.service:hover .service-icon { color: var(--orange); transform: translateY(-3px) scale(1.05); }
.service-icon .si-draw {
  stroke-dasharray: 260; stroke-dashoffset: 260;
  transition: stroke-dashoffset 0.9s ease;
}
.service:hover .si-draw, .service-icon.in .si-draw { stroke-dashoffset: 0; }
.service-icon .si-wheel { transform-origin: center; transform-box: fill-box; }
.service:hover .si-wheel { animation: wheelRoll 1.2s linear infinite; }
@keyframes wheelRoll { to { transform: rotate(360deg); } }
.service-icon .si-check {
  stroke-dasharray: 22; stroke-dashoffset: 22;
  transition: stroke-dashoffset 0.4s ease 0.5s;
}
.service:hover .si-check, .service-icon.in .si-check { stroke-dashoffset: 0; }
.service-icon .si-seal { transform-origin: 44px 38px; transform-box: view-box; }
.service:hover .si-seal { animation: sealSpin 6s linear infinite; }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.service-icon .si-pin { transform-origin: 42px 16px; transform-box: view-box; }
.service:hover .si-pin { animation: pinFloat 1.4s ease-in-out infinite; }
@keyframes pinFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-2px); } }
.service-icon .si-lines { stroke-linecap: round; }

/* ============================================================= */
/* STATS STRIP */
/* ============================================================= */
.stats {
  background: var(--navy-dark); color: white;
  padding: 64px 0; position: relative; overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  animation: gridDrift 30s linear infinite;
}
/* Scan line effect */
.stats::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(217,79,42,0.5), transparent);
  animation: scanLine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; position: relative; z-index: 2;
}
.stat-item {
  border-left: 2px solid var(--orange); padding-left: 20px;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute; bottom: -4px; left: -2px;
  width: 2px; height: 0;
  background: rgba(217,79,42,0.3);
  transition: height 1s var(--ease-out-expo);
}
.stat-item.counted::after { height: calc(100% + 8px); }
.stat-num {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 56px; line-height: 1; color: white;
  letter-spacing: -0.03em;
}
.stat-num small { font-size: 24px; font-weight: 500; color: var(--orange); margin-left: 4px; }
.stat-num .count { font-variant-numeric: tabular-nums; }
.stat-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-top: 12px;
}

/* ============================================================= */
/* SECTION HEADING */
/* ============================================================= */
section.pane { padding: 112px 0; border-bottom: 1px solid var(--rule); }
.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--orange); }
.section-label .num { color: var(--ink-light); }
h2.section-title {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(36px, 5vw, 56px); line-height: 1;
  letter-spacing: -0.025em; color: var(--navy-dark);
  margin-bottom: 24px; max-width: 780px;
}
h2.section-title em { font-style: italic; font-weight: 500; color: var(--orange); }
.section-intro { font-size: 18px; color: var(--ink-mid); max-width: 640px; margin-bottom: 56px; }

/* ============================================================= */
/* SERVICES */
/* ============================================================= */
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule);
}
.service {
  padding: 40px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: white; position: relative;
  transition: background 0.35s var(--ease-in-out), transform 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
  cursor: default; overflow: hidden;
}
/* Animated corner accent */
.service::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--orange);
  transition: height 0.4s var(--ease-out-expo);
}
.service:hover::before { height: 100%; }
/* Bottom orange sweep */
.service::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(217,79,42,0.04), transparent);
  transition: height 0.4s var(--ease-out-expo);
  pointer-events: none;
}
.service:hover::after { height: 100%; }
.service:hover { background: var(--orange-soft); transform: translateY(-3px); box-shadow: 0 20px 48px -24px rgba(15,32,56,0.35); }
.service-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--orange); letter-spacing: 0.15em;
  margin-bottom: 20px; font-weight: 500;
  transition: letter-spacing 0.3s;
}
.service:hover .service-num { letter-spacing: 0.22em; }
.service h3 {
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 28px;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--navy-dark);
  margin-bottom: 16px; transition: color 0.25s;
}
.service:hover h3 { color: var(--orange-dark); }
.service p { font-size: 15px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 20px; }
.service ul { list-style: none; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-mid); }
.service ul li {
  padding: 6px 0; border-top: 1px dashed var(--rule);
  display: flex; gap: 10px;
  transition: color 0.2s, padding-left 0.2s;
}
.service:hover ul li { padding-left: 4px; }
.service ul li::before { content: '→'; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.service:hover ul li::before { transform: translateX(2px); }

/* ============================================================= */
/* DIFFERENTIATORS */
/* ============================================================= */
.diff-list {
  list-style: none; margin: 0; padding: 0;
  max-width: 720px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--ink-mid);
}
.diff-list li {
  padding: 14px 0 14px 0; border-top: 1px dashed var(--rule);
  display: flex; gap: 12px; align-items: flex-start;
  transition: background 0.2s, padding-left 0.3s var(--ease-out-expo);
}
.diff-list li:hover { padding-left: 8px; }
.diff-list li::before { content: '→'; color: var(--orange); flex-shrink: 0; transition: transform 0.3s; }
.diff-list li:hover::before { transform: translateX(4px); }
.diff-list strong { font-family: 'Inter', sans-serif; font-weight: 600; color: var(--navy-dark); }
.diff-list li:last-child { border-bottom: 1px dashed var(--rule); }

/* ============================================================= */
/* PROCESS FLOW */
/* ============================================================= */
.process {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 48px; position: relative;
}
.process-step {
  padding: 32px 20px 32px 28px;
  border-left: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s var(--ease-in-out);
  cursor: default;
}
.process-step::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.process-step:hover::before { opacity: 1; }
.process-step > * { position: relative; z-index: 2; }
.process-step:last-child { border-right: 1px solid var(--rule); }
.process-flow {
  position: absolute; left: 0; right: 0; top: 58px;
  width: 100%; height: 40px; z-index: 1;
  pointer-events: none; overflow: visible;
}
.process-flow .pf-dash {
  stroke-dashoffset: 0;
  animation: processFlow 2.4s linear infinite;
}
@keyframes processFlow { to { stroke-dashoffset: -48; } }
.process-flow .pf-dot { filter: drop-shadow(0 0 8px rgba(217,79,42,0.8)); }
@media (max-width: 900px) { .process-flow { display: none; } }
.step-num {
  font-family: 'Fraunces', serif; font-weight: 900; font-size: 48px;
  color: var(--orange); line-height: 1; margin-bottom: 12px; letter-spacing: -0.04em;
  transition: transform 0.3s var(--ease-out-expo);
}
.process-step:hover .step-num { transform: scale(1.08) translateX(3px); }
.step-title { font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; color: var(--navy-dark); margin-bottom: 8px; line-height: 1.2; }
.step-desc { font-size: 13px; color: var(--ink-mid); line-height: 1.55; }

/* ============================================================= */
/* CLIENTS */
/* ============================================================= */
.client-table-wrap {
  margin-top: 24px;
  border-top: 1px solid var(--rule-strong); border-left: 1px solid var(--rule-strong);
  background: white; overflow-x: auto;
}
.client-table {
  width: 100%; border-collapse: collapse;
  min-width: 560px; font-size: 15px;
}
.client-table th, .client-table td {
  padding: 18px 22px;
  border-right: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong);
  vertical-align: top;
}
.client-table th {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-light); background: var(--paper-warm);
  text-align: left; font-weight: 500;
}
.client-table tbody tr {
  transition: background 0.2s;
}
.client-table tbody tr:hover { background: var(--orange-soft); }
.client-table td:first-child {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
  color: var(--navy-dark); max-width: 280px;
  transition: color 0.2s;
}
.client-table tbody tr:hover td:first-child { color: var(--orange-dark); }
.client-table td:last-child { color: var(--ink-mid); line-height: 1.55; }

/* Testimonial-style featured deal */
.featured-deal {
  background: var(--paper-warm); padding: 56px;
  margin-top: 48px; border-left: 4px solid var(--orange);
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s;
}
.featured-deal:hover { box-shadow: 0 16px 48px -24px rgba(15,32,56,0.15); }
.featured-deal::before {
  content: '"';
  position: absolute; top: -12px; left: 48px;
  font-family: 'Fraunces', serif; font-size: 180px;
  color: var(--orange); line-height: 1; opacity: 0.2;
  transition: opacity 0.3s;
}
.featured-deal:hover::before { opacity: 0.3; }
.featured-deal blockquote {
  font-family: 'Fraunces', serif; font-size: 24px; line-height: 1.4;
  color: var(--navy-dark); font-weight: 400; font-style: italic;
  max-width: 800px; margin-bottom: 24px; position: relative; z-index: 2;
}
.featured-deal cite {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mid); font-style: normal;
}

/* ============================================================= */
/* ABOUT */
/* ============================================================= */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start; }
.about-copy p { font-size: 17px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 20px; }
.about-copy p strong { color: var(--navy-dark); font-weight: 600; }
.about-copy p:first-of-type::first-letter {
  font-family: 'Fraunces', serif; font-size: 72px; font-weight: 900;
  color: var(--orange); float: left; line-height: 0.85; margin: 6px 12px 0 0;
}
.credentials {
  background: var(--navy-dark); color: white; padding: 40px;
  position: relative; overflow: hidden;
}
.credentials::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(217,79,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.credentials h3 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 24px;
}
.cred-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  transition: background 0.2s;
}
.cred-row:hover { background: rgba(255,255,255,0.03); margin: 0 -8px; padding-left: 8px; padding-right: 8px; }
.cred-row:last-child { border-bottom: none; }
.cred-key { color: rgba(255,255,255,0.5); flex-shrink: 0; }
.cred-val { color: white; font-weight: 500; text-align: right; }

.credentials-grid .cred-cols {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}
.credentials-grid .cred-row-wide { grid-column: 1 / -1; }

/* ============================================================= */
/* LEGAL SEAL */
/* ============================================================= */
#legal { position: relative; overflow: hidden; }
.legal-seal {
  position: absolute; right: -60px; top: 60px;
  width: 340px; height: 340px;
  color: var(--navy-dark); opacity: 0.06;
  pointer-events: none; z-index: 0;
}
.legal-seal .seal-rotate {
  transform-origin: 100px 100px; transform-box: view-box;
  animation: sealSpin 80s linear infinite;
}
#legal .container { position: relative; z-index: 1; }

/* ============================================================= */
/* CTA BAND */
/* ============================================================= */
.cta-band {
  padding: 80px 0; background: var(--navy-dark); color: white;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(217,79,42,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band-inner {
  display: flex; justify-content: space-between;
  align-items: center; gap: 48px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-band h2 {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; color: white; max-width: 680px;
  margin: 0 0 16px;
}
.cta-band p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 560px; margin: 0; line-height: 1.55; }
.cta-band .btn { background: var(--orange); }
.cta-band .btn::before { background: white; }
.cta-band .btn:hover { color: var(--navy-dark); }

/* ============================================================= */
/* CONTACT PIN */
/* ============================================================= */
.contact-pin {
  width: 56px; height: 70px; color: var(--orange);
  margin-bottom: 20px; display: block;
}
.contact-pin .pin-body {
  transform-origin: 40px 78px; transform-box: view-box;
  animation: pinBounce 2.4s ease-in-out infinite;
}
@keyframes pinBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.contact-pin .pin-ripple ellipse {
  transform-origin: 40px 92px; transform-box: view-box;
  opacity: 0; animation: pinRipple 2.4s ease-out infinite;
}
.contact-pin .pin-ripple ellipse:nth-child(2) { animation-delay: 0.3s; }
.contact-pin .pin-ripple ellipse:nth-child(3) { animation-delay: 0.6s; }
@keyframes pinRipple { 0% { opacity: 0.7; transform: scale(0.5); } 100% { opacity: 0; transform: scale(1.4); } }

/* ============================================================= */
/* CONTACT SECTION */
/* ============================================================= */
#contact { background: var(--navy); color: white; border-bottom: none; position: relative; overflow: hidden; }
#contact::before {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,79,42,0.07) 0%, transparent 70%);
  pointer-events: none;
  animation: blobPulse 10s ease-in-out infinite;
}
#contact.pane { padding-top: 96px; padding-bottom: 112px; }
#contact h2.section-title { color: white; }
#contact .section-label { color: var(--orange); }
#contact .section-intro { color: rgba(255,255,255,0.7); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info h3 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--orange); margin: 32px 0 12px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-family: 'Fraunces', serif; font-size: 22px; color: white; line-height: 1.3; margin-bottom: 8px; font-weight: 500; }
.contact-info a { color: white; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.3); transition: color 0.2s, border-color 0.2s; }
.contact-info a:hover { color: var(--orange); border-bottom-color: var(--orange); }

.contact-form {
  background: rgba(255,255,255,0.04); padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow 0.3s;
}
.contact-form:focus-within { box-shadow: 0 0 0 1px rgba(217,79,42,0.2), 0 24px 56px -24px rgba(0,0,0,0.3); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.contact-form label {
  display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 8px;
  transition: color 0.2s;
}
.contact-form .field:focus-within label { color: var(--orange); }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  color: white; padding: 10px 0;
  font-family: 'Inter', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-bottom-color: var(--orange);
  background: rgba(217,79,42,0.04);
}
.contact-form textarea { resize: vertical; min-height: 100px; margin-bottom: 24px; }
.contact-form select option { background: var(--navy-dark); color: white; }
.contact-form button {
  width: 100%; padding: 16px; background: var(--orange); color: white;
  border: none; font-family: inherit; font-weight: 500; font-size: 15px;
  letter-spacing: 0.02em; cursor: pointer;
  position: relative; overflow: hidden;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.contact-form button::before {
  content: '';
  position: absolute; inset: 0;
  background: white;
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out-expo);
  z-index: 0;
}
.contact-form button:hover::before { transform: translateX(0); }
.contact-form button:hover { color: var(--navy-dark); transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(217,79,42,0.4); }
.contact-form button span { position: relative; z-index: 1; }

/* ============================================================= */
/* FOOTER */
/* ============================================================= */
footer.site {
  background: #0a1526; color: rgba(255,255,255,0.6);
  padding: 48px 0 32px; font-size: 13px;
  position: relative; overflow: hidden;
}
footer.site::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217,79,42,0.4), transparent);
}
.foot-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px;
}
.foot-logo { height: 40px; width: auto; opacity: 0.85; transition: opacity 0.2s; }
.foot-logo:hover { opacity: 1; }
.foot-brand { font-family: 'Fraunces', serif; font-weight: 900; font-size: 18px; color: white; letter-spacing: -0.01em; }
.foot-legal { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
}
.foot-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.2); transition: color 0.2s, border-color 0.2s; }
.foot-bottom a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ============================================================= */
/* REDUCED MOTION */
/* ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .stagger-children > * { opacity: 1; transform: none; }
  .hero-meta, .hero h1, .hero-sub, .hero-actions, .hero-side { opacity: 1; animation: none; }
  .service-icon .si-draw { stroke-dashoffset: 0; }
  .service-icon .si-check { stroke-dashoffset: 0; }
}

/* ============================================================= */
/* TABLET (768px – 1024px) */
/* ============================================================= */
@media (max-width: 1024px) and (min-width: 901px) {
  .process { grid-template-columns: repeat(3, 1fr); }
  .process-step:nth-child(3) { border-right: 1px solid var(--rule); }
  .process-step:nth-child(4),
  .process-step:nth-child(5) { border-top: 1px solid var(--rule); }
  .process-step:nth-child(5) { border-right: 1px solid var(--rule); }
  .hero-grid { gap: 40px; }
  .hero-side { padding-left: 32px; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  .credentials-grid .cred-cols { grid-template-columns: 1fr; }
}

/* ============================================================= */
/* MOBILE / SMALL TABLET (≤ 900px) */
/* ============================================================= */
@media (max-width: 900px) {
  .container {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
  section[id] { scroll-margin-top: 72px; }
  header.site { padding: 12px 0; }
  .brand-img { height: 38px; }
  header.site nav { position: static; }
  nav ul {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(247,243,238,0.98);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--rule);
    padding: 16px 20px 24px; gap: 4px;
    box-shadow: 0 16px 40px -16px rgba(15,32,56,0.2);
    transform: translateY(-8px); opacity: 0;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s ease;
    pointer-events: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  nav ul.open { display: flex; transform: translateY(0); opacity: 1; pointer-events: auto; }
  nav ul li { width: 100%; }
  nav a { display: block; width: 100%; padding: 14px 4px; font-size: 16px; border-bottom: 1px dashed var(--rule); }
  nav a::after { display: none; }
  nav ul li:last-child a { border-bottom: none; margin-top: 8px; }
  nav a.cta { display: inline-block; width: auto; padding: 12px 22px; }
  .hamburger { display: block; padding: 10px; margin-right: -10px; }
  .ribbon { padding: 7px 0; }
  .ribbon .container { justify-content: center; font-size: 10px; text-align: center; gap: 10px; }
  .hero { padding: 48px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-side { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 28px; }
  .hero-decor { width: 36px; height: 36px; }
  .hero-decor-tl { top: 14px; left: 14px; }
  .hero-decor-tr { top: 14px; right: 14px; }
  .hero-decor-br { right: 14px; bottom: 14px; }
  .hero-ticks { display: none; }
  .hero-compass { width: 120px; height: 120px; right: -10px; bottom: -20px; opacity: 0.05; }
  .serial { font-size: 96px; top: 16px; right: -10px; }
  .stats { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .stat-num { font-size: 44px; }
  section.pane { padding: 64px 0; }
  h2.section-title { font-size: clamp(28px, 6.5vw, 40px); }
  .section-intro { font-size: 16px; margin-bottom: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .credentials { padding: 32px 24px; }
  .credentials-grid .cred-cols { grid-template-columns: 1fr; column-gap: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 32px 24px; }
  .service h3 { font-size: 24px; }
  .diff-list li { font-size: 13px; }
  .client-table { min-width: 0; font-size: 14px; }
  .client-table th, .client-table td { padding: 14px 16px; }
  .client-table td:first-child { font-size: 15px; }
  .featured-deal { padding: 36px 26px; margin-top: 32px; }
  .featured-deal::before { font-size: 120px; left: 24px; top: -4px; }
  .featured-deal blockquote { font-size: 20px; }
  /* Process: vertical timeline on mobile */
  .process { grid-template-columns: 1fr; margin-top: 32px; }
  .process-step {
    border-left: 3px solid var(--orange); border-top: none; border-right: none;
    padding: 24px 20px 24px 28px;
  }
  .process-step:last-child { border-right: none; border-bottom: none; }
  .process-step::after {
    content: '';
    position: absolute; bottom: 0; left: -3px;
    width: 3px; height: 0;
    background: var(--orange-dark);
    transition: height 0.4s var(--ease-out-expo) 0.2s;
  }
  .process-step.in::after { height: 100%; }
  .step-num { font-size: 36px; margin-bottom: 6px; }
  .step-title { font-size: 17px; }
  .legal-seal { width: 220px; height: 220px; right: -40px; top: 20px; opacity: 0.05; }
  .cta-band { padding: 56px 0; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; gap: 24px; }
  .cta-band .btn { width: 100%; justify-content: center; }
  #contact.pane { padding-top: 64px; padding-bottom: 72px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 22px; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 16px; }
  .contact-info p { font-size: 20px; }
  footer.site { padding: 36px 0 calc(24px + env(safe-area-inset-bottom)); }
}

/* ============================================================= */
/* SMALL PHONES (≤ 560px) */
/* ============================================================= */
@media (max-width: 560px) {
  .container { padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); }
  .brand-img { height: 34px; }
  header.site { padding: 10px 0; }
  .hero { padding: 36px 0 52px; }
  .hero h1 { font-size: 40px; letter-spacing: -0.03em; margin-bottom: 20px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-meta { font-size: 10px; margin-bottom: 20px; }
  .hero-meta::before { width: 28px; }
  .serial { font-size: 72px; top: 12px; right: -6px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 14px 22px; }
  .hero-side { padding-top: 24px; }
  .ledger-row { padding: 12px 0; gap: 12px; }
  .ledger-val { font-size: 11px; }
  .stats { padding: 40px 0; }
  .stats-grid { gap: 28px 20px; }
  .stat-num { font-size: 40px; }
  .stat-num small { font-size: 18px; }
  .stat-label { font-size: 10px; margin-top: 8px; }
  .stat-item { padding-left: 14px; }
  section.pane { padding: 56px 0; }
  h2.section-title { margin-bottom: 14px; }
  .section-intro { margin-bottom: 32px; }
  .section-label { font-size: 10px; }
  .about-copy p { font-size: 16px; }
  .about-copy p:first-of-type::first-letter { font-size: 56px; margin: 4px 10px 0 0; }
  .service { padding: 28px 22px; }
  .service-icon { width: 60px; height: 45px; margin-bottom: 16px; }
  .client-table th, .client-table td { padding: 12px 14px; font-size: 13px; }
  .client-table td:first-child { font-size: 14px; }
  .featured-deal { padding: 28px 22px; }
  .featured-deal blockquote { font-size: 17px; }
  .featured-deal::before { font-size: 96px; left: 18px; top: 0; }
  .step-num { font-size: 32px; }
  .step-title { font-size: 16px; }
  .step-desc { font-size: 13px; }
  .legal-seal { width: 180px; height: 180px; right: -40px; top: 12px; opacity: 0.04; }
  .cta-band h2 { font-size: 26px; }
  #contact.pane { padding-top: 56px; padding-bottom: 64px; }
  .contact-info p { font-size: 18px; }
  .contact-pin { width: 48px; height: 60px; margin-bottom: 14px; }
  .contact-form { padding: 24px 20px; }
}

/* ============================================================= */
/* TINY PHONES (≤ 380px) */
/* ============================================================= */
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .ribbon .container span:last-child { display: none; }
  .hero h1 { font-size: 36px; }
  h2.section-title { font-size: 26px; }
  .cta-band h2 { font-size: 22px; }
}

/* ============================================================= */
/* LANDSCAPE PHONES */
/* ============================================================= */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 24px 0 32px; }
  section.pane { padding: 40px 0; }
  .stats { padding: 32px 0; }
}
