:root {
  color-scheme: light;
  --ink: #11101a;
  --ink-soft: #4e4b5c;
  --paper: #f4f1eb;
  --paper-deep: #e9e4db;
  --white: #fffdf9;
  --violet: #7257ff;
  --violet-dark: #4d35dc;
  --acid: #d9ff57;
  --coral: #ff765e;
  --line: rgba(17, 16, 26, 0.14);
  --radius: 1.6rem;
  --shadow: 0 28px 80px rgba(26, 20, 60, 0.14);
  --text: var(--ink);
  --text-soft: var(--ink-soft);
  --page: var(--paper);
  --surface: var(--white);
  --surface-card: rgba(255, 255, 255, 0.4);
  --surface-glass: rgba(255, 255, 255, 0.58);
  --secondary-button: rgba(255, 253, 249, 0.42);
  --header-surface: rgba(244, 241, 235, 0.9);
  --cookie-surface: #fffdf9;
  --atypyc-panel: #0d1b2a;
  --atypyc-edge: transparent;
  --atypyc-shadow: 0 28px 70px rgba(13, 27, 42, 0.24);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --text: #f7f4ed;
    --text-soft: #bbb6c8;
    --page: #12111a;
    --surface: #191822;
    --surface-card: rgba(255, 255, 255, 0.055);
    --surface-glass: rgba(18, 17, 26, 0.72);
    --secondary-button: rgba(255, 255, 255, 0.07);
    --header-surface: rgba(18, 17, 26, 0.9);
    --cookie-surface: #191822;
    --line: rgba(255, 255, 255, 0.16);
    --violet: #9b89ff;
    --violet-dark: #6751e8;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
    --atypyc-panel: #142a3f;
    --atypyc-edge: rgba(139, 166, 196, 0.5);
    --atypyc-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(139, 166, 196, 0.08), 0 0 46px rgba(65, 90, 119, 0.2);
  }
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --text: #f7f4ed;
  --text-soft: #bbb6c8;
  --page: #12111a;
  --surface: #191822;
  --surface-card: rgba(255, 255, 255, 0.055);
  --surface-glass: rgba(18, 17, 26, 0.72);
  --secondary-button: rgba(255, 255, 255, 0.07);
  --header-surface: rgba(18, 17, 26, 0.9);
  --cookie-surface: #191822;
  --line: rgba(255, 255, 255, 0.16);
  --violet: #9b89ff;
  --violet-dark: #6751e8;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --atypyc-panel: #142a3f;
  --atypyc-edge: rgba(139, 166, 196, 0.5);
  --atypyc-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(139, 166, 196, 0.08), 0 0 46px rgba(65, 90, 119, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: color 180ms ease, background-color 180ms ease;
}
body { overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
.inline-link { font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.inline-link:hover { text-decoration-thickness: 2px; }
button, input, textarea { font: inherit; }
img { max-width: 100%; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
section[id] { scroll-margin-top: 78px; }
main > section:not(.hero) { content-visibility: auto; contain-intrinsic-size: auto 1100px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 100; top: 0.5rem; left: 0.5rem; padding: 0.8rem 1rem;
  background: var(--white); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 3px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--violet); transform: scaleX(0); transform-origin: left; will-change: transform; }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0; height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(.8rem, 1.4vw, 2rem);
  padding: 0 4vw; transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled {
  background: var(--header-surface);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: inline-flex; gap: 0.7rem; align-items: center; font: 800 1rem/1 "Manrope", sans-serif; letter-spacing: -0.04em; }
.brand > span:last-child > span { color: var(--violet); }
.brand-mark { display: flex; align-items: center; justify-content: center; gap: 2px; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); }
.brand-mark i { display: block; width: 3px; border-radius: 3px; background: var(--acid); }
.brand-mark i:nth-child(1) { height: 8px; }.brand-mark i:nth-child(2) { height: 15px; }.brand-mark i:nth-child(3) { height: 10px; }
.brand-cluster { display: flex; flex: 0 0 auto; align-items: center; gap: 1.15rem; white-space: nowrap; }
.berryblue-site-brand { flex: 0 0 auto; gap: .6rem; color: var(--text); font-size: .92rem; letter-spacing: .035em; white-space: nowrap; }
.berryblue-site-brand img { width: 35px; height: 35px; object-fit: contain; transition: filter 180ms ease; }
:root[data-resolved-theme="dark"] .berryblue-site-brand img { filter: invert(1); }
.product-identity { display: flex; flex: 0 0 auto; align-items: center; gap: .75rem; padding-left: 1.15rem; border-left: 1px solid var(--line); line-height: 1; white-space: nowrap; }
.product-identity strong { flex: 0 0 auto; font: 700 1.05rem/1 "Manrope", sans-serif; letter-spacing: -.035em; white-space: nowrap; }
.product-identity span { color: var(--text-soft); font-size: .57rem; font-weight: 700; line-height: 1; letter-spacing: .035em; text-transform: uppercase; white-space: nowrap; }
.navigation { display: flex; flex: 0 1 auto; align-items: center; gap: clamp(.8rem, 1.5vw, 2rem); font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.navigation a { flex: 0 0 auto; white-space: nowrap; }
.navigation a:not(.nav-cta) { position: relative; }
.navigation a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -0.35rem; height: 2px; background: var(--violet); transition: right 160ms ease; }
.navigation a:hover::after { right: 0; }
.nav-cta { padding: 0.75rem 1rem; color: var(--white); background: var(--ink); border-radius: 999px; }
.header-controls { display: flex; flex: 0 0 auto; align-items: center; gap: .35rem; }
.header-gallery-link { display: inline-flex; min-height: 42px; padding: .55rem .85rem; align-items: center; gap: .55rem; color: var(--white); border-radius: 999px; background: var(--violet); font-size: .76rem; font-weight: 800; white-space: nowrap; box-shadow: 0 8px 24px rgba(114,87,255,.22); transition: transform 160ms ease, background 160ms ease; }
.header-gallery-link:hover { background: var(--violet-dark); transform: translateY(-1px); }
.header-gallery-link.is-current { color: var(--ink); background: var(--acid); }
.gallery-link-icon { display: grid; width: 15px; height: 15px; flex: 0 0 auto; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.gallery-link-icon i { border-radius: 1px; background: currentColor; }
.theme-toggle { position: relative; display: grid; width: 42px; height: 42px; place-items: center; overflow: hidden; padding: 0; color: var(--text); border: 1px solid var(--line); border-radius: 50%; background: var(--surface-card); cursor: pointer; }
.theme-icon { position: absolute; font-size: 1.1rem; line-height: 1; transition: opacity 160ms ease, transform 160ms ease; }
.theme-icon-moon { opacity: 0; transform: translateY(18px) rotate(25deg); }
:root[data-resolved-theme="dark"] .theme-icon-sun { opacity: 0; transform: translateY(-18px) rotate(-25deg); }
:root[data-resolved-theme="dark"] .theme-icon-moon { opacity: 1; transform: none; }
.menu-open .theme-toggle { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.menu-toggle { display: none; border: 0; background: none; padding: 0.6rem; }
.menu-toggle > span:not(.sr-only) { display: block; width: 25px; height: 2px; margin: 5px; background: var(--text); }

.hero {
  position: relative; min-height: min(900px, 100svh); height: auto; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  gap: 3vw; align-items: center; padding: 110px 6vw 64px;
}
.hero-glow { position: absolute; width: 46vw; height: 46vw; left: -22vw; top: 8%; border-radius: 50%; background: rgba(114, 87, 255, 0.1); filter: blur(3px); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.product-status { display: inline-flex; margin: 0 0 1rem; padding: .42rem .65rem; border: 1px dashed var(--line); border-radius: 999px; color: var(--text-soft); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 0.7rem; margin: 0 0 1.4rem; color: var(--text-soft); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.eyebrow > span { width: 1.7rem; height: 2px; background: var(--violet); }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 { margin: 0; font-size: clamp(3.5rem, 6.2vw, 7rem); line-height: 0.92; letter-spacing: -0.075em; }
h1 em, h2 em { color: var(--violet); font-style: normal; }
.hero h1 { max-width: 760px; font-size: clamp(3rem, 5vw, 5.8rem); line-height: .96; }
.hero-copy { max-width: 610px; margin: 2rem 0; color: var(--text-soft); font-size: clamp(1rem, 1.35vw, 1.23rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 49px; padding: 0.8rem 1.25rem; border: 1px solid transparent; border-radius: 999px; font-weight: 700; cursor: pointer; transition: transform 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--violet); }
.button-primary:hover { background: var(--violet-dark); }
.button-secondary { border-color: var(--line); background: var(--secondary-button); }
.button-gallery { gap: .55rem; color: var(--violet); border-color: rgba(114,87,255,.38); background: rgba(114,87,255,.08); }
.button-gallery:hover { border-color: var(--violet); background: rgba(114,87,255,.14); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.hero-tags li { padding: 0.48rem 0.7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--text-soft); font-size: 0.75rem; }

.hero-visual { position: relative; height: 610px; max-width: 720px; justify-self: end; width: 100%; }
.hero-sketch { position: absolute; overflow: hidden; margin: 0; border: 7px solid var(--surface); border-radius: 1.25rem; background: #eee5d5; box-shadow: var(--shadow); }
.hero-sketch picture, .hero-sketch img { display: block; width: 100%; height: 100%; }
.hero-sketch img { object-fit: cover; }
.hero-sketch-stage { left: 0; top: 7%; width: 76%; aspect-ratio: 4 / 3; transform: rotate(-3deg); }
.hero-sketch-booth { z-index: 2; right: 0; bottom: 4%; width: 48%; aspect-ratio: 4 / 3; transform: rotate(4deg); }
.visual-grid { position: absolute; inset: 4% 0 8% 8%; border-radius: 48% 30% 40% 30%; background-image: linear-gradient(rgba(17,16,26,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(17,16,26,.06) 1px, transparent 1px); background-size: 34px 34px; transform: rotate(-5deg); }
.stage-card { position: absolute; z-index: 2; left: 0; top: 8%; width: 72%; height: 58%; padding: 1rem; border: 8px solid var(--ink); border-radius: 1.4rem; background: var(--ink); transform: rotate(-4deg); box-shadow: var(--shadow); }
.stage-screen { position: relative; height: 82%; overflow: hidden; padding: 1.4rem; border-radius: 0.65rem; color: var(--white); background: linear-gradient(145deg, var(--violet-dark), #a55cff); }
.stage-screen::after { content: ""; position: absolute; width: 210px; height: 210px; right: -65px; bottom: -90px; border: 38px solid var(--acid); border-radius: 50%; opacity: 0.9; }
.screen-label { font-size: 0.62rem; letter-spacing: .15em; }
.stage-screen p { position: absolute; z-index: 2; left: 1.5rem; bottom: 1.1rem; margin: 0; font: 800 clamp(2rem, 4vw, 3.7rem)/.9 "Manrope", sans-serif; letter-spacing: -.06em; }
.screen-wave { position: absolute; top: 38%; right: 12%; width: 38%; height: 5px; background: var(--acid); box-shadow: 0 -18px 0 -1px var(--acid), 0 18px 0 -1px var(--acid); transform: skewY(-20deg); }
.stage-desk { display: flex; gap: .55rem; justify-content: center; align-items: center; height: 18%; }
.stage-desk span { width: 21%; height: 4px; border-radius: 5px; background: #736f80; }
.audience { position: absolute; display: flex; gap: 8px; bottom: -18px; left: 7%; right: 7%; align-items: end; justify-content: space-between; }
.audience i { width: 11%; aspect-ratio: 1; border-radius: 50% 50% 35% 35%; background: #282633; box-shadow: 0 14px 0 5px #282633; }
.audience i:nth-child(2n) { transform: translateY(8px); background: #3b3847; }
.booth-card { position: absolute; z-index: 4; right: 0; bottom: 4%; width: 48%; height: 47%; overflow: hidden; padding: 1.2rem; color: var(--ink); border: 6px solid var(--white); border-radius: 1.5rem; background: var(--acid); transform: rotate(5deg); box-shadow: var(--shadow); }
.booth-light { position: relative; z-index: 2; font-size: .62rem; font-weight: 800; letter-spacing: .14em; }
.booth-person { position: absolute; bottom: -14%; right: -4%; width: 58%; aspect-ratio: .72; border-radius: 50% 50% 10% 10%; background: var(--coral); transform: rotate(-6deg); }
.booth-person span { position: absolute; width: 48%; aspect-ratio: 1; left: 23%; top: -12%; border-radius: 50%; background: var(--ink); }
.booth-wave { display: flex; position: absolute; left: 1.2rem; top: 28%; align-items: center; gap: 4px; height: 45px; }
.booth-wave i { width: 4px; height: 30%; border-radius: 5px; background: var(--violet); }
.booth-wave i:nth-child(2), .booth-wave i:nth-child(4) { height: 80%; }.booth-wave i:nth-child(3) { height: 100%; }
.booth-card p { position: absolute; z-index: 3; left: 1.2rem; bottom: 1rem; margin: 0; font: 700 1.35rem/1.05 "Manrope", sans-serif; letter-spacing: -.04em; }
.visual-pill { position: absolute; z-index: 5; left: 8%; bottom: 15%; padding: .75rem 1rem; border-radius: 999px; color: var(--white); background: var(--ink); font-size: .73rem; font-weight: 700; transform: rotate(-2deg); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.visual-pill span { color: var(--coral); margin-right: .35rem; }

.section { padding: 8rem 6vw; }
.section-kicker span { display: inline-grid; width: 2.2rem; height: 2.2rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--violet); }
.section-kicker.light { color: rgba(255,255,255,.62); }.section-kicker.light span { color: var(--acid); border-color: rgba(255,255,255,.2); }
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 8vw; align-items: start; }
h2 { margin: 0; font-size: clamp(2.5rem, 4.5vw, 5.2rem); line-height: .98; letter-spacing: -.065em; }
.intro-copy { padding-top: .7rem; color: var(--text-soft); font-size: 1.08rem; line-height: 1.75; }
.intro-copy p:first-child { margin-top: 0; }
.concept-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.concept-strip article { padding: 2rem; border-right: 1px solid var(--line); }
.concept-strip article:first-child { padding-left: 0; }.concept-strip article:last-child { border-right: 0; }
.concept-strip strong, .concept-strip span { display: block; }.concept-strip strong { margin-bottom: .5rem; font: 700 1.1rem "Manrope"; }.concept-strip span { color: var(--text-soft); font-size: .9rem; line-height: 1.5; }

.experiences { background: var(--surface); }
.section-heading { max-width: 900px; margin-bottom: 4rem; }
.experience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; align-items: start; }
.experience-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); }
.experience-stage { background: #e9e4ff; }.experience-booth { background: #efffb5; }
.card-number { position: absolute; z-index: 4; top: 1.2rem; right: 1.2rem; display: grid; place-items: center; width: 2.5rem; height: 2.5rem; color: #11101a; border: 1px solid rgba(17,16,26,.24); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.card-visual { position: relative; height: 310px; overflow: hidden; }
.installation-sketch { margin: 0; background: #eee5d5; }
.installation-sketch picture, .installation-sketch img { display: block; width: 100%; height: 100%; }
.installation-sketch img { object-fit: cover; transition: transform 650ms cubic-bezier(.22,.8,.28,1); }
.experience-card:hover .installation-sketch img { transform: scale(1.025); }
.stage-lines { background-image: linear-gradient(rgba(17,16,26,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(17,16,26,.08) 1px, transparent 1px); background-size: 30px 30px; }
.mini-screen { position: absolute; left: 16%; top: 12%; width: 65%; height: 70%; padding: 1rem; color: var(--white); background: var(--ink); border: 7px solid var(--white); border-radius: .8rem; transform: perspective(500px) rotateY(8deg) rotate(-4deg); box-shadow: 20px 24px 0 rgba(114,87,255,.24); }
.mini-screen span { color: var(--acid); font-size: .65rem; letter-spacing: .2em; }.mini-screen b { position: absolute; left: 1rem; bottom: 1rem; font: 800 2.3rem/.9 "Manrope"; letter-spacing: -.06em; }
.mini-wave { position: absolute; z-index: 3; right: 8%; top: 32%; width: 35%; height: 5px; background: var(--coral); transform: rotate(-8deg); box-shadow: 0 16px 0 -1px var(--coral), 0 -16px 0 -1px var(--coral); }
.booth-lines { background: radial-gradient(circle at center, rgba(114,87,255,.1), transparent 60%); }
.experience-booth .booth-lines { background: radial-gradient(circle at 50% 42%, rgba(114,87,255,.42), #19152e 70%); }
.experience-booth .orbit { border-color: rgba(255,255,255,.2); }
.experience-booth .recording { color: var(--white); }
.experience-booth .card-number { color: #11101a; border-color: rgba(17,16,26,.24); }
:root[data-resolved-theme="dark"] .experience-card .card-number { color: #11101a; }
.mic { position: absolute; z-index: 3; left: 50%; top: 48%; transform: translate(-50%, -50%); }
.mic i { display: block; width: 62px; height: 100px; border: 7px solid var(--ink); border-radius: 35px; background: var(--violet); }.mic span { display: block; width: 7px; height: 60px; margin: -8px auto 0; background: var(--ink); box-shadow: -27px 54px 0 -1px var(--ink), 27px 54px 0 -1px var(--ink); }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(17,16,26,.24); border-radius: 50%; transform: translate(-50%, -50%) rotate(-12deg); }.orbit-one { width: 280px; height: 160px; }.orbit-two { width: 410px; height: 230px; transform: translate(-50%, -50%) rotate(18deg); }
.recording { position: absolute; right: 13%; top: 17%; font-size: .66rem; font-weight: 800; letter-spacing: .15em; }.recording span { display: inline-block; width: 8px; height: 8px; margin-left: 5px; border-radius: 50%; background: var(--coral); }
.experience-workshop { background: #d9e8f4; }
.workshop-lines { background: linear-gradient(155deg, rgba(90,135,179,.2), transparent 65%); }
.workshop-screen { position: absolute; left: 10%; top: 15%; width: 72%; height: 58%; padding: 1rem; color: var(--white); border-radius: .8rem; background: #052b47; box-shadow: 18px 18px 0 rgba(90,135,179,.3); transform: rotate(2deg); }
.workshop-screen span { color: #9dbedc; font-size: .65rem; font-weight: 700; letter-spacing: .18em; }.workshop-screen b { position: absolute; left: 1rem; bottom: 1rem; font: 800 1.8rem/.92 "Manrope"; letter-spacing: -.05em; }
.workshop-mics { position: absolute; z-index: 2; display: flex; right: 8%; bottom: 10%; gap: .45rem; align-items: end; }
.workshop-mics i { display: block; width: 16px; height: 52px; border: 4px solid var(--ink); border-radius: 10px 10px 4px 4px; background: var(--coral); transform: rotate(8deg); }.workshop-mics i:nth-child(2) { height: 65px; background: var(--violet); transform: rotate(-3deg); }.workshop-mics i:nth-child(3) { height: 45px; background: var(--acid); transform: rotate(-10deg); }
.card-content { padding: 2rem; background: var(--surface-glass); border-top: 1px solid var(--line); }
.card-type { margin: 0 0 .5rem; color: var(--violet-dark); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card-content h3 { margin: 0; font-size: 2rem; letter-spacing: -.05em; }.card-content > p:not(.card-type) { min-height: 4.5em; color: var(--text-soft); line-height: 1.55; }
.cabin-highlight { margin: 1.35rem 0 0; padding: 1.15rem; color: var(--white); border-radius: 1rem; background: var(--violet-dark); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.cabin-highlight span { display: block; margin-bottom: .55rem; color: var(--acid); font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cabin-highlight strong { display: block; font: 700 .98rem/1.3 "Manrope"; }
.cabin-highlight p { margin: .55rem 0 0; color: rgba(255,255,255,.72); font-size: .76rem; line-height: 1.5; }
.programming-note { margin: 1.35rem 0 0; padding: 1.15rem; color: var(--white); border-radius: 1rem; background: #052b47; box-shadow: inset 0 0 0 1px rgba(157,190,220,.2); }
.programming-note span { display: block; margin-bottom: .55rem; color: #9dbedc; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.programming-note strong { display: block; font: 700 .98rem/1.25 "Manrope"; }
.programming-note p { margin: .55rem 0 0; color: rgba(255,255,255,.7); font-size: .76rem; line-height: 1.5; }
.card-notice { min-height: 0 !important; margin: 1.25rem 0 0; padding: .85rem 1rem; color: var(--ink) !important; border-left: 3px solid var(--coral); background: rgba(255,255,255,.42); font-size: .76rem; font-weight: 600; }
.card-content ul, .format-card ul { margin: 1.6rem 0 0; padding: 1.3rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.card-content li, .format-card li { position: relative; margin: .65rem 0; padding-left: 1.2rem; font-size: .86rem; }.card-content li::before, .format-card li::before { content: "+"; position: absolute; left: 0; color: var(--violet); font-weight: 800; }
.card-content .live-feature { margin-top: .9rem; line-height: 1.55; }
.live-feature > strong { color: var(--text); font-weight: 800; }
.live-badge { display: inline-flex; margin: 0 .45rem .3rem 0; padding: .28rem .5rem; align-items: center; gap: .38rem; color: #7a1d12; border: 1px solid rgba(214,54,39,.32); border-radius: 999px; background: #ffe1dc; font: 800 .62rem/1 "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase; vertical-align: middle; }
.live-badge i { display: block; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #e02f24; animation: live-pulse 1.45s ease-out infinite; }

.contexts { background: var(--page); }
.contexts-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr); gap: 2rem 8vw; align-items: end; margin-bottom: 3.5rem; }
.contexts-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -.5rem; }
.contexts-heading h2 { max-width: 940px; }
.contexts-heading > p { max-width: 520px; margin: 0 0 .4rem; color: var(--text-soft); line-height: 1.7; }
.context-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.context-card { min-height: 260px; padding: 1.7rem; border: 1px solid var(--line); border-radius: 1.35rem; background: var(--surface-card); }
.context-card > span { color: var(--violet); font-size: .68rem; font-weight: 800; }
.context-card h3 { margin: 3.5rem 0 .8rem; font-size: 1.35rem; letter-spacing: -.035em; }
.context-card p { margin: 0; color: var(--text-soft); font-size: .9rem; line-height: 1.6; }
.customization-panel { display: grid; grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr); gap: clamp(2rem, 6vw, 6rem); margin-top: 1rem; padding: clamp(2rem, 4vw, 4rem); color: var(--white); border-radius: 1.6rem; background: var(--ink); box-shadow: var(--shadow); }
.customization-kicker { margin: 0 0 1rem; color: var(--acid); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.customization-panel h3 { max-width: 480px; margin: 0; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1.02; letter-spacing: -.055em; }
.customization-panel > div > p:last-child { max-width: 480px; margin: 1.2rem 0 0; color: rgba(255,255,255,.66); line-height: 1.65; }
.customization-panel ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.customization-panel li { padding: 1.35rem 1.2rem 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.customization-panel li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
.customization-panel li:nth-child(even) { padding-left: 1.2rem; }
.customization-panel strong, .customization-panel span { display: block; }
.customization-panel strong { margin-bottom: .55rem; font: 700 1rem/1.25 "Manrope", sans-serif; }
.customization-panel span { color: rgba(255,255,255,.62); font-size: .8rem; line-height: 1.55; }
.venue-band { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; padding: 1.1rem; border: 1px dashed var(--line); border-radius: 1.2rem; }
.venue-band span { padding: .5rem .75rem; color: var(--text-soft); border: 1px solid var(--line); border-radius: 999px; background: var(--surface); font-size: .72rem; font-weight: 600; }

.journey { background: var(--ink); color: var(--white); }
.journey .section-kicker { color: rgba(255,255,255,.55); }.journey .section-kicker span { color: var(--acid); border-color: rgba(255,255,255,.2); }
.journey-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9vw; }
.journey-intro { position: sticky; top: 120px; align-self: start; }.journey-intro p { max-width: 460px; color: rgba(255,255,255,.6); line-height: 1.7; }.journey h2 em { color: var(--acid); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 70px 1fr; gap: 1.5rem; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.15); }.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.steps > li > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--acid); font-size: .72rem; font-weight: 800; }
.steps h3 { margin: 0; font-size: 1.6rem; }.steps p { margin: .5rem 0 0; color: rgba(255,255,255,.6); }

.formats .section-heading > p { max-width: 600px; color: var(--text-soft); line-height: 1.65; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; align-items: stretch; }
.format-card { position: relative; min-height: 410px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-card); }
.format-card.featured { color: var(--white); background: var(--violet); border-color: var(--violet); transform: translateY(-1rem); box-shadow: var(--shadow); }.format-card.featured .format-index { color: var(--acid); border-color: rgba(255,255,255,.28); }.format-card.featured p { color: rgba(255,255,255,.75); }.format-card.featured ul { border-color: rgba(255,255,255,.2); }.format-card.featured li::before { color: var(--acid); }
.format-index { display: grid; width: 2.6rem; height: 2.6rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--violet); font-size: .75rem; font-weight: 800; }
.format-card h3 { margin: 4rem 0 1rem; font-size: 2rem; letter-spacing: -.05em; }.format-card p { color: var(--text-soft); line-height: 1.55; }
.recommended { position: absolute; top: 1rem; right: 1rem; padding: .45rem .65rem; border-radius: 999px; color: var(--ink); background: var(--acid); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.pricing-note { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: .75rem 1.2rem; margin: -1.4rem 0 2rem; padding: 1.25rem 1.4rem; align-items: center; color: var(--text); border: 1px solid rgba(114,87,255,.34); border-radius: 1.2rem; background: rgba(114,87,255,.1); box-shadow: 0 12px 32px rgba(72,52,170,.08); }
.pricing-note > span { padding: .45rem .65rem; color: var(--white); border-radius: 999px; background: var(--violet); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.pricing-note p { margin: 0; font-size: .92rem; line-height: 1.55; }
.pricing-note strong { font-family: "Manrope", sans-serif; font-weight: 800; }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-card); outline-offset: 4px; }
.comparison-table { width: 100%; min-width: 820px; border-collapse: collapse; text-align: left; }
.comparison-table caption { padding: 1.3rem 1.5rem; color: var(--text-soft); border-bottom: 1px solid var(--line); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.comparison-table th, .comparison-table td { padding: 1.25rem 1.4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.comparison-table thead th { color: var(--text); background: var(--surface); font: 700 .9rem "Manrope"; }
.comparison-table thead th:not(:first-child) { color: var(--violet); }
.comparison-table tbody th { width: 20%; color: var(--text); font-size: .82rem; }
.comparison-table tbody td { width: 26.66%; color: var(--text-soft); font-size: .84rem; line-height: 1.5; }
.comparison-table tbody tr:last-child th, .comparison-table tbody tr:last-child td { border-bottom: 0; }
.table-yes, .table-no { display: inline-flex; padding: .3rem .55rem; border-radius: 999px; font-size: .72rem; }.table-yes { color: #21420c; background: #d9ffb7; }.table-no { color: #6e2418; background: #ffe0da; }
.table-highlight { color: var(--violet); font-weight: 700; }
.live-table-cell .live-badge, .live-table-cell strong, .live-table-cell > span:last-child { display: flex; width: fit-content; }
.live-table-cell .live-badge { margin-bottom: .6rem; }
.live-table-cell strong { color: var(--text); font: 800 .86rem/1.35 "Manrope", sans-serif; }
.live-table-cell > span:last-child { margin-top: .35rem; color: var(--text-soft); font-size: .76rem; line-height: 1.45; }
.compatibility { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; margin-top: 1rem; }
.compatibility > div { display: grid; grid-template-columns: auto 1fr; gap: .65rem 1rem; align-items: center; padding: 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface-card); }
.compatibility span { grid-row: 1 / span 2; align-self: stretch; display: grid; place-items: center; padding: .7rem; border-radius: .8rem; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.compatibility-ok { color: #21420c; background: #d9ffb7; }.compatibility-no { color: #6e2418; background: #ffe0da; }
.compatibility strong { font-size: .88rem; }.compatibility p { margin: -.25rem 0 0; color: var(--text-soft); font-size: .76rem; }

.benefits { padding-top: 0; }.benefits-panel { padding: 6vw; color: var(--white); border-radius: 2.4rem; background: var(--violet-dark); }
.benefits-panel h2 em { color: var(--acid); }.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 4rem; border-top: 1px solid rgba(255,255,255,.18); }
.benefit-list article { display: grid; grid-template-columns: 45px 1fr; gap: 1rem; padding: 2rem 2rem 2rem 0; border-bottom: 1px solid rgba(255,255,255,.18); }.benefit-list article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }.benefit-list article:nth-child(even) { padding-left: 2rem; }
.benefit-list > article > span { color: var(--acid); font-size: .7rem; font-weight: 800; }.benefit-list h3 { margin: 0; font-size: 1.25rem; }.benefit-list p { margin: .6rem 0 0; color: rgba(255,255,255,.66); line-height: 1.55; font-size: .9rem; }

.references-section { overflow: hidden; padding: 5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--page); }
.references-heading { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin: 0 6vw 2rem; }
.references-kicker { margin: 0 0 .7rem; color: var(--violet); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.references-heading h2 { font-size: clamp(2rem, 3vw, 3.5rem); }
.references-gallery-button { gap: .55rem; box-shadow: 0 12px 30px rgba(114,87,255,.2); }
.reference-marquee { overflow: hidden; padding: .25rem 0; mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.reference-track { display: flex; width: max-content; animation: reference-scroll 52s linear infinite; animation-play-state: paused; }
.references-section.motion-active .reference-track { animation-play-state: running; will-change: transform; }
.reference-set { display: flex; gap: .8rem; padding-right: .8rem; }
.reference-set > a, .reference-set > span { display: flex; min-width: 170px; height: 84px; padding: 1rem 1.25rem; align-items: center; justify-content: center; gap: .7rem; color: var(--text-soft); border: 1px solid var(--line); border-radius: 1rem; background: var(--surface-card); font: 700 .82rem/1.2 "Manrope", sans-serif; text-align: center; }
.reference-set img { display: block; width: 130px; height: 52px; object-fit: contain; }
.reference-set img.reference-symbol { width: 42px; height: 42px; }
.reference-set > .reference-more { flex-direction: column; gap: .2rem; color: var(--violet); border-style: dashed; border-color: rgba(114,87,255,.48); background: rgba(114,87,255,.08); }
.reference-more strong { font-size: .88rem; }
.reference-more small { color: var(--text-soft); font: 600 .62rem/1.2 "DM Sans", sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.reference-set > a:hover { border-color: rgba(114,87,255,.42); }
@keyframes reference-scroll { to { transform: translateX(-50%); } }

.faq { border-top: 1px solid var(--line); background: var(--page); }
.faq-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr); gap: 1.5rem 7vw; align-items: end; margin-bottom: 3rem; }
.faq-heading .section-kicker { grid-column: 1 / -1; }
.faq-heading h2 { max-width: 920px; }
.faq-heading > p { max-width: 440px; margin: 0 0 .35rem; color: var(--text-soft); line-height: 1.65; }
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.faq-list details { min-width: 0; padding: 0 1.5rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface-card); transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.faq-list details:hover { border-color: rgba(114,87,255,.4); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(26,20,60,.08); }
.faq-list details[open] { border-color: rgba(114,87,255,.5); }
.faq-list summary { position: relative; padding: 1.45rem 2.3rem 1.45rem 0; cursor: pointer; list-style: none; font: 750 1rem/1.35 "Manrope", sans-serif; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 0; display: grid; width: 1.8rem; height: 1.8rem; place-items: center; color: var(--violet); border: 1px solid var(--line); border-radius: 50%; transform: translateY(-50%); transition: transform 180ms ease, background 180ms ease; }
.faq-list details[open] summary::after { color: #11101a; background: var(--acid); transform: translateY(-50%) rotate(45deg); }
.faq-list p { margin: -.25rem 0 1.5rem; padding-right: 1rem; color: var(--text-soft); line-height: 1.65; }

.partners { background: var(--surface); }.partners-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1rem; align-items: stretch; }.partners-title { padding-right: 4vw; }.partners-title p { color: var(--text-soft); line-height: 1.6; }
.partner-card { position: relative; min-height: 390px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--page); }.partner-logo { display: grid; width: 70px; height: 70px; place-items: center; border: 1px dashed var(--line); color: var(--text-soft); font-size: .65rem; }.partner-kind { margin: 3.5rem 0 .5rem; color: var(--violet); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.partner-card h3 { margin: 0; font-size: 1.5rem; }.partner-card > p:not(.partner-kind) { color: var(--text-soft); line-height: 1.55; font-size: .9rem; }.placeholder { position: absolute; bottom: 1.6rem; left: 2rem; color: var(--text-soft); font-size: .72rem; font-style: italic; }
.partners-intro { border-bottom: 1px solid var(--line); }
.partner-card-primary { border-color: rgba(114,87,255,.42); box-shadow: inset 0 3px 0 var(--violet); }

.identity-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 2rem 8vw; align-items: end; margin-bottom: 3.5rem; }
.identity-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -.5rem; }
.identity-heading h2 { max-width: 900px; }
.identity-heading > p { max-width: 480px; margin: 0 0 .4rem; color: var(--text-soft); line-height: 1.7; }
.identity-duo { display: grid; grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr); align-items: stretch; }
.identity-panel { position: relative; display: flex; min-width: 0; min-height: 570px; overflow: hidden; flex-direction: column; justify-content: space-between; padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid transparent; border-radius: 2rem; }
.identity-panel::after { content: ""; position: absolute; width: 270px; height: 270px; right: -140px; bottom: -150px; border: 1px solid currentColor; border-radius: 50%; opacity: .14; box-shadow: 0 0 0 38px transparent, 0 0 0 39px currentColor, 0 0 0 78px transparent, 0 0 0 79px currentColor; pointer-events: none; }
.identity-berry { color: #fff; background: linear-gradient(145deg, #5a87b3, #2d567a 52%, #052b47); box-shadow: 0 28px 70px rgba(5,43,71,.24); }
.identity-atypyc { color: #fff; border-color: var(--atypyc-edge); background: var(--atypyc-panel); box-shadow: var(--atypyc-shadow); }
.identity-brand { position: relative; z-index: 1; display: inline-flex; width: fit-content; align-items: center; gap: 1rem; }
.identity-brand strong { font: 800 clamp(1.35rem, 2.3vw, 2rem)/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.berry-brand strong { letter-spacing: .035em; }
.berry-symbol { display: grid; width: 68px; height: 68px; place-items: center; }
.berry-symbol img { display: block; width: 100%; height: 100%; object-fit: contain; filter: invert(1); }
.atypyc-brand { color: #fff; }
.atypyc-brand strong { letter-spacing: .035em; }.atypyc-brand strong span { color: #8ba6c4; }
.atypyc-logo { display: grid; width: 64px; height: 64px; overflow: hidden; place-items: center; border-radius: 50%; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.15), 0 8px 24px rgba(0,0,0,.2); }
.atypyc-logo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.identity-copy { position: relative; z-index: 1; margin: auto 0; padding: 4rem 0 3rem; }
.identity-role { margin: 0 0 1rem; font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.identity-berry .identity-role { color: #dce8f4; }.identity-atypyc .identity-role { color: #8ba6c4; }
.identity-copy h3 { max-width: 520px; margin: 0 0 1.3rem; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.02; letter-spacing: -.055em; }
.identity-copy > p:last-child { max-width: 560px; margin: 0; color: rgba(255,255,255,.7); line-height: 1.7; }
.identity-scope { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.identity-scope li { padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: rgba(255,255,255,.8); font-size: .72rem; }
.identity-separator { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #5a87b3; }
.identity-separator span { width: 1px; flex: 1; background: var(--line); }
.identity-separator i { width: 12px; height: 12px; margin: 14px 0; border: 3px solid var(--surface); border-radius: 50%; background: currentColor; box-shadow: 0 0 0 1px currentColor, 0 0 0 9px rgba(114,87,255,.1); }

:root[data-resolved-theme="dark"] .identity-atypyc::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 85% 10%, rgba(139,166,196,.17), transparent 36%); }
:root[data-resolved-theme="dark"] .atypyc-logo { box-shadow: 0 0 0 5px rgba(139,166,196,.13), 0 12px 30px rgba(0,0,0,.35); }
:root[data-resolved-theme="dark"] .customization-panel { color: #11101a; background: #e9e4ff; box-shadow: 0 30px 80px rgba(0,0,0,.26); }
:root[data-resolved-theme="dark"] .customization-kicker { color: #4d35dc; }
:root[data-resolved-theme="dark"] .customization-panel > div > p:last-child,
:root[data-resolved-theme="dark"] .customization-panel span { color: #5c5868; }
:root[data-resolved-theme="dark"] .customization-panel ul,
:root[data-resolved-theme="dark"] .customization-panel li { border-color: rgba(17,16,26,.16); }

/* En mode sombre, les grands encadrés deviennent des contreformes lumineuses ou plus saturées. */
:root[data-resolved-theme="dark"] .identity-berry {
  color: #fff;
  border-color: rgba(157,190,220,.62);
  background: linear-gradient(145deg, #638fb8, #2d567a 58%, #123d5d);
  box-shadow: 0 30px 80px rgba(0,0,0,.32), 0 0 42px rgba(90,135,179,.22);
}
:root[data-resolved-theme="dark"] .identity-atypyc {
  color: #fff;
  border-color: rgba(139,166,196,.72);
  background: linear-gradient(145deg, #345470, #203b54 60%, #10263a);
  box-shadow: 0 30px 80px rgba(0,0,0,.36), 0 0 46px rgba(65,90,119,.3);
}
:root[data-resolved-theme="dark"] .identity-atypyc::before { background: radial-gradient(circle at 85% 10%, rgba(139,166,196,.18), transparent 36%); }
:root[data-resolved-theme="dark"] .identity-berry .berry-symbol img { filter: invert(1); }
:root[data-resolved-theme="dark"] .identity-berry .identity-role { color: #dce8f4; }
:root[data-resolved-theme="dark"] .identity-atypyc .identity-role { color: #a9c0d6; }
:root[data-resolved-theme="dark"] .identity-copy > p:last-child { color: rgba(255,255,255,.74); }
:root[data-resolved-theme="dark"] .identity-scope li { color: rgba(255,255,255,.84); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
:root[data-resolved-theme="dark"] .atypyc-brand { color: #fff; }
:root[data-resolved-theme="dark"] .atypyc-brand strong span { color: #a9c0d6; }
:root[data-resolved-theme="dark"] .atypyc-logo { box-shadow: 0 0 0 5px rgba(139,166,196,.14), 0 12px 30px rgba(0,0,0,.32); }

:root[data-resolved-theme="dark"] .journey { color: #11101a; background: #f4f1eb; }
:root[data-resolved-theme="dark"] .journey .section-kicker { color: #595565; }
:root[data-resolved-theme="dark"] .journey .section-kicker span { color: #4d35dc; border-color: rgba(17,16,26,.18); }
:root[data-resolved-theme="dark"] .journey h2 em { color: #4d35dc; }
:root[data-resolved-theme="dark"] .journey-intro p,
:root[data-resolved-theme="dark"] .steps p { color: #5c5868; }
:root[data-resolved-theme="dark"] .steps li { border-color: rgba(17,16,26,.16); }
:root[data-resolved-theme="dark"] .steps li:hover { border-color: rgba(77,53,220,.48); }
:root[data-resolved-theme="dark"] .steps > li > span { color: #fff; background: #4d35dc; }

:root[data-resolved-theme="dark"] .benefits-panel { color: #11101a; background: #e9e4ff; box-shadow: 0 30px 80px rgba(0,0,0,.26); }
:root[data-resolved-theme="dark"] .benefits-panel h2 em { color: #4d35dc; }
:root[data-resolved-theme="dark"] .benefits-panel .section-kicker { color: #5c5868; }
:root[data-resolved-theme="dark"] .benefits-panel .section-kicker span { color: #4d35dc; border-color: rgba(17,16,26,.18); }
:root[data-resolved-theme="dark"] .benefit-list { border-color: rgba(17,16,26,.16); }
:root[data-resolved-theme="dark"] .benefit-list article { border-color: rgba(17,16,26,.16); }
:root[data-resolved-theme="dark"] .benefit-list > article > span { color: #4d35dc; }
:root[data-resolved-theme="dark"] .benefit-list p { color: #5c5868; }

:root[data-resolved-theme="dark"] .contact-panel { color: #11101a; background: #f4f1eb; box-shadow: 0 30px 90px rgba(0,0,0,.32); }
:root[data-resolved-theme="dark"] .contact-panel h2 em { color: #4d35dc; }
:root[data-resolved-theme="dark"] .contact .eyebrow { color: #5c5868; }
:root[data-resolved-theme="dark"] .contact .eyebrow > span { background: #4d35dc; }
:root[data-resolved-theme="dark"] .contact-panel > div > p:last-child { color: #5c5868; }
:root[data-resolved-theme="dark"] .contact-form label { color: #5c5868; }
:root[data-resolved-theme="dark"] .contact-form input,
:root[data-resolved-theme="dark"] .contact-form textarea { color: #11101a; border-color: rgba(17,16,26,.25); }
:root[data-resolved-theme="dark"] .contact-form input:focus,
:root[data-resolved-theme="dark"] .contact-form textarea:focus { border-color: #4d35dc; }
:root[data-resolved-theme="dark"] .form-status { color: #6b6677; }

.contact { background: var(--surface); }.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 7vw; padding: clamp(2rem, 5vw, 5rem); color: var(--white); border-radius: 2.4rem; background: var(--ink); }.contact-panel h2 em { color: var(--acid); }.contact-panel > div > p:last-child { max-width: 480px; color: rgba(255,255,255,.63); line-height: 1.7; }
.contact .eyebrow { color: rgba(255,255,255,.58); }.contact .eyebrow > span { background: var(--acid); }
.contact-form { align-self: center; }.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }.contact-form label { display: block; margin-bottom: 1rem; color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 600; }
.contact-form input, .contact-form textarea { display: block; width: 100%; margin-top: .45rem; padding: .9rem 0; color: var(--white); border: 0; border-bottom: 1px solid rgba(255,255,255,.26); outline: 0; background: transparent; resize: vertical; }.contact-form input:focus, .contact-form textarea:focus { border-color: var(--acid); }.contact-form .button { margin-top: .5rem; }.form-status { color: rgba(255,255,255,.45); font-size: .7rem; line-height: 1.4; }
.form-privacy { margin: 1rem 0 0; color: rgba(255,255,255,.48); font-size: .68rem; line-height: 1.5; }.form-privacy a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: .18em; }
.form-honeypot { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px !important; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.contact-form .button:disabled { cursor: wait; opacity: .65; }
.form-status.is-success { color: #dfff47; }
.form-status.is-error { color: #ff9a88; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding: 2.2rem 6vw; border-top: 1px solid var(--line); color: var(--text-soft); font-size: .75rem; }.site-footer > p { text-align: center; }.site-footer > div { display: flex; justify-content: flex-end; gap: 1rem; align-items: center; flex-wrap: wrap; }
.footer-link-button { padding: 0; color: var(--text-soft); border: 0; background: transparent; font: 700 .75rem/1 "DM Sans", sans-serif; cursor: pointer; }
.footer-link-button:hover { color: var(--text); }

.cookie-consent { position: fixed; z-index: 120; right: 1.25rem; bottom: 1.25rem; display: grid; width: min(620px, calc(100vw - 2.5rem)); grid-template-columns: minmax(0, 1fr) auto; gap: 1.5rem; align-items: end; padding: 1.5rem; opacity: 1; color: var(--text); border: 1px solid var(--line); border-radius: 1.35rem; background-color: var(--cookie-surface); background-image: none; backdrop-filter: none; isolation: isolate; box-shadow: 0 24px 80px rgba(17,16,26,.38); }
.cookie-consent[hidden] { display: none; }
.cookie-consent-kicker { margin: 0 0 .45rem; color: var(--violet); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cookie-consent h2 { margin: 0; font-size: 1.2rem; line-height: 1.15; letter-spacing: -.035em; }
.cookie-consent p:not(.cookie-consent-kicker) { max-width: 440px; margin: .7rem 0 0; color: var(--text-soft); font-size: .82rem; line-height: 1.55; }
.cookie-consent-actions { display: flex; gap: .55rem; }
.cookie-consent .button { min-height: 42px; padding: .65rem .9rem; font-size: .75rem; }

.legal-page { min-height: 100vh; padding-top: 78px; background: var(--page); }
.legal-hero { padding: clamp(5rem, 9vw, 9rem) 6vw clamp(3.5rem, 6vw, 6rem); border-bottom: 1px solid var(--line); background: var(--surface); }
.legal-hero h1 { max-width: 1050px; font-size: clamp(3rem, 6vw, 6.8rem); line-height: .94; }
.legal-hero > p:not(.product-status, .legal-update) { max-width: 760px; margin: 2rem 0 0; color: var(--text-soft); font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.7; }
.legal-update { margin: 1.5rem 0 0; color: var(--text-soft); font-size: .75rem; font-weight: 700; }
.legal-layout { display: grid; grid-template-columns: minmax(180px, 240px) minmax(0, 900px); gap: clamp(3rem, 8vw, 8rem); justify-content: center; padding: clamp(4rem, 8vw, 8rem) 6vw; }
.legal-summary { position: sticky; top: 110px; display: flex; height: fit-content; flex-direction: column; gap: .8rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); }
.legal-summary strong { margin-bottom: .35rem; color: var(--text); font: 700 .8rem/1 "Manrope", sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.legal-summary a { color: var(--text-soft); font-size: .8rem; font-weight: 600; }
.legal-summary a:hover { color: var(--violet); }
.legal-content { min-width: 0; }
.legal-content section { position: relative; padding: 0 0 4.5rem; margin-bottom: 4.5rem; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.legal-content section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.legal-index { margin: 0 0 .8rem; color: var(--violet); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.legal-content h2 { max-width: 760px; margin-bottom: 1.6rem; font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: 1; }
.legal-content h3 { margin: 2rem 0 .7rem; font-size: 1.15rem; }
.legal-content > section > p:not(.legal-index) { max-width: 820px; color: var(--text-soft); line-height: 1.75; }
.legal-content strong { color: var(--text); }
.legal-content code { padding: .15rem .35rem; border-radius: .35rem; color: var(--text); background: var(--surface); font-size: .86em; }
.legal-details { margin: 2rem 0 0; border-top: 1px solid var(--line); }
.legal-details > div { display: grid; grid-template-columns: minmax(150px, .45fr) minmax(0, 1fr); gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.legal-details dt { color: var(--text-soft); font-size: .78rem; font-weight: 700; }
.legal-details dd { margin: 0; color: var(--text); font-size: .9rem; line-height: 1.5; }
.legal-table-wrap { overflow-x: auto; margin-top: 2rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--surface); outline-offset: 4px; }
.legal-table { width: 100%; min-width: 820px; border-collapse: collapse; text-align: left; }
.legal-table th, .legal-table td { padding: 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.legal-table th { color: var(--text); font: 700 .76rem/1.35 "Manrope", sans-serif; }
.legal-table td { color: var(--text-soft); font-size: .76rem; line-height: 1.55; }
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-notice { margin-top: 1.5rem; padding: 1.25rem; border-left: 3px solid var(--violet); border-radius: 0 .9rem .9rem 0; background: var(--surface); }
.legal-notice strong { font: 700 .82rem/1 "Manrope", sans-serif; }
.legal-notice p { margin: .55rem 0 0; color: var(--text-soft); font-size: .82rem; line-height: 1.6; }
.legal-cookie-button { margin-top: .5rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.22,.8,.28,1); transition-delay: var(--reveal-delay, 0ms); }.reveal.visible { opacity: 1; transform: none; }

/* Mouvement éditorial : volontairement discret et limité aux éléments interactifs. */
.theme-toggle { transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.theme-toggle:hover { transform: scale(1.04); border-color: var(--violet); }
.hero-glow { animation: glow-breathe 8s ease-in-out infinite alternate; }
.hero-visual.reveal { --pointer-x: 0px; --pointer-y: 0px; perspective: 1000px; transform: translate3d(var(--pointer-x), var(--pointer-y), 0); transition: opacity 700ms ease, filter 700ms ease, transform 500ms cubic-bezier(.22,.8,.28,1); }
.stage-card { animation: stage-float 7s ease-in-out infinite; }
.booth-card { animation: booth-float 6s ease-in-out 400ms infinite; }
.booth-wave i { transform-origin: center; animation: wave-pulse 1.2s ease-in-out infinite alternate; }
.booth-wave i:nth-child(2) { animation-delay: -300ms; }.booth-wave i:nth-child(3) { animation-delay: -600ms; }.booth-wave i:nth-child(4) { animation-delay: -900ms; }
.recording span { animation: rec-blink 1.4s ease-in-out infinite; }
.hero:not(.motion-active) .hero-glow,
.hero:not(.motion-active) .stage-card,
.hero:not(.motion-active) .booth-card,
.hero:not(.motion-active) .booth-wave i,
.hero:not(.motion-active) .recording span,
.experiences:not(.motion-active) .live-badge i,
.formats:not(.motion-active) .live-badge i { animation-play-state: paused; }

.button { position: relative; overflow: hidden; transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease; }
.button-primary { box-shadow: 0 10px 24px rgba(114,87,255,.18); }
.button-primary:hover { box-shadow: 0 14px 34px rgba(114,87,255,.3); }

.experience-card, .format-card, .partner-card, .context-card { transition: transform 300ms cubic-bezier(.22,.8,.28,1), box-shadow 300ms ease, border-color 300ms ease; }
.experience-card:hover { transform: translateY(-5px); border-color: rgba(114,87,255,.34); box-shadow: 0 22px 60px rgba(26,20,60,.12); }
.experience-card .card-visual { transition: transform 500ms cubic-bezier(.22,.8,.28,1); }
.experience-card:hover .card-visual { transform: scale(1.025); }
.format-card:not(.featured):hover { transform: translateY(-3px); border-color: rgba(114,87,255,.34); box-shadow: 0 16px 42px rgba(26,20,60,.09); }
.format-card.featured:hover { transform: translateY(-1.1rem); }
.partner-card:hover { border-color: rgba(114,87,255,.38); }
.context-card:hover { transform: translateY(-3px); border-color: rgba(114,87,255,.34); box-shadow: 0 16px 42px rgba(26,20,60,.09); }
.steps li { transition: padding-left 250ms ease, border-color 250ms ease; }
.steps li:hover { padding-left: .7rem; border-color: rgba(217,255,87,.5); }

@keyframes glow-breathe { to { transform: translate3d(4vw, -2vw, 0) scale(1.12); opacity: .72; } }
@keyframes stage-float { 0%, 100% { transform: rotate(-4deg) translateY(0); } 50% { transform: rotate(-3.3deg) translateY(-8px); } }
@keyframes booth-float { 0%, 100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(4.2deg) translateY(7px); } }
@keyframes wave-pulse { from { transform: scaleY(.55); } to { transform: scaleY(1.08); } }
@keyframes rec-blink { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,118,94,.35); } 50% { opacity: .45; box-shadow: 0 0 0 6px rgba(255,118,94,0); } }
@keyframes live-pulse { 0% { box-shadow: 0 0 0 0 rgba(224,47,36,.45); } 75%, 100% { box-shadow: 0 0 0 6px rgba(224,47,36,0); } }

@media (max-width: 1800px) and (min-width: 1321px) {
  .site-header { padding-inline: 2vw; }
  .product-identity span { display: none; }
  .navigation { gap: .85rem; font-size: .76rem; }
}

@media (max-width: 1320px) and (min-width: 1001px) {
  .product-identity { display: none; }
  .navigation { gap: 1.15rem; font-size: .82rem; }
  .header-gallery-link { width: 42px; padding: 0; justify-content: center; }
  .header-gallery-link > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
}

@media (max-width: 1000px) {
  .menu-toggle { display: block; z-index: 3; }
  .header-gallery-link { z-index: 3; width: 42px; padding: 0; justify-content: center; }
  .header-gallery-link > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  .navigation { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 1.8rem; padding: 5rem 2rem; color: var(--white); background: var(--ink); transform: translateX(100%); visibility: hidden; transition: transform 220ms ease, visibility 0s linear 220ms; }
  .navigation.open { transform: none; visibility: visible; transition-delay: 0s; }
  .navigation a:not(.nav-cta) { display: block; font: 700 1.8rem "Manrope"; }
  .navigation .nav-cta { color: var(--ink); background: var(--acid); }
  .menu-open .menu-toggle > span:not(.sr-only) { background: var(--white); }
  .menu-open .menu-toggle > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { height: auto; min-height: 0; grid-template-columns: 1fr; padding-top: 140px; }.hero-content { max-width: 760px; }.hero-visual { justify-self: center; max-width: 700px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }.partners-title { grid-column: 1 / -1; margin-bottom: 2rem; }.partners-title h2 { max-width: 780px; }
  .contact-panel { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.experience-workshop { grid-column: 1 / -1; width: calc(50% - .575rem); justify-self: center; }
  .identity-heading { grid-template-columns: 1fr; }.identity-heading .section-kicker { grid-column: auto; }.identity-heading > p { max-width: 680px; }
  .contexts-heading { grid-template-columns: 1fr; }.contexts-heading .section-kicker { grid-column: auto; }.contexts-heading > p { max-width: 680px; }.context-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .customization-panel { grid-template-columns: 1fr; }
  .faq-heading { grid-template-columns: 1fr; }.faq-heading .section-kicker { grid-column: auto; }.faq-heading > p { max-width: 680px; }
  .identity-duo { grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr); }.identity-panel { min-height: 610px; padding: 2rem; }
  .legal-layout { grid-template-columns: 1fr; gap: 3rem; }.legal-summary { position: static; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }.legal-summary strong { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 1.2rem; }
  .product-identity { display: none; }.berryblue-site-brand { font-size: .78rem; }.berryblue-site-brand img { width: 31px; height: 31px; }
  section[id] { scroll-margin-top: 68px; }
  .section { padding: 5.5rem 1.2rem; }.hero { padding: 110px 1.2rem 2rem; }.hero h1 { font-size: clamp(2.65rem, 11vw, 4rem); line-height: 1; letter-spacing: -.065em; }.hero-copy { margin: 1.5rem 0; }.hero-visual { height: 440px; margin-top: 1rem; }.hero-sketch-stage { width: 82%; }.hero-sketch-booth { width: 56%; }.stage-card { width: 80%; height: 58%; }.booth-card { width: 54%; height: 48%; }.screen-wave { display: none; }.stage-screen p { font-size: 2rem; }.booth-card p { font-size: 1rem; }
  .intro-grid, .journey-grid { grid-template-columns: 1fr; gap: 2rem; }.journey-intro { position: static; }.concept-strip { grid-template-columns: 1fr; }.concept-strip article { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid var(--line); }.concept-strip article:last-child { border-bottom: 0; }
  .experience-grid, .format-grid, .benefit-list, .partners-grid, .context-grid { grid-template-columns: 1fr; }.experience-card { min-width: 0; }.experience-workshop { grid-column: auto; width: auto; }.card-visual { height: 250px; }.card-content > p:not(.card-type) { min-height: 0; }.format-card.featured, .format-card.featured:hover { transform: none; }.benefits { padding-top: 0; }.benefits-panel { padding: 4rem 1.3rem; border-radius: 1.5rem; }.benefit-list article, .benefit-list article:nth-child(even) { padding: 1.5rem 0; border-right: 0; }.partners-title { grid-column: auto; }.partner-card { min-height: 340px; }.context-card { min-height: 0; }.context-card h3 { margin-top: 2.2rem; }
  .compatibility { grid-template-columns: 1fr; }.compatibility > div { grid-template-columns: 1fr; }.compatibility span { grid-row: auto; width: fit-content; writing-mode: horizontal-tb; transform: none; }.comparison-wrap { margin-right: -1.2rem; border-right: 0; border-radius: 1.2rem 0 0 1.2rem; }
  .pricing-note { grid-template-columns: 1fr; margin-top: -.5rem; padding: 1.2rem; }.pricing-note > span { width: fit-content; }
  .identity-heading { margin-bottom: 2.3rem; }.identity-duo { grid-template-columns: 1fr; }.identity-panel { min-height: 520px; border-radius: 1.5rem; }.identity-separator { height: 74px; flex-direction: row; }.identity-separator span { width: auto; height: 1px; }.identity-separator i { margin: 0 14px; }.identity-copy { padding: 3rem 0 2.5rem; }
  .contexts-heading { margin-bottom: 2.3rem; }
  .faq-heading { margin-bottom: 2rem; }.faq-list { grid-template-columns: 1fr; }.faq-list details { padding: 0 1.15rem; }
  .customization-panel { padding: 2rem 1.3rem; border-radius: 1.35rem; }.customization-panel ul { grid-template-columns: 1fr; }.customization-panel li, .customization-panel li:nth-child(even) { padding: 1.2rem 0; border-right: 0; }
  .contact { padding-left: 0; padding-right: 0; }.contact-panel { border-radius: 0; padding: 4rem 1.2rem; }.form-row { grid-template-columns: 1fr; gap: 0; }
  .cookie-consent { right: .75rem; bottom: .75rem; width: calc(100vw - 1.5rem); grid-template-columns: 1fr; padding: 1.2rem; }
  .cookie-consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .legal-page { padding-top: 68px; }.legal-hero { padding: 4.5rem 1.2rem 3.5rem; }.legal-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }.legal-layout { padding: 3.5rem 1.2rem; }.legal-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }.legal-content section { padding-bottom: 3rem; margin-bottom: 3rem; }.legal-details > div { grid-template-columns: 1fr; gap: .4rem; }.legal-table-wrap { margin-right: -1.2rem; border-right: 0; border-radius: 1.2rem 0 0 1.2rem; }
  .site-footer { grid-template-columns: 1fr; justify-items: start; padding: 2rem 1.2rem; }.site-footer > p { text-align: left; }.site-footer > div { justify-content: start; }
  .references-heading { display: block; margin: 0 1.2rem 1.5rem; }.references-heading .button { margin-top: 1.4rem; }.reference-set > a, .reference-set > span { min-width: 145px; height: 76px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; filter: none; transform: none; }
  .hero-glow, .stage-card, .booth-card, .booth-wave i, .recording span { animation: none !important; }
  .reference-track { animation: none; }
  .reference-marquee { overflow-x: auto; mask-image: none; }
  .hero-visual { transform: none !important; }
}
