﻿:root {
  --bg: #f7f4fb;
  --text: #151515;
  --muted: #666;
  --line: #e9e0f2;
  --accent: #9b6dff;
  --accent-2: #c7b1ff;
  --dark: #111;
  --card: rgba(255,255,255,0.88);
  --shadow: 0 14px 40px rgba(0,0,0,.12);
  --radius: 22px;
  --max: 1180px;
  --premium-noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #fbf8ff;
}
body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(170,120,255,.18), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(255,170,210,.11), transparent 30%),
    linear-gradient(180deg, #fbf8ff 0%, #f5effd 45%, #fff 100%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100%;
  overflow-x: hidden;
}

body.bg-noise::before {
  display: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
section[id] { scroll-margin-top: 92px; }

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0;
}

#about {
  padding: 82px 0;
}

.bg-premium-light,
.bg-premium-lavender,
.bg-premium-dark {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.bg-premium-light > .container,
.bg-premium-lavender > .container,
.bg-premium-dark > .container,
.bg-soft-glow > .container,
.section-blend-bottom > .container,
.section-blend-top > .container {
  position: relative;
  z-index: 1;
}

.bg-premium-light {
  background:
    radial-gradient(circle at 90% 10%, rgba(190,145,255,.13), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(255,180,210,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
}

.bg-premium-lavender {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.72), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(118,72,180,.24), transparent 36%),
    linear-gradient(135deg, #efe5fb 0%, #dcccf3 48%, #cbb6eb 100%);
}

.bg-premium-dark {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(151,94,255,.22), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(255,140,190,.08), transparent 32%),
    linear-gradient(180deg, #171020 0%, #0d0815 55%, #07050c 100%);
}

.bg-premium-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.055), transparent);
  opacity: .65;
}

.bg-soft-glow::before {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--soft-glow-x, 18%) var(--soft-glow-y, 12%), rgba(255,255,255,.34), transparent 24%),
    linear-gradient(115deg, transparent 20%, rgba(255,255,255,var(--soft-glow-band, .28)) 42%, transparent 62%);
  opacity: var(--soft-glow-opacity, .34);
  transform: rotate(var(--soft-glow-rotate, -4deg));
}

.section-blend-top {
  box-shadow: inset 0 78px 70px -82px var(--section-blend-top-color, rgba(255,255,255,.46));
}

.section-blend-bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 0;
  height: var(--section-blend-height, 84px);
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--section-blend-bottom-color, rgba(255,255,255,.18)));
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  margin: 0 0 18px;
  font-size: clamp(32px, 7vw, 72px);
  line-height: .95;
  letter-spacing: .01em;
  font-weight: 900;
}

.lead {
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 90;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(248,244,255,.82));
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(80,54,125,.08);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 22px;
}

.logo span { color: var(--accent); }

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 13px;
  color: #333;
}

nav .cta {
  margin-left: 8px;
}

.nav-x-link {
  display: inline-grid;
  place-items: center;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  background: #111;
  border: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 8px 18px rgba(17,17,17,.12);
}

.nav-x-link:hover,
.nav-x-link:focus-visible {
  opacity: .82;
}

.nav-x-link:focus-visible {
  outline: 2px solid rgba(111,81,191,.45);
  outline-offset: 3px;
}

.nav-x-mark {
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 800;
}

@media (min-width: 981px) {
  .header-nav {
    gap: 4px;
    align-items: stretch;
  }

  .header-nav > a:not(.cta):not(.nav-x-link) {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px 14px;
    overflow: hidden;
    color: #555;
    background: transparent;
    border: 1px solid transparent;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.2;
    white-space: nowrap;
    transition: color .22s ease, background-color .55s ease, border-color .32s ease;
  }

  .header-nav > a:not(.cta):not(.nav-x-link)::before,
  .header-nav > a:not(.cta):not(.nav-x-link)::after {
    content: "";
    position: absolute;
    left: -50%;
    top: 50%;
    z-index: -1;
    display: block;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    border-radius: 200px;
    opacity: .3;
    transform: scale(0);
  }

  .header-nav > a:not(.cta):not(.nav-x-link)::before {
    background: #333;
    transition: all .95s ease-out 0s;
  }

  .header-nav > a:not(.cta):not(.nav-x-link)::after {
    background: #000;
    transition: all .6s ease-in .32s;
  }

  .header-nav > a:not(.cta):not(.nav-x-link):hover,
  .header-nav > a:not(.cta):not(.nav-x-link):focus-visible {
    color: #fff;
    background: #000;
    border-color: #000;
  }

  .header-nav > a:not(.cta):not(.nav-x-link):hover::before,
  .header-nav > a:not(.cta):not(.nav-x-link):hover::after,
  .header-nav > a:not(.cta):not(.nav-x-link):focus-visible::before,
  .header-nav > a:not(.cta):not(.nav-x-link):focus-visible::after {
    opacity: 1;
    transform: scale(4);
  }

  .header-nav > a:not(.cta):not(.nav-x-link):focus-visible {
    outline: 2px solid rgba(17,17,17,.28);
    outline-offset: 2px;
  }

  .header-nav > a:not(.cta):not(.nav-x-link)[aria-current="page"] {
    font-weight: 800;
  }
}

@media (min-width: 1180px) {
  .header-nav > a:not(.cta):not(.nav-x-link) {
    padding-inline: 18px;
  }
}

.side-nav {
  display: none;
}

@media (min-width: 1180px) {
  body.side-nav-page {
    --side-rail-width: 136px;
    --side-tab-width: 58px;
    --side-tab-height: clamp(112px, 12.5svh, 148px);
    --side-tab-overlap: 6px;
    --side-rail-bg: linear-gradient(180deg, #cfc5b7 0%, #b5aa99 100%);
    --side-nav-active-bg: linear-gradient(180deg, #8b5cf6 0%, #5d4599 100%);
    --side-nav-active-color: #fff;
    padding-right: var(--side-rail-width);
  }

  body.side-nav-page::after {
    content: "";
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 24;
    width: var(--side-rail-width);
    pointer-events: none;
    background: var(--side-rail-bg);
    box-shadow:
      1px 0 0 rgba(255,255,255,.35) inset,
      -1px 0 0 rgba(72,62,50,.12),
      -16px 0 34px rgba(24,14,42,.10);
  }

  body.side-nav-page::before {
    content: none;
  }

  body.side-nav-page > main,
  body.side-nav-page > footer {
    position: relative;
    z-index: 30;
    box-shadow:
      12px 0 24px rgba(20,12,38,.15),
      24px 0 42px rgba(20,12,38,.09);
  }

  body.side-nav-page > main::after,
  body.side-nav-page > footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    z-index: 1;
    width: 40px;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(20,12,38,.14) 0%,
      rgba(20,12,38,.08) 42%,
      rgba(20,12,38,0) 100%
    );
  }

  .side-nav-page .side-nav {
    position: fixed;
    top: 73px;
    right: calc(var(--side-rail-width) - var(--side-tab-width));
    z-index: 60;
    width: var(--side-tab-width);
    max-height: calc(100svh - 80px);
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    overflow: visible;
    transform: none;
    font-size: 9px;
    color: rgba(255,255,255,.84);
  }

  .side-nav-page .side-nav a {
    position: relative;
    width: var(--side-tab-width);
    min-height: var(--side-tab-height);
    display: grid;
    place-items: center;
    margin-bottom: calc(var(--side-tab-overlap) * -1);
    padding: 22px 7px;
    border-radius: 0 14px 14px 0;
    overflow: visible;
    background:
      linear-gradient(180deg, #5b3f8f 0%, #3f2b68 100%);
    border: 0;
    box-shadow:
      0 3px 9px rgba(18,12,34,.13),
      10px 14px 22px rgba(18,12,34,.22),
      3px 4px 0 rgba(0,0,0,.07),
      1px 1px 0 rgba(255,255,255,.16) inset;
    color: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1.32;
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    transition:
      background .25s ease,
      color .25s ease,
      box-shadow .25s ease,
      transform .25s ease;
  }

  .side-nav-page .side-nav a:nth-child(1) {
    z-index: 5;
    background:
      linear-gradient(180deg, #6f2cff 0%, #3a0099 100%);
    color: #fff;
  }

  .side-nav-page .side-nav a:nth-child(2) {
    z-index: 4;
    background:
      linear-gradient(180deg, #ff2b5f 0%, #c91445 100%);
    color: #fff;
  }

  .side-nav-page .side-nav a:nth-child(3) {
    z-index: 3;
    background:
      linear-gradient(180deg, #5197ff 0%, #2457d6 100%);
    color: #fff;
  }

  .side-nav-page .side-nav a:nth-child(4) {
    z-index: 2;
    background:
      linear-gradient(180deg, #18b96f 0%, #087a46 100%);
    color: #fff;
  }

  .side-nav-page .side-nav a:nth-child(5) {
    z-index: 1;
    margin-bottom: 0;
    background:
      linear-gradient(180deg, #f5a623 0%, #c26a00 100%);
    color: #fff;
    font-size: 17px;
    font-weight: 1000;
    letter-spacing: .18em;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .side-nav-page .side-nav a:nth-child(5) span {
    display: inline-block;
    transform: rotate(90deg);
    transform-origin: center;
  }

  .side-nav-page .side-nav a:nth-child(5).is-side-active {
    background:
      linear-gradient(180deg, #f2eafd 0%, #d8c6ef 100%);
    color: #2f2348;
  }

  .side-nav-page .side-nav a:hover,
  .side-nav-page .side-nav a:focus-visible {
    color: #fff;
    background:
      linear-gradient(180deg, #564765 0%, #3c314b 100%);
    box-shadow:
      0 5px 14px rgba(18,12,34,.20),
      8px 10px 15px rgba(18,12,34,.32),
      2px 3px 0 rgba(0,0,0,.11),
      1px 1px 0 rgba(255,255,255,.18) inset;
  }

  .side-nav-page .side-nav a.is-side-active {
    z-index: 10;
    transform: none;
    color: var(--side-nav-active-color);
    background: var(--side-nav-active-bg);
    box-shadow:
      0 4px 11px rgba(18,12,34,.16),
      7px 9px 14px rgba(18,12,34,.26),
      2px 3px 0 rgba(0,0,0,.08),
      1px 1px 0 rgba(255,255,255,.18) inset;
  }

  .side-nav-page .page-top-button {
    right: 16px;
  }
}

.cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
}

.cta:hover,
.btn:hover,
.cta:focus-visible,
.btn:focus-visible {
  transform: translateY(-1px);
}

.cta {
  background:
    linear-gradient(135deg, #ff6840 0%, #ff7d32 48%, #ef562b 100%);
  color: #fff;
  box-shadow:
    0 12px 26px rgba(240,86,43,.26),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.cta:hover,
.cta:focus-visible {
  box-shadow:
    0 15px 30px rgba(240,86,43,.32),
    inset 0 1px 0 rgba(255,255,255,.32);
}

.cta:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(255,255,255,.82);
  outline-offset: 3px;
}

.bg-premium-light .cta:focus-visible,
.bg-premium-lavender .cta:focus-visible {
  outline-color: rgba(111,81,191,.55);
}

@property --ring-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.rainbow-ring-btn {
  --ring-angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
  box-shadow:
    0 10px 24px rgba(10,6,20,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.rainbow-ring-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  border-radius: inherit;
  pointer-events: none;
  background:
    conic-gradient(
      from var(--ring-angle),
      rgba(115,220,255,1) 0deg,
      rgba(110,125,255,1) 28deg,
      rgba(207,95,255,1) 56deg,
      rgba(255,90,180,1) 84deg,
      rgba(255,255,255,.34) 112deg,
      rgba(255,214,92,1) 140deg,
      rgba(104,239,145,1) 168deg,
      rgba(86,202,255,1) 196deg,
      rgba(110,125,255,1) 224deg,
      rgba(207,95,255,1) 252deg,
      rgba(255,90,180,1) 280deg,
      rgba(255,214,92,1) 308deg,
      rgba(104,239,145,1) 336deg,
      rgba(115,220,255,1) 360deg
    );
  opacity: 0;
  animation: rainbowBorderFlow 3.6s linear infinite;
  box-shadow:
    0 0 10px rgba(92,178,255,.34),
    0 0 14px rgba(255,95,168,.18);
}

.rainbow-ring-btn::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, #342454 0%, #24173a 52%, #1b102d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    inset 0 -1px 0 rgba(0,0,0,.28);
  opacity: 0;
}

.rainbow-ring-btn:hover,
.rainbow-ring-btn:focus-visible {
  color: #fff;
  background: transparent;
  box-shadow:
    0 12px 28px rgba(8,4,15,.24),
    0 0 14px rgba(92,178,255,.30),
    0 0 18px rgba(255,95,168,.18);
}

.rainbow-ring-btn:hover::before,
.rainbow-ring-btn:focus-visible::before,
.rainbow-ring-btn:hover::after,
.rainbow-ring-btn:focus-visible::after {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .rainbow-ring-btn {
    background: transparent;
    box-shadow:
      0 12px 28px rgba(8,4,15,.24),
      0 0 14px rgba(92,178,255,.30),
      0 0 18px rgba(255,95,168,.18);
  }

  .rainbow-ring-btn::before,
  .rainbow-ring-btn::after {
    opacity: 1;
  }
}

@keyframes rainbowBorderFlow {
  from {
    --ring-angle: 0deg;
  }
  to {
    --ring-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rainbow-ring-btn::before {
    animation: none;
  }
}

header .cta,
nav .cta {
  min-height: 42px;
  padding: 0 20px;
  box-shadow:
    0 8px 18px rgba(240,86,43,.22),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.btn-outline-light {
  color: #111;
  border-color: rgba(0,0,0,.12);
  background: rgba(255,255,255,.7);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(255,255,255,.82);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-premium {
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 18%, rgba(214,64,173,.14), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(159,88,235,.16), transparent 26%),
    radial-gradient(circle at 72% 72%, rgba(116,58,201,.14), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(215,181,109,.08), transparent 36%),
    linear-gradient(135deg, #120a1f 0%, #1b1030 42%, #24133d 78%, #2c1747 100%);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 78% at 28% 22%, rgba(227,79,179,.075) 0%, rgba(227,79,179,.038) 34%, rgba(227,79,179,0) 76%),
    radial-gradient(56% 52% at 86% 18%, rgba(197,86,247,.085) 0%, rgba(197,86,247,0) 76%),
    radial-gradient(62% 58% at 62% 72%, rgba(144,79,231,.052) 0%, rgba(144,79,231,0) 78%);
  filter: none;
  opacity: .72;
}

.hero-premium::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(31,16,52,0) 0%, rgba(31,16,52,0) 30%, rgba(50,29,87,.08) 52%, rgba(88,58,138,.16) 74%, rgba(143,112,196,.30) 100%);
}

.hero-premium > .container {
  position: relative;
  z-index: 2;
}

.hero-corner {
  --hero-corner-gap: 70px;
  --hero-container-width: min(calc(100% - 32px), var(--max));
  position: absolute;
  width: 589px;
  height: 588px;
  pointer-events: none;
  z-index: 1;
  display: block;
  opacity: .78;
}

.hero-corner::before,
.hero-corner::after {
  content: "";
  position: absolute;
  display: block;
}

.hero-corner-top-left {
  top: 32px;
  left: calc(((100% - var(--hero-container-width)) / 2) - var(--hero-corner-gap) - 35px);
}

.hero-corner-top-left::before {
  top: 17px;
  left: 0;
  width: 589px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(106, 120, 232, .47) 0 1px,
    #6a78e8 1px calc(100% - 120px),
    rgba(106, 120, 232, 0) 100%
  );
}

.hero-corner-top-left::after {
  top: 0;
  left: 35px;
  width: 1px;
  height: 650px;
  background: linear-gradient(
    180deg,
    #c9567c 0 calc(100% - 120px),
    rgba(201, 86, 124, 0) 100%
  );
}

.hero-corner-bottom-right {
  left: calc(((100% + var(--hero-container-width)) / 2) + var(--hero-corner-gap) - 553px);
  right: auto;
  bottom: 18px;
}

.hero-corner-bottom-right::before {
  left: -61px;
  bottom: 17px;
  width: 650px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 86, 124, 0) 0,
    #c9567c 120px 100%
  );
}

.hero-corner-bottom-right::after {
  top: 0;
  right: 34px;
  width: 2px;
  height: 588px;
  background:
    linear-gradient(
      180deg,
      rgba(106, 120, 232, 0) 0,
      rgba(106, 120, 232, 1) 120px 100%
    );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  min-height: min(calc(100svh - 72px), 920px);
  padding: 78px 0 84px;
}

.hero-premium .hero-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(215,181,109,.35), transparent);
  opacity: .5;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-title {
  position: relative;
  display: inline-block;
  overflow: hidden;
  isolation: isolate;
  margin: 0 0 14px;
  font-size: clamp(34px, 3.9vw, 46px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: #1d1430;
}

.hero-premium .hero-title {
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image:
    linear-gradient(
      70deg,
      rgba(226,214,244,.92) 0%,
      rgba(226,214,244,.92) 47.4%,
      rgba(255,255,255,1) 48.55%,
      #fff 50%,
      #fff 50.85%,
      rgba(255,255,255,1) 51.45%,
      rgba(226,214,244,.92) 52.6%,
      rgba(226,214,244,.92) 100%
    );
  background-size: 360% 100%;
  background-position: 76% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: heroTitleShine 2.85s linear infinite;
  text-shadow:
    0 0 12px rgba(255,255,255,.22),
    0 10px 22px rgba(6,3,16,.44),
    0 22px 48px rgba(34,16,74,.34);
}

.hero-premium .hero-title::after {
  content: "";
  display: block;
  width: min(180px, 52%);
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, rgba(215,181,109,.34), rgba(240,214,160,.12), transparent);
}

@keyframes heroTitleShine {
  0% {
    background-position: 76% 50%;
  }
  70% {
    background-position: 24% 50%;
  }
  100% {
    background-position: 24% 50%;
  }
}

.hero-subtitle {
  margin: 0 0 30px;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  letter-spacing: .08em;
  color: #7e4bf2;
}

.hero-premium .hero-subtitle {
  color: #d9c4ff;
  text-shadow: 0 2px 14px rgba(227,79,179,.20);
}

.hero-banner-slider {
  --hero-banner-index: 0;
  --hero-banner-translate: 0px;
  --hero-banner-drag-offset: 0px;
  --hero-banner-slider-width: 100%;
  --hero-banner-slider-height: auto;
  --hero-banner-slide-width: 100%;
  position: relative;
  width: var(--hero-banner-slider-width);
  margin: 0 0 12px;
  max-width: 720px;
  height: var(--hero-banner-slider-height);
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 24px 56px rgba(10,6,20,.42),
    0 6px 18px rgba(84,44,150,.16);
  border: 1px solid rgba(215,181,109,.18);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero-banner-slider.is-pointer-dragging {
  cursor: grabbing;
}

.hero-premium .hero-banner-slider::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  z-index: 2;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(240,214,160,.24), transparent);
}

.hero-banner-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(calc(var(--hero-banner-translate) + var(--hero-banner-drag-offset)));
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
  will-change: auto;
}

.hero-banner-track.is-jumping,
.hero-banner-slider.is-pointer-dragging .hero-banner-track {
  transition: none;
}

.hero-banner-slide {
  position: relative;
  flex: 0 0 var(--hero-banner-slide-width);
  min-width: var(--hero-banner-slide-width);
  height: 100%;
}

.hero-banner-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-banner-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #08040f;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-banner-nav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(10, 6, 25, .34);
  color: #fff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: none;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, opacity .2s ease;
}

.hero-banner-nav:hover,
.hero-banner-nav:focus-visible {
  background: rgba(10, 6, 25, .56);
  border-color: rgba(255,255,255,.4);
}

.hero-banner-nav:focus-visible {
  outline: 2px solid rgba(255,255,255,.7);
  outline-offset: 2px;
}

.hero-banner-nav span {
  font-size: 18px;
  line-height: 1;
}

.hero-banner-prev { left: 8px; }

.hero-banner-next { right: 8px; }

.hero-banner-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 720px);
  margin: 0 auto 28px;
}

.hero-banner-thumb-nav {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(10,6,25,.34);
  color: #fff;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(10,6,20,.22);
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hero-banner-thumb-nav:hover,
.hero-banner-thumb-nav:focus-visible {
  background: rgba(10,6,25,.56);
  border-color: rgba(255,255,255,.4);
}

.hero-banner-thumb-nav:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 2px;
}

.hero-banner-thumb-nav span {
  font-size: 13px;
  line-height: 1;
}

.hero-banner-thumb {
  position: relative;
  display: block;
  flex: 0 0 clamp(96px, 18%, 132px);
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(8,4,15,.72);
  cursor: pointer;
  opacity: .72;
  box-shadow: 0 8px 18px rgba(10,6,20,.22);
  transition: opacity .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.hero-banner-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-thumb.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(240,214,160,.95);
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(8,4,15,.45);
}

.hero-banner-thumb:hover,
.hero-banner-thumb:focus-visible,
.hero-banner-thumb.is-active {
  opacity: 1;
  border-color: rgba(240,214,160,.72);
  box-shadow:
    0 0 0 2px rgba(240,214,160,.26),
    0 10px 22px rgba(10,6,20,.28);
}

.hero-banner-thumb:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 2px;
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .hero-banner-nav {
    opacity: 0;
  }

  .hero-banner-slider:hover .hero-banner-nav,
  .hero-banner-slider:focus-within .hero-banner-nav {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-track {
    transition: none;
  }

  .hero-premium .hero-title {
    animation: none;
    background-position: 0% 50%;
  }
}

.hero-description {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #4b4b4b;
  max-width: 640px;
  margin: 0 0 32px;
  line-height: 1.9;
}

.hero-premium .hero-description {
  color: rgba(255,250,255,.76);
}

.hero-price-ticker {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 16px), 1260px);
  margin: -28px auto 56px;
  overflow: hidden;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(45,31,74,.96) 0%, rgba(22,13,38,.98) 100%);
  border-top: 1px solid rgba(240,214,160,.34);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 14px 34px rgba(8,4,18,.34),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.hero-price-ticker::before,
.hero-price-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.hero-price-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(22,13,38,.98), rgba(22,13,38,0));
}

.hero-price-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(22,13,38,.98), rgba(22,13,38,0));
}

.hero-price-ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: heroPriceTicker 56s linear infinite;
}

.hero-price-ticker-group {
  display: flex;
  flex: 0 0 auto;
  gap: 42px;
  padding: 11px 22px;
}

.hero-price-ticker span {
  flex: 0 0 auto;
  color: rgba(255,250,255,.88);
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .04em;
  text-shadow: 0 2px 10px rgba(0,0,0,.36);
}

.hero-price-ticker strong {
  color: #f0d6a0;
  font-weight: 900;
}

@keyframes heroPriceTicker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 767px) {
  .hero-price-ticker {
    width: calc(100% - 16px);
    margin: -18px auto 44px;
    border-radius: 16px;
  }

  .hero-price-ticker::before,
  .hero-price-ticker::after {
    width: 44px;
  }

  .hero-price-ticker-group {
    gap: 28px;
    padding: 10px 16px;
  }

  .hero-price-ticker span {
    font-size: 13px;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(199,177,255,.20), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(247,243,255,.82));
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 28px;
  box-shadow:
    0 22px 54px rgba(44,23,80,.20),
    0 2px 10px rgba(44,23,80,.08);
  padding: 30px;
  position: relative;
  overflow: hidden;
  min-height: 440px;
}

.hero-premium .hero-card {
  background:
    radial-gradient(circle at 86% 8%, rgba(184,145,235,.12), transparent 32%),
    linear-gradient(180deg, rgba(245,241,250,.98) 0%, rgba(236,229,247,.96) 100%);
  border-color: rgba(255,255,255,.45);
  box-shadow:
    0 26px 60px rgba(10,6,24,.34),
    0 8px 22px rgba(94,58,160,.14),
    inset 0 1px 0 rgba(240,214,160,.16);
}

.hero-premium .hero-card::before {
  background:
    radial-gradient(circle at 80% 0%, rgba(151,94,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.26), transparent 38%);
  opacity: .58;
}

.hero-badge {
  display: flex;
  width: 100%;
  padding: 10px 18px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.55)), linear-gradient(120deg, #7b6b58, #cfc7bf);
  border: 1px solid rgba(255,255,255,.08);
  margin-bottom: 6px;
}

.hero-preview-video {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(40,25,70,.10);
  box-shadow: 0 12px 26px rgba(35,19,70,.14);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.hero-preview-video video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  pointer-events: none;
}

.mockup {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.mockup-top,
.mockup-row > div,
.mockup-bar {
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.mockup-top {
  min-height: 72px;
  background:
    radial-gradient(circle at 86% 24%, rgba(199,177,255,.20), transparent 28%),
    linear-gradient(135deg, #2d2144 0%, #3b2b5d 55%, #4b3576 100%);
  color: #fff;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.mockup-top-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: none;
  padding-right: 0;
}

.mockup-subtext {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,.82);
  max-width: none;
  white-space: normal;
}
.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}



.m1 { background: linear-gradient(135deg, #5d4f8f, #8a78d1); }
.m2 { background: linear-gradient(135deg, #6d3f8b, #a16fd2); }
.m3 { background: linear-gradient(135deg, #66568f, #9b88d8); }
.m4 { background: linear-gradient(135deg, #7a5ab6, #b78cff); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.stat {
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(120,88,170,.10);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 12px rgba(45,25,80,.06);
  backdrop-filter: none;
}

.hero-premium .stat {
  display: flex;
  min-height: auto;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
  padding: 20px 22px 18px;
  background:
    linear-gradient(180deg, rgba(250,247,255,.94) 0%, rgba(232,224,244,.92) 100%);
  border-color: rgba(190,165,230,.24);
  box-shadow:
    0 10px 24px rgba(10,6,24,.18),
    inset 0 1px 0 rgba(255,255,255,.62);
}

.hero-premium .stat strong {
  color: #1f1733;
}

.hero-premium .stat span {
  color: rgba(31,23,51,.72);
}

.hero-premium .btn-outline-light {
  color: #fff;
  border: 1px solid rgba(240,214,160,.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
  box-shadow:
    0 10px 24px rgba(10,6,20,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hero-premium .btn-outline-light:hover,
.hero-premium .btn-outline-light:focus-visible {
  background:
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.09));
  border-color: rgba(240,214,160,.34);
}

.stat strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  display: block;
  line-height: 1.55;
}

.service-wrap {
  --soft-glow-opacity: .45;
  --soft-glow-band: .32;
  --section-blend-bottom-color: rgba(251,248,255,.52);
  padding: 104px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.72), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(118,72,180,.24), transparent 36%),
    linear-gradient(135deg, #efe5fb 0%, #dcccf3 48%, #cbb6eb 100%);
  color: #2f2348;
}

.service-head {
  margin-bottom: 44px;
}

.service-eyebrow {
  color: #5d4599;
}

.service-lead {
  max-width: 780px;
  color: #5e4a8a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  color: var(--text);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.card-featured {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,244,255,.92));
  border: 1px solid rgba(255,255,255,.74);
  box-shadow:
    0 18px 45px rgba(44,23,80,.18),
    0 2px 8px rgba(44,23,80,.08);
}

.card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.42), transparent 38%),
    linear-gradient(120deg, rgba(255,255,255,.18), transparent 36%);
  opacity: .7;
}

.card-featured > * {
  position: relative;
  z-index: 1;
}

.card-standard {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,248,255,.94));
  border: 1px solid rgba(120,88,170,.12);
  box-shadow:
    0 10px 24px rgba(45,25,80,.10),
    0 1px 2px rgba(45,25,80,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-subtle {
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(120,88,170,.10);
  box-shadow: 0 4px 12px rgba(45,25,80,.06);
  backdrop-filter: none;
}

@media (hover: hover) {
  .service-card.card-standard:hover {
    transform: translateY(-3px);
    border-color: rgba(130,82,210,.22);
    box-shadow:
      0 16px 34px rgba(45,25,80,.16),
      0 2px 6px rgba(45,25,80,.08);
  }
}

.service-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px;
}

.service-card.is-priority {
  border-color: rgba(117,74,190,.22);
  box-shadow:
    0 16px 36px rgba(45,25,80,.15),
    0 2px 8px rgba(45,25,80,.08);
}

.service-card-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 78% 20%, rgba(155,109,255,.20), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.08));
  border: 1px solid rgba(40,25,70,.10);
  box-shadow: 0 8px 18px rgba(35,19,70,.12);
}

.service-card-image:focus-visible {
  outline: 3px solid rgba(93,69,153,.36);
  outline-offset: 4px;
}

.service-card-image::before {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: #2f2348;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.service-card-image img,
.service-card-image video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background:
    radial-gradient(circle at 82% 18%, rgba(199,177,255,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,242,255,.90));
  transform: scale(1);
  transform-origin: center;
  transition: transform .3s ease;
}

.service-card-image video {
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.service-card-content p {
  margin: 0;
  color: rgba(70,62,88,.72);
  font-size: 13px;
  line-height: 1.75;
  min-height: 4.7em;
}

.service-card .cta {
  min-height: 42px;
  margin-top: 22px;
  box-shadow:
    0 8px 18px rgba(240,86,43,.18),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 4px;
}

.tag {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(120,88,170,.12);
  box-shadow: 0 3px 10px rgba(45,25,80,.04);
  font-weight: 700;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.point-card {
  padding: 28px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,248,255,.94));
  border: 1px solid rgba(120,88,170,.12);
  box-shadow:
    0 10px 24px rgba(45,25,80,.10),
    0 1px 2px rgba(45,25,80,.06);
}

.point-no {
  display: inline-block;
  font-weight: 900;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}

.point-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.point-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.web-production-wrap {
  --section-blend-bottom-color: rgba(227,216,251,.16);
  padding: 104px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(151,94,255,.24), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(255,140,190,.08), transparent 32%),
    radial-gradient(circle at 85% 24%, rgba(255,255,255,.08), transparent 26%),
    linear-gradient(180deg, #171020 0%, #0d0815 55%, #07050c 100%);
  color: #fff;
}

.web-production-head {
  max-width: 860px;
  margin-bottom: 0;
}

.web-production-eyebrow {
  color: #e1d2ff;
}

.web-production-lead {
  max-width: 780px;
  color: rgba(255,255,255,.70);
  line-height: 1.9;
}

.web-production-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.web-production-sample {
  appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  text-align: left;
  font: inherit;
  color: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.web-production-sample img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  transform: scale(1);
  transform-origin: center;
  transition: transform .28s ease;
}

.web-production-grid {
  margin-top: 34px;
}

.web-production-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,245,255,.92));
  border-color: rgba(225,210,255,.28);
}

.web-production-card.card-featured {
  padding: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(199,177,255,.20), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,240,255,.93));
  box-shadow:
    0 20px 44px rgba(0,0,0,.20),
    0 2px 10px rgba(90,56,150,.16);
}

.web-production-card h3 {
  color: #4f3a80;
}

.web-production-card strong {
  color: #4f3a80;
}

.web-production-card p {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(70,62,88,.72);
}

.web-production-note {
  margin-top: 12px;
  color: rgba(80,72,96,.66);
  font-size: 12px;
  line-height: 1.7;
}

.web-production-no {
  color: #6f51bf;
}

.partners {
  --soft-glow-opacity: .28;
  --soft-glow-band: .22;
  --soft-glow-x: 86%;
  --soft-glow-y: 18%;
  --section-blend-bottom-color: rgba(11,7,18,.12);
  padding: 82px 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.58), transparent 25%),
    radial-gradient(circle at 90% 85%, rgba(118,72,180,.20), transparent 36%),
    linear-gradient(160deg, #eee5fb 0%, #ded0f5 52%, #d0bbef 100%);
}

.voice {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,248,255,.94));
  border: 1px solid rgba(120,88,170,.12);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 12px 28px rgba(45,25,80,.12),
    0 1px 2px rgba(45,25,80,.05);
  margin-top: 28px;
}

.partners-eyebrow {
  color: #5a4291;
}

.voice-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.22;
}

.voice-text {
  margin: 0;
  color: rgba(70,62,88,.70);
  font-size: 14px;
  line-height: 1.85;
}

.avatar {
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7b6e8, #8c73bd);
  position: relative;
  overflow: hidden;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: 14% 20%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #e3c29e 0 24%, transparent 25%),
              radial-gradient(circle at 50% 68%, #335 0 27%, transparent 28%),
              radial-gradient(circle at 50% 58%, #e3c29e 0 42%, transparent 43%);
  opacity: .7;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.logo-item {
  min-height: 72px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(120,88,170,.10);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .06em;
  color: #333;
  box-shadow: 0 4px 12px rgba(45,25,80,.06);
  backdrop-filter: none;
}

.dark-band {
  --section-blend-bottom-color: rgba(255,255,255,.10);
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(151,94,255,.22), transparent 34%),
    radial-gradient(circle at 12% 80%, rgba(255,140,190,.08), transparent 32%),
    radial-gradient(circle at 72% 48%, rgba(255,255,255,.06), transparent 28%),
    linear-gradient(180deg, #171020 0%, #0d0815 55%, #07050c 100%);
  color: #fff;
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 18%),
    linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.06), transparent 34%);
  opacity: .65;
}

.dark-band .container {
  position: relative;
  z-index: 1;
}

.dark-band .section-title {
  letter-spacing: -.035em;
  text-shadow: 0 14px 34px rgba(0,0,0,.42);
}

.cases-lead {
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.9;
  max-width: 720px;
}

.cases-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .95fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.case-main,
.case-side {
  min-height: 408px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 28px 70px rgba(0,0,0,.35),
    0 2px 10px rgba(20,12,32,.18);
}

.about-card {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 38px rgba(20,12,32,.20);
}

.case-main {
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.50)),
    radial-gradient(circle at 18% 5%, rgba(180,150,255,.30), transparent 38%),
    radial-gradient(circle at 86% 20%, rgba(103,62,168,.26), transparent 30%),
    radial-gradient(circle at 58% 88%, rgba(255,140,190,.08), transparent 42%),
    linear-gradient(135deg, #432f6d 0%, #1c142d 56%, #0c0815 100%);
  border: 1px solid rgba(255,255,255,.14);
  padding: 52px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), transparent 34%),
    radial-gradient(circle at 48% 0%, rgba(255,255,255,.12), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,.50), transparent 54%);
  opacity: .82;
}

.case-main > * {
  position: relative;
  z-index: 1;
}

.case-label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  margin-bottom: 14px;
}

.case-title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.14;
  letter-spacing: -.055em;
}

.case-text {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.85;
  max-width: 620px;
}

.case-text + .case-text {
  margin-top: 6px;
}

.case-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.case-detail-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.case-detail-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,224,170,.98);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.case-detail-item p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.7;
}

.case-side {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.76), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,244,255,.92));
  border: 1px solid rgba(120,88,170,.12);
  padding: 18px 18px 34px;
  color: #111;
}

.case-preview {
  position: relative;
  display: block;
  margin-bottom: 22px;
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.case-preview::after {
  content: none;
}

.case-preview img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transform-origin: center;
  transition: transform .3s ease;
}

.case-side-title {
  margin: 0 8px 10px;
  font-size: clamp(25px, 2.8vw, 32px);
  line-height: 1.15;
  letter-spacing: -.05em;
}

.case-side-text {
  margin: 0 8px;
  color: rgba(70,62,88,.72);
  font-size: 14px;
  line-height: 1.8;
}

.partners .cases-lead {
  color: rgba(47,35,72,.74);
}

.partners .case-main {
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(35,20,64,.44)),
    radial-gradient(circle at 18% 5%, rgba(120,72,190,.28), transparent 38%),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.16), transparent 30%),
    radial-gradient(circle at 58% 88%, rgba(255,140,190,.12), transparent 42%),
    linear-gradient(135deg, #5b3f8f 0%, #332151 56%, #171020 100%);
  box-shadow:
    0 22px 54px rgba(70,42,120,.26),
    0 2px 10px rgba(45,25,80,.14);
}

.partners .case-title {
  color: #fff;
  text-shadow: 0 10px 24px rgba(10,6,24,.34);
}

.partners .case-side {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.84), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,248,255,.94));
  box-shadow:
    0 18px 42px rgba(70,42,120,.18),
    0 2px 8px rgba(45,25,80,.08);
}

.dark-band .voice {
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.055));
  border-color: rgba(255,255,255,.16);
  box-shadow:
    0 24px 58px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.dark-band .voice-title {
  color: #fff;
}

.dark-band .voice-text {
  color: rgba(255,255,255,.74);
}

.dark-band .avatar {
  background: linear-gradient(135deg, #6f51bf, #2f2348);
  box-shadow:
    0 18px 40px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.dark-band .logo-item {
  color: #fff;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 10px 24px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.about-card {
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.46)),
    radial-gradient(circle at 15% 0%, rgba(180,150,255,.18), transparent 35%),
    linear-gradient(135deg, #6f6872 0%, #4f4856 55%, #383340 100%);
  border: 1px solid rgba(255,255,255,.18);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

.about-card-alt {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.44)),
    radial-gradient(circle at 82% 0%, rgba(199,177,255,.18), transparent 36%),
    linear-gradient(135deg, #756f7b 0%, #574d61 52%, #3d3547 100%);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.13), transparent 40%),
    linear-gradient(120deg, rgba(255,255,255,.10), transparent 34%);
  opacity: .75;
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-label {
  font-size: 12px;
  opacity: .8;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-title {
  margin: 8px 0;
  font-size: 34px;
  line-height: 1.1;
}

.about-text {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.85;
}

.contact {
  --section-blend-top-color: rgba(255,255,255,.08);
  --section-blend-bottom-color: rgba(255,255,255,.09);
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(151,94,255,.22), transparent 34%),
    radial-gradient(circle at 16% 84%, rgba(255,140,190,.08), transparent 32%),
    linear-gradient(180deg, #171020 0%, #0d0815 56%, #07050c 100%);
  color: #fff;
  text-align: center;
}

.contact-lead {
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  max-width: 760px;
  margin-inline: auto;
}

.contact-mail {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.contact-mail a {
  color: #fff;
  text-decoration: none;
}

.contact-mail a:hover,
.contact-mail a:focus-visible {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.request-panel {
  width: min(100%, 760px);
  margin: 34px auto 0;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: none;
  text-align: left;
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.request-grid .request-row {
  margin-top: 0;
}

.contact-form-guide {
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  text-align: left;
}

.contact-form-guide p {
  margin: 0 0 10px;
}

.contact-form-guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-form-guide li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  font-size: 12px;
  font-weight: 700;
}

.request-row {
  margin-top: 18px;
}

.request-row:first-child,
.request-grid + .request-row {
  margin-top: 0;
}

.request-row label,
.request-row legend {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255,255,255,.92);
}

.request-group {
  border: 0;
  padding: 0;
  min-width: 0;
}

.request-row input:not([type="checkbox"]),
.request-row textarea,
.request-row select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  color: #111;
  font: inherit;
  padding: 14px 16px;
}

.request-row textarea {
  resize: vertical;
  min-height: 150px;
}

.request-row input:not([type="checkbox"]):focus-visible,
.request-row textarea:focus-visible,
.request-row select:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 2px;
  border-color: rgba(255,255,255,.32);
}

.request-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

.request-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
}

.request-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.request-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  text-align: center;
}

.request-note code {
  color: #fff;
}

.btn-line {
  background: linear-gradient(90deg, #06c755, #00b900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(6,199,85,.24);
}

footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(190,145,255,.12), transparent 28%),
    radial-gradient(circle at 12% 100%, rgba(255,180,210,.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf8ff 100%);
  padding: 36px 0 52px;
  border-top: 1px solid rgba(91,64,139,.10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  align-items: start;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #888;
  margin-bottom: 10px;
  font-weight: 800;
}

.footer-cols p,
.footer-brand p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.9;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-menu a {
  width: fit-content;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.footer-info {
  display: grid;
  gap: 14px;
}

.footer-company-link {
  width: fit-content;
}

.footer-company-link:hover,
.footer-company-link:focus-visible {
  opacity: .72;
}

.footer-menu a[aria-current="page"] {
  color: var(--accent);
  font-weight: 800;
}

.footer-cols a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.footer-cols a:hover,
.footer-cols a:focus-visible {
  opacity: .72;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-note {
  font-size: 13px;
  line-height: 1.8;
}

.footer-note span {
  display: block;
}

.footer-logo {
  font-size: 24px;
}

.footer-logo-group {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-kana {
  margin-top: -8px;
  color: #6f667a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.brand-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), #e1d3ff);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.9);
  border-radius: 999px;
}

.brand-mark::before {
  width: 44px;
  height: 10px;
  left: 14px;
  top: 18px;
  transform: rotate(22deg);
}

.brand-mark::after {
  width: 44px;
  height: 10px;
  left: 14px;
  top: 38px;
  transform: rotate(-22deg);
}

.copy {
  text-align: center;
  color: #888;
  font-size: 12px;
  margin-top: 30px;
}

.company-hero {
  --section-blend-bottom-color: rgba(255,255,255,.42);
  background:
    radial-gradient(circle at 84% 18%, rgba(199,177,255,.32), transparent 24%),
    radial-gradient(circle at 16% 22%, rgba(255,170,210,.12), transparent 24%),
    linear-gradient(180deg, #fcfbff 0%, #f4eefc 100%);
}

.company-hero-inner {
  padding: 72px 0 64px;
}

.company-breadcrumb {
  margin: 0 0 18px;
  font-size: 13px;
  color: #776f8b;
}

.company-breadcrumb a {
  color: #4a356f;
  border-bottom: 1px solid rgba(74,53,111,.32);
}

.company-hero-title {
  max-width: 780px;
}

.company-hero-lead {
  max-width: 720px;
  color: #5d5870;
}

.company-profile-section {
  padding-top: 24px;
}

.company-profile-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
}

.company-card {
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.company-card-primary {
  background:
    linear-gradient(180deg, rgba(33,24,52,.12), rgba(33,24,52,.22)),
    linear-gradient(135deg, #40305f 0%, #2c213f 100%);
  color: #fff;
}

.company-card-secondary {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.05);
  color: #211834;
}

.company-card-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: .8;
}

.company-card-title {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.1;
}

.company-detail-list {
  margin: 0;
}

.company-detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.company-detail-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.company-detail-row dt {
  font-weight: 800;
  color: rgba(255,255,255,.72);
}

.company-detail-row dd {
  margin: 0;
  color: rgba(255,255,255,.94);
}

.company-detail-row a {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.company-service-list {
  margin: 0;
  padding-left: 1.2em;
  color: #4f4960;
}

.company-service-list li + li {
  margin-top: 12px;
}

.company-service-note {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.08);
  color: #5d5870;
}

.company-about-block {
  margin-top: 34px;
}

.company-about-title {
  margin-bottom: 0;
}

.company-about-grid {
  margin-top: 26px;
}

.company-contact-panel {
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff 0%, #f5efff 100%);
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.company-contact-eyebrow {
  color: #6d55aa;
}

.company-contact-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.15;
}

.company-contact-text {
  margin: 0;
  color: #5d5870;
}

.company-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: block;
  width: 94px;
  height: 94px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111;
  box-shadow: 0 14px 34px rgba(17,17,17,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.page-top-mark {
  width: 100%;
  height: 100%;
  display: block;
}

.page-top-outer {
  fill: #fff;
  stroke: rgba(17,17,17,.12);
  stroke-width: 1;
}

.page-top-text {
  font-size: 8.3px;
  font-weight: 900;
  letter-spacing: 0;
  fill: #111;
  animation: none;
  transform-box: view-box;
  transform-origin: center;
}

.page-top-center {
  fill: #ffea00;
  stroke: #111;
  stroke-width: 2;
}

.page-top-arrow {
  fill: none;
  stroke: #111;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top-button.is-visible .page-top-text {
  animation: pageTopTextSpin 16s linear infinite;
}

.page-top-button:hover,
.page-top-button:focus-visible {
  background: #fff;
  box-shadow: 0 18px 42px rgba(17,17,17,.24);
  transform: translateY(-2px);
}

.page-top-button:focus-visible {
  outline: 3px solid rgba(255,255,255,.82);
  outline-offset: 3px;
}

.page-top-button:hover .page-top-text,
.page-top-button:focus-visible .page-top-text {
  animation-duration: 8s;
}

@keyframes pageTopTextSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-top-text {
    animation: none;
  }
}

@media (max-width: 980px) {
  nav a:not(.cta):not(.nav-company-link):not(.nav-x-link) { display: none; }
  .hero-corner { display: none; }
  .hero-grid,
  .service-grid,
  .web-production-gallery,
  .points-grid,
  .cases-grid,
  .about-grid,
  .footer-grid,
  .footer-cols,
  .logo-row,
  .company-profile-grid {
    grid-template-columns: 1fr;
  }
  .service-head {
    display: block;
  }
  .voice {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .avatar { margin: 0 auto; }
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
  .stats { grid-template-columns: 1fr; }
  .company-contact-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 981px) and (max-width: 1319px) {
  .hero-corner {
    display: none;
  }
}

@media (min-width: 981px) {
  .footer-grid {
    grid-template-columns: 1.15fr .85fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
    gap: 32px;
  }

  .hero-card {
    align-self: stretch;
  }

  .hero-title {
    white-space: nowrap;
  }

  .hero-description {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.9;
    text-wrap: pretty;
  }

  .stats {
    gap: 18px;
  }

  .stat {
    padding: 22px 20px;
  }

  .stat span {
    display: block;
    white-space: nowrap;
    font-size: clamp(11px, 1.15vw, 14px);
    line-height: 1.45;
    letter-spacing: 0;
  }

  .footer-note span {
    white-space: nowrap;
  }
}

@media (min-width: 1600px) {
  :root {
    --max: 1360px;
  }

  .hero-grid {
    padding: 72px 0 80px;
  }

  .hero-banner-slider {
    max-width: 820px;
  }
}

@media (max-width: 640px) {
  .section,
  .service-wrap,
  .web-production-wrap,
  .dark-band,
  .contact,
  .partners,
  #about {
    padding: 64px 0;
  }
  .header-inner { min-height: 64px; }
  .logo { font-size: 17px; }
  nav { gap: 8px; }
  .nav-company-link { display: none; }
  header .cta {
    width: auto;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }
  .nav-x-link {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }
  .hero-grid { min-height: auto; padding: 52px 0; gap: 32px; }
  .hero-title { margin-bottom: 10px; }
  .hero-subtitle { margin-bottom: 22px; letter-spacing: .05em; }
  .hero-card { min-height: auto; padding: 20px; border-radius: 22px; }
  .hero-banner-slider {
    margin: 0 0 22px;
  }
  .hero-banner-thumbnails {
    gap: 8px;
    margin: -10px auto 22px;
  }
  .hero-banner-thumb-nav {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
  .hero-banner-thumb {
    flex-basis: calc((100% - 100px) / 4);
    border-radius: 8px;
  }
  .hero-description { margin-bottom: 26px; }
  .hero-actions { margin-bottom: 18px; }
  .stats { display: none; }
  .stat { padding: 18px; }
  .hero-banner-nav {
    width: 40px;
    height: 40px;
  }
  .hero-banner-prev { left: 6px; }
  .hero-banner-next { right: 6px; }
  .mockup-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .point-card,
  .card,
  .web-production-sample,
  .voice,
  .case-main,
  .case-side,
  .about-card { border-radius: 20px; }
  .cases-grid {
    margin-top: 30px;
    gap: 16px;
  }
  .case-main,
  .case-side {
    min-height: auto;
  }
  .case-main {
    min-height: 360px;
    padding: 32px 22px;
  }
  .case-side {
    padding: 14px 14px 26px;
  }
  .case-preview {
    margin-bottom: 18px;
    padding: 0;
    border-radius: 15px;
  }
  .case-side-title,
  .case-side-text {
    margin-left: 6px;
    margin-right: 6px;
  }
  .card-featured,
  .card-standard,
  .hero-card,
  .case-main,
  .case-side,
  .about-card {
    box-shadow:
      0 12px 28px rgba(45,25,80,.14),
      0 1px 4px rgba(45,25,80,.06);
  }
  .service-card-image,
  .custom-order-image img,
  .web-production-sample img,
  .mockup-image-card img {
    box-shadow: 0 5px 12px rgba(30,20,55,.08);
  }
  .contact-actions,
  .hero-actions { flex-direction: column; }
  .cta,
  .btn,
  .btn-outline,
  .btn-line { width: 100%; }
  header .cta {
    width: auto;
    min-height: 42px;
    padding-inline: 16px;
    font-size: 13px;
  }
  .hero-title,
  .lead,
  .service-card h3,
  .service-card-content p,
  .custom-order-card p,
  .case-text,
  .about-text {
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .request-panel {
    padding: 22px 18px;
  }
  .request-grid,
  .request-options {
    grid-template-columns: 1fr;
  }
  .page-top-button {
    right: 16px;
    bottom: 16px;
    width: 78px;
    height: 78px;
  }
  .company-hero-inner {
    padding: 52px 0 48px;
  }
  .company-card,
  .company-contact-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .company-detail-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .company-contact-actions {
    width: 100%;
    flex-direction: column;
  }
}
.mockup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(120,88,170,.10);
  box-shadow: 0 4px 12px rgba(45,25,80,.06);
  border-radius: 16px;
  padding: 8px 8px 8px;
  backdrop-filter: none;
}

.mockup-image-card {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  overflow: hidden;
}

.mockup-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(40,25,70,.08);
  box-shadow: 0 6px 14px rgba(30,20,55,.09);
  transform: scale(1);
  transform-origin: center;
  transition: transform .28s ease;
}

.mockup-caption {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #2f2350;
}

@media (max-width: 900px) {
  .mockup-top {
    padding: 22px;
    align-items: center;
    text-align: center;
  }

  .mockup-top-copy {
    max-width: 100%;
    padding-right: 0;
  }

  .mockup-subtext {
    max-width: none;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .mockup-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .mockup-item {
    padding: 7px;
    border-radius: 15px;
  }

  .mockup-caption {
    font-size: clamp(11px, 3.2vw, 13px);
    line-height: 1.25;
  }

  .mockup-top {
    min-height: auto;
  }

  .mockup-subtext {
    font-size: 14px;
    line-height: 1.35;
  }

  .mockup-subtext {
    text-align: center;
  }
}
.custom-order-wrap {
  --soft-glow-opacity: .24;
  --soft-glow-band: .20;
  --soft-glow-x: 90%;
  --soft-glow-y: 10%;
  --section-blend-bottom-color: rgba(79,58,128,.18);
  background:
    radial-gradient(circle at 90% 10%, rgba(190,145,255,.13), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(255,180,210,.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbf8ff 48%, #f1eafa 100%);
  color: #2f2348;
}

.custom-order-head {
  margin-bottom: 0;
}

.custom-order-eyebrow {
  color: #6d55aa;
}

.custom-order-lead {
  max-width: 720px;
  color: #5e4a8a;
}

.custom-order-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  margin-bottom: 30px;
}

.custom-order-image {
  appearance: none;
  width: 100%;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(250,248,255,.86));
  border: 1px solid rgba(96,62,150,.12);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(48,28,82,.09);
  padding: 8px;
  overflow: hidden;
  cursor: zoom-in;
  display: block;
  font: inherit;
  color: inherit;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.custom-order-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(40,25,70,.10);
  box-shadow: 0 6px 14px rgba(30,20,55,.10);
  background:
    radial-gradient(circle at 82% 16%, rgba(199,177,255,.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,244,255,.92));
  transform: scale(1);
  transform-origin: center;
  transition: transform .28s ease;
}

.custom-order-image:focus-visible {
  outline: 3px solid rgba(93,69,153,.36);
  outline-offset: 4px;
}

.web-production-sample:focus-visible {
  outline: 3px solid rgba(225,210,255,.48);
  outline-offset: 4px;
}

@media (hover: hover) {
  .case-side:hover .case-preview img {
    transform: scale(1.018);
  }

  .web-production-sample:hover,
  .custom-order-image:hover {
    transform: translateY(-2px);
  }

  .web-production-sample:hover,
  .custom-order-image:hover {
    border-color: rgba(130,82,210,.22);
    box-shadow:
      0 16px 34px rgba(45,25,80,.14),
      0 2px 6px rgba(45,25,80,.08);
  }

  .mockup-image-card:hover img {
    transform: scale(1.018);
  }
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(16,11,26,.82);
  backdrop-filter: none;
  cursor: zoom-out;
}

.image-lightbox-dialog {
  width: min(100%, 1120px);
  display: grid;
  justify-items: center;
  gap: 14px;
}

.image-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  display: block;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}

.image-lightbox-hint {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  letter-spacing: .04em;
}

.custom-order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.custom-order-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,244,255,.92));
  border: 1px solid rgba(96,62,150,.14);
  border-radius: 20px;
  padding: 26px;
  box-shadow:
    0 12px 28px rgba(48,28,82,.11),
    0 1px 2px rgba(48,28,82,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.custom-order-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(109,85,170,.24), transparent);
}

.custom-order-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.2;
  color: #2f2350;
}

.custom-order-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(70,62,88,.74);
}

.custom-order-card strong {
  color: #3b2b5d;
}

.custom-order-note {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #4a356f 0%, #5d4599 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.custom-order-note p {
  margin: 0;
  color: rgba(255,255,255,.88);
}

@media (max-width: 980px) {
  .custom-order-gallery,
  .custom-order-grid {
    grid-template-columns: 1fr;
  }

  .custom-order-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .custom-order-image,
  .custom-order-card,
  .custom-order-note {
    border-radius: 18px;
  }
}

.flow-wrap {
  --section-blend-bottom-color: rgba(251,248,255,.16);
  padding: 88px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(151,94,255,.22), transparent 32%),
    radial-gradient(circle at 86% 78%, rgba(255,140,190,.08), transparent 34%),
    linear-gradient(180deg, #171020 0%, #100919 54%, #08050d 100%);
}

.flow-wrap .eyebrow {
  color: #e1d2ff;
}

.flow-wrap .lead {
  color: rgba(255,255,255,.72);
}

.faq-lead {
  max-width: 720px;
  color: #5e4a8a;
}

.flow-lead {
  max-width: 720px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.flow-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 86% 0%, rgba(199,177,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 16px 36px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.flow-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,214,160,.50), rgba(109,85,170,.18), transparent);
}

.flow-no {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(240,214,160,.96);
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
}

.flow-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.flow-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.8;
}

.faq-wrap {
  --soft-glow-opacity: .30;
  --soft-glow-band: .24;
  --section-blend-bottom-color: rgba(13,8,21,.16);
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.70), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(118,72,180,.18), transparent 34%),
    linear-gradient(135deg, #f2eafd 0%, #e6d9f7 52%, #d8c6ef 100%);
  color: #2f2348;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.faq-card {
  padding: 24px 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(249,246,255,.92));
  border: 1px solid rgba(96,62,150,.13);
  box-shadow:
    0 12px 28px rgba(48,28,82,.10),
    0 1px 2px rgba(48,28,82,.05);
}

.faq-card h3 {
  margin: 0 0 12px;
  color: #2f2350;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 900;
}

.faq-card p {
  margin: 0;
  color: rgba(70,62,88,.72);
  font-size: 14px;
  line-height: 1.85;
}

.faq-cta {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #4a356f 0%, #5d4599 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow:
    0 14px 30px rgba(45,25,80,.14),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.faq-cta p {
  margin: 0;
  color: rgba(255,255,255,.90);
  font-weight: 700;
}

@media (max-width: 980px) {
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .faq-wrap {
    padding: 64px 0;
  }

  .flow-wrap {
    padding: 68px 0;
  }

  .flow-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .flow-card {
    min-height: auto;
    padding: 22px;
  }

  .flow-no {
    margin-bottom: 18px;
  }

  .faq-card {
    padding: 22px;
  }

  .faq-cta {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
  }
}
