:root {
  --atelier-bg: #050b13;
  --atelier-ink: #08131f;
  --atelier-panel: #0b1825;
  --atelier-panel-2: #102234;
  --atelier-line: rgba(126, 220, 242, 0.2);
  --atelier-line-strong: rgba(126, 220, 242, 0.42);
  --atelier-white: #f7fbff;
  --atelier-ice: #d9e8f1;
  --atelier-muted: #91a5b4;
  --atelier-cyan: #55e4f5;
  --atelier-pink: #ff72bb;
  --atelier-yellow: #ffd84a;
  --atelier-lime: #a7eb70;
  --atelier-red: #ff647a;
}

* {
  letter-spacing: 0;
}

html {
  background: var(--atelier-bg);
  color-scheme: dark;
}

body {
  overflow-x: clip;
  background: var(--atelier-bg);
  color: var(--atelier-white);
}

body.is-loading {
  overflow: hidden;
}

main {
  position: relative;
  isolation: isolate;
  background: var(--atelier-bg);
}

::selection {
  background: var(--atelier-pink);
  color: #07111a;
}

.site-loader {
  position: fixed;
  z-index: 5000;
  inset: 0;
  overflow: hidden;
  background: #05080d;
  color: white;
  transition: opacity 480ms ease, visibility 480ms ease;
  animation: loader-failsafe 0.01s linear 8s forwards;
}

.site-loader::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--atelier-yellow);
  content: "";
}

.site-loader::after {
  position: absolute;
  right: 0;
  bottom: 18%;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  content: "";
}

.site-loader.is-complete {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(93, 226, 245, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 226, 245, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(135deg, transparent 0 78px, rgba(255, 114, 187, 0.035) 79px 80px);
  background-size: 80px 80px, 80px 80px, 160px 160px;
}

.loader-grid::after {
  position: absolute;
  inset: -20% 0 auto;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(85, 228, 245, 0.08), transparent);
  content: "";
  animation: loader-scan 2.4s linear infinite;
}

.loader-topline {
  position: absolute;
  top: 34px;
  right: 46px;
  left: 44px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.loader-core {
  position: absolute;
  top: 41%;
  left: 64%;
  display: flex;
  align-items: center;
  gap: 22px;
  width: min(520px, 32vw);
  transform: translate(-50%, -50%);
}

.loader-core img {
  width: 86px;
  height: 86px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  box-shadow: 0 0 0 7px rgba(85, 228, 245, 0.08);
}

.loader-core div {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.loader-core span,
.loader-core small {
  color: var(--atelier-cyan);
  font-size: 10px;
  font-weight: 800;
}

.loader-core strong {
  color: white;
  font-size: 32px;
  line-height: 1;
}

.loader-core small {
  color: rgba(255, 255, 255, 0.52);
}

.loader-progress {
  position: absolute;
  bottom: 12%;
  left: 44px;
  width: min(430px, 34vw);
}

.loader-progress-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}

.loader-progress-head strong {
  color: var(--atelier-yellow);
  font-size: 58px;
  line-height: 0.86;
}

.loader-progress-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
}

.loader-track {
  position: relative;
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
}

.loader-track i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--atelier-yellow), var(--atelier-pink), var(--atelier-cyan));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 160ms ease-out;
}

.loader-progress > small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  font-weight: 700;
}

.page-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--atelier-cyan), var(--atelier-pink), var(--atelier-yellow));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  z-index: 500;
  min-height: 72px;
  border-bottom: 1px solid rgba(85, 228, 245, 0.18);
  background: rgba(4, 13, 21, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--atelier-cyan) 0 24%, transparent 24% 70%, var(--atelier-pink) 70% 86%, var(--atelier-yellow) 86%);
  content: "";
  opacity: 0.52;
}

.brand-lockup strong,
.site-header .nav a {
  color: var(--atelier-white);
}

.brand-lockup small {
  color: var(--atelier-cyan);
}

.site-header .nav a {
  position: relative;
}

.site-header .nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--atelier-pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-header .nav a:hover::after,
.site-header .nav a:focus-visible::after {
  transform: scaleX(1);
}

.auth-link,
.user-chip {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero {
  min-height: 94svh;
  background: #040b12;
}

.hero > picture {
  z-index: 0;
}

.hero-media .hero-image {
  animation: hero-camera 14s ease-in-out infinite alternate;
  transform-origin: 68% 42%;
  will-change: transform;
}

.hero-motion-frame {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.hero-motion-breeze.is-loaded {
  animation: hero-breeze-frame 8.4s ease-in-out infinite;
}

.hero-motion-blink-early.is-loaded,
.hero-motion-blink-late.is-loaded,
.hero-motion-blink.is-loaded {
  z-index: 2;
}

.hero-motion-blink-early.is-loaded {
  animation: hero-blink-early-frame 12s linear infinite;
}

.hero-motion-blink-late.is-loaded {
  animation: hero-blink-late-frame 12s linear infinite;
}

.hero-motion-blink.is-loaded {
  animation: hero-blink-closed-frame 12s linear infinite;
}

.hero-shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3, 10, 17, 0.2) 0%, rgba(3, 10, 17, 0.06) 52%, rgba(3, 10, 17, 0.02) 100%),
    linear-gradient(180deg, rgba(3, 10, 17, 0.03), rgba(3, 10, 17, 0.2));
}

.hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(85, 228, 245, 0.48);
  box-shadow: 0 0 20px rgba(85, 228, 245, 0.55);
  content: "";
  pointer-events: none;
  animation: hero-scan 7s linear infinite;
}

.hero-inner,
.hero-rail {
  z-index: 4;
}

.hero-inner {
  border-left-color: var(--atelier-cyan);
}

.hero-inner::after {
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--atelier-pink) 0 44%, var(--atelier-yellow) 44% 72%, var(--atelier-cyan) 72%);
  content: "";
}

.hero-status {
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.5);
}

.hero-datafield {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-datafield span {
  position: absolute;
  width: 5px;
  height: 24px;
  border: 1px solid rgba(85, 228, 245, 0.62);
  background: rgba(85, 228, 245, 0.08);
  animation: data-float 8s ease-in-out infinite;
}

.hero-datafield span:nth-child(1) {
  top: 20%;
  left: 44%;
}

.hero-datafield span:nth-child(2) {
  top: 56%;
  left: 37%;
  height: 8px;
  border-color: rgba(255, 114, 187, 0.72);
  animation-delay: -2s;
}

.hero-datafield span:nth-child(3) {
  top: 16%;
  right: 18%;
  width: 16px;
  height: 4px;
  border-color: rgba(255, 216, 74, 0.72);
  animation-delay: -4s;
}

.hero-datafield span:nth-child(4) {
  right: 36%;
  bottom: 18%;
  animation-delay: -1s;
}

.hero-datafield span:nth-child(5) {
  top: 42%;
  right: 6%;
  width: 12px;
  height: 12px;
  border-color: rgba(255, 114, 187, 0.68);
  transform: rotate(45deg);
  animation-delay: -5s;
}

.hero-datafield span:nth-child(6) {
  bottom: 25%;
  left: 11%;
  width: 20px;
  height: 3px;
  border-color: rgba(167, 235, 112, 0.66);
  animation-delay: -3s;
}

.hero-facts div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts div:last-child {
  border-right: 0;
}

.atelier-ticker {
  position: relative;
  z-index: 6;
  height: 44px;
  overflow: hidden;
  border-top: 1px solid #fff2a4;
  border-bottom: 1px solid #1c2630;
  background: var(--atelier-yellow);
  color: #08131f;
}

.atelier-ticker div {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  animation: ticker-run 28s linear infinite;
}

.atelier-ticker span {
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.atelier-ticker b {
  color: var(--atelier-pink);
  font-size: 10px;
}

.section,
.atelier-cta {
  position: relative;
  overflow: clip;
  border-top: 1px solid var(--atelier-line);
}

.section::before,
.atelier-cta::before {
  position: absolute;
  z-index: 2;
  top: 30px;
  right: 6vw;
  color: rgba(145, 165, 180, 0.48);
  content: attr(data-section-code);
  font-size: 10px;
  font-weight: 800;
  pointer-events: none;
}

.section::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 6vw;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--atelier-pink) 0 42%, var(--atelier-yellow) 42% 66%, var(--atelier-cyan) 66%);
  content: "";
}

.section > *,
.atelier-cta > * {
  position: relative;
  z-index: 1;
}

.section-head h2,
.brief-intro h2,
.promise-copy h2,
.atelier-cta h2 {
  color: inherit;
}

.section-head > p:last-child,
.brief-intro > p,
.promise-copy > p,
.atelier-cta-copy > p {
  color: var(--atelier-muted);
}

.section-index {
  color: var(--atelier-pink);
}

.eyebrow {
  color: var(--atelier-cyan);
}

.brief-section {
  background-color: #06101a;
  background-image:
    linear-gradient(rgba(85, 228, 245, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 228, 245, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 72%, rgba(255, 114, 187, 0.035) 72% 72.5%, transparent 72.5%);
  background-size: 72px 72px, 72px 72px, 280px 280px;
  color: var(--atelier-white);
}

.brief-session {
  border-color: rgba(85, 228, 245, 0.34);
  background: rgba(85, 228, 245, 0.08);
  color: var(--atelier-cyan);
}

.brief-journey {
  border-color: var(--atelier-line-strong);
  background: rgba(4, 13, 22, 0.7);
}

.brief-journey li {
  border-color: var(--atelier-line);
  background: rgba(13, 31, 44, 0.72);
}

.brief-journey li:nth-child(2) {
  background: rgba(35, 20, 40, 0.72);
}

.brief-journey li:nth-child(3) {
  background: rgba(36, 33, 18, 0.68);
}

.brief-journey li > span {
  color: var(--atelier-pink);
}

.brief-journey strong {
  color: white;
}

.brief-journey small {
  color: var(--atelier-muted);
}

.brief-workspace {
  align-items: start;
}

.brief-form {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(85, 228, 245, 0.22);
  border-radius: 8px;
  background: rgba(10, 24, 37, 0.94);
  color: var(--atelier-white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.brief-form::before {
  position: absolute;
  top: -1px;
  right: 42px;
  width: 120px;
  height: 3px;
  background: var(--atelier-pink);
  content: "";
}

.brief-form-head {
  border-color: var(--atelier-line);
}

.brief-form-head h3,
.field-label,
.form-section legend,
.brief-submit-row strong {
  color: var(--atelier-white);
}

.form-index,
.form-section legend span {
  color: var(--atelier-cyan);
}

.form-required,
.field-hint,
.brief-submit-row span {
  color: var(--atelier-muted);
}

.form-section {
  border-color: rgba(145, 165, 180, 0.2);
}

.brief-form input,
.brief-form textarea,
.brief-form select,
.project-type-trigger,
.date-picker-trigger {
  border-color: rgba(119, 166, 184, 0.42);
  background: #eef8fc;
  color: #08131f;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: #667985;
  opacity: 1;
}

.brief-form input:focus,
.brief-form textarea:focus,
.brief-form select:focus,
.project-type-trigger:focus-visible,
.date-picker-trigger:focus-visible {
  border-color: var(--atelier-cyan);
  box-shadow: 0 0 0 3px rgba(85, 228, 245, 0.18);
}

.project-type-trigger-code {
  background: var(--atelier-yellow);
  color: #07131e;
}

.date-trigger-icon {
  background: #d9fbff;
  color: #006a77;
}

.brief-submit-row {
  border-color: rgba(145, 165, 180, 0.24);
}

.brief-submit-row .btn.primary {
  background: var(--atelier-yellow);
  color: #07131e;
  box-shadow: 0 16px 36px rgba(255, 216, 74, 0.18);
}

.brief-output {
  top: 96px;
  border: 1px solid rgba(85, 228, 245, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(85, 228, 245, 0.055), transparent 38%),
    #04171d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

.brief-output::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-top: 3px solid var(--atelier-pink);
  border-right: 3px solid var(--atelier-pink);
  content: "";
}

.brief-output-head {
  border-color: rgba(85, 228, 245, 0.2);
}

.brief-output-head span,
.brief-completeness {
  color: var(--atelier-yellow);
}

.brief-output-head h3,
.brief-output pre {
  color: var(--atelier-white);
}

.brief-output pre {
  font-family: Consolas, "Microsoft YaHei UI", monospace;
}

.brief-output .btn.secondary {
  border-color: rgba(85, 228, 245, 0.34);
  background: rgba(85, 228, 245, 0.08);
  color: var(--atelier-cyan);
}

.services {
  background-color: #081522;
  background-image:
    repeating-linear-gradient(120deg, transparent 0 119px, rgba(85, 228, 245, 0.035) 120px 121px),
    linear-gradient(90deg, transparent 0 75%, rgba(255, 114, 187, 0.045) 75%);
  color: var(--atelier-white);
}

.services .section-head {
  max-width: 850px;
}

.service-grid {
  gap: 14px;
}

.service-card {
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(127, 194, 216, 0.2);
  border-radius: 8px;
  background: rgba(12, 29, 43, 0.92);
  color: var(--atelier-white);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--card-accent, var(--atelier-cyan));
  content: "";
}

.service-card::after {
  position: absolute;
  right: -22px;
  bottom: 32px;
  width: 130px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--atelier-cyan)) 45%, transparent);
  content: "";
  transform: skewX(-18deg);
}

.service-card:nth-child(1) {
  --card-accent: var(--atelier-cyan);
  background: rgba(9, 38, 49, 0.94);
}

.service-card:nth-child(2) {
  --card-accent: var(--atelier-pink);
}

.service-card:nth-child(3) {
  --card-accent: var(--atelier-yellow);
}

.service-card:nth-child(4) {
  --card-accent: #8ea6ff;
}

.service-card:nth-child(5) {
  --card-accent: var(--atelier-lime);
}

.service-card:nth-child(6) {
  --card-accent: var(--atelier-pink);
  background: rgba(40, 23, 42, 0.94);
}

.service-card h3 {
  color: var(--atelier-white);
}

.service-card p {
  color: #aebec9;
}

.service-kicker {
  color: var(--card-accent, var(--atelier-cyan));
}

.card-icon {
  border: 1px solid color-mix(in srgb, var(--card-accent, var(--atelier-cyan)) 58%, transparent);
  background: color-mix(in srgb, var(--card-accent, var(--atelier-cyan)) 12%, #07131f);
  color: var(--card-accent, var(--atelier-cyan));
}

.service-tags span {
  border-color: color-mix(in srgb, var(--card-accent, var(--atelier-cyan)) 42%, transparent);
  background: rgba(255, 255, 255, 0.04);
  color: var(--atelier-ice);
}

.promise {
  background-color: #0d1020;
  background-image:
    linear-gradient(rgba(142, 166, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 166, 255, 0.055) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 62%, rgba(255, 114, 187, 0.055) 62% 62.5%, transparent 62.5%);
  background-size: 96px 96px, 96px 96px, 320px 320px;
  color: var(--atelier-white);
}

.promise::after {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 42%;
  width: 360px;
  height: 360px;
  background: url("./assets/tiko-shop/tiko-shop-support-avatar.webp") center / cover no-repeat;
  content: "";
  opacity: 0.045;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.promise-copy,
.promise-list {
  position: relative;
  z-index: 1;
}

.quality-signal {
  border-color: rgba(85, 228, 245, 0.24);
  color: var(--atelier-ice);
}

.promise-list {
  overflow: hidden;
  border: 1px solid rgba(142, 166, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 21, 34, 0.78);
}

.promise-list > div {
  position: relative;
  border-color: rgba(142, 166, 255, 0.16);
  background: rgba(255, 255, 255, 0.025);
  transition: background-color 180ms ease;
}

.promise-list > div::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--promise-accent, var(--atelier-cyan));
  content: "";
}

.promise-list > div:nth-child(2) {
  --promise-accent: var(--atelier-pink);
}

.promise-list > div:nth-child(3) {
  --promise-accent: var(--atelier-yellow);
}

.promise-list > div:nth-child(4) {
  --promise-accent: var(--atelier-lime);
}

.promise-list small {
  color: var(--promise-accent, var(--atelier-cyan));
}

.promise-list strong {
  color: var(--atelier-white);
}

.promise-list span {
  color: var(--atelier-muted);
}

.process {
  background-color: #eef8fc;
  background-image:
    linear-gradient(rgba(8, 38, 55, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 38, 55, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  color: #08131f;
}

.process .section-head {
  width: min(1080px, 100%);
}

.process::before {
  color: rgba(8, 19, 31, 0.42);
}

.process .section-head > p:last-child {
  color: #526674;
}

.process .steps {
  border-color: rgba(8, 38, 55, 0.2);
}

.process .steps li {
  position: relative;
  min-height: 270px;
  border-color: rgba(8, 38, 55, 0.16);
  background: rgba(255, 255, 255, 0.44);
  transition: background-color 180ms ease, transform 180ms ease;
}

.process .steps li::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--step-accent, var(--atelier-cyan));
  content: "";
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 220ms ease;
}

.process .steps li:nth-child(2) {
  --step-accent: var(--atelier-pink);
}

.process .steps li:nth-child(3) {
  --step-accent: var(--atelier-yellow);
}

.process .steps li:nth-child(4) {
  --step-accent: #5c78d6;
}

.process .steps li > span {
  color: var(--step-accent, #00798a);
}

.process .steps h3 {
  color: #08131f;
}

.process .steps p {
  color: #5a6c77;
}

.deliverables {
  background-color: #07111c;
  background-image:
    repeating-linear-gradient(150deg, transparent 0 138px, rgba(255, 114, 187, 0.04) 139px 140px),
    linear-gradient(90deg, rgba(85, 228, 245, 0.035), transparent 42%);
  color: var(--atelier-white);
}

.deliverable-board {
  border-color: transparent;
  background: transparent;
}

.deliverables .section-head > p:last-child {
  color: var(--atelier-muted);
}

.deliverable-grid {
  gap: 14px;
}

.deliverable-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(126, 220, 242, 0.2);
  border-radius: 8px;
  background: rgba(14, 32, 47, 0.9);
  color: var(--atelier-white);
  transition: transform 200ms ease, border-color 200ms ease;
}

.deliverable-grid article::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--delivery-accent, var(--atelier-pink));
  content: "";
}

.deliverable-grid article:nth-child(2) {
  --delivery-accent: var(--atelier-cyan);
}

.deliverable-grid article:nth-child(3) {
  --delivery-accent: var(--atelier-yellow);
}

.deliverable-grid article > span {
  color: var(--delivery-accent, var(--atelier-pink));
}

.deliverable-grid h3 {
  color: var(--atelier-white);
}

.deliverable-grid p {
  color: var(--atelier-muted);
}

.atelier-cta {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 96px 6vw;
  background-color: #0a1420;
  background-image:
    linear-gradient(rgba(85, 228, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 228, 245, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.atelier-cta::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 5px;
  background: linear-gradient(90deg, var(--atelier-pink), var(--atelier-yellow), var(--atelier-cyan));
  content: "";
}

.atelier-cta-copy {
  z-index: 2;
  width: min(660px, 54vw);
}

.atelier-cta h2 {
  margin: 0 0 22px;
  color: white;
  font-size: 48px;
  line-height: 1.08;
}

.atelier-cta-copy > p {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: 17px;
}

.atelier-cta .btn.primary {
  min-width: 210px;
  justify-content: space-between;
  background: var(--atelier-yellow);
  color: #08131f;
  box-shadow: 0 18px 44px rgba(255, 216, 74, 0.2);
}

.atelier-cta-visual {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 7vw;
  width: min(430px, 34vw);
  aspect-ratio: 1;
  transform: translateY(-50%) rotate(3deg);
}

.atelier-cta-visual::before,
.atelier-cta-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.atelier-cta-visual::before {
  inset: -18px;
  border-top: 2px solid var(--atelier-cyan);
  border-right: 2px solid var(--atelier-pink);
  border-bottom: 2px solid var(--atelier-yellow);
  border-left: 2px solid rgba(255, 255, 255, 0.18);
}

.atelier-cta-visual::after {
  top: -30px;
  right: -30px;
  width: 72px;
  height: 72px;
  border-top: 8px solid var(--atelier-yellow);
  border-right: 8px solid var(--atelier-yellow);
}

.atelier-cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(1.06) contrast(1.03);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.atelier-cta-signal {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 48px;
  display: flex;
  gap: 5px;
}

.atelier-cta-signal span {
  width: 24px;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
}

.atelier-cta-signal span:nth-child(1) {
  background: var(--atelier-pink);
}

.atelier-cta-signal span:nth-child(2) {
  background: var(--atelier-yellow);
}

.atelier-cta-signal span:nth-child(3) {
  background: var(--atelier-cyan);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(85, 228, 245, 0.18);
  background: #03080e;
  color: var(--atelier-muted);
}

.site-footer strong,
.site-footer a {
  color: var(--atelier-white);
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 6vw;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, var(--atelier-cyan), var(--atelier-pink), var(--atelier-yellow));
  content: "";
}

.auth-modal,
.project-type-modal,
.date-modal {
  z-index: 2000;
  background: rgba(2, 8, 13, 0.78);
  backdrop-filter: blur(16px);
}

.auth-card,
.project-type-dialog,
.date-dialog {
  border-color: rgba(85, 228, 245, 0.26);
  background: #0b1825;
  color: var(--atelier-white);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.52);
}

.project-type-dialog-head,
.project-type-groups,
.custom-project-type,
.project-type-dialog-footer {
  border-color: rgba(85, 228, 245, 0.18);
  background: #0b1825;
}

.project-type-dialog-head {
  background:
    linear-gradient(90deg, rgba(85, 228, 245, 0.08), transparent 48%),
    #0b1825;
}

.project-type-groups {
  scrollbar-color: rgba(85, 228, 245, 0.42) rgba(255, 255, 255, 0.04);
}

.auth-card h2,
.project-type-dialog h2,
.date-dialog h2,
.auth-card label,
.custom-project-type label,
.project-type-group h3 {
  color: var(--atelier-white);
}

.auth-card p,
.project-type-dialog p,
.date-dialog p,
.project-type-group-head span,
.custom-project-type > span {
  color: var(--atelier-muted);
}

.project-type-dialog-head > div > p:last-child,
.project-type-group-head p,
.project-type-dialog-footer span,
.date-dialog-head > div > p:last-child,
.date-dialog-footer span {
  color: var(--atelier-muted);
}

.project-type-group-head > span {
  color: var(--atelier-pink);
}

.auth-card input,
.custom-project-type input {
  border-color: rgba(119, 166, 184, 0.42);
  background: #eef8fc;
  color: #08131f;
}

.auth-tabs,
.project-type-dialog-footer,
.date-dialog-footer {
  border-color: rgba(85, 228, 245, 0.18);
  background: rgba(4, 14, 23, 0.88);
}

.project-type-options button,
.date-quick-options button,
.calendar-grid button {
  border-color: rgba(119, 166, 184, 0.28);
  background: #102234;
  color: var(--atelier-white);
}

.project-type-options button:hover,
.project-type-options button:focus-visible {
  border-color: var(--atelier-cyan);
  background: #153047;
}

.project-type-options button small {
  color: var(--atelier-muted);
}

.project-type-options button[aria-pressed="true"],
.project-type-options button.is-selected,
.date-quick-options button.is-selected,
.date-quick-options button.is-active,
.calendar-grid button.is-selected {
  border-color: var(--atelier-cyan);
  background: rgba(85, 228, 245, 0.12);
  color: var(--atelier-white);
  box-shadow: inset 0 0 0 1px rgba(85, 228, 245, 0.25);
}

.project-type-options button.is-selected::after {
  color: var(--atelier-cyan);
}

.project-type-code {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.project-type-group {
  border-color: rgba(119, 166, 184, 0.18);
}

.custom-project-type {
  background: #0d1d2a;
}

.custom-project-type input {
  border-color: rgba(85, 228, 245, 0.3);
}

.project-type-dialog-footer strong,
.date-dialog-footer strong,
.calendar-toolbar strong {
  color: var(--atelier-white);
}

.date-dialog {
  scrollbar-color: rgba(85, 228, 245, 0.42) rgba(255, 255, 255, 0.04);
}

.date-dialog-head {
  padding: 4px 52px 4px 0;
}

.date-quick-options button:hover,
.date-quick-options button:focus-visible {
  border-color: var(--atelier-cyan);
  background: #153047;
  color: var(--atelier-white);
}

.calendar-panel {
  border-color: rgba(85, 228, 245, 0.18);
  background:
    linear-gradient(rgba(85, 228, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 228, 245, 0.04) 1px, transparent 1px),
    #0d1d2a;
  background-size: 36px 36px;
}

.calendar-weekdays span {
  color: var(--atelier-muted);
}

.calendar-grid button:hover:not(:disabled) {
  border-color: var(--atelier-cyan);
  background: rgba(85, 228, 245, 0.12);
  color: var(--atelier-white);
}

.calendar-grid button.is-today {
  border-color: var(--atelier-pink);
  color: var(--atelier-pink);
}

.calendar-grid button:disabled {
  background: rgba(255, 255, 255, 0.045);
  color: rgba(220, 237, 245, 0.34);
}

.modal-close,
.calendar-nav {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.chat-window {
  border: 1px solid rgba(85, 228, 245, 0.3);
  background: #091722;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

.chat-header {
  background: #06121b;
}

.chat-service-state,
.chat-quick-replies,
.chat-composer-wrap {
  border-color: rgba(85, 228, 245, 0.16);
  background: #0d1d2a;
}

.chat-messages {
  background:
    linear-gradient(rgba(85, 228, 245, 0.035) 1px, transparent 1px),
    #0a1721;
  background-size: 40px 40px;
}

.chat-launcher {
  background: var(--atelier-yellow);
  color: #08131f;
  box-shadow: 0 18px 46px rgba(255, 216, 74, 0.28);
}

body.atelier-motion-ready [data-motion-item] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.atelier-motion-ready [data-motion-item].is-inview {
  opacity: 1;
  transform: translateY(0);
}

body.atelier-motion-ready .service-card[data-motion-item]:nth-child(2),
body.atelier-motion-ready .service-card[data-motion-item]:nth-child(5),
body.atelier-motion-ready .promise-list > [data-motion-item]:nth-child(2),
body.atelier-motion-ready .steps > [data-motion-item]:nth-child(2) {
  transition-delay: 80ms;
}

body.atelier-motion-ready .service-card[data-motion-item]:nth-child(3),
body.atelier-motion-ready .service-card[data-motion-item]:nth-child(6),
body.atelier-motion-ready .promise-list > [data-motion-item]:nth-child(3),
body.atelier-motion-ready .steps > [data-motion-item]:nth-child(3) {
  transition-delay: 150ms;
}

body.atelier-motion-ready .promise-list > [data-motion-item]:nth-child(4),
body.atelier-motion-ready .steps > [data-motion-item]:nth-child(4) {
  transition-delay: 220ms;
}

@media (hover: hover) {
  .service-card:hover {
    z-index: 2;
    border-color: color-mix(in srgb, var(--card-accent, var(--atelier-cyan)) 62%, transparent);
    background-color: rgba(18, 39, 56, 0.98);
    transform: translateY(-6px);
  }

  .promise-list > div:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .process .steps li:hover {
    background: white;
    transform: translateY(-5px);
  }

  .process .steps li:hover::before {
    transform: scaleX(1);
  }

  .deliverable-grid article:hover {
    border-color: var(--delivery-accent, var(--atelier-pink));
    transform: translateX(6px);
  }
}

@keyframes loader-scan {
  from {
    transform: translateY(-20%);
  }
  to {
    transform: translateY(420%);
  }
}

@keyframes loader-failsafe {
  to {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes hero-camera {
  from {
    transform: scale(1.008) translate3d(-0.12%, 0, 0);
  }
  to {
    transform: scale(1.018) translate3d(0.16%, -0.22%, 0);
  }
}

@keyframes hero-breeze-frame {
  0%,
  18%,
  100% {
    opacity: 0;
  }
  38%,
  68% {
    opacity: 1;
  }
  84% {
    opacity: 0.14;
  }
}

@keyframes hero-blink-early-frame {
  0%,
  29.5%,
  35%,
  46%,
  51%,
  100% {
    opacity: 0;
  }
  32%,
  48.5% {
    opacity: 1;
  }
}

@keyframes hero-blink-late-frame {
  0%,
  33%,
  38.5%,
  42%,
  47%,
  100% {
    opacity: 0;
  }
  35.8%,
  44.5% {
    opacity: 1;
  }
}

@keyframes hero-blink-closed-frame {
  0%,
  37%,
  45%,
  100% {
    opacity: 0;
  }
  39.5%,
  42.5% {
    opacity: 1;
  }
}

@keyframes hero-scan {
  from {
    top: 14%;
    opacity: 0;
  }
  12%,
  86% {
    opacity: 0.6;
  }
  to {
    top: 88%;
    opacity: 0;
  }
}

@keyframes data-float {
  0%,
  100% {
    opacity: 0.22;
    translate: 0 0;
  }
  50% {
    opacity: 0.9;
    translate: 0 -16px;
  }
}

@keyframes ticker-run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .loader-core {
    left: 62%;
    width: min(500px, 42vw);
  }

  .brief-output {
    top: 84px;
  }

  .atelier-cta-copy {
    width: min(590px, 58vw);
  }

  .atelier-cta-visual {
    right: 5vw;
    width: min(360px, 32vw);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 62px;
  }

  .loader-topline {
    top: 22px;
    right: 22px;
    left: 26px;
  }

  .loader-topline span:last-child {
    display: none;
  }

  .loader-core {
    top: 39%;
    left: 28px;
    width: calc(100% - 52px);
    transform: none;
  }

  .loader-core img {
    width: 68px;
    height: 68px;
  }

  .loader-core strong {
    font-size: 24px;
  }

  .loader-progress {
    bottom: 13%;
    left: 28px;
    width: calc(100% - 52px);
  }

  .loader-progress-head strong {
    font-size: 48px;
  }

  .hero-media .hero-image {
    animation-name: hero-camera-mobile;
    transform-origin: 68% 32%;
  }

  .hero-datafield span:nth-child(n+4) {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 14, 0.78) 0%, rgba(3, 10, 14, 0.56) 54%, rgba(3, 10, 14, 0.24) 100%),
      linear-gradient(180deg, rgba(3, 10, 14, 0.16) 0%, rgba(3, 10, 14, 0.34) 100%);
  }

  .atelier-ticker {
    height: 38px;
  }

  .atelier-ticker div {
    gap: 20px;
    padding: 0 20px;
  }

  .section::before,
  .atelier-cta::before {
    top: 18px;
    right: 20px;
  }

  .section::after {
    left: 20px;
  }

  .brief-form {
    padding: 22px 18px;
  }

  .brief-form::before {
    right: 18px;
    width: 80px;
  }

  .brief-form input,
  .brief-form textarea,
  .brief-form select,
  .project-type-trigger,
  .date-picker-trigger {
    min-height: 52px;
  }

  .brief-output {
    position: relative;
    top: auto;
  }

  .service-card {
    min-height: 240px;
  }

  .promise::after {
    top: 26%;
    left: 74%;
    width: 240px;
    height: 240px;
  }

  .process .steps li {
    min-height: 210px;
  }

  .atelier-cta {
    min-height: 640px;
    align-items: start;
    padding: 76px 20px 310px;
  }

  .atelier-cta-copy {
    width: 100%;
  }

  .atelier-cta h2 {
    font-size: 36px;
  }

  .atelier-cta-copy > p {
    font-size: 16px;
  }

  .atelier-cta-visual {
    top: auto;
    right: 50%;
    bottom: 56px;
    width: 230px;
    transform: translateX(50%) rotate(2deg);
  }

  .atelier-cta-signal {
    right: 20px;
    bottom: 24px;
  }

  .site-footer::before {
    left: 20px;
  }

  .project-type-dialog,
  .date-dialog {
    background: #0b1825;
  }
}

@keyframes hero-camera-mobile {
  from {
    transform: scale(1.006) translate3d(-0.12%, 0, 0);
  }
  to {
    transform: scale(1.014) translate3d(0.2%, -0.12%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .loader-grid::after,
  .hero-media .hero-image,
  .hero-motion-frame,
  .hero::after,
  .hero-datafield span,
  .atelier-ticker div {
    animation: none !important;
  }

  .hero-motion-frame {
    display: none;
  }

  body.atelier-motion-ready [data-motion-item] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
