﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=DM+Mono:wght@400;500&display=swap');

/* ── GRADIENT MESH ───────────────────────────── */
@property --g1x { syntax: '<percentage>'; inherits: false; initial-value: 25%; }
@property --g1y { syntax: '<percentage>'; inherits: false; initial-value: 55%; }
@property --g2x { syntax: '<percentage>'; inherits: false; initial-value: 87%; }
@property --g2y { syntax: '<percentage>'; inherits: false; initial-value: 20%; }
@property --g3x { syntax: '<percentage>'; inherits: false; initial-value: 98%; }
@property --g3y { syntax: '<percentage>'; inherits: false; initial-value: 62%; }
@property --g4x { syntax: '<percentage>'; inherits: false; initial-value: 75%; }
@property --g4y { syntax: '<percentage>'; inherits: false; initial-value: 75%; }
@property --g5x { syntax: '<percentage>'; inherits: false; initial-value: 73%; }
@property --g5y { syntax: '<percentage>'; inherits: false; initial-value: 22%; }

@keyframes g1-cross {
  0%   { --g1x: 10%; --g1y: 60%; }
  50%  { --g1x: 84%; --g1y: 22%; }
  100% { --g1x: 10%; --g1y: 60%; }
}
@keyframes g2-cross {
  0%   { --g2x: 84%; --g2y: 22%; }
  50%  { --g2x: 10%; --g2y: 60%; }
  100% { --g2x: 84%; --g2y: 22%; }
}
@keyframes g3-orbit {
  0%   { --g3x: 98%; --g3y: 62%; }
  12.5%{ --g3x: 92%; --g3y: 48%; }
  25%  { --g3x: 78%; --g3y: 42%; }
  37.5%{ --g3x: 64%; --g3y: 48%; }
  50%  { --g3x: 58%; --g3y: 62%; }
  62.5%{ --g3x: 64%; --g3y: 76%; }
  75%  { --g3x: 78%; --g3y: 82%; }
  87.5%{ --g3x: 92%; --g3y: 76%; }
  100% { --g3x: 98%; --g3y: 62%; }
}
@keyframes g4-orbit {
  0%   { --g4x: 75%; --g4y: 75%; }
  12.5%{ --g4x: 68%; --g4y: 57%; }
  25%  { --g4x: 50%; --g4y: 50%; }
  37.5%{ --g4x: 32%; --g4y: 57%; }
  50%  { --g4x: 25%; --g4y: 75%; }
  62.5%{ --g4x: 32%; --g4y: 93%; }
  75%  { --g4x: 50%; --g4y: 100%;}
  87.5%{ --g4x: 68%; --g4y: 93%; }
  100% { --g4x: 75%; --g4y: 75%; }
}
@keyframes g5-orbit {
  0%   { --g5x: 73%; --g5y: 22%; }
  12.5%{ --g5x: 66%; --g5y:  4%; }
  25%  { --g5x: 48%; --g5y:  0%; }
  37.5%{ --g5x: 30%; --g5y:  4%; }
  50%  { --g5x: 23%; --g5y: 22%; }
  62.5%{ --g5x: 30%; --g5y: 40%; }
  75%  { --g5x: 48%; --g5y: 47%; }
  87.5%{ --g5x: 66%; --g5y: 40%; }
  100% { --g5x: 73%; --g5y: 22%; }
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ──────────────────────────────────── */
:root {
  --blue:   #401ec5;
  --yellow: #eeff80;
  --pink:   #ffbbf1;
  --green:  #82ffd9;
  --ink:    #111111;
  --ink-muted:#777777;
  --mid:    #555555;
  --bg:     #FFFFFF;
  --border: #111111;
  --rule:   #E0E0E0;
  --max:    1200px;
  --mono:   'Inter', sans-serif;
  --body:   'DM Mono', monospace;
  --pad:    clamp(1.25rem, 5vw, 2.5rem);
  --pad-xs: calc(var(--pad) * 0.25);
  --pad-sm: calc(var(--pad) * 0.5);
  --pad-lg: calc(var(--pad) * 1.5);
  --pad-xl: calc(var(--pad) * 2);
  --static-mesh:
    radial-gradient(ellipse 72% 78% at 9% 74%, rgba(255,40,120,.20) 0%, transparent 56%),
    radial-gradient(ellipse 58% 68% at 91% 18%, rgba(80,0,255,.20) 0%, transparent 49%),
    radial-gradient(ellipse 54% 64% at 80% 82%, rgba(0,200,255,.20) 0%, transparent 47%),
    radial-gradient(ellipse 82% 52% at 40% 36%, rgba(100,220,0,.20) 0%, transparent 51%),
    radial-gradient(ellipse 56% 62% at 60% 10%, rgba(255,165,0,.20) 0%, transparent 44%),
    #beffec;
}

/* ── BASE TYPOGRAPHY ─────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--mono);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--pad);
}
h1 { font-size: clamp(2.2rem, 5.5vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1rem; }
p      { color: var(--ink); line-height: 1.75; font-size: 1rem; margin-bottom: var(--pad); }
a      { color: inherit; text-decoration: none; }
img    { display: block; max-width: 100%; }
strong { color: var(--ink); }

/* ── MATERIAL SYMBOLS ────────────────────────── */
:root .material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  user-select: none;
  flex-shrink: 0;
  font-size: 2rem;
}
/* Sizing variants */
.icon-sm { font-size: 1.1em; }
.icon-md { font-size: 1.4em; }
.icon-lg { font-size: 2rem; }

/* ── TEXT UTILITIES ──────────────────────────── */
.t-blue { color: var(--bg); }
h1 .t-blue, h2 .t-blue, h3 .t-blue { -webkit-text-stroke: 3px var(--border); paint-order: stroke fill; }
.t-hl   { display: inline-block; background: var(--yellow); padding: 2px 6px 6px; color: var(--ink); font-family: var(--body); font-style:italic; font-weight:400;}

/* Labels — small caps, muted. Used wherever a small eyebrow/label appears. */
.label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: var(--pad-sm);
}
/* Inline contexts (price-card header, section-head) need no margin and no-wrap */
.price-card-header span:first-child,
.section-head .label { margin-bottom: 0; white-space: nowrap; }

/* ── LAYOUT ──────────────────────────────────── */
.page, .wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.page-narrow { max-width: 48rem; }
section { padding: var(--pad-lg) 0; border-bottom: 1px solid var(--border); }

/* ── BUTTONS ─────────────────────────────────── */
/* Three variants only: primary (black), yellow, ghost (bordered) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.12s, box-shadow 0.12s, color 0.12s;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--blue); box-shadow: 3px 3px 0 var(--border); }
.btn-yellow  { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-yellow:hover  { background: #fff; border-color: var(--border); box-shadow: 3px 3px 0 var(--border); }
.btn-ghost         { background: transparent; color: var(--ink); }
.btn-ghost:hover   { color: var(--ink); background: var(--yellow); box-shadow: 3px 3px 0 var(--border); }
.btn-ghost-invert  { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); flex-shrink: 0; }
.btn-ghost-invert:hover { background: var(--yellow); color: var(--ink); border-color: var(--border); box-shadow: 3px 3px 0 var(--border); }

/* ── TAGS ────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  letter-spacing: 0.06em;
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--mono);
  font-weight: 500;
}
.tag-yellow { background: var(--yellow); border-color: var(--border); }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pad);
}
.nav-logo { font-family: var(--mono); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); }
.nav-logo-dot { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); transition: color 0.15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--ink) !important;
  border: 1px solid var(--border) !important;
  padding: 8px 20px;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: box-shadow 0.12s !important;
}
.nav-cta:hover { box-shadow: 3px 3px 0 var(--border) !important; }
@media (max-width: 600px) { .nav-links .hide-mobile { display: none; } }

/* ── TICKER BANDS ────────────────────────────── */
.ticker-band {
  background: var(--blue);
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.ticker-inner  { display: inline-flex; animation: tick  22s linear infinite; }
.ticker-inner-2{ display: inline-flex; animation: tick2 32s linear infinite; }
@keyframes tick  { from { transform: translateX(0);   } to { transform: translateX(-50%); } }
@keyframes tick2 { from { transform: translateX(-50%);} to { transform: translateX(0);   } }

.t-item {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 2.5rem;
}
.t-sep { color: var(--yellow); }

.ticker-band-2 { overflow: hidden; padding: 10px 0; white-space: nowrap; border-bottom: 1px solid var(--border); }
.t-item-2 { letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); padding: 0 2.5rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 70% 80% at var(--g1x) var(--g1y), rgba(255,40,120,.50) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at var(--g2x) var(--g2y), rgba(80,0,255,.50)   0%, transparent 50%),
    radial-gradient(ellipse 55% 65% at var(--g3x) var(--g3y), rgba(0,200,255,.50)  0%, transparent 48%),
    radial-gradient(ellipse 80% 50% at var(--g4x) var(--g4y), rgba(100,220,0,.50)  0%, transparent 50%),
    radial-gradient(ellipse 55% 60% at var(--g5x) var(--g5y), rgba(255,165,0,.50)  0%, transparent 45%),
    #FFFFFF;
  background-color: #beffec;
  animation:
    g1-cross 13.7s ease-in-out infinite,
    g2-cross 13.7s ease-in-out infinite,
    g3-orbit 10.8s linear infinite,
    g4-orbit 19.6s linear infinite reverse,
    g5-orbit 14.7s linear infinite;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pad);
  align-items: center;
}
@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--pad); }
  .hero-visual { order: -1; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--pad-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 6px 14px;
  margin-bottom: var(--pad);
}
.avail-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #00FF00;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.hero-title {
  line-height: 0.93;
  margin-bottom: var(--pad);
  overflow-wrap: break-word;
  span {display: block;}
}
.hero-subtitle { max-width: 460px; margin-bottom: var(--pad); line-height: 1.85; border-left: 4px solid var(--border); padding-left: var(--pad-sm); }
.hero-actions  { display: flex; align-items: center; flex-wrap: wrap; gap: var(--pad-xs); }

/* ── MARQUEE HERO ────────────────────────────── */
.marquee-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 85svh;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(ellipse 70% 80% at var(--g1x) var(--g1y), rgba(255,40,120,.50) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at var(--g2x) var(--g2y), rgba(80,0,255,.50)   0%, transparent 50%),
    radial-gradient(ellipse 55% 65% at var(--g3x) var(--g3y), rgba(0,200,255,.50)  0%, transparent 48%),
    radial-gradient(ellipse 80% 50% at var(--g4x) var(--g4y), rgba(100,220,0,.50)  0%, transparent 50%),
    radial-gradient(ellipse 55% 60% at var(--g5x) var(--g5y), rgba(255,165,0,.50)  0%, transparent 45%),
    var(--green);
  animation:
    g1-cross 13.7s ease-in-out infinite,
    g2-cross 13.7s ease-in-out infinite,
    g3-orbit 10.8s linear infinite,
    g4-orbit 19.6s linear infinite reverse,
    g5-orbit 14.7s linear infinite;
}
.marquee-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pad-lg) var(--pad) 0;
  position: relative;
  z-index: 10;
}
.marquee-hero__tagline {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  color: var(--ink);
  margin-bottom: var(--pad-sm);
  animation: fade-up 0.5s ease both;
}
.marquee-hero__title {
  font-family: var(--mono);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  max-width: 18ch;
  animation: fade-up 0.6s 0.1s ease both;
}
.marquee-hero__desc {
  margin-top: var(--pad-sm);
  max-width: 42ch;
  font-size: 1.125rem;
  color: var(--ink);
  animation: fade-up 0.6s 0.3s ease both;
}
.marquee-hero__cta {
  display: inline-block;
  margin-top: var(--pad);
  padding: 0.75rem 2rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
  animation: fade-up 0.6s 0.42s ease both;
}
.marquee-hero__cta:hover  { transform: scale(1.05); background: #3317a8; }
.marquee-hero__cta:active { transform: scale(0.97); }
.marquee-hero__strip {
  flex-shrink: 0;
  width: 100%;
  height: clamp(20rem, 42vh, 30rem);
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent, black 40%);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 40%);
}
.marquee-hero__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-hero__card {
  flex-shrink: 0;
  width: 18rem;
  aspect-ratio: 3 / 4;
  transform: rotate(var(--rot));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .marquee-hero__card { width: 26rem; }
}
.marquee-hero__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PRICING CARD ────────────────────────────── */
.price-card { border: 1px solid var(--border); }
.price-card-header {
  padding: var(--pad-sm) var(--pad);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pad-sm);
}
.price-card-header span:last-child {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 4px 10px;
  white-space: nowrap;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--pad-sm) var(--pad);
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--yellow); }
.price-row > span:first-child { font-family: var(--mono); font-weight: 700; letter-spacing: 0.02em; color: var(--ink); display: flex; align-items: center; gap: 7px; }
.price-row > span:first-child .material-symbols-outlined { color: var(--ink); font-size: 1em; }
.price-row > span:last-child  { font-family: var(--body); color: var(--ink); }
.price-row > span:last-child span { font-weight: 400; color: var(--ink); -webkit-text-stroke: 0; }
.price-cta { padding: var(--pad-sm) var(--pad); border-top: 1px solid var(--border);}
.price-cta a {
  display: block;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--border);
  padding: 13px 20px;
  text-align: center;
  transition: background 0.12s, box-shadow 0.12s;
}
.price-cta a:hover { background: var(--blue); box-shadow: 3px 3px 0 var(--border); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: var(--pad-xs); gap: var(--pad-xs); }
.stat-box  { border: 1px solid var(--border); padding: var(--pad-sm) var(--pad-sm); text-align: center; }
.stat-n    { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--ink); display: block; line-height: 1; }

/* ── CREDENTIAL BAR ──────────────────────────── */
.cred-bar {
  background: var(--yellow);
}
.cred-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.55fr);
  align-items: stretch;
}
.cred-copy {
  padding: var(--pad) var(--pad) var(--pad) 0;
  border-right: 1px solid var(--border);
}
.cred-copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.02;
  letter-spacing: 0;
}
.cred-copy p {
  max-width: 46ch;
  color: var(--ink);
  line-height: 1.55;
}
.cred-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cred-seg {
  min-height: 92px;
  padding: var(--pad-sm);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--pad-xs);
  transition: background 0.1s;
}
.cred-seg:nth-child(3n) { border-right: none; }
.cred-seg:nth-last-child(-n + 3) { border-bottom: none; }
.cred-seg:hover { background: rgba(0,0,0,0.06); }
.cs-name { font-family: var(--mono); font-weight: 700; color: var(--ink); }
@media (max-width: 860px) {
  .cred-bar-inner { grid-template-columns: 1fr; }
  .cred-copy {
    padding: var(--pad) 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 560px) {
  .cred-list { grid-template-columns: repeat(2, 1fr); }
  .cred-seg:nth-child(3n) { border-right: 1px solid var(--border); }
  .cred-seg:nth-child(2n) { border-right: none; }
  .cred-seg:nth-last-child(-n + 3) { border-bottom: 1px solid var(--border); }
  .cred-seg:nth-last-child(-n + 2) { border-bottom: none; }
}

/* ── PRICING PREVIEW ─────────────────────────── */
.pricing-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pad-xl);
  align-items: center;
}
@media (max-width: 760px) { .pricing-preview-inner { grid-template-columns: 1fr; } }
.pricing-preview-text h2 { margin-bottom: var(--pad-sm); }
.pricing-preview-card { display: flex; flex-direction: column; gap: var(--pad-xs); }

/* ── HOW IT WORKS ────────────────────────────── */
.section-title { margin-bottom: var(--pad-sm); }
.section-title span { color: var(--bg); -webkit-text-stroke: 3px var(--border); paint-order: stroke fill; }
.section-sub { max-width: 520px; margin-bottom: var(--pad); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--pad-sm);
  margin-bottom: var(--pad);
  padding-bottom: var(--pad-sm);
  border-bottom: 1px solid var(--rule);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border: 1px solid var(--border);
  margin-top: var(--pad);
}
.step { padding: var(--pad); border-right: 1px solid var(--border); transition: background 0.1s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--yellow); }
@media (max-width: 600px) {
  .steps { display: flex; flex-direction: column; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
}
.step-num { font-family: var(--mono); font-weight: 700; color: var(--ink); margin-bottom: var(--pad-sm); letter-spacing: 0.1em; display: flex; align-items: center; gap: 8px; }
.step-num .material-symbols-outlined { color: var(--ink); font-size: 1.4em; }
.step h3  { font-weight: 700; margin-bottom: var(--pad-xs); letter-spacing: 0; font-size: 1rem; }

/* ── SERVICES ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pad-sm);
  margin-top: var(--pad);
}
@media (max-width: 760px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: var(--pad);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--pad-xs);
  transition: background 0.1s;
  cursor: pointer;
}
.service-icon  { color: var(--ink); margin-bottom: var(--pad-xs); letter-spacing: 0.12em; text-transform: uppercase; }
.service-card h3 { font-size: 1rem; font-weight: 700; letter-spacing: 0.02em; display: flex; align-items: center; gap: 6px; }
.service-card h3 .material-symbols-outlined { font-size: 1.15em; color: var(--ink); }
.service-card p  { flex: 1; line-height: 1.7; }
.service-features { list-style: none; margin: var(--pad-xs) 0; border-top: 1px solid var(--rule); padding-top: var(--pad-sm); }
.service-features li { padding: 3px 0 3px 1.5rem; position: relative; }
.service-features li::before { content: '✓'; position: absolute; left: 0; color: var(--ink); font-weight: 700; }
.service-price {
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  padding-top: var(--pad-sm);
  border-top: 1px solid var(--rule);
  margin-top: auto;
}
.service-price span { color: var(--ink); }

/* ── ABOUT STRIP ─────────────────────────────── */
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad-xl); align-items: start; }
@media (max-width: 700px) { .about-grid { grid-template-columns: 1fr; } }
.about-content h2 { margin-bottom: var(--pad-sm); }
.about-content p  { margin-bottom: var(--pad-sm); }
.about-brands { display: flex; flex-wrap: wrap; gap: var(--pad-xs); margin-top: var(--pad); }
.about-brand-badge {
  padding: 5px 12px;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: background 0.1s, color 0.1s;
}
.about-brand-badge:hover { background: var(--yellow); color: var(--ink); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad-xs); }
.about-stat  { border: 1px solid var(--border); padding: var(--pad); display: flex; flex-direction: column; gap: var(--pad-xs); transition: background 0.1s; }
.about-stat:first-child { background: var(--yellow); }
.about-stat:hover { background: var(--yellow); }
.about-stat-num { font-family: var(--mono); font-size: 2.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.about-stat-num em { color: var(--ink); font-style: normal; }

/* ── FAQ ─────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: var(--pad-xl); align-items: start; }
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: var(--pad-sm) 0;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--pad-sm);
}
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--ink); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; color: var(--ink); }
.faq-item p { padding: 0 0 var(--pad-sm); line-height: 1.7; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ── CTA BAND ────────────────────────────────── */
.cta-band { background: var(--ink); color: var(--bg); }
.cta-band-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.cta-band h2 { color: var(--bg); }
.cta-band p  { color: #fff; max-width: 520px; }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: var(--pad) 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--pad-lg); margin-bottom: var(--pad-lg); }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand-name { font-family: var(--mono); font-size: 1.2rem; font-weight: 700; letter-spacing: 0.06em; margin-bottom: var(--pad-xs); color: var(--ink); }
.footer-brand-name span { color: var(--blue); }
.footer-brand-desc { color: var(--ink); line-height: 1.6; max-width: 280px; margin-bottom: var(--pad-sm); }
.footer-inner h3 { font-size: 1rem; margin-bottom: var(--pad-xs); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: var(--pad-xs); margin-bottom: var(--pad); }
.footer-links:last-child { margin-bottom: 0; }
.footer-links a { color: var(--ink); transition: color 0.15s; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: var(--pad);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--pad-xs);
  color: var(--ink);
}
.footer-bottom a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ── AVAILABILITY BADGE ──────────────────────── */
.avail-badge { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--border); color: var(--ink); padding: 6px 14px; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── PAGE HEADER ─────────────────────────────── */
.page-header { padding: var(--pad-lg) 0; }
.page-header h1 { margin-top: var(--pad-sm); margin-bottom: var(--pad-sm); }
.page-header p { margin-bottom: 0; }

/* Service pages get mesh background + proof strip */
.service-header { background: var(--static-mesh); border-bottom: 2px solid var(--border); }
.service-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--pad);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg);
}
.service-proof-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: var(--pad-sm);
  padding: var(--pad-sm) var(--pad);
  border-right: 1px solid var(--border);
  font-size: 1rem;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--ink);
}
.service-proof-item:last-child { border-right: none; }
.service-proof-item .material-symbols-outlined { color: var(--ink); font-size: 1rem; flex-shrink: 0; }
@media (max-width: 640px) {
  .service-proof-item { border-right: none; border-bottom: 1px solid var(--border); }
  .service-proof-item:last-child { border-bottom: none; }
}

/* --- PRODUCT / SERVICE PAGES ------------------------------------ */
.product-page { padding: var(--pad-lg) 0; }
.product-grid { display: grid; grid-template-columns: 2fr 1fr; gap: var(--pad-xl); align-items: start; }
.product-grid-wide { grid-template-columns: 1fr 2fr; }
@media (max-width: 768px) { .product-grid, .product-grid-wide { grid-template-columns: 1fr; } }
.product-content p { margin-bottom: var(--pad-sm); }
.product-lede { font-size: 1.1rem; }
.product-section-title { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-top: 0; margin-bottom: var(--pad-sm); border-bottom: 3px solid var(--yellow); display: inline-block; padding-bottom: 4px; }
.product-faq-title { font-size: clamp(1.2rem, 2vw, 1.6rem); margin-bottom: var(--pad-sm); border-bottom: 3px solid var(--yellow); display: inline-block; padding-bottom: 4px; }
.product-block { margin-top: var(--pad-lg); }
.product-block-lg { margin-top: var(--pad-lg); }
.product-mini-title { font-size: 1rem; margin-bottom: var(--pad-sm); }
.product-tags { display: flex; flex-wrap: wrap; gap: var(--pad-xs); }
.product-note { font-size: 1rem; color: var(--ink); margin-bottom: var(--pad-sm); }
.product-card-copy { font-size: 1rem; color: var(--ink); margin: 0; }
.product-content .product-note,
.product-content .product-card-copy { margin-bottom: 0; }
.text-link { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.btn-small { font-size: 1rem; padding: 11px 18px; }
.btn-block { width: 100%; justify-content: center; }
.btn-inverse { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-inverse:hover { background: rgba(255,255,255,0.2); box-shadow: 3px 3px 0 rgba(255,255,255,0.2); }

.product-list { list-style: none; margin: var(--pad) 0; border: 1px solid var(--border); }
.product-list li { padding: var(--pad-sm); display: flex; align-items: flex-start; gap: var(--pad-sm); border-bottom: 1px solid var(--rule); color: var(--ink); }
.product-list li:last-child { border-bottom: none; }
.product-list-icon { font-size: 1rem; color: var(--ink); flex-shrink: 0; margin-top: 1px; }
.product-arrow-list { list-style: none; display: flex; flex-direction: column; gap: var(--pad-xs); }
.product-arrow-list li { color: var(--ink); padding-left: 1.25rem; position: relative; }
.product-arrow-list li::before { content: '>'; position: absolute; left: 0; color: var(--ink); font-weight: 700; }

.product-sidebar,
.product-sidebar-card,
.product-panel,
.product-summary,
.product-card,
.product-embed { border: 1px solid var(--border); }
.product-sidebar { position: sticky; top: 80px; padding: 0; overflow: hidden; }
.product-sidebar-header {
  display: flex;
  align-items: center;
  gap: var(--pad-sm);
  padding: var(--pad-sm) var(--pad);
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-sidebar-header .material-symbols-outlined { color: var(--yellow); }
.product-sidebar-prices { padding: 0 var(--pad); }
.product-sidebar-card h4 { font-size: 1rem; margin-bottom: var(--pad-sm); padding-bottom: var(--pad-sm); border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.06em; }
.product-sidebar-card { padding: var(--pad-sm); margin-bottom: var(--pad-sm); transition: background 0.1s; }
.product-sidebar-card:hover,
.product-card:hover { background: var(--yellow); }
.product-sidebar-card-accent { background: var(--yellow); }
.product-sidebar-footer { margin-top: var(--pad-sm); padding: var(--pad-sm) var(--pad) var(--pad); border-top: 1px solid var(--rule); }

.product-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: var(--pad-sm) 0; border-bottom: 1px solid var(--rule); gap: var(--pad-sm); }
.product-price-row:last-of-type { border-bottom: none; }
.product-price-name { color: var(--ink); font-size: 1rem; }
.product-price-val { font-family: var(--mono); font-size: 1.3rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
/* ── PRICING GROUPS (redesigned cards) ───────────────────────── */
.product-price-group {
  margin-bottom: var(--pad-xl);
  border: 1px solid var(--border);
}
.product-price-group-header {
  display: flex;
  align-items: center;
  gap: var(--pad-sm);
  padding: var(--pad-sm) var(--pad);
  border-bottom: 1px solid var(--border);
  background: var(--pricing-accent, var(--blue));
  color: #fff;
}
.product-price-group-title {
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  color: inherit;
  border: none;
  padding: 0;
}
.product-price-lines { padding: 0 var(--pad); }
.product-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pad-sm);
  padding: var(--pad-sm) 0;
  border-bottom: 1px solid var(--rule);
}
.product-price-line:last-of-type { border-bottom: none; }
.product-price-line-name { font-family: var(--mono); font-weight: 700; letter-spacing: 0.02em; color: var(--ink); flex: 1; }
.product-price-line-name a { color: var(--ink); text-decoration: none; }
.product-price-line-name a:hover { text-decoration: underline; }
.product-price-line-desc { color: var(--ink); flex: 2; display: none; font-size: 1rem; }
@media (min-width: 600px) { .product-price-line-desc { display: block; } }
.product-price-line-amount {
  font-family: var(--mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.product-price-line-note { color: var(--ink); font-size: 1rem; display: block; font-weight: 400; }

.product-price-group-note {
  background: var(--yellow);
  border-top: 1px solid var(--border);
  padding: var(--pad-sm) var(--pad);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom:0;
}

/* ── PRICING INTERSTITIAL ─────────────────────────────────────── */
.pricing-interstitial {
  display: flex;
  align-items: center;
  gap: var(--pad);
  border: 1px solid var(--border);
  padding: var(--pad);
  margin-bottom: var(--pad-xl);
  background: var(--blue);
  color: #fff;
}
.pricing-interstitial-icon {
  font-size: 4rem;
  flex-shrink: 0;
  color: var(--yellow);
}
.pricing-interstitial-text { flex: 1; }
.pricing-interstitial-text strong { font-family: var(--mono); font-size: clamp(1rem, 2vw, 1.2rem); display: block; margin-bottom: 4px; color: var(--yellow); }

/* ── PRICING STAT STRIP ───────────────────────────────────────── */
.pricing-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: var(--pad);
  border: 1px solid var(--border);
  overflow: hidden;
}
.pricing-stat {
  flex: 1;
  min-width: 140px;
  padding: var(--pad-sm) var(--pad);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--pad-sm);
}
.pricing-stat:last-child { border-right: none; }
.pricing-stat .material-symbols-outlined { color: var(--ink); font-size: 2rem; flex-shrink: 0; }
.pricing-stat-label { font-size: 1rem; color: var(--ink); display: block; }
.pricing-stat-value { font-family: var(--mono); font-weight: 700; color: var(--ink); }
@media (max-width: 640px) { .pricing-stats { flex-direction: column; } .pricing-stat { border-right: none; border-bottom: 1px solid var(--border); } .pricing-stat:last-child { border-bottom: none; } }

.product-summary { background: #F8F8F8; padding: var(--pad-sm); margin-bottom: var(--pad); }
.product-summary-accent { background: var(--yellow); }
.product-summary-compact { color: var(--ink); margin-top: var(--pad); margin-bottom: 0; line-height: 1.7; }
.product-summary h2,
.product-summary h3 { font-size: 1.15rem; margin-bottom: var(--pad-sm); }
.product-summary p { font-size: 1rem; margin-bottom: var(--pad-sm); }
.product-summary p:last-child { margin-bottom: 0; }
.product-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--pad-sm); margin-top: var(--pad); }
.product-panel { padding: var(--pad-sm); }
.product-panel h3 { font-size: 1rem; margin-bottom: var(--pad-sm); }
.product-panel ul { margin: 0; padding-left: 1.1rem; }
.product-panel li { margin-bottom: var(--pad-xs); color: var(--ink); }
@media (max-width: 640px) { .product-split { grid-template-columns: 1fr; } }

.product-meta-list { display: flex; flex-direction: column; gap: var(--pad-xs); font-size: 1rem; color: var(--ink); }
.product-meta-list div { display: flex; justify-content: space-between; gap: var(--pad-sm); }
.product-meta-list strong { font-weight: 700; color: var(--ink); white-space: nowrap; }
.product-embed { overflow: hidden; min-height: 600px; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.calendly-inline-widget { width: 100%; min-width: 320px; height: 700px; }
.product-empty { padding: var(--pad); text-align: center; }
.product-embed-note { font-size: 1rem; color: var(--ink); margin-top: var(--pad-sm); text-align: center; }
.product-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); border: 1px solid var(--border); }
.product-card { overflow: hidden; background: var(--bg); transition: background 0.15s; margin: -1px; }
.product-card-media { aspect-ratio: 4/3; background: #F8F8F8; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 2rem; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card-body { padding: var(--pad-sm); }
.product-card-kicker { font-family: var(--mono); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.product-card-title { font-family: var(--mono); font-weight: 700; color: var(--ink); margin-bottom: 4px; }

/* --- DECORATIVE IMAGE SYSTEM ------------------------------------- */

/* Float animation */
@keyframes float-deco {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
/* Slide-in for hero proof strip */
@keyframes proof-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Base: hidden, ready to reveal */
.label-icon { margin-right: 4px; }
.deco-img {
  opacity: 0;
  transition: opacity 0.8s ease;
  display: block;
  width: 99%;
  filter: grayscale(10%);
  mask-image: url('/img/blob-mask-a.svg');
  mask-size: 104% 104%;
  mask-repeat: no-repeat;
  -webkit-mask-image: url('/img/blob-mask-a.svg');
  -webkit-mask-size: 104% 104%;
  -webkit-mask-repeat: no-repeat;
}
.deco-img-b {
  mask-image: url('/img/blob-mask-b.svg');
  -webkit-mask-image: url('/img/blob-mask-b.svg');
}
/* Containers: center the deco-img both axes */
.how-head-visual,
.page-header-visual,
.about-img-wrap,
.hero-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Reveal: image fades in, then floats */
.reveal.in .deco-img {
  opacity: 1;
  animation: float-deco 6s ease-in-out 0.8s infinite;
  filter: grayscale(0%);
}
/* Hover stops float */
.deco-img:hover {
  animation-play-state: paused;
  filter: grayscale(0%);
}

/* --- SERVICE CARD THUMBNAILS ------------------------------------ */
/* Edge-to-edge image above service card text */
.service-thumb {
  margin: calc(-1 * var(--pad));
  margin-bottom: var(--pad-sm);
  aspect-ratio: 3/2;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.service-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(20%);
  transition: transform 0.4s ease, filter 0.3s ease;
}
.service-card:hover .service-thumb img { transform: scale(1.06); filter: grayscale(0%); }

/* --- HOW IT WORKS — VISUAL ASIDE -------------------------------- */
.how-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--pad-xl); align-items: center; }
@media (max-width: 700px) { .how-head { grid-template-columns: 1fr; } .how-head-visual { display: none; } }

/* --- HERO PROOF STRIP ------------------------------------------- */
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 90px;
  margin-top: var(--pad-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  animation: proof-in 0.6s ease-out 0.4s both;
  --proof-rot: 0deg; /* used by keyframe — no tilt on the container */
}
.hero-proof-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(30%);
  transition: filter 0.3s;
  border-right: 1px solid var(--border);
}
.hero-proof-img:last-child { border-right: none; }
.hero-proof-img:hover { filter: grayscale(0%); }

/* --- ABOUT STRIP — IMAGE ACCENT --------------------------------- */
.about-img-wrap { margin-bottom: var(--pad-sm); }

/* --- SERVICE PAGE HEADER — SPLIT LAYOUT -------------------------  */
.page-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pad-xl);
  align-items: center;
}
@media (max-width: 700px) { .page-header-inner { grid-template-columns: 1fr; } .page-header-visual { display: none; } }

/* --- EXAMPLE GALLERY + LIGHTBOX ---------------------------------- */
.ex-gallery-heading { margin-bottom: var(--pad-sm); }
.ex-gallery-sub { color: var(--ink); margin-bottom: var(--pad); max-width: 60ch; }
.ex-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--pad-sm); }
.ex-gallery figure { margin: 0; cursor: pointer; border: 1px solid var(--border); overflow: hidden; }
.ex-gallery-thumb { aspect-ratio: 1/1; overflow: hidden; position: relative; background: #F2F2F2; }
.ex-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1); }
.ex-gallery figure:hover .ex-gallery-thumb img { transform: scale(1.05); }
.ex-gallery figcaption { padding: var(--pad-sm); font-size: 1rem; color: var(--ink); font-family: var(--body); border-top: 1px solid var(--rule); }
.ex-play-btn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.85; transition: opacity 0.2s, transform 0.2s; pointer-events: none; }
.ex-play-btn svg { width: 52px; height: 52px; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5)); }
.ex-gallery figure:hover .ex-play-btn { opacity: 1; transform: scale(1.08); }
.ex-lightbox { position: fixed; inset: 0; margin: auto; background: transparent; border: none; padding: 0; overflow: visible; max-width: none; max-height: none; }
.ex-lightbox::backdrop { background: rgba(0,0,0,0.93); }
.ex-lightbox-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: #fff; font-size: 2.2rem; cursor: pointer; opacity: 0.65; line-height: 1; padding: 0 4px; transition: opacity 0.15s; font-family: var(--mono); }
.ex-lightbox-close:hover { opacity: 1; }
.ex-lightbox-content img, .ex-lightbox-content video { max-width: 90vw; max-height: 85vh; display: block; }

/* --- PORTFOLIO SECTION (on service pages) ------------------------ */
.portfolio-section { padding: var(--pad-xl) 0; border-top: 1px solid var(--rule); }
.portfolio-section + .popular-jobs { border-top: none; }

/* --- WORK PREVIEW (homepage) ------------------------------------- */
.work-preview { padding: var(--pad-xl) 0; border-top: 1px solid var(--rule); }
.work-preview .section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: var(--pad); flex-wrap: wrap; gap: var(--pad-sm); }

/* --- BLOG PAGES -------------------------------------------------- */
.blog-content { max-width: 760px; margin: 0 auto; }
.blog-content > * + * { margin-top: var(--pad-sm); }

/* Post header */
.post-header { padding: var(--pad-lg) 0 var(--pad) 0; border-bottom: 2px solid var(--border); background: var(--static-mesh); }
.post-meta { display: flex; align-items: center; gap: var(--pad-xs); flex-wrap: wrap; margin-bottom: var(--pad-sm); }
.post-category { background: var(--yellow); color: var(--ink); font-family: var(--mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 10px; }
.post-date, .post-read-time { font-size: 1rem; font-family: var(--body); }
.post-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.15; margin-bottom: var(--pad-sm); }
.post-subtitle { font-size: 1.15rem; line-height: 1.7; margin-bottom: var(--pad); }
.post-author { display: flex; align-items: center; gap: var(--pad-sm); padding-top: var(--pad-sm); border-top: 1px solid var(--ink); }
.post-author-avatar { width: 2.75rem; height: 2.75rem; border-radius: 50%; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 1rem; font-weight: 700; flex-shrink: 0; letter-spacing: 0.05em; }
.post-author-info strong { display: block; font-family: var(--mono); }
.post-author-info span { font-size: 1rem; }

/* Post body */
.post-body { padding: var(--pad-lg) 0; }
.post-body .product-summary { background: var(--yellow); border: none; padding: var(--pad-sm) var(--pad); margin-bottom: var(--pad-lg); }
.post-body .product-summary p { font-size: 1.1rem; line-height: 1.8; color: var(--ink); margin-bottom: 0; font-weight: 500; }
.post-body .product-panel { border: none; padding: 0; margin-bottom: 0; }
.post-body .product-panel + .product-panel { border-top: 1px solid var(--rule); padding-top: var(--pad); margin-top: var(--pad); }
.post-body h2 { font-size: 1.4rem; margin-bottom: var(--pad-sm); padding-bottom: var(--pad-xs); border-bottom: 2px solid var(--yellow); display: inline-block; }
.post-body h3 { font-size: 1rem; font-family: var(--mono); font-weight: 700; margin: var(--pad-sm) 0 var(--pad-xs) 0; color: var(--ink); }
.post-body p { line-height: 1.8; margin-bottom: var(--pad-sm); color: var(--ink); }
.post-body ul, .post-body ol { padding-left: 1.25rem; margin-bottom: var(--pad-sm); }
.post-body li { line-height: 1.75; margin-bottom: 0.4rem; color: var(--ink); }
.post-body li::marker { color: var(--ink); font-weight: 700; }
.post-body a { color: var(--ink); text-decoration: underline; }
.post-body a:hover { text-decoration: none; }
.post-body strong { font-weight: 700; color: var(--ink); }

/* Callout box — use class="callout" on any div inside post content */
.callout { background: var(--yellow); border-left: 3px solid var(--border); padding: var(--pad-sm) var(--pad); margin: var(--pad) 0; }
.callout p { margin: 0; font-weight: 500; line-height: 1.7; }
.callout p + p { margin-top: 0.5rem; }

/* Pull quote — use <blockquote> inside post content */
.post-body blockquote { border-left: 4px solid var(--border); margin: var(--pad) 0; padding: var(--pad-sm) var(--pad); background: var(--yellow); }
.post-body blockquote p { font-size: 1.2rem; line-height: 1.65; color: var(--ink); margin: 0; font-style: italic; }

/* Blog index card grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: var(--pad); margin-top: var(--pad); }
.blog-card { display: flex; flex-direction: column; border: 1px solid var(--border); padding: var(--pad-sm) var(--pad); transition: border-color 0.15s ease, transform 0.15s ease; }
.blog-card:hover { border-color: var(--border); background: var(--yellow); transform: translateY(-2px); }
.blog-card-meta { display: flex; gap: var(--pad-xs); align-items: center; margin-bottom: var(--pad-xs); }
.blog-card-category { background: var(--yellow); color: var(--ink); font-family: var(--mono); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 8px; }
.blog-card-read-time { font-size: 1rem; color: var(--ink); }
.blog-card h3 { font-family: var(--mono); font-size: 1rem; font-weight: 700; line-height: 1.35; margin-bottom: var(--pad-xs); }
.blog-card h3 a { color: var(--ink); text-decoration: none; }
.blog-card h3 a:hover { color: var(--ink); }
.blog-card p { font-size: 1rem; color: var(--ink); line-height: 1.6; flex: 1; margin-bottom: var(--pad-sm); }
.blog-card-link { font-size: 1rem; font-family: var(--mono); font-weight: 700; color: var(--ink); text-decoration: none; text-transform: uppercase; letter-spacing: 0.04em; }
.blog-card-link:hover { text-decoration: underline; }
.popular-jobs { background: #F8F8F8; }
.popular-jobs-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); }
.popular-job-card { display: block; padding: var(--pad-sm); border-right: 1px solid var(--border); background: var(--bg); text-decoration: none; }
.popular-job-card:last-child { border-right: 0; }
.popular-job-card:hover { background: var(--yellow); }
.popular-job-card h3 { font-size: 1rem; margin-bottom: var(--pad-xs); }
.popular-job-card p { font-size: 1rem; line-height: 1.6; color: var(--ink); }
@media (max-width: 980px) { .popular-jobs-grid { grid-template-columns: repeat(2, 1fr); } .popular-job-card { border-bottom: 1px solid var(--border); } }
@media (max-width: 520px) { .popular-jobs-grid { grid-template-columns: 1fr; } .popular-job-card { border-right: 0; } }
/* ── REVEAL ANIMATIONS ───────────────────────── */
.reveal { transform: translateY(16px); transition: transform 0.5s ease; }
.reveal.in { transform: none; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 0.40s; }

/* ── SPACING UTILITIES ───────────────────────── */
.mt-1 { margin-top: var(--pad-xs); }
.mt-2 { margin-top: var(--pad-sm); }
.mt-3 { margin-top: var(--pad); }
.mt-4 { margin-top: var(--pad-lg); }
.mb-1 { margin-bottom: var(--pad-xs); }
.mb-2 { margin-bottom: var(--pad-sm); }
.mb-3 { margin-bottom: var(--pad); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── SVG ACCENTS ────────────────────────────── */
.svg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.svg-accent svg { display: block; width: 100%; height: 100%; }

.has-accent { position: relative; overflow: hidden; }
.has-accent > *:not(.svg-accent) { position: relative; z-index: 1; }

/* Lottie container */
.lottie-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
lottie-player {
  display: block;
}
