:root {
  --ink: #f5f3ff;
  --ink-2: #e1ddea;
  --muted: #aaa5b9;
  --line: #302b40;
  --line-dark: rgba(255,255,255,.13);
  --paper: #0c0b12;
  --soft: #13101e;
  --lavender: #231b36;
  --accent: #b9a2ff;
  --accent-dark: #7751ea;
  --orange: #ff7047;
  --dark: #100e18;
  --success: #30a46c;
  --shadow: 0 24px 80px rgba(29,24,65,.12);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 { line-height: 1.02; letter-spacing: -.048em; }
h1 { font-size: clamp(3.15rem, 6.3vw, 6.35rem); font-weight: 620; }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.75rem); font-weight: 590; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
em { color: var(--accent); font-style: normal; }
::selection { color: #fff; background: var(--accent); }

.wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; }
.soft-section { background: var(--soft); }
.section-label,
.eyebrow {
  margin-bottom: 22px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-head { max-width: 850px; margin-bottom: 54px; }
.section-head h2 { max-width: 820px; margin-bottom: 0; }
.split-head { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 56px; max-width: none; align-items: end; }
.split-head > p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; }

.skip-link { position: fixed; left: 20px; top: -100px; z-index: 999; padding: 11px 16px; color: #fff; background: var(--ink); border-radius: 10px; }
.skip-link:focus { top: 12px; }
.site-header { position: sticky; top: 14px; z-index: 100; height: 0; }
.nav-shell {
  width: min(calc(100% - 30px), 1210px);
  min-height: 66px;
  margin-inline: auto;
  padding: 8px 9px 8px 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(221,219,231,.88);
  border-radius: 22px;
  background: rgba(18,15,29,.88);
  box-shadow: 0 12px 38px rgba(34,29,71,.09);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; flex-shrink: 0; align-items: center; gap: 8px; }
.brand-mark { position: relative; width: 25px; height: 25px; display: inline-block; transform: skewX(-10deg); }
.brand-mark i { position: absolute; inset: 2px 10px 2px 0; border-radius: 3px; background: var(--ink); }
.brand-mark i:last-child { inset: 7px 0 7px 10px; background: var(--accent); }
.brand-word { font-weight: 830; letter-spacing: -.04em; }
.brand-agency { color: var(--muted); font-size: .64rem; font-weight: 760; letter-spacing: .15em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.desktop-nav a { position: relative; padding: 8px 0; color: #484755; font-size: .88rem; font-weight: 610; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1.5px; background: var(--accent); transition: right .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.language-link { padding: 9px; color: var(--muted); font-size: .75rem; font-weight: 760; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 13px; background: var(--soft); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { width: 18px; height: 1.5px; background: var(--ink); }
.mobile-panel { width: min(calc(100% - 30px), 1210px); margin: 8px auto 0; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--soft); box-shadow: var(--shadow); }
.mobile-panel nav { display: grid; margin-bottom: 18px; }
.mobile-panel nav a { padding: 12px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.mobile-panel .button { width: 100%; }

.button { min-height: 48px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; border: 1px solid transparent; border-radius: 14px; font-weight: 700; line-height: 1.1; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button svg, .text-link svg, .service-card svg, .blog-card svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 12px 28px rgba(23,23,36,.16); }
.button-primary:hover { background: var(--accent); box-shadow: 0 14px 30px rgba(101,87,232,.23); }
.button-quiet { border-color: var(--line); background: var(--soft); }
.button-light { color: var(--ink); background: var(--soft); }
.button-large { min-height: 58px; padding: 15px 22px; border-radius: 16px; }
.button-small { min-height: 48px; padding: 11px 17px; font-size: .84rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 11px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--accent); font-weight: 720; }

.home-hero, .page-hero { position: relative; overflow: hidden; padding: 154px 0 94px; }
.home-hero { min-height: 790px; display: flex; align-items: center; }
.hero-glow, .page-hero-glow { position: absolute; pointer-events: none; width: 780px; height: 780px; right: -220px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(101,87,232,.2), rgba(239,237,255,.35) 38%, rgba(255,255,255,0) 69%); filter: blur(4px); }
.hero-grid, .page-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(480px, .97fr); gap: 42px; align-items: center; }
.hero-copy h1 { max-width: 760px; margin-bottom: 26px; }
.hero-intro { max-width: 680px; margin-bottom: 31px; color: var(--muted); font-size: clamp(1.08rem, 1.55vw, 1.3rem); line-height: 1.55; }
.hero-micro { margin: 18px 0 0; color: #7c7a88; font-size: .8rem; }

.hero-visual { position: relative; min-height: 530px; perspective: 1200px; }
.visual-card { position: absolute; overflow: hidden; border: 1px solid rgba(213,210,227,.9); border-radius: 22px; background: var(--soft); box-shadow: 0 30px 70px rgba(37,31,78,.15); }
.visual-card-main { z-index: 2; width: 86%; left: 0; top: 32px; transform: rotate(-2deg); }
.browser-bar { height: 38px; padding: 0 13px; display: flex; align-items: center; gap: 6px; color: #787784; background: #f5f4f8; font-size: .62rem; }
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #d0ced8; }
.browser-bar small { margin-left: 8px; }
.browser-bar b { margin-left: auto; padding: 3px 7px; color: #277b50; border-radius: 20px; background: #e1f5e9; font-size: .55rem; }
.visual-card-photo { z-index: 3; width: 43%; right: -1%; top: 0; transform: rotate(4deg); }
.visual-card-photo img { width: 100%; height: 215px; object-fit: cover; }
.visual-caption { padding: 11px 13px; display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.visual-caption strong { font-size: .74rem; letter-spacing: .08em; }
.visual-caption span { color: var(--muted); font-size: .57rem; }
.chat-head { display: flex; align-items: center; gap: 8px; margin-bottom: 17px; }
.chat-head i { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg,var(--accent),#a99fff); }
.chat-head strong { font-size: .7rem; }
.chat-head span { margin-left: auto; color: var(--accent); font-size: .5rem; font-weight: 720; text-transform: uppercase; }
.chat-in, .chat-out { max-width: 82%; margin-bottom: 9px; padding: 9px 11px; border-radius: 11px; font-size: .62rem; line-height: 1.45; }
.chat-in { margin-left: auto; background: #30273f; }
.chat-out { color: #fff; background: var(--accent); }
.chat-foot { margin-top: 16px; padding-top: 10px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .5rem; }
.chat-foot b { color: var(--success); }
.visual-card-moki > img { width: 100%; height: 304px; object-fit: cover; }
.visual-brand-caption { position: absolute; left: 18px; bottom: 17px; display: grid; gap: 2px; color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.visual-brand-caption strong { font-size: .9rem; letter-spacing: .05em; }
.visual-brand-caption span { font-size: .6rem; font-weight: 650; }
.visual-card-rivaa img { object-position: 63% center; }
.visual-card-product { z-index: 4; width: 57%; right: 2%; bottom: 4px; transform: rotate(1.5deg); }
.visual-card-product img { width: 100%; height: 152px; object-fit: cover; }

.signal-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.signal-grid > div { padding: 26px 22px; display: grid; gap: 2px; border-left: 1px solid var(--line); }
.signal-grid > div:last-child { border-right: 1px solid var(--line); }
.signal-grid strong { font-size: 1.1rem; }
.signal-grid span { color: var(--muted); font-size: .72rem; }

.two-col { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 90px; align-items: start; }
.point-section h2 { margin-bottom: 0; }
.point-copy > p { max-width: 610px; color: var(--muted); font-size: 1.16rem; }
.point-list { margin-top: 34px; border-top: 1px solid var(--line); }
.point-list span { padding: 18px 0; display: flex; gap: 15px; border-bottom: 1px solid var(--line); font-weight: 650; }
.point-list i { color: var(--accent); font-size: .68rem; font-style: normal; }

.service-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 285px; padding: 30px; display: grid; grid-template-columns: 42px 1fr; gap: 8px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--soft); transition: background .2s, transform .2s; }
.service-card:hover { z-index: 1; background: var(--lavender); transform: translateY(-3px); }
.service-card > span { color: var(--accent); font-size: .7rem; font-weight: 750; }
.service-card h3 { margin-bottom: 13px; }
.service-card p { max-width: 410px; margin: 0; color: var(--muted); }
.service-card-foot { grid-column: 2; align-self: end; display: flex; align-items: center; justify-content: space-between; }
.service-card-foot small { font-weight: 720; }
.service-card-foot a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--soft); }

.work-section { overflow: hidden; }
.work-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.project { min-width: 0; display: block; }
.project-large { grid-column: 1 / -1; }
.project-canvas { position: relative; overflow: hidden; min-height: 440px; border-radius: var(--radius); background: #e9e7ef; }
.project-large .project-canvas { min-height: 560px; }
.project-meta { padding: 20px 4px 8px; display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; }
.project-meta span { color: var(--accent); font-size: .68rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
.project-meta h3 { margin: 6px 0 0; }
.project-meta p { margin: 0; color: var(--muted); font-size: .92rem; }
.automation-canvas { padding: 32px; background: #e9e7f7; }
.automation-ui { height: 100%; min-height: 370px; display: grid; grid-template-columns: 115px 1fr; overflow: hidden; border: 1px solid rgba(92,83,151,.13); border-radius: 19px; background: var(--soft); box-shadow: 0 22px 55px rgba(40,32,88,.16); }
.automation-side { padding: 23px 18px; display: flex; flex-direction: column; gap: 16px; color: #fff; background: #1b1a2d; }
.automation-side b { margin-bottom: 17px; font-size: .72rem; letter-spacing: .11em; }
.automation-side i { height: 7px; border-radius: 8px; background: rgba(255,255,255,.14); }
.automation-side i:nth-child(2) { background: #8b7fff; }
.automation-main { padding: 30px; }
.automation-main small { color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.automation-main .chat-in,.automation-main .chat-out { font-size: .78rem; }
.automation-main > div { margin-top: 33px; padding-top: 15px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .66rem; }
.automation-main > div strong { color: var(--success); }
.section-action { margin-top: 42px; text-align: center; }
.brand-canvas > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.project:hover .brand-canvas > img { transform: scale(1.025); }
.concept-tag { position: absolute; right: 22px; top: 21px; z-index: 2; padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 30px; color: #fff; background: rgba(17,17,24,.58); font-size: .58rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }
.concept-tag-dark { color: var(--ink); border-color: rgba(23,23,36,.12); background: rgba(255,255,255,.72); }
.brand-lockup { position: absolute; z-index: 1; left: 36px; top: 34px; display: flex; flex-direction: column; align-items: flex-start; }
.brand-lockup b { padding-bottom: 10px; font-size: .78rem; letter-spacing: .12em; }
.brand-lockup strong { font-size: clamp(2rem,4.3vw,4.9rem); line-height: .94; letter-spacing: -.065em; }
.brand-lockup i { margin-top: 24px; padding: 10px 13px; border-radius: 999px; font-size: .64rem; font-style: normal; font-weight: 780; }
.brand-lockup-light { color: #fff; text-shadow: 0 3px 24px rgba(0,47,114,.3); }
.brand-lockup-light i { color: #101018; background: var(--soft); text-shadow: none; }
.rivaa-canvas .brand-lockup { top: 38px; }
.brand-lockup-dark { color: #2b2430; }
.brand-lockup-dark b { font-size: 1rem; }
.brand-lockup-dark strong { max-width: 270px; font-size: clamp(1.75rem,3.3vw,3.25rem); }
.flavour-pills { position: absolute; left: 22px; bottom: 20px; display: flex; gap: 7px; }
.flavour-pills i { padding: 7px 10px; border: 1px solid rgba(255,255,255,.21); border-radius: 999px; color: #fff; background: rgba(0,0,0,.55); font-size: .56rem; font-style: normal; font-weight: 800; letter-spacing: .09em; backdrop-filter: blur(8px); }
.flavour-pills i:nth-child(1) { color: #ffe21f; }
.flavour-pills i:nth-child(2) { color: #ff4caf; }
.flavour-pills i:nth-child(3) { color: #79ff3e; }

.method-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-grid article { min-height: 300px; padding: 27px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-grid article > span { color: var(--accent); font-size: .66rem; font-weight: 760; }
.method-grid h3 { margin: auto 0 14px; font-size: 1.35rem; }
.method-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.price-layout { display: grid; grid-template-columns: minmax(0,.78fr) minmax(520px,1.22fr); gap: 78px; align-items: start; }
.price-layout > div:first-child > p:not(.section-label) { max-width: 520px; color: var(--muted); }
.price-stack { display: grid; border-top: 1px solid var(--line); }
.price-stack a { padding: 19px 4px; display: grid; grid-template-columns: 1fr auto; gap: 3px 20px; align-items: center; border-bottom: 1px solid var(--line); transition: padding .18s, color .18s; }
.price-stack a:hover { padding-inline: 12px; color: var(--accent); }
.price-stack span { font-weight: 720; }
.price-stack strong { font-size: 1.2rem; letter-spacing: -.035em; }
.price-stack small { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; }

.page-hero { min-height: 690px; display: flex; align-items: center; padding-top: 158px; }
.page-hero-grid > div:first-child h1 { margin-bottom: 26px; }
.site-blueprint { min-height: 440px; padding: 15px; border: 1px solid var(--line); border-radius: 25px; background: rgba(26,22,38,.85); box-shadow: var(--shadow); transform: rotate(1deg); }
.blueprint-bar { height: 38px; display: flex; align-items: center; gap: 6px; }
.blueprint-bar span { width: 8px; height: 8px; border-radius: 50%; background: #d7d4df; }
.blueprint-grid { height: 325px; padding: 24px; display: grid; grid-template-columns: 1.3fr .7fr; grid-template-rows: 1.2fr .8fr; gap: 13px; border-radius: 17px; background: #f1eff8; }
.blueprint-grid > * { border-radius: 14px; background: var(--soft); box-shadow: inset 0 0 0 1px rgba(67,54,133,.08); }
.blueprint-grid i { grid-row: 1 / -1; background: linear-gradient(155deg,var(--ink),#413878); }
.blueprint-grid b { background: linear-gradient(135deg,#c7c0ff,#f4f2ff); }
.blueprint-grid em { background: linear-gradient(135deg,#ffe0d5,#fff5f0); }
.blueprint-grid strong { display: none; }
.site-blueprint small { padding: 13px 8px 0; display: block; color: var(--muted); font-size: .68rem; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.plan-card { padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: var(--soft); }
.plan-featured { color: #fff; border-color: var(--ink); background: var(--ink); transform: translateY(-12px); box-shadow: var(--shadow); }
.plan-top > span { display: inline-block; margin-bottom: 27px; color: var(--accent); font-size: .68rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.plan-featured .plan-top > span { color: #bbb4ff; }
.plan-top h3 { margin-bottom: 13px; }
.plan-top strong { display: block; margin-bottom: 13px; font-size: 2rem; letter-spacing: -.05em; }
.plan-top p { min-height: 50px; color: var(--muted); }
.plan-featured .plan-top p { color: #b9b7c4; }
.plan-card ul, .automation-plan ul, .case-copy ul { padding: 0; margin: 20px 0 30px; list-style: none; }
.plan-card li, .automation-plan li, .case-copy li { position: relative; padding: 9px 0 9px 24px; border-top: 1px solid var(--line); font-size: .88rem; }
.plan-card li::before, .automation-plan li::before, .case-copy li::before { content: ""; position: absolute; left: 2px; top: 16px; width: 7px; height: 4px; border-left: 1.7px solid var(--accent); border-bottom: 1.7px solid var(--accent); transform: rotate(-45deg); }
.plan-featured li { border-color: rgba(255,255,255,.12); }
.plan-card .button { margin-top: auto; }
.option-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.option-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: var(--soft); }
.option-grid span { color: var(--accent); font-weight: 770; }
.option-grid h3 { margin: 34px 0 12px; font-size: 1.3rem; }
.option-grid p { margin: 0; color: var(--muted); font-size: .88rem; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 40px 24px 0; list-style: none; cursor: pointer; font-weight: 720; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span::before,.faq-list summary span::after { content: ""; position: absolute; right: 4px; top: 31px; width: 13px; height: 1.5px; background: var(--ink); }
.faq-list summary span::after { transform: rotate(90deg); transition: transform .18s; }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 640px; padding: 0 30px 22px 0; color: var(--muted); }

.automation-hero-ui { position: relative; min-height: 440px; padding: 27px; border: 1px solid var(--line); border-radius: 25px; background: var(--soft); box-shadow: var(--shadow); }
.concept-ribbon { position: absolute; right: 18px; top: 18px; z-index: 2; padding: 6px 10px; border-radius: 20px; color: #fff; background: var(--orange); font-size: .58rem; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.auto-ui-head { padding-bottom: 19px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.auto-ui-head > div { display: flex; align-items: center; gap: 10px; }
.auto-ui-head i { width: 31px; height: 31px; border-radius: 10px; background: conic-gradient(from 220deg,var(--accent),#c9c3ff,var(--accent)); }
.auto-ui-head strong { font-size: .78rem; letter-spacing: .08em; }
.auto-ui-head strong em { color: var(--muted); font-size: .7rem; letter-spacing: 0; }
.auto-ui-head > span { margin-right: 125px; color: var(--success); font-size: .64rem; font-weight: 720; }
.auto-ui-context { margin: 22px 0; padding: 14px; display: grid; gap: 3px; border-radius: 12px; background: var(--soft); }
.auto-ui-context small { color: var(--muted); font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; }
.auto-ui-context b { font-size: .71rem; }
.automation-hero-ui .chat-in,.automation-hero-ui .chat-out { padding: 13px 15px; font-size: .78rem; }
.auto-ui-status { margin-top: 30px; padding-top: 15px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); font-size: .65rem; }
.auto-ui-status b { color: var(--success); }
.use-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.use-grid article { min-height: 245px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.use-grid span { color: var(--accent); font-size: .66rem; font-weight: 760; }
.use-grid h3 { margin: 48px 0 13px; }
.use-grid p { margin: 0; color: var(--muted); }
.dark-section { color: #fff; background: var(--dark); }
.section-label-light { color: #a9a0ff; }
.guard-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 95px; align-items: center; }
.guard-grid h2 { max-width: 700px; }
.guard-grid p { max-width: 600px; color: #a8a6b1; }
.guard-grid ul { padding: 0; margin: 0; list-style: none; }
.guard-grid li { padding: 19px 0 19px 30px; border-top: 1px solid var(--line-dark); position: relative; }
.guard-grid li::before { content: ""; position: absolute; left: 2px; top: 25px; width: 9px; height: 5px; border-left: 2px solid #afa6ff; border-bottom: 2px solid #afa6ff; transform: rotate(-45deg); }
.automation-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.automation-plan { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--soft); }
.automation-plan > div { margin: 27px 0 8px; display: grid; }
.automation-plan strong { font-size: 2rem; letter-spacing: -.05em; }
.automation-plan > div span { color: var(--muted); font-size: .78rem; }

.film-still { position: relative; overflow: hidden; min-height: 470px; border-radius: 25px; box-shadow: var(--shadow); }
.film-still img,.film-still video { width: 100%; height: 100%; min-height: 470px; object-fit: cover; }
.film-still span { position: absolute; left: 18px; bottom: 18px; padding: 8px 11px; border-radius: 20px; color: #fff; background: rgba(20,19,29,.72); font-size: .62rem; font-weight: 680; backdrop-filter: blur(9px); }
.kick33-section { overflow: hidden; background: #111117; color: #fff; }
.kick33-section .section-label { color: #ff50b4; }
.kick33-section .split-head > p { color: #aaa8b2; }
.video-marquee { width: 100%; overflow: hidden; padding: 8px 0 14px; }
.video-track { width: max-content; display: flex; gap: 15px; padding-left: 15px; animation: kick33-scroll 28s linear infinite; will-change: transform; }
.video-repeat { display: flex; gap: 15px; }
.video-track figure { width: min(46vw,620px); min-width: 420px; margin: 0; overflow: hidden; border: 1px solid #34323a; border-radius: 22px; background: #09090d; }
.video-track video { width: 100%; aspect-ratio: 16/9; display: block; object-fit: cover; background: #09090d; }
.video-track figcaption { padding: 14px 17px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #2c2a31; }
.video-track figcaption strong { font-size: .76rem; letter-spacing: .1em; }
.video-track figcaption span { color: var(--flavour); font-size: .66rem; font-weight: 820; letter-spacing: .14em; }
.video-marquee:hover .video-track { animation-play-state: paused; }
@keyframes kick33-scroll { to { transform: translateX(calc(-50% - 7.5px)); } }
.video-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; }
.video-steps article { padding: 26px; border: 1px solid var(--line); border-radius: 19px; background: var(--soft); }
.video-steps span { color: var(--accent); font-size: .66rem; font-weight: 760; }
.video-steps h3 { margin: 50px 0 13px; font-size: 1.35rem; }
.video-steps p { margin: 0; color: var(--muted); font-size: .9rem; }
.video-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.video-plans article { padding: 29px; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; }
.video-plans article > span { color: var(--muted); font-size: .75rem; }
.video-plans h3 { margin: 35px 0 8px; }
.video-plans strong { font-size: 2rem; letter-spacing: -.05em; }
.video-plans p { min-height: 48px; margin: 13px 0 25px; color: var(--muted); font-size: .85rem; }
.video-plans .button { margin-top: auto; }

.case-study { padding: 94px 0; border-top: 1px solid var(--line); }
.case-study:nth-of-type(even) { background: var(--soft); }
.case-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 76px; align-items: center; }
.case-copy > span { color: var(--accent); font-size: .68rem; font-weight: 780; letter-spacing: .1em; text-transform: uppercase; }
.case-copy h2 { margin: 18px 0 24px; }
.case-lead { color: var(--muted); font-size: 1.03rem; }
.case-copy h3 { margin: 38px 0 5px; font-size: 1rem; letter-spacing: -.02em; }
.case-copy ul { margin-top: 12px; }
.case-result { margin-top: 26px; padding: 20px; border-left: 2px solid var(--accent); background: var(--lavender); }
.case-result small { color: var(--accent); font-size: .62rem; font-weight: 760; letter-spacing: .09em; text-transform: uppercase; }
.case-result p { margin: 8px 0 0; font-size: .92rem; }
.case-canvas { min-height: 500px; }
.nelyr-canvas { position: relative; }

.contact-hero { padding: 155px 0 110px; overflow: hidden; background: radial-gradient(ellipse at 15% 10%,#211637,transparent 65%),var(--paper); }
.contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(530px,1.2fr); gap: 76px; align-items: start; }
.contact-copy { position: sticky; top: 125px; }
.contact-copy h1 { font-size: clamp(3.1rem,5.5vw,5.7rem); }
.contact-assurances { margin: 42px 0 27px; display: grid; border-top: 1px solid var(--line); }
.contact-assurances > div { padding: 15px 0; display: grid; grid-template-columns: 86px 1fr; border-bottom: 1px solid var(--line); }
.contact-assurances strong { color: var(--accent); }
.contact-assurances span { color: var(--muted); }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 26px; background: var(--soft); box-shadow: var(--shadow); }
.form-head > span { color: var(--accent); font-size: .68rem; font-weight: 770; letter-spacing: .1em; text-transform: uppercase; }
.form-head h2 { margin: 15px 0 11px; font-size: 2.15rem; }
.form-head p { margin-bottom: 30px; color: var(--muted); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; font-size: .78rem; font-weight: 700; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,.contact-form select,.contact-form textarea { width: 100%; border: 1px solid #dcd9e4; border-radius: 12px; background: #100d19; color: var(--ink); outline: none; transition: border-color .18s, box-shadow .18s; }
.contact-form input,.contact-form select { height: 51px; padding: 0 14px; }
.contact-form textarea { padding: 13px 14px; resize: vertical; }
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(101,87,232,.11); }
.consent { grid-template-columns: auto 1fr; align-items: start; gap: 10px !important; color: var(--muted); font-weight: 500 !important; }
.consent input { width: 17px; height: 17px; margin: 2px 0 0; }
.contact-form .button { width: 100%; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .68rem; text-align: center; }
.bot-field { position: absolute; left: -9999px; }

.blog-hero { padding: 175px 0 70px; background: radial-gradient(ellipse at 20% 0%,#291b42,transparent 70%),var(--paper); }
.blog-hero .wrap { max-width: 1000px; }
.blog-hero h1 { max-width: 900px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { padding: 16px 16px 25px; border: 1px solid var(--line); border-radius: 22px; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-card > span { display: block; padding: 5px 3px 14px; color: var(--muted); font-size: .68rem; }
.blog-visual { position: relative; height: 225px; margin-bottom: 24px; overflow: hidden; border-radius: 15px; background: #1d1c2b; }
.blog-visual img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.blog-card:hover .blog-visual img { transform: scale(1.035); }
.blog-visual i { position: absolute; width: 190px; height: 190px; right: -30px; top: -35px; border-radius: 50%; background: radial-gradient(circle,#9084ff,rgba(101,87,232,0)); }
.blog-visual b { position: absolute; left: 20px; bottom: 14px; color: rgba(255,255,255,.9); font-size: 4.2rem; font-weight: 500; letter-spacing: -.08em; }
.blog-visual-02 { background: #d8e8df; }
.blog-visual-02 i { background: radial-gradient(circle,#5e9d77,rgba(94,157,119,0)); }
.blog-visual-02 b { color: #173628; }
.blog-visual-03 { background: #f1ddd5; }
.blog-visual-03 i { background: radial-gradient(circle,#ef8f6f,rgba(239,143,111,0)); }
.blog-visual-03 b { color: #5e2918; }
.blog-card h2 { margin-bottom: 14px; font-size: 1.7rem; }
.blog-card p { color: var(--muted); }
.blog-card > strong { margin-top: 24px; display: inline-flex; align-items: center; gap: 7px; color: var(--accent); font-size: .8rem; }

.final-cta { padding-block: 38px; color: #fff; background: var(--dark); }
.final-cta-inner { min-height: 370px; padding: 54px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; border: 1px solid var(--line-dark); border-radius: 28px; background: radial-gradient(circle at 83% 8%,rgba(112,94,235,.42),transparent 31%); }
.final-cta h2 { max-width: 850px; margin-bottom: 14px; }
.final-cta p { max-width: 650px; margin: 0; color: #b9b7c4; }
.final-cta .section-label { color: #b6adff; }
.final-cta .button { flex-shrink: 0; }

.site-footer { color: #d5d3df; background: var(--dark); }
.footer-top { padding: 85px 0 58px; display: grid; grid-template-columns: 1.2fr .6fr .65fr 1.35fr; gap: 45px; border-bottom: 1px solid var(--line-dark); }
.brand-light .brand-mark i { background: var(--soft); }
.brand-light .brand-mark i:last-child { background: #8d82ff; }
.brand-light .brand-word { color: #fff; }
.footer-brand p { max-width: 260px; margin-top: 25px; color: #92909d; font-size: .86rem; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column strong,.footer-contact > span { margin-bottom: 10px; color: #777583; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { font-size: .83rem; }
.footer-column a:hover { color: #fff; }
.footer-contact h2 { max-width: 420px; margin: 13px 0 25px; color: #fff; font-size: 2rem; }
.footer-bottom { padding: 23px 0 30px; display: flex; justify-content: space-between; color: #777583; font-size: .72rem; }

.legacy-article, .legacy-legal { width: min(calc(100% - 48px), 920px); margin: 0 auto; padding: 160px 0 110px; }
.article-back,.article-breadcrumb { display: inline-flex; margin-bottom: 24px; color: var(--accent); font-size: .75rem; font-weight: 700; }
.article-hero { margin-bottom: 54px; }
.article-hero-grid { display: block; }
.article-hero-copy { max-width: 900px; }
.article-hero h1 { font-size: clamp(2.9rem,5.3vw,5.4rem); }
.article-lead,.legal-lead { color: var(--muted); font-size: 1.15rem; }
.article-info,.blog-meta { display: flex; flex-wrap: wrap; gap: 15px; color: var(--muted); font-size: .74rem; }
.article-layout { display: grid; grid-template-columns: 220px 1fr; gap: 62px; align-items: start; }
.article-toc { position: sticky; top: 115px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; }
.article-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .75rem; }
.article-body { min-width: 0; }
.article-body h2,.article-section h2 { margin: 58px 0 20px; font-size: 2.2rem; }
.article-body h3,.article-section h3 { margin: 35px 0 14px; font-size: 1.35rem; }
.article-body p,.article-body li,.legal-content p,.legal-content li { color: var(--muted); }
.article-body a,.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-takeaway,.article-next,.article-toc-cta { margin: 32px 0; padding: 22px; border-radius: 17px; background: var(--lavender); }
.kicker { color: var(--accent); font-size: .66rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.article-next { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.article-next h2 { margin: 7px 0 0; font-size: 1.55rem; }
.btn { min-height: 47px; padding: 12px 17px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 13px; font-weight: 700; }
.btn-primary { color: #fff !important; background: var(--ink); text-decoration: none !important; }
.legal-head { margin-bottom: 50px; }
.legal-head h1 { font-size: clamp(2.9rem,5vw,5rem); }
.legal-updated { color: var(--muted); font-size: .76rem; }
.legal-content { max-width: 780px; }
.legal-content h2 { margin: 48px 0 18px; font-size: 2rem; }
.legal-content h3 { margin: 32px 0 14px; font-size: 1.28rem; }
.legal-blank { padding: 15px 18px; border: 1px dashed #c8c4d4; border-radius: 12px; color: var(--muted); background: var(--soft); }
.status-page { min-height: 760px; padding: 150px 24px 90px; display: grid; place-items: center; background: radial-gradient(ellipse at 70% 0%,#302045,transparent 70%),var(--paper); }
.status-card { max-width: 640px; padding: 55px; text-align: center; border: 1px solid var(--line); border-radius: 28px; background: var(--soft); box-shadow: var(--shadow); }
.status-card > span { color: var(--accent); font-size: 2rem; font-weight: 780; }
.status-card h1 { margin: 20px 0; font-size: clamp(2.4rem,5vw,4.5rem); }
.status-card p { margin-bottom: 28px; color: var(--muted); }

@media (max-width: 1040px) {
  .desktop-nav { gap: 16px; }
  .nav-cta { display: none; }
  .hero-grid,.page-hero-grid { grid-template-columns: 1fr 440px; }
  .plans-grid,.automation-plans { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .plan-top p { min-height: 0; }
  .option-grid,.video-steps { grid-template-columns: repeat(2,1fr); }
  .method-grid { grid-template-columns: repeat(2,1fr); }
  .price-layout { grid-template-columns: 1fr; gap: 45px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .case-grid { gap: 42px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .wrap { width: min(calc(100% - 32px), var(--max)); }
  .site-header { top: 9px; }
  .nav-shell,.mobile-panel { width: calc(100% - 18px); }
  .desktop-nav,.language-link { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-button { display: flex; }
  .nav-cta { display: inline-flex; min-height: 43px; }
  .home-hero,.page-hero { min-height: 0; padding: 130px 0 70px; }
  .hero-grid,.page-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 500px; }
  .split-head,.two-col,.faq-layout,.guard-grid,.case-grid,.contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .signal-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .project-large { grid-column: auto; }
  .project-canvas,.project-large .project-canvas { min-height: 480px; }
  .project-meta { grid-template-columns: 1fr; gap: 11px; }
  .use-grid { grid-template-columns: repeat(2,1fr); }
  .video-plans { grid-template-columns: 1fr; }
  .case-copy { order: 1; }
  .case-canvas { order: 0; }
  .contact-grid { gap: 55px; }
  .contact-copy { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
  .video-track figure { width: 68vw; min-width: 390px; }
  .final-cta-inner { min-height: 0; align-items: flex-start; flex-direction: column; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.75rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .section { padding: 66px 0; }
  .nav-shell { min-height: 59px; padding-left: 14px; border-radius: 18px; }
  .brand-agency { display: none; }
  .nav-cta { display: none; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-visual { min-height: 435px; margin-inline: -4px; }
  .visual-card-main { width: 94%; }
  .visual-card-photo { width: 46%; }
  .visual-card-photo img { height: 155px; }
  .visual-card-product { width: 68%; }
  .visual-card-moki > img { height: 255px; }
  .visual-card-product img { height: 125px; }
  .signal-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid > div { padding: 20px 13px; }
  .service-card { min-height: 250px; padding: 23px; grid-template-columns: 31px 1fr; }
  .project-canvas,.project-large .project-canvas,.case-canvas { min-height: 400px; }
  .brand-lockup { left: 20px; top: 21px; }
  .brand-lockup strong { font-size: 2.2rem; }
  .brand-lockup-dark strong { max-width: 190px; font-size: 1.65rem; }
  .automation-canvas { padding: 15px; }
  .automation-ui { grid-template-columns: 72px 1fr; }
  .automation-side { padding: 18px 11px; }
  .automation-main { padding: 20px 15px; }
  .option-grid,.video-steps,.use-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 245px; }
  .article-next { align-items: flex-start; flex-direction: column; }
  .auto-ui-head > span { margin-right: 0; }
  .film-still,.film-still img { min-height: 390px; }
  .film-still video { min-height: 390px; }
  .video-track { gap: 10px; padding-left: 10px; animation-duration: 22s; }
  .video-repeat { gap: 10px; }
  .video-track figure { width: 84vw; min-width: 300px; }
  .contact-form { padding: 25px 19px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .final-cta-inner { padding: 34px 24px; }
  .footer-top { grid-template-columns: 1fr; padding-top: 65px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .legacy-article,.legacy-legal { width: calc(100% - 32px); padding-top: 130px; }
  .status-card { padding: 38px 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* DYOU Night Studio — 2026-09-08. Shared direction across every FR/EN route. */
html { scroll-padding-top: 100px; color-scheme: dark; }
body { overflow-x: clip; }
h1,h2,h3 { text-wrap: balance; font-weight: 600; letter-spacing: -.045em; }
h1 { font-size: clamp(2.4rem,4.6vw,4.1rem); line-height: 1.08; }
h2 { font-size: clamp(1.9rem,3.3vw,3rem); line-height: 1.12; }
h3 { line-height: 1.2; }
em { background: linear-gradient(100deg,#e9dfff 0%,#b998ff 48%,#9fb9ff 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: #c6adff; }
p { text-wrap: pretty; }
button,a,input,select,textarea,summary { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid #cdbaff; outline-offset: 5px; }
[hidden] { display: none !important; }
.section { padding: 76px 0; position: relative; }
.section-head { margin-bottom: 30px; }
.section-head h2 { max-width: 740px; }
.section-head p:not(.section-label) { color: var(--muted); max-width: 610px; margin: 18px 0 0; }
.section-label,.eyebrow { font-size: .75rem; letter-spacing: .14em; margin-bottom: 16px; }
.wrap { width: min(calc(100% - 64px),var(--max)); }
.nav-shell { border-color: rgba(214,191,255,.18); box-shadow: 0 10px 35px #0003; min-height: 68px; border-radius: 24px; }
.brand-logo-original { width: 155px; height: auto; object-fit: contain; }
.desktop-nav a { color: #d4cede; font-size: .875rem; }
.desktop-nav a:hover { color: #fff; }
.language-link { color: #d4cede; }
.menu-button { cursor: pointer; border: 1px solid #ffffff1a; border-radius: 50%; background: #ffffff09; }
.menu-button span { transition: transform .2s; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-panel { max-height: calc(100dvh - 92px); overflow: auto; background: #171220f5; backdrop-filter: blur(24px); }
.mobile-panel nav a { font-size: 1rem; padding: 12px 0; }
.button,.button-large,.button-small { border-radius: 999px; min-height: 48px; }
.button-primary,.btn-primary { background: #8252ef; color: #fff; box-shadow: inset 0 1px 0 #ffffff33,0 6px 30px #6d3bdd22; }
.button-primary:hover { background: #9367f6; box-shadow: 0 8px 28px #8252ef44; }
.button-quiet { color: #f4efff; border-color: #ffffff30; background: #ffffff07; backdrop-filter: blur(12px); }
.button-quiet:hover { background: #ffffff10; }
.button-light { background: #efe9ff; color: #241737; }
.button-large { font-size: 1rem; }
.button-row { gap: 12px; }
.home-hero { min-height: 710px; min-height: min(810px,95svh); padding: 165px 0 120px; isolation: isolate; align-items: center; background: #09080f; }
.hero-backdrop { position: absolute; inset: 0; z-index: -3; }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.home-hero::after { content: ''; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg,#09080ff0 0%,#09080fd9 28%,#09080f4d 60%,transparent 85%),linear-gradient(0deg,#0c0b12,transparent 25%); }
.home-hero .hero-grid { display: block; }
.hero-copy { max-width: 655px; }
.hero-copy h1 { margin-bottom: 24px; }
.home-hero .hero-intro { color: #cac3d4; max-width: 475px; font-size: 1.05rem; margin-bottom: 26px; }
.hero-micro { color: #b6acc5; font-size: .8125rem; margin-top: 18px; }
.hero-credit { position: absolute; right: 32px; bottom: 32px; font-size: .75rem; color: #cfc4dd; }
.hero-glow,.page-hero-glow { width: 700px; height: 700px; top: -340px; right: -190px; background: radial-gradient(circle,#8b4bf43d,transparent 65%); filter: none; }
.hero-glow { z-index: -1; }
.signal-strip { border: 0; background: var(--paper); }
.signal-grid { gap: 12px; padding: 6px 0 30px; }
.signal-grid > div,.signal-grid > div:last-child { border: 1px solid var(--line); border-radius: 20px; background: #14111d; padding: 18px 22px; gap: 6px; }
.signal-grid strong { font-size: 1.15rem; width: fit-content; line-height: 1.1; }
.signal-grid span { font-size: .8125rem; color: #b9b2c7; }
.price-pill,.price-stack strong,.plan-top strong,.automation-plan strong,.video-plans strong,.option-grid article > span { display: inline-block; width: fit-content; max-width: 100%; padding: 8px 13px; border-radius: 999px; background: #c6acff; color: #231134; font-weight: 750; letter-spacing: -.025em; line-height: 1.25; }
.signal-grid .price-pill { padding: 4px 10px; margin: -4px 0; background: #cbf19f; color: #1d2a13; }
.rail-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; max-width: none; }
.rail-controls { display: flex; gap: 8px; flex-shrink: 0; }
.rail-controls button { width: 46px; height: 46px; border: 1px solid #ffffff30; border-radius: 50%; color: #fff; background: #ffffff08; cursor: pointer; transition: background .2s; }
.rail-controls button:hover { background: #7045ce; }
.rail-controls button:disabled { opacity: .28; cursor: default; background: transparent; }
.portrait-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.portrait-project { min-width: 0; }
.portrait-image { position: relative; overflow: hidden; border: 1px solid #ffffff21; border-radius: 26px; aspect-ratio: 4/5; background: #17111f; }
.portrait-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.portrait-project:hover img { transform: scale(1.035); }
.portrait-link { position: absolute; bottom: 18px; right: 18px; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: #0d0b1655; border: 1px solid #ffffff66; backdrop-filter: blur(12px); font-size: 1.4rem; color: #fff; }
.portrait-meta { padding: 16px 4px 0; }
.portrait-meta h3 { font-size: 1.1rem; letter-spacing: .025em; margin: 0 0 3px; }
.portrait-meta span { color: var(--muted); font-size: .8125rem; }
.work-foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; }
.work-foot > span { font-size: .75rem; color: var(--muted); }
.text-link { font-size: .9375rem; }
.wave-divider { height: 64px; position: relative; overflow: hidden; background: var(--paper); pointer-events: none; }
.wave-divider i { position: absolute; width: 130%; height: 220px; left: -15%; top: 20px; border-radius: 50% 50% 0 0; background: linear-gradient(100deg,#231336,#2c1e48 45%,#161626); transform: rotate(-2deg); }
.wave-divider i + i { top: 35px; left: -10%; background: var(--soft); transform: rotate(2deg); }
.wave-divider.is-visible i { animation: wave-drift 10s ease-in-out infinite alternate; }
.wave-divider.is-visible i + i { animation-delay: -4s; animation-direction: alternate-reverse; }
@keyframes wave-drift { to { transform: translateX(4%) rotate(2deg); } }
.services-section { padding-top: 48px; border-radius: 0 0 48px 48px; }
.service-grid { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 40px)/3.2); grid-template-columns: none; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #78609e #21172f; gap: 20px; border: 0; padding: 5px 2px 18px; scroll-padding-inline: 2px; }
.service-card { min-height: 0; display: block; padding: 0; border: 1px solid #ffffff17; border-radius: 24px; overflow: hidden; scroll-snap-align: start; background: #1b1525; transition: border-color .2s; }
.service-card:hover { transform: none; background: #21192e; border-color: #9876ce77; }
.service-media { display: block; height: 170px; position: relative; overflow: hidden; background: #201331; }
.service-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.service-media > span { position: absolute; bottom: 12px; left: 14px; padding: 4px 10px; border: 1px solid #ffffff44; border-radius: 999px; backdrop-filter: blur(12px); background: #0c0b125c; color: #fff; font-size: .75rem; }
.service-body { padding: 22px; }
.service-number { display: block; color: #a68abf; font-size: .75rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { font-size: 1rem; min-height: 74px; }
.service-card-foot { margin-top: 24px; gap: 10px; }
.service-card-foot .price-pill { font-size: .8125rem; }
.service-card-foot a { background: #ffffff08; color: #ddd0f3; flex-shrink: 0; min-width: 44px; min-height: 44px; }
.service-rivaa .price-pill { background: #ffc8b8; }
.service-kick33 .price-pill { background: #dcf68c; }
.service-automation .price-pill { background: #aadbdc; }
.service-flow { display: flex; height: 100%; gap: 6px; flex-direction: column; align-items: center; justify-content: center; padding-bottom: 16px; background: radial-gradient(ellipse at 70% 20%,#615196,transparent 75%); }
.service-flow span { border: 1px solid #ffffff35; padding: 5px 18px; border-radius: 10px; font-size: .7rem; letter-spacing: .1em; background: #1b132caa; }
.service-flow i { font-size: .8rem; color: #c9bbef; line-height: 1; font-style: normal; }
.rail-hint { color: var(--muted); font-size: .8125rem; margin: 14px 0 0; display: flex; justify-content: space-between; }
.method-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.method-grid { display: grid; grid-template-columns: 1fr; border: 0; gap: 10px; }
.method-step { border: 1px solid var(--line); border-radius: 20px; background: #15101f; overflow: hidden; }
.method-step[open] { background: linear-gradient(115deg,#251a38,#181223); border-color: #705487; }
.method-step summary { display: flex; align-items: center; gap: 18px; padding: 20px 24px; cursor: pointer; list-style: none; }
.method-step summary::-webkit-details-marker { display: none; }
.method-step summary > span { font-size: .8125rem; color: #b29bcd; }
.method-grid h3 { margin: 0; font-size: 1.125rem; }
.method-step summary > i { font-size: 1.3rem; margin-left: auto; font-style: normal; color: var(--accent); }
.method-step[open] summary > i { transform: rotate(45deg); }
.method-detail { padding: 0 24px 24px; display: flex; gap: 20px; align-items: end; }
.method-detail h4 { margin: 0 0 10px; font-weight: 500; font-size: 1rem; }
.method-detail p { font-size: 1rem; }
.method-detail > b { padding: 9px 12px; border-radius: 999px; color: #d5c1ff; border: 1px solid #8f67bb55; background: #472b6955; font-size: .8125rem; flex-shrink: 0; }
.price-section { background: var(--soft); border-radius: 0 0 48px 48px; padding-top: 45px; }
.price-layout { gap: 70px; grid-template-columns: .8fr 1.2fr; }
.price-stack { gap: 12px; border: 0; }
.price-stack a { padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: #1d162a; gap: 10px 14px; }
.price-stack a:hover { padding-inline: 22px; border-color: #9470c0; color: #fff; }
.price-stack strong { font-size: 1rem; }
.price-stack a:nth-child(2) strong { background: #ffc8b8; }
.price-stack a:nth-child(3) strong { background: #aadbdc; }
.price-stack small { font-size: .8125rem; }
.final-cta { background: var(--paper); padding: 55px 0; }
.final-cta-inner { min-height: 260px; padding: 40px; border-radius: 32px; align-items: center; gap: 35px; background: radial-gradient(ellipse at 90% 100%,#4a26755c,transparent 65%),#15101f; }
.final-cta-inner h2 { font-size: clamp(2rem,3.4vw,3.2rem); }
.site-footer { position: relative; overflow: hidden; border-radius: 48px 48px 0 0; background: radial-gradient(ellipse at 80% 100%,#d3befb,transparent 65%),linear-gradient(115deg,#f4f0fb,#e8e1f4); color: #281a37; color-scheme: light; }
.site-footer::before { content: ''; position: absolute; width: 60%; height: 210px; border: 1px solid #b997e333; border-radius: 50%; top: -120px; left: -5%; transform: rotate(-10deg); pointer-events: none; }
.footer-top { padding: 65px 0 40px; gap: 35px; border-color: #35204224; }
.site-footer .brand { background: transparent; border-radius: 0; padding: 0; }
.footer-brand p,.footer-bottom,.footer-column strong,.footer-contact > span { color: #63536d; }
.footer-contact h2 { color: #281a37; font-size: 1.6rem; }
.footer-column a { font-size: .875rem; }
.footer-column a:hover { color: #6a32a5; }
.footer-contact .button { background: #261437; color: #fff; }
.footer-bottom { font-size: .8125rem; }
.footer-column strong,.footer-contact > span { font-size: .75rem; }
.page-hero { min-height: 560px; padding: 145px 0 65px; }
.page-hero-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
.page-hero h1,.contact-copy h1,.article-hero h1,.legal-head h1 { font-size: clamp(2.3rem,4.5vw,4rem); }
.hero-intro { font-size: 1.0625rem; }
.page-hero .hero-visual { min-height: 410px; }
.page-hero .visual-card-moki > img { height: 240px; }
.page-hero .visual-card-photo img { height: 170px; }
.visual-card { border-color: #ffffff2b; background: #1d1728; }
.browser-bar { background: #271e34; color: #c9bed6; }
.visual-caption strong { color: #eee8fa; }
.visual-caption span { color: #b2a7c2; }
.browser-bar small,.visual-caption span,.visual-brand-caption span { font-size: .75rem; }
.visual-brand-caption strong { font-size: .9rem; }
.site-blueprint { min-height: 320px; }
.blueprint-bar { display: flex; align-items: center; gap: 7px; }
.blueprint-bar b { margin-left: 5px; color: #a99db8; font-size: .65rem; font-weight: 600; }
.site-preview { position: relative; height: 230px; overflow: hidden; border-radius: 17px; background: #152d5f; }
.site-preview::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,#071634d4 0%,#0b1a3666 48%,transparent 78%); }
.site-preview img { width: 100%; height: 100%; display: block; object-fit: cover; }
.site-preview > div { position: absolute; z-index: 1; left: 19px; top: 50%; display: grid; gap: 8px; transform: translateY(-50%); color: #fff; }
.site-preview span { color: #ff8a3d; font-size: .58rem; font-weight: 850; letter-spacing: .13em; }
.site-preview strong { font-size: clamp(1.35rem,2.4vw,2rem); line-height: .9; letter-spacing: -.055em; }
.site-preview i { width: max-content; padding: 7px 10px; border-radius: 999px; color: #12255a; background: #ff9b5e; font-size: .57rem; font-style: normal; font-weight: 800; }
.plan-featured { color: var(--ink); border-color: #9569d8; background: linear-gradient(145deg,#31203f,#191224); transform: none; }
.plan-top > span,.auto-ui-context small,.auto-ui-head strong,.concept-ribbon,.auto-ui-status,.site-blueprint small { font-size: .75rem; }
.plan-top strong { font-size: 1.5rem; }
.plan-top p { min-height: 0; }
.plan-card,.option-grid article,.automation-plan,.video-steps article,.contact-form,.status-card,.blog-card { background: #181222; }
.plan-card ul { margin-top: 15px; }
.automation-use-section { overflow: hidden; padding-bottom: 55px; }
.automation-use-section .rail-heading { align-items: end; }
.automation-use-section .section-head p { max-width: 570px; }
.use-grid { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 28px)/3.15); grid-template-columns: none; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: #75608f #21172f; padding: 2px 2px 15px; border: 0; }
.use-grid article { min-height: 184px; padding: 23px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(150deg,#1d1529,#14101d); scroll-snap-align: start; }
.use-grid h3 { margin: auto 0 12px; }
.use-grid span { font-size: .75rem; }
.automation-plan strong,.video-plans strong { font-size: 1.5rem; }
.automation-plan > div { justify-items: start; gap: 8px; }
.automation-hero-ui { min-height: 380px; background: #1b1425; }
.auto-ui-context b,.automation-hero-ui .chat-in,.automation-hero-ui .chat-out { font-size: .875rem; }
.auto-ui-head > span { color: #7fdba6; }
.chat-out { background: #7951d0; }
.case-study { padding: 65px 0; border-top: 0; border-radius: 36px; }
.case-grid { gap: 55px; }
.case-copy > span,.case-result small,.concept-tag { font-size: .75rem; }
.case-copy h3 { margin-top: 25px; }
.case-result { border: 1px solid #71539066; border-radius: 20px; }
.concept-tag-dark { color: #251a32; }
.faq-list details { padding-inline: 20px; border: 1px solid var(--line); border-radius: 18px; margin-bottom: 10px; background: #181222; }
.faq-list summary { padding-block: 20px; }
.faq-list summary span::before,.faq-list summary span::after { top: 29px; }
.faq-list details p { padding-bottom: 16px; }
.contact-hero { padding: 140px 0 75px; }
.contact-grid { gap: 55px; grid-template-columns: .9fr 1.1fr; }
.contact-form label { font-size: .875rem; }
.contact-form input,.contact-form select,.contact-form textarea { border-color: #4b395a; font-size: 1rem; }
.contact-form input::placeholder,.contact-form textarea::placeholder { color: #9f91ae; }
.contact-form .form-note { font-size: .8125rem; }
.blog-hero { padding: 140px 0 45px; }
.blog-card > span,.article-back,.article-breadcrumb,.article-info,.blog-meta,.article-toc a { font-size: .8125rem; }
.legacy-article,.legacy-legal { padding-top: 140px; }
.article-body p,.article-body li,.legal-content p,.legal-content li { color: #c1b7cf; }
.video-track { animation-play-state: running; }
.video-marquee:hover .video-track,.video-marquee:focus-within .video-track { animation-play-state: paused; }
body.motion-paused *,body.motion-paused *::before,body.motion-paused *::after { animation-play-state: paused !important; }
.motion-toggle { border: 1px solid #35204240; color: #493455; background: #ffffff55; border-radius: 999px; padding: 9px 15px; cursor: pointer; font-size: .8125rem; }
@keyframes studio-reveal { from { opacity: .35; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal.is-visible { animation: studio-reveal .65s cubic-bezier(.2,.7,.2,1) both; }
@media (min-width: 821px) { .work-section .rail-controls { display: none; } }
@media (max-width: 1040px) {
  .nav-shell { gap: 18px; }
  .brand-logo-original { width: 138px; }
  .service-grid { grid-auto-columns: 39%; }
  .method-layout { gap: 35px; }
  .price-layout { grid-template-columns: 1fr; gap: 26px; }
  .plans-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .wrap { width: calc(100% - 36px); }
  .section { padding: 52px 0; }
  .home-hero { min-height: 760px; padding: 135px 0 290px; align-items: start; }
  .home-hero::after { background: linear-gradient(180deg,#09080fbb,transparent 55%,#0c0b12 100%),linear-gradient(90deg,#09080f99,transparent 80%); }
  .hero-backdrop img { object-position: 65% center; }
  .hero-copy { max-width: 570px; }
  .hero-credit { font-size: .75rem; bottom: 25px; right: 18px; }
  .portrait-grid { grid-auto-flow: column; grid-auto-columns: 62%; grid-template-columns: none; overflow-x: auto; gap: 16px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #75608f #21172f; padding: 2px 2px 15px; }
  .portrait-project { scroll-snap-align: start; }
  .use-grid { grid-auto-columns: 62%; }
  .rail-heading { gap: 15px; }
  .service-grid { grid-auto-columns: 62%; gap: 16px; }
  .method-layout { grid-template-columns: 1fr; gap: 0; }
  .method-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 25px; }
  .method-detail { align-items: start; }
  .page-hero { padding-top: 120px; min-height: 0; }
  .page-hero-grid,.contact-grid { grid-template-columns: 1fr; gap: 35px; }
  .page-hero .hero-visual { min-height: 380px; max-width: 550px; width: 100%; margin: auto; }
  .contact-hero { padding: 120px 0 55px; }
  .contact-assurances { margin-top: 25px; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; min-height: 0; padding: 32px; }
  .signal-grid > div { padding: 15px; }
  .case-canvas,.project-canvas,.project-large .project-canvas { min-height: 360px; }
  .case-study { padding: 45px 0; }
  .wave-divider { height: 42px; }
}
@media (max-width: 560px) {
  h1,.page-hero h1,.contact-copy h1,.article-hero h1,.legal-head h1 { font-size: clamp(2rem,8.7vw,2.8rem); line-height: 1.1; }
  h2 { font-size: clamp(1.8rem,7.6vw,2.3rem); line-height: 1.13; }
  .site-header { top: 8px; }
  .nav-shell,.mobile-panel { width: calc(100% - 24px); }
  .nav-shell { min-height: 58px; padding: 6px 7px 6px 13px; border-radius: 20px; }
  .brand-logo-original { width: 133px; }
  .language-link { display: block; font-size: .8125rem; }
  .home-hero { min-height: 730px; padding: 112px 0 300px; }
  .hero-backdrop img { object-position: center bottom; }
  .home-hero::after { background: linear-gradient(180deg,#0a08119c 0%,#0a0811cc 43%,transparent 70%,#0c0b12 99%); }
  .home-hero .eyebrow { font-size: .65rem; letter-spacing: .12em; }
  .home-hero .hero-intro { font-size: 1rem; max-width: 345px; margin-bottom: 20px; }
  .hero-copy h1 { margin-bottom: 18px; }
  .hero-copy h1 br { display: none; }
  .hero-copy h1 em { display: block; margin-top: 3px; }
  .home-hero .button-row { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .home-hero .button-row .button { width: auto; padding: 13px 16px; font-size: .875rem; }
  .home-hero .button-row .button-quiet { background: #21162966; }
  .hero-micro { font-size: .75rem; max-width: 290px; }
  .hero-credit { font-size: .7rem; }
  .signal-grid { gap: 8px; padding-bottom: 0; }
  .signal-grid > div { border-radius: 16px; padding: 14px; gap: 7px; }
  .signal-grid span { font-size: .75rem; }
  .signal-grid strong { font-size: 1rem; }
  .portrait-grid { grid-auto-columns: 82%; gap: 13px; }
  .portrait-image { border-radius: 22px; }
  .rail-heading { flex-wrap: wrap; align-items: center; }
  .rail-heading > div:first-child { flex: 1 1 235px; }
  .rail-controls { gap: 6px; }
  .rail-controls button { width: 44px; height: 44px; }
  .service-grid { grid-auto-columns: 88%; gap: 12px; }
  .service-body { padding: 20px; }
  .service-card p { min-height: 0; }
  .service-media { height: 150px; }
  .service-card-foot { margin-top: 20px; }
  .work-foot { align-items: start; gap: 15px; flex-direction: column; margin-top: 16px; }
  .method-step summary { padding: 18px; gap: 14px; }
  .method-detail { padding: 0 18px 20px; flex-direction: column; gap: 14px; }
  .method-detail > b { align-self: start; }
  .price-stack a { grid-template-columns: 1fr; padding: 20px; }
  .price-stack a:hover { padding-inline: 20px; }
  .price-stack strong { font-size: 1.1rem; }
  .price-stack small { grid-column: auto; }
  .services-section,.price-section { border-radius: 0 0 28px 28px; }
  .final-cta { padding: 32px 0; }
  .final-cta-inner { padding: 27px 22px; border-radius: 26px; }
  .final-cta-inner h2 { font-size: 2rem; }
  .site-footer { border-radius: 32px 32px 0 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 18px; padding-top: 40px; }
  .footer-brand,.footer-contact { grid-column: 1/-1; }
  .footer-brand p { margin-top: 14px; max-width: 320px; }
  .footer-column a { font-size: .875rem; }
  .footer-contact h2 { max-width: 320px; }
  .footer-bottom { gap: 13px; }
  .case-result { padding: 18px; }
  .case-grid { gap: 25px; }
  .case-copy h2 { margin: 13px 0; }
  .case-copy ul { margin-bottom: 18px; }
  .film-still,.film-still img,.film-still video { min-height: 240px; }
  .video-steps { grid-template-columns: 1fr; }
  .video-steps h3 { margin-top: 20px; }
  .video-steps article { padding: 22px; }
  .auto-ui-head { flex-wrap: wrap; gap: 10px; padding-top: 28px; }
  .automation-hero-ui { padding: 20px; }
  .use-grid { grid-auto-columns: 86%; }
  .use-grid article { min-height: 176px; }
  .contact-form { padding: 24px 18px; }
  .contact-assurances { margin-bottom: 18px; }
  .form-head h2 { font-size: 1.7rem; }
  .legacy-article,.legacy-legal { padding-top: 115px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal.is-visible { animation: none; }
  .wave-divider i,.video-track { animation: none !important; }
  .video-marquee { overflow-x: auto; }
  .video-track { width: max-content; }
  .video-repeat:nth-child(2) { display: none; }
}
