/* ═══════════════════════════════════════════════════════════════
   STITCH — stitch-styles.css  (FINAL)
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:       #0A0A0A;
  --ivory:     #F4F1EB;
  --teal:      #2D9E8F;
  --teal-dark: #1D7268;
  --maroon:    #6B2737;
  --mid:       #1C1C1C;
  --gold:      #FFDE59;
  --rule:      rgba(244,241,235,0.12);
  --rule-dark: rgba(10,10,10,0.15);
  --muted:     rgba(244,241,235,0.55);
  --faint:     rgba(244,241,235,0.3);
  --ff:        'Poppins', sans-serif;
  --section-pad: clamp(5rem, 10vw, 10rem);
  --container:   1280px;
  --gutter:      clamp(1.5rem, 4vw, 3rem);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    0.3s;
  --dur-mid:     0.7s;
  --dur-slow:    1.1s;
}

/* ── 2. RESET ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

/* Force Poppins everywhere — overrides any competing declarations */
html, body,
h1, h2, h3, h4, h5, h6,
.st-display, .st-h1, .st-h2, .st-h3,
[class*="st-"] {
  font-family: 'Poppins', sans-serif !important;
}

body, body.st-body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--ff);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[class*="st-"] { box-sizing: border-box; }
[class*="st-"] img { max-width: 100%; display: block; border-radius: 0; }
[class*="st-"] a { color: inherit; text-decoration: none; }
[class*="st-"] h1,
[class*="st-"] h2,
[class*="st-"] h3,
[class*="st-"] p { margin: 0; }

/* ── 3. TYPE SCALE ─────────────────────────────────────────── */
.st-display {
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.st-h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  overflow-wrap: break-word;
  word-break: break-word;
}
.st-h3 {
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.3;
}
.st-label {
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.st-caption { font-weight: 400; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted); }
.st-em { font-style: italic; }
.st-container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ── 4. LINE REVEAL WRAPPERS (GSAP) ────────────────────────── */
.st-line { display: block; overflow: hidden; }
.st-line .line-inner { display: block; will-change: transform; }
html.st-anim .st-line .line-inner { transform: translateY(110%); }

/* ── 5. GRAIN OVERLAY ──────────────────────────────────────── */
.st-grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  background-repeat: repeat;
}

/* ── 6. NAVIGATION ─────────────────────────────────────────── */
.st-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: background var(--dur-fast) ease, padding var(--dur-fast) ease,
              border-color var(--dur-fast) ease;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.st-nav.is-scrolled {
  background: rgba(10,10,10,0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
  padding: 1rem var(--gutter);
}
.st-nav__logo {
  font-weight: 800; font-size: 1.05rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--ivory);
  display: flex; align-items: center;
}
.st-nav__logo img { height: 32px; width: auto; display: block; }
.st-nav__logo span { color: var(--teal); }
.st-nav__links { display: flex; gap: 2.5rem; align-items: center; }
.st-nav__link {
  font-weight: 400; font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  transition: color var(--dur-fast) ease;
}
.st-nav__link:hover, .st-nav__link.is-active { color: var(--ivory); }
.st-nav__cta {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ivory);
  border: 1px solid rgba(244,241,235,0.35);
  border-radius: 999px; padding: 0.6rem 1.4rem;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease,
              color var(--dur-fast) ease;
}
.st-nav__cta:hover { background: var(--teal); border-color: var(--teal); color: var(--ink); }
.st-nav__burger { display: none; }


/* ── CURSOR: hidden until JS initialises ──────────────────── */
.st-cursor-dot,
.st-cursor-ring {
  opacity: 0;
  pointer-events: none;
}

/* ── 7. HERO ───────────────────────────────────────────────── */
.st-hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.st-hero-gradient {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(
    ellipse 120% 80% at 50% 110%,
    #1D7268 0%, #6B2737 28%, #0A0A0A 65%
  );
  background-size: 130% 130%;
  animation: st-gradientBreath 16s ease-in-out infinite alternate;
  will-change: background-position, filter;
}
@keyframes st-gradientBreath {
  0%   { background-position: 50% 110%; filter: hue-rotate(0deg); }
  33%  { background-position: 48% 108%; filter: hue-rotate(4deg); }
  66%  { background-position: 52% 112%; filter: hue-rotate(-3deg); }
  100% { background-position: 50% 106%; filter: hue-rotate(6deg); }
}
.st-hero__photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.18; filter: grayscale(1) contrast(1.1);
  will-change: transform;
}
.st-hero__noise {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; opacity: 0.7;
  width: 100%; height: 100%;
}
.st-hero__content {
  position: absolute; bottom: 8vh;
  left: var(--gutter); right: var(--gutter);
  z-index: 3;
}
.st-hero__eyebrow { margin-bottom: 1.6rem; }
html.st-anim .st-hero__eyebrow { opacity: 0; transform: translateY(16px); }
.st-hero__hl { color: var(--ivory); }
.st-hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.st-hero__line--accent { color: var(--teal); font-style: italic; font-weight: 700; }
.st-word { display: inline-block; white-space: nowrap; }
.st-hero__sub {
  max-width: 420px; font-weight: 300; font-size: 0.95rem;
  color: var(--muted); margin-top: 2rem;
}
html.st-anim .st-hero__sub { opacity: 0; transform: translateY(16px); }
.st-hero-pill {
  display: inline-block; margin-top: 2.4rem;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.1em;
  color: var(--ivory);
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease,
              color var(--dur-fast) ease;
}
html.st-anim .st-hero-pill { opacity: 0; transform: translateY(16px); }
.st-hero-pill:hover { background: var(--ivory); border-color: var(--ivory); color: var(--ink); }
.st-hero__scroll {
  position: absolute; right: var(--gutter); bottom: 8vh; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
html.st-anim .st-hero__scroll { opacity: 0; }
.st-hero__scroll-txt {
  writing-mode: vertical-rl; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint);
}
.st-hero__scroll-line {
  width: 1px; height: 56px; background: var(--rule);
  position: relative; overflow: hidden;
}
.st-hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--teal);
  animation: st-scrollLine 2.2s var(--ease-expo) infinite;
}
@keyframes st-scrollLine {
  0%   { top: -50%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ── 8. SECTION SHELL ──────────────────────────────────────── */
.st-section { position: relative; z-index: 4; }
.st-section--ink   { background: var(--ink); }
.st-section--mid   { background: var(--mid); }
.st-section--ivory { background: var(--ivory); color: var(--ink); }
.st-rule-top    { border-top: 1px solid var(--rule); }
.st-rule-bottom { border-bottom: 1px solid var(--rule); }

/* ── 9. ATELIER / PROBLEM ──────────────────────────────────── */
.st-atelier {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; gap: 0;
}
.st-atelier__image-wrap { overflow: hidden; position: relative; }
.st-atelier__image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.6);
  transform: scale(1.08); will-change: transform;
}
.st-atelier__content {
  padding: 5rem 4rem 5rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.st-atelier__content .st-label { margin-bottom: 2rem; }
.st-atelier__statement { color: var(--ivory); }
.st-atelier__statement .st-line--muted .line-inner { color: var(--faint); font-style: italic; }
.st-atelier__body {
  max-width: 460px; margin-top: 2.4rem;
  color: var(--muted); font-size: 0.95rem;
}
.st-atelier__body strong { color: var(--ivory); font-weight: 600; }
.st-quote {
  border-left: 3px solid var(--teal);
  padding-left: 1.5rem; margin-top: 2rem;
  font-style: italic; font-size: 1.15rem; font-weight: 400;
  color: var(--ivory);
}
.st-quote cite { display: block; font-style: normal; margin-top: 0.6rem; }

/* ── 10. TRANSFORMATION ────────────────────────────────────── */
.st-transform { padding: var(--section-pad) var(--gutter); }
.st-transform__header { max-width: 680px; margin: 0 auto; text-align: center; }
.st-transform__header .st-label { display: block; margin-bottom: 1.4rem; }
.st-transform__header .st-h2 .st-em { color: var(--teal); }
.st-transform__sub {
  font-size: 0.875rem; color: var(--muted);
  max-width: 480px; margin: 1.6rem auto 0;
}
.st-transform__stage {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 4.5rem;
  max-width: var(--container); margin-left: auto; margin-right: auto;
}
.st-panel { padding: 2rem; will-change: transform, opacity, clip-path; }
html.st-anim .st-panel { opacity: 0; transform: translateY(24px); }
.st-panel--analogue { background: #0F0D0A; }
.st-panel--digital  { background: #040F0D; }
.st-panel__tag {
  display: inline-block; font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border: 1px solid var(--rule);
  color: var(--muted); margin-bottom: 1.2rem;
}
.st-panel--digital .st-panel__tag { border-color: rgba(45,158,143,0.5); color: var(--teal); }
.st-panel__title {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  margin-bottom: 1.4rem; color: var(--ivory);
}
.st-panel__img-analogue img {
  width: 100%; object-fit: cover; object-position: top left;
  filter: sepia(0.06) brightness(1.03);
}
.st-panel__img-digital img {
  width: 100%;
  border: 1px solid rgba(45,158,143,0.2);
  box-shadow: 0 0 32px rgba(45,158,143,0.06) inset;
}
.st-panel__status {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--teal);
  margin-bottom: 1.2rem;
}
.st-panel__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  animation: st-pulse 1.6s ease-in-out infinite;
}
@keyframes st-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.8); }
}
.st-divider {
  background: #161616;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.2rem; padding: 2rem 0;
  will-change: transform, opacity; position: relative;
}
html.st-anim .st-divider { opacity: 0; transform: scale(0.85); }
.st-divider__ipad {
  width: 32px; height: 42px;
  border: 1.5px solid var(--muted); border-radius: 3px;
  position: relative; overflow: hidden;
}
.st-transform__scan-line {
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--teal);
}
.st-divider__arrow { color: var(--teal); font-size: 1.1rem; }
.st-divider__label {
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  writing-mode: vertical-rl;
}

/* ── 11. HOW IT WORKS ──────────────────────────────────────── */
.st-how { padding: var(--section-pad) var(--gutter); }
.st-how__bar {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.4rem;
  max-width: var(--container); margin: 0 auto;
}
.st-how__count { font-size: 0.72rem; letter-spacing: 0.14em; color: var(--faint); }
.st-how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  max-width: var(--container); margin: 0 auto;
}
.st-step { padding: 3rem 2.5rem 3.5rem; border-right: 1px solid var(--rule); }
.st-step:last-child { border-right: none; }
.st-step__num {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--teal); display: block; margin-bottom: 1.6rem;
}
.st-step__image-wrap { overflow: hidden; margin-bottom: 2rem; }
.st-step__image {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.3s ease, transform 0.6s var(--ease-expo);
  will-change: clip-path, filter;
}
.st-step:hover .st-step__image { filter: grayscale(0); transform: scale(1.02); }
.st-step__title { margin-bottom: 0.9rem; color: var(--ivory); }
.st-step__body { font-size: 0.875rem; color: var(--muted); }

/* ── 12. METRICS ───────────────────────────────────────────── */
.st-metrics { padding: var(--section-pad) var(--gutter); }
.st-metrics .st-h2 { max-width: 800px; }
.st-metrics .st-h2 .st-em { color: var(--maroon); }
.st-metrics__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule-dark);
  margin-top: 4rem; max-width: var(--container);
}
.st-metric { padding: 2.5rem 2rem 0 0; border-right: 1px solid var(--rule-dark); }
.st-metric:last-child { border-right: none; }
.st-metric:not(:first-child) { padding-left: 2rem; }
.st-metric__num {
  font-size: clamp(3rem, 5.5vw, 5rem); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1; color: var(--ink);
  display: block;
}
.st-metric__label {
  display: block; margin-top: 0.9rem;
  font-size: 0.72rem; letter-spacing: 0.08em;
  color: rgba(10,10,10,0.55);
}

/* ── 13. MARQUEE ───────────────────────────────────────────── */
.st-marquee {
  overflow: hidden; padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.st-marquee-track {
  display: flex; gap: 2rem; white-space: nowrap; will-change: transform;
}
.st-marquee-track span {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(244,241,235,0.2);
  flex-shrink: 0;
}
.st-marquee-sep { color: rgba(244,241,235,0.08) !important; }
@media (prefers-reduced-motion: no-preference) {
  .st-marquee--css .st-marquee-track { animation: st-marquee 28s linear infinite; }
}
@keyframes st-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── 14. CTA ───────────────────────────────────────────────── */
.st-cta {
  text-align: center; padding: 12rem var(--gutter);
  position: relative; overflow: hidden;
}
.st-cta__watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22vw; font-weight: 800; letter-spacing: 0.04em;
  color: var(--ivory); opacity: 0.02;
  pointer-events: none; user-select: none; white-space: nowrap;
}
.st-cta__hl { position: relative; }
.st-cta__hl .st-em { color: var(--teal); }
.st-cta__actions {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 3.5rem; position: relative; flex-wrap: wrap;
}
.st-btn {
  display: inline-block; padding: 1rem 2.4rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease,
              border-color var(--dur-fast) ease;
}
.st-btn--primary {
  background: var(--teal); color: var(--ink); border: 1px solid var(--teal);
}
.st-btn--primary:hover {
  background: var(--teal-dark); border-color: var(--teal-dark); color: var(--ivory);
}
.st-btn--ghost {
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(244,241,235,0.35);
}
.st-btn--ghost:hover {
  border-color: var(--ivory); background: var(--ivory); color: var(--ink);
}

/* ── 15. FOOTER ────────────────────────────────────────────── */
.st-footer { padding: 5rem var(--gutter) 0; }
.st-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem; max-width: var(--container); margin: 0 auto;
  padding-bottom: 4rem;
}
.st-footer__brand .st-nav__logo { font-size: 0.95rem; }
.st-footer__tagline {
  font-size: 0.8rem; color: var(--muted);
  margin-top: 1rem; max-width: 260px;
}
.st-footer__head {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 1.4rem;
}
.st-footer__links { list-style: none; margin: 0; padding: 0; }
.st-footer__links li { margin-bottom: 0.8rem; }
.st-footer__links a {
  font-size: 0.85rem; color: var(--muted);
  transition: color var(--dur-fast) ease;
}
.st-footer__links a:hover { color: var(--ivory); }
.st-footer__cities { font-size: 0.85rem; color: var(--muted); line-height: 2.2; }
.st-footer__bottom {
  border-top: 1px solid var(--rule); padding: 1.6rem 0;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: var(--container); margin: 0 auto;
}
.st-footer__bottom span { font-size: 0.68rem; letter-spacing: 0.06em; color: var(--faint); }

/* ── 16. SUBPAGE HERO ──────────────────────────────────────── */
.st-page-hero {
  padding: calc(var(--section-pad) + 6rem) var(--gutter) var(--section-pad);
  position: relative; z-index: 4;
}
.st-page-hero__hl {
  font-weight: 800; font-size: clamp(2.8rem, 6.5vw, 6rem);
  line-height: 0.94; letter-spacing: -0.035em; color: var(--ivory);
  max-width: 1000px; overflow-wrap: break-word;
}
.st-page-hero__hl .st-em { color: var(--teal); font-weight: 700; }
.st-page-hero__sub {
  max-width: 480px; margin-top: 2rem;
  color: var(--muted); font-size: 0.95rem;
}

/* ── 17. PRICING ───────────────────────────────────────────── */
.st-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--rule);
  max-width: var(--container); margin: 0 auto;
}
.st-plan { padding: 3.5rem 3rem; }
.st-plan + .st-plan { border-left: 1px solid var(--rule); }
.st-plan--featured { background: var(--mid); position: relative; }
.st-plan__flag {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--ink);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 0.4rem 1rem;
}
.st-plan__name { color: var(--ivory); margin-bottom: 0.4rem; }
.st-plan__for { font-size: 0.8rem; color: var(--faint); margin-bottom: 2.2rem; }
.st-plan__price {
  font-size: 2.2rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ivory);
}
.st-plan__price small {
  font-size: 0.75rem; font-weight: 400;
  color: var(--muted); letter-spacing: 0.04em;
}
.st-plan__features { list-style: none; margin: 2.4rem 0 2.8rem; padding: 0; }
.st-plan__features li {
  font-size: 0.875rem; color: var(--muted);
  padding: 0.75rem 0 0.75rem 1.6rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.st-plan__features li::before {
  content: "—"; position: absolute; left: 0; color: var(--teal);
}
.st-compare { max-width: var(--container); margin: 0 auto; }
.st-compare__row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0; align-items: center;
}
.st-compare__row--head { border-bottom: 1px solid rgba(244,241,235,0.3); }
.st-compare__feature { font-size: 0.875rem; color: var(--muted); }
.st-compare__row--head .st-compare__feature,
.st-compare__row--head .st-compare__val {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory);
}
.st-compare__val { text-align: center; font-size: 0.85rem; color: var(--ivory); }
.st-compare__val .yes { color: var(--teal); }
.st-compare__val .no  { color: var(--faint); }

/* ── 18. BLOG ──────────────────────────────────────────────── */
.st-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--rule);
  max-width: var(--container); margin: 0 auto;
}
.st-post { border-right: 1px solid var(--rule); position: relative; display: block; }
.st-post:nth-child(3n) { border-right: none; }
.st-post:nth-child(n+4) { border-top: 1px solid var(--rule); }
.st-post__image-wrap { overflow: hidden; aspect-ratio: 4 / 3; }
.st-post__image {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.75);
  transition: filter 0.4s ease, transform 0.8s var(--ease-expo);
}
.st-post:hover .st-post__image {
  filter: grayscale(0.2) brightness(0.85); transform: scale(1.04);
}
.st-post__body { padding: 1.8rem 1.8rem 2.2rem; }
.st-post__date {
  font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--faint);
}
.st-post__title { color: var(--ivory); margin: 0.8rem 0 1.4rem; font-size: 1.15rem; line-height: 1.35; }
.st-post__read {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
}

/* ── 19. ARTICLE ───────────────────────────────────────────── */
.st-article {
  max-width: 720px; margin: 0 auto;
  padding: 0 var(--gutter) var(--section-pad);
}
.st-article__meta {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--rule); padding-bottom: 1.5rem;
}
.st-article h2 {
  font-weight: 700; font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15; letter-spacing: -0.02em; color: var(--ivory);
  margin: 3.5rem 0 1.2rem;
}
.st-article h3 {
  font-weight: 600; font-size: 1.05rem; color: var(--ivory);
  margin: 2.4rem 0 0.8rem;
}
.st-article p { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.3rem; }
.st-article strong { color: var(--ivory); font-weight: 600; }
.st-def {
  border-left: 3px solid var(--teal);
  background: rgba(45,158,143,0.05);
  padding: 1.6rem 1.8rem; margin: 2rem 0 2.4rem;
}
.st-def h3 { margin: 0 0 0.7rem; color: var(--teal); font-size: 0.95rem; }
.st-def p { margin-bottom: 0; font-size: 0.9rem; }
.st-article__lede {
  font-size: 1.1rem !important; font-weight: 300; line-height: 1.75;
  color: var(--ivory) !important;
}
.st-article hr { border: none; border-top: 1px solid var(--rule); margin: 3.5rem 0; }

/* ── 20. FAQ ACCORDION ─────────────────────────────────────── */
.st-faq { max-width: 820px; margin: 0 auto; }
.st-faq__item { border-bottom: 1px solid var(--rule); }
.st-faq__item input { position: absolute; opacity: 0; pointer-events: none; }
.st-faq__q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; padding: 1.6rem 0; cursor: pointer;
  font-weight: 600; font-size: 1.05rem; color: var(--ivory);
  transition: color var(--dur-fast) ease;
}
.st-faq__q:hover { color: var(--teal); }
.st-faq__q::after {
  content: "+"; font-weight: 300; font-size: 1.6rem; color: var(--teal);
  flex-shrink: 0; line-height: 1;
  transition: transform var(--dur-fast) var(--ease-expo);
}
.st-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-expo); }
.st-faq__a-inner { padding: 0 0 2rem; font-size: 0.9rem; color: var(--muted); max-width: 680px; }
.st-faq__a-inner ul { margin: 0.6rem 0; padding-left: 1.2rem; }
.st-faq__a-inner li { margin-bottom: 0.2rem; }
.st-faq__item input:checked ~ .st-faq__a { max-height: 640px; }
.st-faq__item input:checked ~ .st-faq__q::after { transform: rotate(45deg); }

/* ── 21. UTILITIES ─────────────────────────────────────────── */
.st-pad-section { padding: var(--section-pad) var(--gutter); }
.st-center { text-align: center; }
.st-mt-1 { margin-top: 1rem; }
.st-mt-2 { margin-top: 2rem; }
.st-mt-3 { margin-top: 3rem; }
.st-mt-5 { margin-top: 5rem; }
.st-header-block { max-width: var(--container); margin: 0 auto 4rem; }
.st-header-block .st-label { display: block; margin-bottom: 1.4rem; }
.st-prose { max-width: 620px; font-size: 0.95rem; color: var(--muted); }
.st-prose strong { color: var(--ivory); font-weight: 600; }

/* ── 22. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .st-how__grid { grid-template-columns: 1fr; }
  .st-step { border-right: none; border-bottom: 1px solid var(--rule); padding: 2.5rem 0; }
  .st-step:last-child { border-bottom: none; }
  .st-metrics__grid { grid-template-columns: 1fr 1fr; }
  .st-metric { padding: 2rem 1.5rem 2rem 0; }
  .st-metric:nth-child(2n) { border-right: none; }
  .st-blog-grid { grid-template-columns: 1fr 1fr; }
  .st-post:nth-child(3n) { border-right: 1px solid var(--rule); }
  .st-post:nth-child(2n) { border-right: none; }
  .st-post:nth-child(n+3) { border-top: 1px solid var(--rule); }
}
@media (max-width: 768px) {
  .st-display { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .st-h2 { font-size: clamp(1.6rem, 6vw, 2.8rem); }
  .st-nav__links { display: none; }
  .st-nav__burger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .st-nav__burger span { width: 22px; height: 1.5px; background: var(--ivory); display: block; }
  .st-nav.is-open .st-nav__links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.96);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    padding: 2rem var(--gutter); gap: 1.4rem;
    border-bottom: 1px solid var(--rule);
  }
  .st-atelier { grid-template-columns: 1fr; min-height: 0; }
  .st-atelier__image-wrap { max-height: 55vh; }
  .st-atelier__content { padding: 4rem var(--gutter); }
  .st-transform__stage { grid-template-columns: 1fr; }
  .st-divider {
    flex-direction: row; padding: 1.4rem 0;
    border-left: none; border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .st-divider__label { writing-mode: horizontal-tb; }
  .st-pricing-grid { grid-template-columns: 1fr; }
  .st-plan + .st-plan { border-left: none; border-top: 1px solid var(--rule); }
  .st-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .st-compare__row { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 480px) {
  .st-metrics__grid { grid-template-columns: 1fr; }
  .st-metric { border-right: none; border-bottom: 1px solid var(--rule-dark); padding: 2rem 0; }
  .st-metric:last-child { border-bottom: none; }
  .st-blog-grid { grid-template-columns: 1fr; }
  .st-post, .st-post:nth-child(3n) { border-right: none; }
  .st-post:nth-child(n+2) { border-top: 1px solid var(--rule); }
  .st-hero__scroll { display: none; }
  .st-cta { padding: 8rem var(--gutter); }
}

/* ── 23. REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .st-hero-gradient,
  .st-hero__scroll-line::after,
  .st-panel__dot { animation: none !important; }
  .st-line .line-inner { transform: none !important; }
  .st-hero__eyebrow, .st-hero__sub, .st-hero-pill,
  .st-hero__scroll, .st-panel, .st-divider {
    opacity: 1 !important; transform: none !important;
  }
  html { scroll-behavior: auto; }
}
/* ── DISPLAY SIZE FIX: prevents overflow on all screens ── */
.st-display {
  font-size: clamp(2.5rem, 6.5vw, 7rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.035em !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}
.st-hero__line {
  padding-bottom: 0.08em !important;
}
/* Prevent hero content from going edge-to-edge */
.st-hero__content {
  max-width: 900px !important;
}
