/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  padding: 140px 0 80px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-inner { position: relative; z-index: 2; width: 100%; }

.hero-title {
  font-size: clamp(2.75rem, 8vw, 7.5rem);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.035em;
  max-width: 15ch;
}
.hero-title .word { display: inline-block; }
.hero-title .accent { color: var(--yo-orange); font-style: italic; font-family: 'Fraunces', var(--font-display); font-weight: 500; }
.hero-title .swap { display: inline-block; position: relative; min-width: 6ch; vertical-align: top; }
.hero-title .swap span { display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.25rem); max-width: 52ch;
  color: var(--ink-2); margin-top: 28px; line-height: 1.55;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 32px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.hero-meta .item { display: flex; gap: 14px; align-items: flex-start; max-width: 240px; }
.hero-meta .num { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--yo-orange); line-height: 1; }
.hero-meta .label { font-size: 13px; color: var(--ink-3); line-height: 1.4; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }

/* Hero V2 : mots qui mutent */
.hero-rotate { display: inline-flex; align-items: baseline; gap: 0.2em; }
.rotate-wrap { display: inline-block; position: relative; overflow: hidden; height: 1em; vertical-align: baseline; min-width: 7ch; }
.rotate-wrap span {
  display: inline-block; position: absolute; left: 0; top: 0;
  color: var(--yo-orange);
  opacity: 0; transform: translateY(100%);
  transition: opacity .6s, transform .6s var(--ease-out-expo);
  white-space: nowrap;
}
.rotate-wrap span.active { opacity: 1; transform: translateY(0); }
.rotate-wrap span.exit { opacity: 0; transform: translateY(-100%); }

/* Hero V3 : galerie parallax */
.hero-gallery { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-gallery .card {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(14,17,22,0.25);
  background: var(--card); border: 1px solid var(--line);
}
.hero-gallery .card img { width: 100%; height: 100%; object-fit: cover; }
.hero-gallery .c1 { top: 8%; right: 6%; width: 22vw; height: 28vw; max-width: 280px; max-height: 340px; transform: rotate(6deg); }
.hero-gallery .c2 { top: 32%; right: 26%; width: 18vw; height: 24vw; max-width: 240px; max-height: 300px; transform: rotate(-4deg); }
.hero-gallery .c3 { top: 54%; right: 10%; width: 20vw; height: 24vw; max-width: 260px; max-height: 300px; transform: rotate(3deg); }
.hero-gallery .c4 { top: 12%; left: 55%; width: 12vw; height: 12vw; max-width: 140px; max-height: 140px; border-radius: 50%; transform: rotate(-8deg); }
@media (max-width: 900px) { .hero-gallery { opacity: 0.2; } }

/* Mix: particles behind + parallax cards on top, both softened */
.hero-variant-mix .hero-canvas { opacity: 0.75; }
.hero-variant-mix .hero-gallery { mix-blend-mode: normal; }
.hero-variant-mix .hero-gallery .card { box-shadow: 0 40px 80px -24px rgba(14,17,22,0.35), 0 0 0 1px rgba(255,255,255,0.06); backdrop-filter: blur(2px); }
.hero-variant-mix .hero-gallery .c1 { top: 10%; right: 5%; width: 20vw; height: 26vw; max-width: 260px; max-height: 320px; }
.hero-variant-mix .hero-gallery .c2 { top: 36%; right: 28%; width: 16vw; height: 22vw; max-width: 220px; max-height: 280px; }
.hero-variant-mix .hero-gallery .c3 { top: 58%; right: 12%; width: 18vw; height: 22vw; max-width: 240px; max-height: 280px; }
.hero-variant-mix .hero-gallery .c4 { top: 14%; left: 52%; width: 11vw; height: 11vw; max-width: 130px; max-height: 130px; }

/* Hero V1 canvas */
.hero-canvas canvas { width: 100%; height: 100%; display: block; }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--ink-3); text-transform: uppercase; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line { width: 1px; height: 40px; background: var(--ink-3); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; inset: 0; background: var(--yo-orange); animation: scrollDown 2s infinite; }
@keyframes scrollDown { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

/* ============ SERVICES ============ */
.services { background: var(--bg); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.services-header h2 { max-width: 18ch; }
.services-header .lead { max-width: 36ch; color: var(--ink-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--card);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; transition: background .4s, color .4s;
  min-height: 280px;
}
.service-card:hover { background: var(--ink); color: var(--bg); }
.service-card:hover h3, .service-card:hover p, .service-card:hover .arrow { color: var(--bg); }
.service-card:hover .icon-wrap { background: var(--yo-orange); color: #fff; transform: rotate(-6deg); }
.service-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--bg-2); display: grid; place-items: center;
  color: var(--yo-orange); transition: all .4s var(--ease-out-expo);
}
.service-card h3 { margin-top: auto; }
.service-card p { font-size: 15px; }
.service-card .arrow {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-3); transition: color .3s;
}
.service-card .arrow svg { transition: transform .3s var(--ease-out-expo); }
.service-card:hover .arrow svg { transform: translateX(6px); }
.service-card.featured { border: 2px solid var(--yo-orange); }
.service-card.featured .icon-wrap { background: var(--yo-orange); color: #fff; }

/* ============ ABOUT ============ */
.about { background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-images { position: relative; aspect-ratio: 1; }
.about-images .ph {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, var(--yo-blue), var(--yo-blue-dark)); color: rgba(255,255,255,0.3);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  box-shadow: 0 30px 60px -20px rgba(14,17,22,0.3);
}
.about-images .ph1 { top: 0; left: 0; width: 55%; height: 65%; background: linear-gradient(135deg, #EB9222, #D27814); }
.about-images .ph2 { bottom: 0; right: 0; width: 65%; height: 70%; background: linear-gradient(135deg, #2C5F8D, #1B3F60); }
.about-images .ph3 {
  position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--bg); color: var(--ink); font-family: var(--font-display); font-weight: 600;
  font-size: 14px; text-align: center; padding: 20px; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
  border: 1px solid var(--line);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.about-images .ph3 span { transform: rotate(0deg); }

.about-content h2 { margin-bottom: 24px; }
.about-content h2 .it { font-family: 'Fraunces', var(--font-display); font-style: italic; font-weight: 400; color: var(--yo-orange); }
.about-content p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; max-width: 48ch; }
.about-content p strong { color: var(--yo-blue); font-weight: 600; }
.about-sig { margin-top: 32px; display: flex; gap: 16px; align-items: center; }
.about-sig .avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--yo-orange), var(--yo-blue)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.about-sig .text { font-size: 14px; color: var(--ink-3); }
.about-sig .text strong { display: block; color: var(--ink); font-weight: 600; font-size: 15px; }

/* ============ STATS ============ */
.stats { background: var(--ink); color: var(--bg); padding: 100px 0; }
html[data-a11y-contrast="high"] .stats { border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.stats .container { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; } }
.stat { position: relative; }
.stat .num { font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 700; line-height: 0.9; letter-spacing: -0.03em; color: var(--bg); }
.stat .num em { font-style: normal; color: var(--yo-orange); }
.stat .label { font-size: 14px; color: rgba(244,241,236,0.6); margin-top: 8px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }

/* ============ WHY ============ */
.why { background: var(--bg); }
.why-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: flex-start; }
@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; gap: 40px; } }
.why-list { display: flex; flex-direction: column; gap: 2px; }
.why-item {
  padding: 28px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 60px 1fr auto; gap: 20px; align-items: center;
  cursor: pointer; transition: padding .3s;
}
.why-item:first-child { border-top: 1px solid var(--line); }
.why-item:hover { padding-left: 16px; padding-right: 16px; background: var(--bg-2); }
.why-item .idx { font-family: var(--font-mono); color: var(--ink-3); font-size: 13px; letter-spacing: 0.1em; }
.why-item h3 { font-size: 24px; font-weight: 600; }
.why-item:hover h3 { color: var(--yo-orange); }
.why-item .plus { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: all .3s; }
.why-item:hover .plus { background: var(--yo-orange); border-color: var(--yo-orange); color: #fff; transform: rotate(90deg); }

/* ============ MAINTENANCE / PRICING ============ */
.pricing { background: var(--bg-2); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 60px; }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 20px;
  position: relative; transition: all .4s var(--ease-out-expo);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(14,17,22,0.15); border-color: var(--ink); }
.plan.featured { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.plan.featured h3, .plan.featured .price, .plan.featured li, .plan.featured .unit { color: var(--bg); }
.plan.featured::before { content: "Le plus choisi"; position: absolute; top: -12px; left: 24px; background: var(--yo-orange); color: #fff; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.plan .name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.plan.featured .name { color: var(--yo-orange-soft); }
.plan .price { font-family: var(--font-display); font-size: 54px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.plan .price .unit { font-size: 14px; color: var(--ink-3); font-family: var(--font-body); font-weight: 400; letter-spacing: 0; margin-left: 4px; }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.plan li { display: flex; gap: 10px; align-items: center; color: var(--ink-2); }
.plan li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--yo-orange); flex-shrink: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 10.5L3.5 7.5l1-1 2 2 4-4 1 1z'/></svg>"); background-size: contain; }
.plan .btn { justify-content: center; margin-top: auto; }

/* ============ WORK / REALISATIONS ============ */
.work { background: var(--bg); }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 60px; }
.work-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-2); }
.work-card a { display: block; width: 100%; height: 100%; position: relative; }
.work-card .ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,0.5); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  transition: transform .8s var(--ease-out-expo);
}
.work-card:hover .ph { transform: scale(1.05); }
.work-card .overlay {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  color: #fff; opacity: 1;
}
.work-card .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yo-orange-soft); }
.work-card h3 { color: #fff; font-size: 22px; margin-top: 4px; }
.work-card .go { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); display: grid; place-items: center; color: #fff; transform: rotate(-45deg); transition: all .3s; }
.work-card:hover .go { background: var(--yo-orange); transform: rotate(0); }
.work-card.sz-6 { grid-column: span 6; }
.work-card.sz-4 { grid-column: span 4; }
.work-card.sz-8 { grid-column: span 8; }
@media (max-width: 900px) {
  .work-card.sz-6, .work-card.sz-4, .work-card.sz-8 { grid-column: span 12; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--bg-2); }
.testi-head { display: flex; align-items: center; gap: 24px; justify-content: space-between; flex-wrap: wrap; margin-bottom: 60px; }
.rating-chip { display: inline-flex; align-items: center; gap: 14px; background: var(--card); border: 1px solid var(--line); padding: 12px 20px; border-radius: 999px; }
.rating-chip .stars { color: #F5A623; font-size: 16px; letter-spacing: 2px; }
.rating-chip strong { font-family: var(--font-display); font-size: 20px; }
.rating-chip span { font-size: 13px; color: var(--ink-3); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 20px; transition: all .4s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(14,17,22,0.12); }
.testi-card .stars { color: #F5A623; letter-spacing: 3px; }
.testi-card blockquote { font-size: 17px; line-height: 1.55; color: var(--yo-blue); margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.testi-card .who { display: flex; gap: 12px; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.testi-card .who .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--yo-orange), var(--yo-blue)); color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 16px; font-family: var(--font-display); }
.testi-card .who strong { display: block; font-size: 15px; }
.testi-card .who em { font-style: normal; font-size: 13px; color: var(--ink-3); }

/* ============ BLOG ============ */
.blog { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; gap: 20px; cursor: pointer; }
.post .thumb { aspect-ratio: 16/10; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--yo-blue-light), var(--yo-blue-dark)); position: relative; }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post .thumb .ph-label { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,0.3); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; }
.post:nth-child(2) .thumb { background: linear-gradient(135deg, var(--yo-orange), var(--yo-orange-dark)); }
.post:nth-child(3) .thumb { background: linear-gradient(135deg, var(--ink-2), var(--ink)); }
.post .meta { display: flex; gap: 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px; }
.post .meta .cat { color: var(--yo-orange-dark); }
.post h3 { font-size: 22px; font-weight: 600; transition: color .3s; line-height: 1.35; }
.post:hover h3 { color: var(--yo-orange); }
.post p { font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ============ BLOG PAGE ============ */
.blog-hero { padding: 180px 0 72px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.blog-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; }
.blog-hero .hero-sub { font-size: 18px; color: var(--ink-2); max-width: 600px; margin-top: 20px; line-height: 1.6; }
.blog-listing { padding: 80px 0 120px; background: var(--bg); }
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 56px; }
.filter-chip { padding: 10px 22px; border-radius: 100px; border: 1px solid var(--line); background: transparent; color: var(--ink-2); font-size: 14px; cursor: pointer; transition: all .25s; font-family: var(--font-body); }
.filter-chip:hover { border-color: var(--ink-3); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.filter-chip.active[style] { background: var(--chip-color); border-color: var(--chip-color); color: #fff; }
.blog-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; row-gap: 56px; }
@media (max-width: 900px) { .blog-grid-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid-full { grid-template-columns: 1fr; } }
.blog-loading { display: flex; justify-content: center; align-items: center; min-height: 300px; }
.blog-loading .spinner { width: 32px; height: 32px; border: 3px solid var(--line); border-top-color: var(--yo-orange); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.blog-empty { text-align: center; padding: 80px 0; color: var(--ink-3); font-size: 18px; }
.blog-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 72px; }
.page-num { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: transparent; color: var(--ink-2); font-size: 14px; cursor: pointer; transition: all .25s; display: grid; place-items: center; font-family: var(--font-body); }
.page-num:hover { border-color: var(--ink-3); color: var(--ink); }
.page-num.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ============ ARTICLE PAGE ============ */
.article-hero { padding: 160px 0 56px; background: var(--bg-2); }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: var(--ink-3); margin-bottom: 40px; }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--yo-orange); }
.article-meta-top { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 24px; }
.cat-badge { padding: 5px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; background: color-mix(in srgb, var(--cat-color) 12%, transparent); color: var(--cat-color); }
.article-title { font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; line-height: 1.18; }
.article-chapeau { font-size: 19px; color: var(--ink-2); margin-top: 24px; line-height: 1.65; font-family: var(--font-display); font-style: italic; font-weight: 400; }
.article-cover { margin-top: 48px; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21/9; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 72px 0 56px; background: var(--bg); }
.article-content { font-size: 17px; line-height: 1.8; color: var(--ink); }
.article-content h2 { font-size: 26px; font-weight: 700; margin: 56px 0 20px; }
.article-content h3 { font-size: 20px; font-weight: 600; margin: 44px 0 16px; }
.article-content p { margin: 0 0 24px; }
.article-content ul, .article-content ol { margin: 0 0 24px; padding-left: 24px; }
.article-content li { margin-bottom: 10px; }
.article-content pre { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; overflow-x: auto; margin: 32px 0; font-family: var(--font-mono); font-size: 14px; }
.article-content code { font-family: var(--font-mono); font-size: 0.9em; background: var(--bg-2); padding: 2px 6px; border-radius: 4px; }
.article-content pre code { background: none; padding: 0; }
.article-content blockquote { border-left: 3px solid var(--yo-orange); padding: 20px 28px; margin: 32px 0; background: var(--bg-2); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--ink-2); }
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 32px 0; }
.article-content a { color: var(--yo-orange); text-decoration: underline; }
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; padding-top: 36px; border-top: 1px solid var(--line); }
.tag-chip { padding: 7px 18px; border-radius: 100px; background: var(--bg-2); color: var(--ink-3); font-size: 13px; font-family: var(--font-mono); }
.article-share { display: flex; align-items: center; gap: 16px; margin-top: 36px; padding: 28px 0; border-top: 1px solid var(--line); }
.share-btns { display: flex; gap: 10px; }
.share-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; cursor: pointer; font-size: 14px; color: var(--ink-2); text-decoration: none; transition: all .25s; }
.share-btn:hover { border-color: var(--yo-orange); color: var(--yo-orange); }
.blog-related { padding: 100px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
.blog-related h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }

/* ============ PARTNERS ============ */
.partners { padding: 60px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.partners .label { text-align: center; margin-bottom: 32px; }
.partner-item {
  font-family: var(--font-display); font-weight: 600; font-size: 24px;
  color: var(--ink-3); white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  opacity: 0.7; transition: opacity .3s, color .3s;
}
.partner-item:hover { opacity: 1; color: var(--yo-orange); }
.partner-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yo-orange); }

/* ============ CTA ============ */
.cta { background: var(--ink); color: var(--bg); padding: 140px 0; text-align: center; position: relative; overflow: hidden; }
.cta h2 { color: var(--bg); font-size: clamp(2.5rem, 6vw, 5.5rem); max-width: 18ch; margin: 0 auto; }
.cta h2 .it { font-family: 'Fraunces', var(--font-display); font-style: italic; font-weight: 400; color: var(--yo-orange); }
.cta p { max-width: 42ch; margin: 24px auto 40px; color: rgba(244,241,236,0.7); font-size: 18px; }
.cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(235,146,34,0.25), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(44,95,141,0.4), transparent 50%);
}
.cta-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 80vw; height: 80vw; max-width: 900px; max-height: 900px; border-radius: 50%;
  border: 1px solid rgba(244,241,236,0.06);
  animation: spinSlow 60s linear infinite;
}
.cta-circle:nth-child(2) { width: 60vw; height: 60vw; max-width: 700px; max-height: 700px; animation-direction: reverse; animation-duration: 40s; }
@keyframes spinSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }

/* ============ FOOTER ============ */
footer.site {
  background: var(--bg); color: var(--ink); padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--ink-2); font-size: 15px; transition: color .3s; }
.footer-col a:hover { color: var(--yo-orange); }
.footer-brand p { font-size: 15px; color: var(--ink-2); max-width: 34ch; line-height: 1.55; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); flex-wrap: wrap; gap: 16px; }
.footer-bottom-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============ LEGAL PAGES ============ */
.legal-hero { padding: 180px 0 72px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; }
.legal-body { padding: 72px 0 56px; }
.legal-content { font-size: 16px; line-height: 1.75; color: var(--ink); }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--ink); margin: 48px 0 16px; font-family: var(--font-display); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 16px; }
.legal-content a { color: var(--yo-orange); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; }
.legal-content a:hover { color: var(--yo-blue); }
.legal-content strong { color: var(--ink); font-weight: 600; }

/* ============ LANGUAGE SWITCHER ============ */
.lang-switcher { position: relative; display: inline-flex; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: transparent; border: 1px solid var(--line);
  font: 500 13px var(--font-mono); letter-spacing: 0.04em;
  color: var(--ink); cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.lang-btn:hover { background: var(--card); border-color: var(--ink-3); }
.lang-btn .lang-flag { display: flex; align-items: center; line-height: 1; }
.lang-btn .lang-code { letter-spacing: 0.06em; }
.lang-header .lang-btn { padding: 8px 12px; }
.lang-footer .lang-btn { border-color: rgba(244,241,236,0.18); color: var(--ink-2); }
.lang-footer .lang-btn:hover { background: rgba(244,241,236,0.06); color: var(--ink); border-color: rgba(244,241,236,0.35); }

.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; padding: 6px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 20px 48px -20px rgba(15,18,23,0.25), 0 6px 16px -8px rgba(15,18,23,0.15);
  list-style: none; margin: 0;
  z-index: 100;
  animation: langMenuIn .18s ease-out;
}
@keyframes langMenuIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
.lang-footer .lang-menu {
  top: auto; bottom: calc(100% + 8px);
  background: #fff; border-color: rgba(0,0,0,0.1);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.2), 0 6px 16px -8px rgba(0,0,0,0.12);
}
.lang-menu li { margin: 0; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 9px 12px;
  background: transparent; border: 0; border-radius: 10px;
  font: 500 14px var(--font-sans); color: var(--ink); text-align: left;
  cursor: pointer; transition: background .15s;
}
.lang-menu button:hover { background: var(--card); }
.lang-menu button.active { color: var(--yo-orange); }
.lang-footer .lang-menu button { color: #1a1d23; }
.lang-footer .lang-menu button:hover { background: #f4f1ec; color: #0e1116; }
.lang-footer .lang-menu button.active { color: var(--yo-orange); }
.lang-menu .lang-flag { display: flex; align-items: center; line-height: 1; }
.lang-flag svg { box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }

@media (max-width: 900px) {
  .lang-header { display: none; }
}6px; }

/* Huge title */
.huge-brand { font-family: var(--font-display); font-weight: 700; font-size: clamp(4rem, 20vw, 20rem); line-height: 0.85; letter-spacing: -0.05em; color: var(--ink); margin: 60px 0 0; opacity: 0.06; user-select: none; pointer-events: none; white-space: nowrap; overflow: hidden; }
html[data-a11y-contrast="dark"] .huge-brand { color: var(--ink); }

/* Reading guide (a11y) */
.reading-guide { position: fixed; left: 0; right: 0; height: 80px; background: rgba(255, 235, 100, 0.22); pointer-events: none; z-index: 9000; display: none; border-top: 2px solid rgba(235,146,34,0.5); border-bottom: 2px solid rgba(235,146,34,0.5); }
html[data-a11y-guide="true"] .reading-guide { display: block; }
