/* Yugam design v2 — progressive visual enhancement.
   Loaded AFTER inline styles. Removing this file leaves a working site. */

/* ============================================================
   DESIGN TOKENS — source of truth for the refinement layer.
   Color vars already exist in each page's inline <style>;
   these add missing tokens + the full modular type scale.
   ============================================================ */
:root {
  /* Colors — supplement inline vars */
  --stone-2: #EDE7DF;
  --card: #FFFFFF;
  --card-border: #E4DCD0;
  --pos: #1F8A5B;
  --neg: #B4462A;
  --teak-light: #C9A94E;

  /* Modular type scale (ratio ≈ 1.4) */
  --fs-display: clamp(48px, 6.5vw, 90px);   /* homepage hero H1 only */
  --fs-h1:      clamp(40px, 4.6vw, 64px);   /* inner-page / article H1 */
  --fs-h2:      clamp(30px, 3vw,   44px);   /* section headings */
  --fs-h3:      clamp(22px, 2vw,   30px);   /* card / subsection headings */
  --fs-lead:    17px;                        /* hero/section intro paragraph */
  --fs-body:    16px;                        /* body copy, never below 16 */
  --fs-small:   13.5px;                      /* card body, captions */
  --fs-kicker:  12px;                        /* mono eyebrow/kicker */

  /* Spacing rhythm */
  --section-pad: clamp(72px, 9vw, 132px);
}

/* ============================================================
   AMBIENT CONSTELLATION — canvas positioning for inner-page heroes.
   enhance.css covers [data-constellation]; this covers [data-constellation-ambient].
   ============================================================ */
[data-constellation-ambient] { position: relative; overflow: hidden; }
[data-constellation-ambient] > .yg-constellation {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
[data-constellation-ambient] > *:not(.yg-constellation) { position: relative; z-index: 1; }

/* ============================================================
   CARD SYSTEM — C3: elevated white + dark featured variant.
   Replace stone-on-stone low-contrast cards site-wide.
   ============================================================ */
.card {
  background: var(--card);
  border: none;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(26,22,18,0.08);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,22,18,0.12);
}
.card--dark {
  background: var(--ink);
  color: var(--stone);
  box-shadow: 0 14px 40px rgba(26,22,18,0.14);
}
.card--dark .kicker { color: var(--teak-light); }
.card--dark:hover { box-shadow: 0 20px 50px rgba(26,22,18,0.18); }

/* Kicker utility (mono eyebrow) */
.kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-kicker);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teak);
  display: block;
  margin-bottom: 10px;
}

/* Type scale application */
.hero__headline  { font-size: var(--fs-display) !important; }
.yg-page-hero__h1,
.stack-hero__headline,
.method-hero h1,
.article-header h1,
.page-header h1 { font-size: var(--fs-h1) !important; }

@media (max-width: 640px) {
  .card { border-radius: 12px; padding: 20px; }
}

/* ---- NAV: tighter frosted glass + link underline sweep ---- */
.nav { transition: all .4s cubic-bezier(.22,1,.36,1); }
.nav--scrolled {
    background: rgba(244,239,233,0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
.nav__link:not(.btn) { position: relative; }
.nav__link:not(.btn)::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1.5px;
    background: var(--teak);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s cubic-bezier(.22,1,.36,1);
}
.nav__link:not(.btn):hover::after,
.nav__link--active:not(.btn)::after { transform: scaleX(1); }

/* ---- HERO: position context + grain film texture ---- */
.hero { position: relative !important; overflow: hidden; }
/* Grain sits on top of everything at near-zero opacity — adds film texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 10;
}
.hero .container { position: relative; z-index: 1; }

/* ---- HEADLINE WORD REVEAL: spans injected by design-v2.js ---- */
.hw {
    display: inline-block;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .72s cubic-bezier(.22,1,.36,1),
                transform .72s cubic-bezier(.22,1,.36,1);
}
.hw--vis { opacity: 1; transform: none; }

/* ---- HERO SCROLL CUE: animated bar injected by design-v2.js ---- */
.hero__scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
    pointer-events: none;
    transition: opacity .5s;
}
.hero__scroll-cue__bar {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--teak), transparent);
    transform-origin: top center;
    animation: ygScrollPulse 2.4s ease-in-out infinite;
}
@keyframes ygScrollPulse {
    0%   { opacity: 0;   transform: scaleY(0) translateY(0); }
    35%  { opacity: 0.7; transform: scaleY(1) translateY(0); }
    65%  { opacity: 0.7; transform: scaleY(1) translateY(0); }
    100% { opacity: 0;   transform: scaleY(0.6) translateY(12px); }
}

/* ---- HERO: larger cinematic headline ---- */
.hero__headline {
    font-size: clamp(48px, 6.5vw, 90px) !important;
    line-height: .97 !important;
    letter-spacing: -.015em !important;
    margin-bottom: 16px !important;
}
/* "easy" in italic teak — applied via <em> in the markup */
.hero__headline em {
    font-style: italic;
    color: var(--teak);
}
/* mono eyebrow label in teak */
.hero .label { color: var(--teak) !important; letter-spacing: .26em !important; }

/* ---- FOUNDER CARD: subtle refinements, original round photo preserved ---- */
.hero__name {
    font-size: 20px !important;
    margin-bottom: 3px !important;
}
.hero__tag {
    font-size: 10px !important;
    padding: 4px 10px !important;
    border-radius: 2px !important;
}
.hero__bio { font-size: 12.5px !important; line-height: 1.65 !important; }

/* ---- CREDENTIAL STRIP (R2 — below hero, above stat band) ---- */
.cred-strip {
    padding: 24px 80px;
    border-top: 1px solid var(--clay);
    border-bottom: 1px solid var(--clay);
    display: flex;
    align-items: baseline;
    gap: 28px;
    background: var(--stone);
}
.cred-strip__kicker {
    font-family: var(--font-mono);
    font-size: var(--fs-kicker);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teak);
    white-space: nowrap;
    flex-shrink: 0;
}
.cred-strip__text {
    font-family: var(--font-serif);
    font-size: 21px;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
}
@media (max-width: 640px) {
    .cred-strip { flex-direction: column; gap: 10px; padding: 20px 22px; }
    .cred-strip__text { font-size: 17px; }
}

/* ---- DIAGNOSTICS D1 LAYOUT ---- */
.diag-section { padding: var(--section-pad) 0; }
.diag-section__header { margin-bottom: 40px; }
.diag-section__header h2 { margin-top: 8px; margin-bottom: 12px; }
.diag-section__sub { font-size: var(--fs-lead); color: var(--bark); margin: 0; }

.diag-d1 {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}
.diag-d1__featured {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.diag-d1__title {
    font-family: var(--font-serif);
    font-size: var(--fs-h3);
    line-height: 1.1;
    margin: 4px 0 0;
}
.card--dark .diag-d1__title { color: var(--stone); }
.diag-d1__desc { font-size: var(--fs-body); line-height: 1.65; margin: 0; flex: 1; }
.card--dark .diag-d1__desc { color: rgba(244,239,233,0.78); }
.diag-d1__cta { align-self: flex-start; margin-top: auto; }
.diag-d1__card { display: flex; flex-direction: column; gap: 10px; }
.diag-d1__link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--teak);
    text-decoration: none;
    margin-top: auto;
}
.diag-d1__link:hover { color: var(--ink); }

.diag-section__all { margin-top: 20px; text-align: right; }
.diag-section__all-link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--bark);
    text-decoration: none;
}
.diag-section__all-link:hover { color: var(--teak); }

@media (max-width: 900px) {
    .diag-d1 { grid-template-columns: 1fr 1fr; }
    .diag-d1__featured { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .diag-d1 { grid-template-columns: 1fr; }
}

/* ---- NEWSLETTER SLIM STRIP ---- */
.newsletter-strip {
    background: var(--ink);
    padding: 28px 0;
}
.newsletter-strip__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.newsletter-strip__copy {
    font-size: var(--fs-body);
    color: rgba(244,239,233,0.72);
    margin: 0;
    flex: 1;
    min-width: 200px;
}
.newsletter-strip__form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.newsletter-strip__input {
    background: rgba(244,239,233,0.1);
    border: 1px solid rgba(244,239,233,0.2);
    border-radius: 6px;
    padding: 10px 14px;
    color: var(--stone);
    font-size: var(--fs-body);
    width: 220px;
    outline: none;
}
.newsletter-strip__input:focus { border-color: var(--teak-light); }
.newsletter-strip__input::placeholder { color: rgba(244,239,233,0.35); }
.newsletter-strip__btn {
    background: var(--teak-light);
    color: var(--ink);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s;
}
.newsletter-strip__btn:hover { opacity: 0.88; }
.newsletter-strip__thanks {
    display: none;
    color: var(--teak-light);
    font-family: var(--font-mono);
    font-size: 13px;
}
@media (max-width: 640px) {
    .newsletter-strip__inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .newsletter-strip__form { width: 100%; }
    .newsletter-strip__input { flex: 1; width: auto; }
}

/* ---- YG STAT BAND (dark full-bleed metrics) ---- */
.yg-band {
    background: var(--ink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.yg-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 82% 20%, rgba(139,105,20,.22), transparent 45%);
    opacity: .5;
    pointer-events: none;
}
.yg-band .container { position: relative; z-index: 1; }
.yg-band__label {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #C9A94E;
    margin-bottom: 50px;
    display: block;
}
.yg-band__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.yg-stat {
    padding-left: 22px;
    border-left: 1px solid rgba(201,169,78,.35);
}
.yg-stat__num {
    font-family: var(--font-serif);
    font-size: clamp(44px, 5vw, 66px);
    line-height: 1;
    color: var(--teak-light);
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.yg-stat__u { color: #C9A94E; }
.yg-stat__lbl { font-size: 14px; line-height: 1.5; color: #9B9183; }

/* ---- YG MANIFESTO (full-viewport quote break) ---- */
.yg-manifesto {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}
.yg-manifesto::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 65% 50% at 50% 55%, rgba(139,105,20,.07), transparent 70%);
    pointer-events: none;
}
.yg-manifesto__rule {
    width: 0; height: 1px;
    background: rgba(201,169,78,.35);
    margin-bottom: 70px;
    transition: width 1.2s cubic-bezier(.22,1,.36,1);
    position: relative; z-index: 1;
}
.yg-manifesto__rule.vis { width: min(560px, 65vw); }
.yg-manifesto__text {
    font-family: var(--font-serif);
    font-size: clamp(30px, 5vw, 76px);
    line-height: 1.1;
    color: #F4EFE9;
    text-align: center;
    max-width: 960px;
    letter-spacing: -.01em;
    position: relative; z-index: 1;
}
.yg-manifesto__text em { font-style: italic; color: #C9A94E; }
.yg-manifesto__text .w {
    display: inline-block;
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .62s cubic-bezier(.22,1,.36,1),
                transform .62s cubic-bezier(.22,1,.36,1);
    white-space: pre;
}
.yg-manifesto__text .w.vis { opacity: 1; transform: none; }
.yg-manifesto__attr {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #C9A94E;
    opacity: 0;
    margin-top: 48px;
    transition: opacity .8s .2s;
    position: relative; z-index: 1;
}
.yg-manifesto__attr.vis { opacity: .55; }

/* ---- Readiness quote card: teak left border ---- */
.readiness__quote-card {
    border-left: 3px solid var(--teak) !important;
    padding-left: 28px !important;
}
.readiness__quote {
    font-family: var(--font-serif) !important;
    font-size: clamp(17px, 2vw, 22px) !important;
    line-height: 1.55 !important;
    color: var(--ink) !important;
}

/* ---- Case studies section heading ---- */
.case-studies__header h2 {
    font-size: clamp(32px, 4vw, 54px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.012em !important;
}

/* ---- Newsletter heading ---- */
.newsletter__heading {
    font-size: clamp(26px, 3.5vw, 42px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.01em !important;
}

/* ---- Magnetic button: prevent layout shift during JS transform ---- */
[data-magnetic] { will-change: transform; }

/* ---- SERVICE CARDS: pillar hover — teak bar grows left edge ---- */
.service-card {
    position: relative !important;
    transition: transform .38s cubic-bezier(.22,1,.36,1) !important;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 2px; height: 0;
    background: var(--teak);
    transition: height .42s cubic-bezier(.22,1,.36,1);
    z-index: 1;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateX(7px) !important; }
.service-card__number { color: var(--teak) !important; opacity: .5; }

/* ---- INSIGHT CARDS: bottom teak sweep ---- */
.insight-card {
    position: relative;
    transition: transform .35s cubic-bezier(.22,1,.36,1);
    overflow: hidden;
}
.insight-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--teak);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .38s cubic-bezier(.22,1,.36,1);
}
.insight-card:hover::after { transform: scaleX(1); }
.insight-card:hover { transform: translateY(-4px); }

/* ---- TOOL CARDS: consistent hover lift ---- */
.tool-card {
    transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s !important;
}
.tool-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(26,22,18,.1) !important;
}

/* ---- METHODOLOGY HERO: cinematic headline ---- */
.method-hero { padding: 88px 0 48px !important; }
.method-hero h1 {
    font-size: clamp(44px, 5.5vw, 80px) !important;
    line-height: .97 !important;
    letter-spacing: -.015em !important;
}
.method-hero .label { color: var(--teak) !important; letter-spacing: .26em !important; }

/* ---- ABOUT PAGE HERO ---- */
.yg-page-hero {
    padding: 180px 0 70px;
    border-bottom: 1px solid var(--sand);
}
.yg-page-hero__label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teak);
    display: block;
    margin-bottom: 24px;
}
.yg-page-hero__h1 {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5.2vw, 76px);
    line-height: .97;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 28px;
    max-width: 760px;
}
.yg-page-hero__h1 em { font-style: italic; color: var(--teak); }
.yg-page-hero__desc {
    font-size: 17px;
    line-height: 1.65;
    color: var(--bark);
    max-width: 560px;
}

/* ---- AI STACK HERO ---- */
.stack-hero {
    padding: 88px 0 48px !important;
    position: relative;
    overflow: hidden;
}
.stack-hero__headline {
    font-size: clamp(44px, 5.5vw, 80px) !important;
    line-height: .97 !important;
    letter-spacing: -.015em !important;
}
.stack-hero .label { color: var(--teak) !important; }
.stack-hero__cta a { color: var(--teak) !important; font-size: 13px !important; }

/* ---- FAQ PAGE HEADER ---- */
.page-header { padding: 120px 0 48px !important; max-width: 760px !important; }
.page-header__tag {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    letter-spacing: .26em !important;
    text-transform: uppercase !important;
    color: var(--teak) !important;
    display: block !important;
    margin-bottom: 18px !important;
}
.page-header h1 {
    font-family: var(--font-serif) !important;
    font-size: clamp(32px, 4.2vw, 58px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.012em !important;
}
.page-header p {
    font-size: 16px !important;
    line-height: 1.68 !important;
    color: var(--bark) !important;
    max-width: 520px !important;
    margin-top: 14px !important;
}

/* ---- PROMPT LIBRARY HERO: targets <h1 class="hero__title"> only ---- */
h1.hero__title {
    font-size: clamp(40px, 5.2vw, 76px) !important;
    line-height: .97 !important;
    letter-spacing: -.015em !important;
}

/* ---- METHOD HERO: canvas support ---- */
.method-hero { position: relative; overflow: hidden; }

/* ---- STICKY SPLIT PROCESS SECTION ---- */
.yg-process {
    padding: 120px 0;
    background: var(--stone);
}
.yg-process__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.yg-process__sticky {
    position: sticky;
    top: 120px;
}
.yg-process__kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--teak);
    display: block;
    margin-bottom: 22px;
}
.yg-process__h2 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 3.5vw, 50px);
    line-height: 1.05;
    letter-spacing: -.012em;
    color: var(--ink);
    margin-bottom: 20px;
}
.yg-process__desc {
    font-size: 16px;
    line-height: 1.68;
    color: var(--bark);
    margin-bottom: 32px;
}
.yg-process__link {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--teak);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s;
}
.yg-process__link:hover { gap: 14px; }
.yg-process__cards { display: flex; flex-direction: column; gap: 2px; }
.yg-pillar {
    position: relative;
    padding: 36px 36px 36px 38px;
    background: #fff;
    border-bottom: 1px solid var(--sand);
    transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s;
    cursor: default;
    overflow: hidden;
}
.yg-pillar:first-child { border-top: 1px solid var(--sand); }
.yg-pillar__bar {
    position: absolute;
    left: 0; top: 0;
    width: 2px; height: 0;
    background: var(--teak);
    transition: height .42s cubic-bezier(.22,1,.36,1);
}
.yg-pillar:hover .yg-pillar__bar { height: 100%; }
.yg-pillar:hover { transform: translateX(8px); background: var(--stone-light, #FAF8F5); }
.yg-pillar__num {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--teak);
    margin-bottom: 10px;
    display: block;
}
.yg-pillar__title {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 6px;
}
.yg-pillar__duration {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--drift);
    letter-spacing: .1em;
    margin-bottom: 14px;
    display: block;
}
.yg-pillar__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--bark);
}

/* ---- ARTICLE HEADER: editorial typography ---- */
.article-header {
    padding: 120px 0 52px !important;
    max-width: 780px !important;
}
.article-header__tag {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    letter-spacing: .26em !important;
    text-transform: uppercase !important;
    color: var(--teak) !important;
    margin-bottom: 20px !important;
    display: block !important;
}
.article-header h1 {
    font-family: var(--font-serif) !important;
    font-size: clamp(32px, 4.2vw, 58px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.012em !important;
    color: var(--ink) !important;
    margin-bottom: 20px !important;
}
.article-header__meta {
    font-size: 13px !important;
    color: var(--drift) !important;
    padding-top: 18px !important;
    border-top: 1px solid var(--sand) !important;
    margin-top: 20px !important;
}
.article-header__meta a { color: var(--teak) !important; }

/* ---- ARTICLE BODY: editorial spacing and typography ---- */
.article p { font-size: 17px !important; line-height: 1.78 !important; margin-bottom: 22px !important; }
.article h2 {
    font-family: var(--font-serif) !important;
    font-size: clamp(22px, 2.8vw, 34px) !important;
    letter-spacing: -.008em !important;
    line-height: 1.15 !important;
    margin-top: 56px !important;
    margin-bottom: 18px !important;
    color: var(--ink) !important;
}
.article__callout {
    border-left: 3px solid var(--teak) !important;
    padding: 20px 26px !important;
    background: var(--stone) !important;
    border-radius: 0 4px 4px 0 !important;
    margin: 32px 0 !important;
    font-size: 15px !important;
    line-height: 1.68 !important;
}
.article__callout strong { color: var(--teak) !important; }
.article__stat {
    font-family: var(--font-mono) !important;
    font-size: 12px !important;
    letter-spacing: .14em !important;
    color: var(--teak) !important;
    text-transform: uppercase !important;
    padding: 10px 0 !important;
}

/* ---- Reduced motion: respect user preference ---- */
@media (prefers-reduced-motion: reduce) {
    .hw { transition: none; opacity: 1; transform: none; }
    .hero__scroll-cue__bar { animation: none; opacity: 0.4; }
    .yg-manifesto__text .w { transition: none; }
    .yg-manifesto__rule { transition: none; }
    .yg-manifesto__attr { transition: none; }
    .service-card, .insight-card, .tool-card, .yg-pillar { transition: none !important; }
    .service-card::before, .insight-card::after, .yg-pillar__bar { transition: none; }
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .yg-band__stats { grid-template-columns: repeat(2, 1fr); gap: 44px 30px; }
    .yg-manifesto__text { font-size: clamp(26px, 7vw, 44px); }
    .hero__photo { width: 200px !important; height: 200px !important; }
    .hero__headline { font-size: clamp(40px, 9vw, 70px) !important; }
    .yg-process__wrap { grid-template-columns: 1fr; gap: 48px; }
    .yg-process__sticky { position: static; }
    .method-hero h1 { font-size: clamp(36px, 9vw, 60px) !important; }
    .yg-page-hero__h1 { font-size: clamp(34px, 9vw, 60px); }
}
@media (max-width: 580px) {
    .yg-band__stats { grid-template-columns: 1fr 1fr; }
    .yg-manifesto { padding: 80px 24px; }
    .yg-pillar { padding: 28px 24px 28px 26px; }
    .article-header h1 { font-size: clamp(28px, 8vw, 42px) !important; }
}
