/* Theme */
:root,
[data-theme="light"] {
  --bg: #f5f4f1;
  --bgElevated: #ffffff;
  --text: #12151a;
  --textMuted: #5c6573;
  --border: rgba(18, 21, 26, 0.1);
  --accent: #1a365d;
  --accentHover: #234876;
  --accentGlow: rgba(26, 54, 93, 0.35);
  --accentMuted: rgba(26, 54, 93, 0.08);
  --gold: #9a7b2f;
  --card: rgba(255, 255, 255, 0.72);
  --glassBorder: rgba(255, 255, 255, 0.6);
  --mesh1: rgba(26, 54, 93, 0.12);
  --mesh2: rgba(154, 123, 47, 0.1);
  --focus: #1a365d;
  --shadow: 0 2px 8px rgba(18, 21, 26, 0.04);
  --shadowMd: 0 12px 40px rgba(18, 21, 26, 0.1);
  --headerBg: rgba(245, 244, 241, 0.85);
  --contactBarBg: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
  --bg: #0a0c0f;
  --bgElevated: #141820;
  --text: #eef0f3;
  --textMuted: #98a2b3;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #8eb4e0;
  --accentHover: #a8c8eb;
  --accentGlow: rgba(142, 180, 224, 0.25);
  --accentMuted: rgba(142, 180, 224, 0.1);
  --gold: #d4b76a;
  --card: rgba(20, 24, 32, 0.65);
  --glassBorder: rgba(255, 255, 255, 0.08);
  --mesh1: rgba(142, 180, 224, 0.15);
  --mesh2: rgba(212, 183, 106, 0.08);
  --focus: #8eb4e0;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadowMd: 0 16px 48px rgba(0, 0, 0, 0.45);
  --headerBg: rgba(10, 12, 15, 0.88);
  --contactBarBg: rgba(20, 24, 32, 0.92);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body.hasContactBar { padding-bottom: 4rem; }

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accentHover); }

.skipLink {
  position: absolute; top: -100%; left: 1rem; z-index: 1000;
  padding: 0.5rem 1rem; background: var(--accent); color: #fff;
  border-radius: 6px; text-decoration: none;
}
.skipLink:focus { top: 1rem; outline: 2px solid var(--focus); outline-offset: 2px; }

/* Glass */
.glass {
  background: var(--card);
  border: 1px solid var(--glassBorder);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow), var(--shadowMd);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.isVisible { opacity: 1; transform: translateY(0); }

/* Header */
.siteHeader {
  position: sticky; top: 0; z-index: 100;
  background: var(--headerBg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.siteHeaderInner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; max-width: 1140px; margin: 0 auto; padding: 0.75rem 1.5rem;
}

.siteBrand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.125rem; font-weight: 700;
  color: var(--accent); text-decoration: none;
}

.siteNav { display: none; }
.siteNav.isOpen {
  display: block; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--headerBg); border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
}

.siteNavList { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }

.siteNavLink {
  display: block; padding: 0.5rem 0; color: var(--textMuted);
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: color 0.2s;
}
.siteNavLink:hover, .siteNavLink.isActive { color: var(--accent); }

.siteControls { display: flex; align-items: center; gap: 0.5rem; }

.langToggle { display: flex; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }

.langBtn {
  padding: 0.35rem 0.65rem; font-size: 0.75rem; font-weight: 600;
  font-family: inherit; border: none; background: transparent;
  color: var(--textMuted); cursor: pointer;
}
.langBtn.isActive { background: var(--accent); color: #fff; }

.themeBtn, .menuBtn {
  display: flex; align-items: center; justify-content: center;
  height: 2.25rem; padding: 0 0.75rem;
  border: 1px solid var(--border); border-radius: 8px;
  background: transparent; color: var(--text); cursor: pointer;
  font-family: inherit; font-size: 0.875rem;
}

.themeBtn { width: 2.25rem; padding: 0; }
[data-theme="light"] .themeIconMoon,
[data-theme="dark"] .themeIconSun { display: none; }

.langBtn:focus-visible, .themeBtn:focus-visible, .menuBtn:focus-visible,
.btn:focus-visible, .copyBtn:focus-visible, .showcaseTab:focus-visible {
  outline: 2px solid var(--focus); outline-offset: 2px;
}

@media (min-width: 900px) {
  .siteNav { display: block; position: static; background: transparent; border: none; padding: 0; }
  .siteNav.isOpen { position: static; padding: 0; border: none; }
  .siteNavList { flex-direction: row; gap: 1.5rem; }
  .siteNavLink { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; }
  .menuBtn { display: none; }
}

/* Contact bar */
.contactBar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--contactBarBg); border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transform: translateY(100%); transition: transform 0.35s ease;
}
.contactBar.isVisible { transform: translateY(0); }
.contactBarInner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; max-width: 1140px; margin: 0 auto; padding: 0.75rem 1.5rem;
}
.contactBarLink { font-size: 0.875rem; font-weight: 500; text-decoration: none; }

/* Layout */
.pageWrap { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 4rem 0; }
.sectionLabel {
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.sectionTitle { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 0.5rem; }
.sectionLead { font-size: 1.0625rem; color: var(--textMuted); max-width: 70rem; margin-bottom: 2rem; }

/* Hero */
.hero {
  position: relative; padding: 4rem 0 3rem; overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.heroMesh {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, var(--mesh1), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 60%, var(--mesh2), transparent 55%);
  transition: transform 0.15s ease-out;
  pointer-events: none;
}

.heroInner { position: relative; z-index: 1; }

.heroGrid {
  display: grid; gap: 2rem; align-items: center;
}

@media (min-width: 900px) {
  .heroGrid { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
}

.heroRole {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}

.heroName {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1rem; color: var(--textMuted); margin: 0 0 0.75rem;
}

.heroHeadline {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  margin-bottom: 1rem; max-width: 18ch;
}

.heroSub { font-size: 1.0625rem; color: var(--textMuted); max-width: 70ch; margin-bottom: 0.75rem; }
.heroAvail { font-size: 0.9375rem; color: var(--textMuted); margin-bottom: 1.5rem; }

.heroCard {
  padding: 1.5rem; border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.heroCard:hover { transform: translateY(-4px); }

.heroCardLabel { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--textMuted); margin: 0 0 0.35rem; }
.heroCardEmail { display: block; font-size: 0.9375rem; font-weight: 600; word-break: break-all; margin-bottom: 0.5rem; text-decoration: none; }
.heroCardLinks { display: flex; gap: 1rem; margin-top: 1rem; font-size: 0.875rem; }
.heroCardLinks a { text-decoration: none; font-weight: 500; }

/* Buttons */
.heroActions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; font-size: 0.9375rem; font-weight: 600;
  font-family: inherit; border-radius: 10px; text-decoration: none;
  border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btnPrimary { background: var(--accent); color: #fff; }
.btnPrimary:hover { color: #fff; background: var(--accentHover); }

.btnGlow:hover { box-shadow: 0 0 24px var(--accentGlow); }

.btnSecondary {
  background: transparent; color: var(--accent);
  border: 1px solid var(--border);
}
.btnSecondary:hover { border-color: var(--accent); color: var(--accentHover); }

.copyBtn {
  padding: 0.3rem 0.6rem; font-size: 0.75rem; font-weight: 600;
  font-family: inherit; border: 1px solid var(--border); border-radius: 6px;
  background: var(--bgElevated); color: var(--textMuted); cursor: pointer;
  margin-left: 0.35rem;
}
.copyBtn:hover { color: var(--accent); border-color: var(--accent); }

/* Stats */
.statBand {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; padding: 2.5rem 1.5rem;
  max-width: 1140px; margin: 0 auto;
}

@media (min-width: 640px) {
  .statBand { grid-template-columns: repeat(3, 1fr); }
}

.statCard {
  padding: 1.5rem; border-radius: 14px; text-align: center;
  transition: transform 0.3s ease;
}
.statCard:hover { transform: translateY(-3px); }

.statValue {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.5rem; font-weight: 700; color: var(--accent); line-height: 1;
  margin-bottom: 0.35rem;
}
.statLabel { font-size: 0.8125rem; color: var(--textMuted); line-height: 1.35; }

/* Features — 6 equal cards (3×2) */
.featureGrid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
}

@media (min-width: 900px) {
  .featureGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featureCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 11.5rem;
  padding: 1.35rem;
  border-radius: 14px;
  transition: transform 0.3s ease, border-color 0.3s;
}

.featureCard:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.featureCard h3 {
  font-size: 1rem;
  margin: 0.75rem 0 0.35rem;
}

.featureCard p {
  font-size: 0.9rem;
  color: var(--textMuted);
  margin: 0;
  flex: 1;
}

.iconWrap {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 10px;
  background: var(--accentMuted); color: var(--accent);
}
.iconWrap svg { width: 1.25rem; height: 1.25rem; }

/* Problem / Solution — risk panel spans 2 rows */
.psLayout {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .psLayout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: stretch;
  }

  .psProblem {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

.psProblem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 14px;
  border-left: 3px solid var(--gold);
  min-height: 100%;
}

.psRiskVisual {
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.psRiskIcon {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  padding: 0.85rem 0.65rem;
  background: linear-gradient(145deg, var(--accentMuted), transparent);
  border: 1px solid var(--border);
}

.psRiskIcon svg {
  width: 100%;
  height: auto;
  display: block;
  color: var(--accent);
  overflow: visible;
}

/* Survey → warning → corrupted data storyboard */
.psRiskIcon .riskSurveyGood {
  animation: riskFloatGood 4s ease-in-out infinite;
}

.psRiskIcon .riskSurveyBad {
  animation: riskShakeBad 3.5s ease-in-out infinite;
}

.psRiskIcon .riskBadDoc {
  stroke: var(--gold);
  fill: rgba(154, 123, 47, 0.06);
}

[data-theme="dark"] .psRiskIcon .riskBadDoc {
  fill: rgba(212, 183, 106, 0.08);
}

.psRiskIcon .riskBadLine {
  stroke: var(--gold);
  opacity: 0.75;
}

.psRiskIcon .riskBadLine1 {
  animation: riskSkewLine1 2.8s ease-in-out infinite;
}

.psRiskIcon .riskBadLine2 {
  animation: riskSkewLine2 2.8s ease-in-out infinite 0.2s;
}

.psRiskIcon .riskScaleError {
  stroke: #c53030;
  fill: rgba(197, 48, 48, 0.15);
  animation: riskScaleBlink 1.6s ease-in-out infinite;
}

[data-theme="dark"] .psRiskIcon .riskScaleError {
  stroke: #fc8181;
  fill: rgba(252, 129, 129, 0.12);
}

.psRiskIcon .riskFlowPath {
  animation: riskFlowDash 1.2s linear infinite;
}

.psRiskIcon .riskFlowPath2 {
  animation: riskFlowDash 1.2s linear infinite reverse;
  animation-delay: 0.3s;
}

.psRiskIcon .riskWarnCircle {
  fill: rgba(197, 48, 48, 0.12);
  stroke: #c53030;
  stroke-width: 1.2;
  animation: riskWarnPulse 2s ease-in-out infinite;
}

.psRiskIcon .riskWarnMark {
  stroke: #c53030;
}

[data-theme="dark"] .psRiskIcon .riskWarnCircle {
  fill: rgba(252, 129, 129, 0.1);
  stroke: #fc8181;
}

[data-theme="dark"] .psRiskIcon .riskWarnMark {
  stroke: #fc8181;
}

.psRiskIcon .riskWarnBadge {
  animation: riskWarnBounce 2s ease-in-out infinite;
}

.psRiskIcon .riskCorruptBar {
  fill: #c53030;
  opacity: 0.85;
  transform-box: fill-box;
  transform-origin: bottom center;
}

[data-theme="dark"] .psRiskIcon .riskCorruptBar {
  fill: #fc8181;
}

.psRiskIcon .riskCorruptBar1 { animation: riskBarGlitch1 2.4s ease-in-out infinite; }
.psRiskIcon .riskCorruptBar2 { animation: riskBarGlitch2 2.4s ease-in-out infinite 0.15s; }
.psRiskIcon .riskCorruptBar3 { animation: riskBarGlitch3 2.4s ease-in-out infinite 0.3s; }
.psRiskIcon .riskCorruptBar4 { animation: riskBarGlitch4 2.4s ease-in-out infinite 0.45s; }
.psRiskIcon .riskCorruptBar5 { animation: riskBarGlitch5 2.4s ease-in-out infinite 0.6s; }
.psRiskIcon .riskCorruptBar6 { animation: riskBarGlitch6 2.4s ease-in-out infinite 0.75s; }

.psRiskIcon .riskNoiseLine {
  stroke: #c53030;
  opacity: 0.6;
  stroke-dasharray: 4 3;
  animation: riskNoiseDraw 2s ease-in-out infinite;
}

[data-theme="dark"] .psRiskIcon .riskNoiseLine {
  stroke: #fc8181;
}

.reveal.isVisible .psRiskIcon .riskBarsCorrupt {
  animation: riskCorruptReveal 0.8s ease-out forwards;
}

@keyframes riskFloatGood {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes riskShakeBad {
  0%, 88%, 100% { transform: translate(0, 0); }
  90% { transform: translate(-1px, 1px); }
  92% { transform: translate(1px, -1px); }
  94% { transform: translate(-1px, -1px); }
  96% { transform: translate(1px, 1px); }
}

@keyframes riskSkewLine1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2px, -1px); }
}

@keyframes riskSkewLine2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, 1px); }
}

@keyframes riskScaleBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@keyframes riskFlowDash {
  to { stroke-dashoffset: -18; }
}

@keyframes riskWarnPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

@keyframes riskWarnBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes riskBarGlitch1 {
  0%, 100% { transform: scaleY(1); }
  40% { transform: scaleY(0.55); }
  55% { transform: scaleY(1.35); }
}

@keyframes riskBarGlitch2 {
  0%, 100% { transform: scaleY(1); }
  35% { transform: scaleY(1.4); }
  50% { transform: scaleY(0.5); }
}

@keyframes riskBarGlitch3 {
  0%, 100% { transform: scaleY(1); }
  45% { transform: scaleY(0.6); }
  60% { transform: scaleY(1.25); }
}

@keyframes riskBarGlitch4 {
  0%, 100% { transform: scaleY(1); }
  30% { transform: scaleY(1.3); }
  65% { transform: scaleY(0.65); }
}

@keyframes riskBarGlitch5 {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.45); }
  70% { transform: scaleY(1.2); }
}

@keyframes riskBarGlitch6 {
  0%, 100% { transform: scaleY(1); }
  42% { transform: scaleY(1.45); }
  58% { transform: scaleY(0.55); }
}

@keyframes riskNoiseDraw {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.35; }
  50% { stroke-dashoffset: 12; opacity: 0.75; }
}

@keyframes riskCorruptReveal {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .psRiskIcon .riskSurveyGood,
  .psRiskIcon .riskSurveyBad,
  .psRiskIcon .riskBadLine1,
  .psRiskIcon .riskBadLine2,
  .psRiskIcon .riskScaleError,
  .psRiskIcon .riskFlowPath,
  .psRiskIcon .riskFlowPath2,
  .psRiskIcon .riskWarnCircle,
  .psRiskIcon .riskWarnBadge,
  .psRiskIcon .riskCorruptBar,
  .psRiskIcon .riskNoiseLine {
    animation: none !important;
  }
}

.psProblemBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.psProblem h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.psProblem p {
  color: var(--textMuted);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.psCard {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  border-radius: 12px;
  min-height: 0;
  transition: transform 0.25s ease;
}

.psCard:hover {
  transform: scale(1.02);
}

.psCard h3 {
  font-size: 0.9375rem;
  margin: 0.5rem 0 0.25rem;
}

.psCard p {
  font-size: 0.8125rem;
  color: var(--textMuted);
  margin: 0;
  flex: 1;
}

/* Showcase */
.clientStrip {
  font-size: 0.8125rem; font-style: italic; color: var(--textMuted);
  margin: -1rem 0 1.25rem; letter-spacing: 0.02em;
}

.showcase {
  border-radius: 16px; overflow: hidden; padding: 0;
}

.showcaseTabs {
  display: flex; flex-wrap: wrap; gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.showcaseTab {
  flex: 1 1 auto; min-width: 120px;
  padding: 1rem 1.1rem; border: none; background: transparent;
  cursor: pointer; text-align: left; font-family: inherit;
  color: var(--textMuted); transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--border);
}
.showcaseTab:last-child { border-right: none; }
.showcaseTab:hover { background: var(--accentMuted); color: var(--text); }
.showcaseTab.isActive {
  background: var(--accentMuted); color: var(--accent);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.showcaseTabTitle { display: block; font-weight: 600; font-size: 0.875rem; }
.showcaseTabMeta { display: block; font-size: 0.6875rem; margin-top: 0.15rem; opacity: 0.8; }

.showcasePanel { padding: 1.5rem 1.75rem; min-height: 180px; }

.showcaseContent.isEntering {
  animation: panelIn 0.35s ease forwards;
}
@keyframes panelIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.showcaseSummary { font-size: 1rem; font-weight: 500; margin-bottom: 0.75rem; }
.showcaseBullets { margin: 0 0 0.75rem; padding-left: 1.1rem; font-size: 0.875rem; color: var(--textMuted); }
.showcaseBullets li { margin-bottom: 0.35rem; }
.showcaseDetail { font-size: 0.875rem; color: var(--textMuted); margin: 0; }

.industryCloud {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem;
}
.industryPill {
  font-size: 0.75rem; padding: 0.35rem 0.75rem;
  border-radius: 100px; border: 1px solid var(--border);
  background: var(--accentMuted); color: var(--text);
  transition: transform 0.2s, background 0.2s;
}
.industryPill:hover { transform: scale(1.05); background: var(--accent); color: #fff; }

/* Proof */
.proofGrid {
  display: grid; gap: 1rem; margin-bottom: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .proofGrid { grid-template-columns: 1fr 1fr; } }

.proofBlock { padding: 1.25rem; border-radius: 14px; }
.proofBlock h3 { font-size: 0.9375rem; margin-bottom: 0.75rem; }
.proofTags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.proofTag {
  font-size: 0.75rem; padding: 0.3rem 0.6rem;
  border-radius: 6px; background: var(--accentMuted);
  color: var(--text); border: 1px solid var(--border);
}
.proofNote { font-size: 0.875rem; color: var(--textMuted); font-style: italic; margin-bottom: 1.5rem; }

.tagGrid { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  font-size: 0.75rem; padding: 0.35rem 0.65rem;
  border-radius: 6px; background: var(--bgElevated);
  border: 1px solid var(--border); color: var(--textMuted);
  transition: color 0.2s, border-color 0.2s;
}
.tag:hover { color: var(--accent); border-color: var(--accent); }

/* Other work */
.workGrid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .workGrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .workGrid { grid-template-columns: repeat(3, 1fr); } }

.workCard {
  padding: 1.25rem; border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.workCard:hover { transform: translateY(-5px); }
.workCard h3 { font-size: 1rem; margin: 0.65rem 0 0.35rem; }
.workCard p { font-size: 0.8125rem; color: var(--textMuted); margin: 0 0 0.75rem; }

.workTags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.workTags span {
  font-size: 0.6875rem; padding: 0.2rem 0.5rem;
  border-radius: 4px; background: var(--accentMuted);
  color: var(--accent); font-weight: 600;
}

/* CTA */
.sectionCta { padding-bottom: 5rem; }

.ctaBox {
  padding: 2.5rem 2rem; border-radius: 20px; text-align: center;
  max-width: 640px; margin: 0 auto;
}
.ctaBox h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.ctaSub { color: var(--textMuted); margin-bottom: 1.25rem; }
.ctaLinks {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.5rem 1rem; font-size: 0.9rem; margin-bottom: 0.75rem;
}
.ctaLinks a { font-weight: 500; text-decoration: none; }
.ctaAvail { font-size: 0.875rem; color: var(--textMuted); margin-bottom: 1.25rem; }
.sectionCta .heroActions { justify-content: center; }

/* Footer */
.siteFooter {
  padding: 2rem 0 3rem; text-align: center;
  font-size: 0.8125rem; color: var(--textMuted);
  border-top: 1px solid var(--border);
}

/* Toast */
.toast {
  position: fixed; bottom: 5rem; left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 200; padding: 0.65rem 1.25rem;
  background: var(--text); color: var(--bg);
  font-size: 0.875rem; font-weight: 500; border-radius: 8px;
  opacity: 0; transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.toast.isShown { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Print */
@media print {
  .siteHeader, .contactBar, .siteControls, .heroMesh, .toast, .skipLink { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { background: #fff; color: #000; }
}
