/* ============================================================
   GETTY SOLUTIONS — Design System
   Color scheme: "Signal Blue" — deep ink navy + electric blue accent
   ============================================================ */

:root {
  /* Brand core */
  --ink: #14161C;
  --ink-soft: #1D2028;
  --ink-line: #2B2F3A;
  --orange: #3B6EF6;        /* primary accent (was orange, now signal blue) */
  --orange-light: #6F97FF;  /* hover / glow */
  --orange-pale: #E7EDFF;   /* icon backgrounds, pale tint */
  --orange-deep: #2447C4;   /* pressed / deep-text state */

  /* Light surface system */
  --paper: #FAFBFD;
  --paper-alt: #F1F3F8;
  --card: #FFFFFF;
  --line: #E3E6ED;
  --muted: #5B6070;
  --muted-2: #8A8FA0;

  /* Status */
  --success: #16A34A;
  --warning: #D97706;
  --error: #E5484D;

  /* Type */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shape / motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(20,22,28,0.06), 0 1px 1px rgba(20,22,28,0.04);
  --shadow-md: 0 8px 24px -8px rgba(20,22,28,0.14), 0 2px 8px rgba(20,22,28,0.06);
  --shadow-lg: 0 24px 64px -12px rgba(20,22,28,0.20), 0 4px 16px rgba(20,22,28,0.08);
  --shadow-orange: 0 12px 32px -8px rgba(59,110,246,0.35);

  --container: 1240px;
}

html[data-theme="dark"] {
  --paper: #0C0D11;
  --paper-alt: #131620;
  --card: #171A22;
  --line: #262A36;
  --muted: #9DA2B0;
  --muted-2: #676C7C;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px -8px rgba(0,0,0,0.5);
  --shadow-lg: 0 24px 64px -12px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s var(--ease), color .3s var(--ease);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
}
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3,
html[data-theme="dark"] h4, html[data-theme="dark"] h5 { color: #F5F3EE; }

.h0 { font-size: clamp(2.25rem, 4.4vw, 3.75rem); font-weight: 700; letter-spacing: -0.02em; }
.h1 { font-size: clamp(1.9rem, 3.4vw, 2.85rem); }
.h2 { font-size: clamp(1.55rem, 2.4vw, 2.1rem); }
.h3 { font-size: clamp(1.2rem, 1.6vw, 1.4rem); }
.h4 { font-size: 1.08rem; }

.lead { font-size: clamp(1rem, 1.15vw, 1.1rem); color: var(--muted); font-weight: 400; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-deep);
}
html[data-theme="dark"] .eyebrow { color: var(--orange-light); }
.eyebrow .blk { width: 8px; height: 8px; background: var(--orange); flex-shrink: 0; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 900px) { .section { padding: 64px 0; } .section-sm { padding: 48px 0; } }
.bg-alt { background: var(--paper-alt); }
.bg-ink { background: var(--ink); color: #F5F3EE; }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #F5F3EE; }
.bg-ink .muted { color: #B7B4AD; }

.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Signature block motif ---------- */
/* Small offset squares echo the pixel-block mark in the logo. Used as
   dividers, bullets, and corner accents instead of generic dots/circles. */
.block-mark {
  display: inline-grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 3px;
  flex-shrink: 0;
}
.block-mark span { background: var(--orange); }
.block-mark span:nth-child(3) { background: var(--ink); opacity: .85; }
html[data-theme="dark"] .block-mark span:nth-child(3) { background: #F5F3EE; }
.block-mark span:nth-child(2) { opacity: .35; }

.corner-block {
  position: absolute; top: -1px; left: -1px;
  width: 22px; height: 22px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 40% 40%, 40% 100%, 0 100%);
  opacity: 0; transform: translate(-4px,-4px);
  transition: all .35s var(--ease);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  padding: 15px 30px; border-radius: 100px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(255,170,23,0.55); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink); }
html[data-theme="dark"] .btn-outline { color: #F5F3EE; }
.btn-outline:hover { border-color: var(--orange); background: rgba(255,170,23,0.08); transform: translateY(-2px); }
.btn-ghost { padding: 15px 6px; color: var(--ink); font-weight: 600; }
html[data-theme="dark"] .btn-ghost { color: #F5F3EE; }
.btn-ghost svg { transition: transform .3s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-sm { padding: 11px 22px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0; transition: all .35s var(--ease);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled {
  padding: 12px 0; background: rgba(251,250,247,0.82); backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
html[data-theme="dark"] .nav.scrolled { background: rgba(23,24,26,0.82); }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 10px 16px; border-radius: 100px;
  font-weight: 500; font-size: 0.94rem; transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-link:hover, .nav-link.active { background: var(--paper-alt); }
html[data-theme="dark"] .nav-link:hover, html[data-theme="dark"] .nav-link.active { background: var(--card); }
.nav-link svg { width: 14px; height: 14px; transition: transform .3s var(--ease); opacity: .6; }
.nav-links > li:hover .nav-link svg { transform: rotate(180deg); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 100px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); transition: all .25s var(--ease);
}
.icon-btn:hover { border-color: var(--orange); background: var(--orange-pale); }
html[data-theme="dark"] .icon-btn:hover { background: rgba(255,170,23,0.15); }
.icon-btn svg { width: 17px; height: 17px; }

.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 640px; max-width: 90vw; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 28px; opacity: 0; visibility: hidden;
  transition: all .3s var(--ease); z-index: 50;
}
.nav-links > li:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 24px; }
.mega-col-title { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; margin: 14px 0 8px; }
.mega-col-title:first-child { margin-top: 0; }
.mega-item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 10px; font-size: .92rem; font-weight: 500; }
.mega-item:hover { background: var(--paper-alt); color: var(--orange-deep); }

.mobile-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; align-items: center; justify-content: center; }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { display:none; }
.mobile-toggle svg { width: 18px; height: 18px; }

.mobile-panel {
  position: fixed; inset: 0; background: var(--paper); z-index: 900;
  padding: 100px 28px 40px; transform: translateY(-100%); transition: transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel a { display: block; padding: 16px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; border-bottom: 1px solid var(--line); }
.mobile-close { position: fixed; top: 24px; right: 28px; z-index: 901; }

@media (max-width: 980px) {
  .nav-links, .nav-actions .icon-btn.search-ic { display: none; }
  .mobile-toggle { display: flex; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding: 160px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } .hero { padding: 130px 0 56px; } }

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(720px 420px at 85% -8%, rgba(255,170,23,0.16), transparent 60%),
    radial-gradient(600px 500px at -10% 90%, rgba(255,170,23,0.08), transparent 60%);
}
.hero-blocks { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.floating-block {
  position: absolute; background: var(--orange); border-radius: 6px; opacity: .85;
  animation: floaty 7s var(--ease) infinite;
}
.floating-block.b2 { background: var(--ink); opacity: .08; }
html[data-theme="dark"] .floating-block.b2 { background: #fff; opacity: .06; }
.floating-block.b3 { background: transparent; border: 2px solid var(--orange); opacity: .5; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(6deg); } }

.hero-visual { position: relative; }
.hero-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 26px; position: relative; z-index: 2;
}
.hero-stat-card {
  position: absolute; background: var(--ink); color: #fff; border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg); z-index: 3; animation: floaty 8s var(--ease) infinite;
}
@media (max-width: 1180px) { .hero-stat-card { display: none; } }

.stat-strip { display: flex; flex-wrap: wrap; gap: 36px 44px; padding-top: 44px; margin-top: 44px; border-top: 1px solid var(--line); }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,3vw,2.6rem); color: var(--ink); }
html[data-theme="dark"] .stat-num { color: #F5F3EE; }
.stat-label { color: var(--muted); font-size: .9rem; margin-top: 4px; }

/* ---------- Logo marquee ---------- */
.marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 72px; width: max-content; animation: marquee 28s linear infinite; align-items: center; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--muted-2); opacity: .7; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover .corner-block { opacity: 1; transform: translate(0,0); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--orange-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
html[data-theme="dark"] .card-icon { background: rgba(255,170,23,0.14); }
.card-icon svg { width: 24px; height: 24px; color: var(--orange-deep); }
html[data-theme="dark"] .card-icon svg { color: var(--orange-light); }

.tag { display: inline-block; padding: 5px 12px; border-radius: 100px; font-size: .76rem; font-weight: 600; background: var(--paper-alt); color: var(--muted); }
.tag-orange { background: var(--orange-pale); color: var(--orange-deep); }
html[data-theme="dark"] .tag-orange { background: rgba(255,170,23,0.15); color: var(--orange-light); }

/* ---------- Portfolio ---------- */
.work-card { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); aspect-ratio: 4/3; }
.work-card img, .work-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,20,21,0.92) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  opacity: 0; transition: opacity .4s var(--ease);
}
.work-card:hover .work-overlay { opacity: 1; }
.work-card:hover .work-thumb { transform: scale(1.06); }
.work-overlay h4 { color: #fff; }
.work-overlay p { color: #D8D5CE; font-size: .88rem; margin-top: 4px; }
.work-thumb {
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display);
  font-weight: 700; font-size: 1.3rem; color: rgba(255,255,255,0.5); letter-spacing: -0.01em;
}

/* ---------- Testimonials ---------- */
.testi-track { display: flex; gap: 24px; transition: transform .5s var(--ease); }
.testi-card { min-width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 44px; }
@media (max-width: 640px) { .testi-card { padding: 28px 24px; } }
.testi-stars { display: flex; gap: 4px; color: var(--orange); margin-bottom: 20px; }
.testi-quote { font-family: var(--font-display); font-size: clamp(1.1rem,1.8vw,1.45rem); font-weight: 500; line-height: 1.5; letter-spacing: -0.01em; }
.testi-person { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); display:flex;align-items:center;justify-content:center; font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.testi-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.testi-dots button { width: 8px; height: 8px; border-radius: 100px; background: var(--line); transition: all .3s var(--ease); }
.testi-dots button.active { width: 26px; background: var(--orange); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 26px 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; text-align: left; width: 100%; }
.faq-q svg { flex-shrink: 0; transition: transform .35s var(--ease); width: 20px; height: 20px; color: var(--orange); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); max-width: 70ch; }

/* ---------- Process ---------- */
.process-row { display: flex; gap: 32px; padding: 40px 0; border-top: 1px solid var(--line); }
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-num { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--orange); width: 70px; flex-shrink: 0; }
@media (max-width: 700px) { .process-row { flex-direction: column; gap: 12px; } }

/* ---------- Pricing ---------- */
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 40px 32px; position: relative; display: flex; flex-direction: column; }
.price-card.featured { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--shadow-lg); }
@media (min-width: 981px) { .price-card.featured { transform: scale(1.02); } }
.price-card.featured h3, .price-card.featured .price-amt { color: #fff; }
.price-card.featured .muted { color: #B7B4AD; }
.price-amt { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; margin: 14px 0 6px; }
.price-feat { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; font-size: .92rem; }
.price-feat svg { width: 17px; height: 17px; color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.badge-popular { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .75rem; padding: 7px 18px; border-radius: 100px; }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 15px 18px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--card); color: var(--ink); font-size: .95rem; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
html[data-theme="dark"] .field input, html[data-theme="dark"] .field textarea, html[data-theme="dark"] .field select { color: #F5F3EE; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,170,23,0.15); }
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #E7E4DC; padding: 88px 0 32px; }
.footer h5 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer a { color: #B7B4AD; font-size: .93rem; display: block; padding: 7px 0; transition: color .25s var(--ease), padding-left .25s var(--ease); }
.footer a:hover { color: var(--orange); padding-left: 4px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; margin-top: 56px; border-top: 1px solid var(--ink-line); flex-wrap: wrap; gap: 16px; }
.social-row { display: flex; gap: 10px; }
.social-row a { width: 38px; height: 38px; border: 1px solid var(--ink-line); border-radius: 100px; display: flex; align-items: center; justify-content: center; padding: 0; }
.social-row a:hover { background: var(--orange); border-color: var(--orange); }
.social-row svg { width: 16px; height: 16px; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; background: rgba(31,32,33,0.55); backdrop-filter: blur(6px);
  z-index: 800; display: flex; align-items: flex-start; justify-content: center; padding-top: 14vh;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box {
  width: min(620px, 90vw); background: var(--card); border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px; transform: translateY(-10px);
  transition: transform .3s var(--ease);
}
.search-overlay.open .search-box { transform: translateY(0); }
.search-box svg { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; }
.search-box input { flex: 1; border: none; background: none; font-size: 1.1rem; color: var(--ink); }
html[data-theme="dark"] .search-box input { color: #F5F3EE; }
.search-box input:focus { outline: none; }
.search-box kbd { font-size: .72rem; padding: 4px 8px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted-2); }

/* ---------- Floating widgets ---------- */
.float-stack { position: fixed; right: 24px; bottom: 24px; z-index: 400; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform .3s var(--ease); }
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab-wa { background: #25D366; color: #fff; }
.fab-top { background: var(--card); border: 1px solid var(--line); color: var(--ink); opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.fab svg { width: 22px; height: 22px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-r.in { opacity: 1; transform: translateX(0); }
.stagger.in > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ---------- Misc ---------- */
.divider-blocks { display: flex; align-items: center; gap: 10px; margin: 8px 0 20px; }
.divider-blocks span { width: 9px; height: 9px; background: var(--line); }
.divider-blocks span:first-child { background: var(--orange); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 16px; border: 1px solid var(--line); border-radius: 100px; font-size: .85rem; font-weight: 500; display:flex; align-items:center; gap:8px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.page-hero { padding: 168px 0 72px; }
.table-clean { width: 100%; border-collapse: collapse; }
.table-clean th, .table-clean td { text-align: left; padding: 16px 14px; border-bottom: 1px solid var(--line); font-size: .92rem; }
.table-clean th { font-family: var(--font-display); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-2); }
