:root {
  --violet: #6901ff;
  --violet-deep: #4811a8;
  --purple-logo: #7c1a7d;
  --magenta: #c45d9f;
  --pink: #e14cfe;
  --cyan: #36d7ff;
  --ink: #111217;
  --ink-2: #1c1d25;
  --muted: #6e7280;
  --line: rgba(105, 1, 255, 0.16);
  --surface: #ffffff;
  --soft: #f6f4fb;
  --radius: 18px;
  --max: 1180px;
  --pointer-x: 50%;
  --pointer-y: 50%;
  --orbit-speed: 18s;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f8fb;
  color: var(--ink);
  font-family: "Inter", "Noto Sans JP", system-ui, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 32px), var(--max));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(24, 24, 36, 0.11);
  backdrop-filter: blur(18px);
  padding: 10px 14px 10px 20px;
}

.brand img {
  width: 178px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #3a3b45;
  font-size: 12px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--violet), var(--magenta));
  content: "";
  transition: transform 0.25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  overflow: hidden;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  min-width: 116px;
  background: var(--ink);
  color: white;
  font-size: 13px;
}

.header-cta::before,
.button.primary::before {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  content: "";
  animation: edgeFlow 4.2s ease-in-out infinite;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 36px;
  padding: 142px max(32px, calc((100vw - var(--max)) / 2)) 58px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(54,215,255,.16), transparent 26%),
    linear-gradient(110deg, rgba(255,255,255,.96) 0%, rgba(249,247,255,.9) 43%, rgba(18,18,26,.98) 43.1%, rgba(13,13,19,1) 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  pointer-events: none;
}

.hero-video.--sp {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105, 1, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 1, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 88%, transparent);
}

.scan-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(54, 215, 255, .13) 50%, transparent 100%);
  opacity: .55;
  animation: scanPass 6.8s linear infinite;
}

.data-line {
  position: absolute;
  right: 0;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225,76,254,.75), rgba(54,215,255,.8), transparent);
  opacity: .55;
}

.line-a { top: 26%; animation: dataSlide 5.4s linear infinite; }
.line-b { top: 48%; animation: dataSlide 6.8s linear infinite reverse; }
.line-c { top: 72%; animation: dataSlide 7.4s linear infinite; }

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content > * {
  animation: textRise .74s cubic-bezier(.2,.8,.2,1) both;
}

.hero-content > :nth-child(2) { animation-delay: .12s; }
.hero-content > :nth-child(3) { animation-delay: .26s; }
.hero-content > :nth-child(4) { animation-delay: .38s; }
.hero-content > :nth-child(5) { animation-delay: .5s; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.08;
}

.hero h1 {
  max-width: 560px;
  font-size: clamp(50px, 5.6vw, 88px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 500px;
  margin: 28px 0 0;
  color: #555967;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  min-width: 184px;
  padding: 0 22px;
  font-size: 14px;
}

.button.primary {
  background: linear-gradient(105deg, var(--violet), var(--purple-logo), var(--magenta));
  color: #fff;
  box-shadow: 0 18px 42px rgba(105, 1, 255, 0.28);
}

.button.secondary {
  border: 1px solid rgba(17,18,23,.16);
  background: rgba(255,255,255,.68);
  color: #262733;
}

.hero-list,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.hero-list li,
.proof-strip span {
  border: 1px solid rgba(105, 1, 255, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  color: #3f4150;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 13px;
}

.motion-controller {
  display: grid;
  width: min(100%, 540px);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
  border: 1px solid rgba(124, 58, 237, .26);
  border-radius: 20px;
  background: rgba(13, 11, 31, .82);
  box-shadow: 0 18px 42px rgba(105, 51, 255, .18);
  padding: 10px;
}

.motion-controller span {
  display: flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transition: border-color .28s ease, background .28s ease, color .28s ease, box-shadow .28s ease;
}

.motion-controller span:nth-child(1) {
  border-color: rgba(54, 215, 255, .4);
}

.motion-controller span:nth-child(2) {
  border-color: rgba(139, 92, 246, .45);
}

.motion-controller span:nth-child(3) {
  border-color: rgba(225, 76, 254, .45);
}

.motion-controller span.is-active {
  background: linear-gradient(110deg, rgba(54,215,255,.28), rgba(105,1,255,.32), rgba(225,76,254,.24));
  color: #fff;
  box-shadow: 0 0 28px rgba(105, 1, 255, .24);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 640px;
}

.visual-stage {
  position: relative;
  height: 640px;
  perspective: 1200px;
  transform: translateY(var(--scroll-lift, 0px)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .28s ease;
}

.visual-stage::before {
  position: absolute;
  inset: 44px 12px 54px 40px;
  border: 1px solid rgba(255,255,255,.1);
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  transform: rotateX(58deg) rotateZ(-11deg);
  transform-origin: center;
}

.cinematic-bloom {
  position: absolute;
  z-index: 2;
  inset: 20px -10px 0 -20px;
  pointer-events: none;
  transform: translateZ(-80px);
}

.orbit,
.light-sweep,
.particle {
  position: absolute;
  display: block;
}

.orbit {
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(54, 215, 255, .25);
  border-radius: 999px;
  translate: -50% -50%;
  animation: orbitSpin var(--orbit-speed) linear infinite;
}

.orbit::before {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(54, 215, 255, .8);
  content: "";
}

.orbit-1 {
  width: 260px;
  height: 260px;
  border-color: rgba(54, 215, 255, .34);
}

.orbit-2 {
  width: 370px;
  height: 370px;
  border-color: rgba(225, 76, 254, .28);
  animation-duration: 24s;
  animation-direction: reverse;
}

.orbit-3 {
  width: 480px;
  height: 480px;
  border-color: rgba(105, 1, 255, .24);
  animation-duration: 30s;
}

.orbit-4 {
  width: 590px;
  height: 590px;
  border-color: rgba(255, 255, 255, .11);
  animation-duration: 38s;
  animation-direction: reverse;
}

.orbit-1::before { top: 22px; left: 190px; }
.orbit-2::before { right: 36px; bottom: 82px; background: var(--pink); }
.orbit-3::before { bottom: 26px; left: 138px; background: #fff; opacity: .75; }
.orbit-4::before { top: 112px; left: 42px; }

.light-sweep {
  top: 92px;
  left: 0;
  width: min(64vw, 580px);
  height: 92px;
  transform: rotate(-16deg);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), rgba(54,215,255,.22), transparent);
  mix-blend-mode: screen;
  opacity: .72;
  filter: blur(.2px);
  animation: lightSweep 4.8s cubic-bezier(.65, 0, .35, 1) infinite;
}

.particle {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(54, 215, 255, .78);
  animation: particleDrift 6s ease-in-out infinite;
}

.particle:nth-of-type(3n) {
  background: var(--pink);
  box-shadow: 0 0 18px rgba(225, 76, 254, .78);
}

.particle-1 { top: 82px; left: 18%; animation-delay: -.4s; }
.particle-2 { top: 156px; left: 50%; animation-delay: -1.1s; }
.particle-3 { top: 236px; right: 18%; animation-delay: -1.8s; }
.particle-4 { top: 340px; left: 8%; animation-delay: -2.4s; }
.particle-5 { top: 386px; right: 8%; animation-delay: -3s; }
.particle-6 { bottom: 138px; left: 24%; animation-delay: -3.5s; }
.particle-7 { bottom: 90px; right: 28%; animation-delay: -4.1s; }
.particle-8 { top: 72px; right: 34%; animation-delay: -4.7s; }
.particle-9 { top: 286px; left: 38%; animation-delay: -5.2s; }
.particle-10 { bottom: 214px; right: 42%; animation-delay: -5.8s; }
.particle-11 { top: 196px; left: 72%; animation-delay: -6.3s; }
.particle-12 { bottom: 62px; left: 54%; animation-delay: -6.9s; }

.connection-node {
  position: absolute;
  z-index: 4;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(54,215,255,.85);
  border-radius: 999px;
  background: #141521;
  box-shadow: 0 0 22px rgba(54,215,255,.5);
  animation: nodePulse 2.8s ease-in-out infinite;
}

.node-1 { top: 128px; right: 182px; }
.node-2 { top: 354px; right: 82px; }
.node-3 { bottom: 116px; left: 152px; }

.product-window,
.growth-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(20,21,31,.84);
  box-shadow: 0 26px 80px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}

.product-window {
  animation:
    liftIn .8s cubic-bezier(.2,.8,.2,1) both,
    floatLayer 6.4s ease-in-out .9s infinite;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 800;
  padding: 0 12px;
}

.window-logo {
  flex: 0 0 auto;
  height: 22px;
  width: auto;
  margin-left: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 6px 16px rgba(204,125,177,.22));
}

.mieru-window-logo {
  max-width: 112px;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ff5b7c;
}

.window-bar span:nth-child(2) { background: #ffce59; }
.window-bar span:nth-child(3) { background: #35df9e; margin-right: 6px; }
.window-bar.compact { height: 32px; }

.main-window {
  top: 132px;
  right: 0;
  z-index: 5;
  width: 540px;
  transform: rotateY(-9deg) rotateX(3deg);
  box-shadow: 0 0 32px rgba(204,125,177,.24), 0 30px 90px rgba(0,0,0,.38);
}

.main-window > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.status-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 800;
  padding: 12px 14px;
}

.status-row b {
  color: var(--cyan);
}

.side-window {
  width: 300px;
}

.side-window-a {
  top: 44px;
  left: 12px;
  z-index: 3;
  width: 280px;
  animation-delay: .16s;
}

.side-window-b {
  left: 28px;
  bottom: 74px;
  z-index: 8;
  width: 432px;
  transform: translateZ(150px) rotateY(5deg) rotateX(-2deg);
  animation-delay: .28s;
  box-shadow: 0 0 34px rgba(225,76,254,.2), 0 30px 90px rgba(0,0,0,.38);
}

.side-window > img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.side-window-b > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 50% 50%;
}

.growth-panel {
  right: 8px;
  bottom: 54px;
  z-index: 7;
  width: 284px;
  padding: 18px;
  animation:
    liftIn .8s .36s cubic-bezier(.2,.8,.2,1) both,
    floatLayer 7s ease-in-out 1.1s infinite reverse;
  box-shadow: 0 0 34px rgba(54,215,255,.2), 0 30px 90px rgba(0,0,0,.38);
}

.growth-panel p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
  padding: 13px 0;
}

.metric b {
  color: #fff;
}

.section {
  padding: 104px max(32px, calc((100vw - var(--max)) / 2));
}

.section-head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.section h2 {
  font-size: clamp(32px, 4vw, 56px);
}

.section-head p:not(.eyebrow) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.company-section {
  background: #fff;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: stretch;
}

.company-copy {
  border-left: 4px solid var(--violet);
  padding-left: 28px;
}

.company-copy p {
  margin: 0 0 28px;
  color: #4f5360;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

.company-proof {
  display: grid;
  gap: 12px;
}

.company-proof div {
  border: 1px solid rgba(105,1,255,.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f7f3ff);
  box-shadow: 0 18px 55px rgba(30,24,46,.08);
  padding: 22px;
}

.company-proof b {
  display: block;
  color: var(--violet);
  font-size: 28px;
  line-height: 1;
}

.company-proof span {
  display: block;
  margin-top: 10px;
  color: #4d5060;
  font-weight: 800;
}

.service-section {
  position: relative;
  overflow: hidden;
  background: #f7f7fb;
}

.service-media {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 18px;
  opacity: .08;
  transform: rotate(-8deg) translateY(-80px);
  pointer-events: none;
}

.service-media img {
  width: 22%;
  min-width: 220px;
  height: 720px;
  border-radius: 28px;
  object-fit: cover;
}

.service-section > *:not(.service-media) {
  position: relative;
  z-index: 1;
}

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

.service-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(105,1,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 80px rgba(30,24,46,.09);
  padding: 22px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(105,1,255,.32);
  box-shadow: 0 30px 90px rgba(105,1,255,.16);
}

.service-card span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.service-card h3 {
  margin: 20px 0 12px;
  font-size: 29px;
  line-height: 1.05;
}

.service-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.8;
}

.service-card img {
  width: 100%;
  margin-top: auto;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(17,18,23,.15);
}

.service-video {
  overflow: hidden;
  margin-top: 34px;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(30,24,46,.16);
}

.service-video video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: .72;
}

.works-section {
  background: var(--ink);
  color: #fff;
}

.works-section .eyebrow,
.works-section h2 {
  color: #fff;
}

.works-section .section-head p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.works-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 38px;
  align-items: center;
}

.works-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.works-collage img {
  min-height: 220px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.works-collage img:first-child {
  grid-row: span 2;
  height: 100%;
}

.works-copy {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(105,1,255,.28), rgba(54,215,255,.08)), rgba(255,255,255,.04);
  padding: 34px;
}

.count-card {
  display: grid;
  gap: 8px;
}

.count-card span {
  color: rgba(255,255,255,.72);
  font-weight: 900;
}

.count-card b {
  color: #fff;
  font-size: clamp(64px, 8vw, 112px);
  line-height: .9;
}

.works-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.works-copy li {
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.84);
  font-weight: 750;
  line-height: 1.7;
  padding-top: 14px;
}

.support-section {
  overflow: hidden;
  background: #fff;
  padding: 82px 0;
}

.support-section h2 {
  margin: 0 20px 34px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.logo-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(17,18,23,.08);
  background: #f8f8fb;
  padding: 24px 0;
}

.logo-marquee div {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 28s linear infinite;
}

.logo-marquee img {
  width: 190px;
  height: 84px;
  border-radius: 14px;
  background: #fff;
  object-fit: contain;
  padding: 14px;
  box-shadow: 0 14px 38px rgba(30,24,46,.06);
}

.news-section,
.downloads-section {
  background: #fff;
}

.blog-section {
  background: #f7f7fb;
}

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

.post-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
}

.post-list {
  display: grid;
  gap: 10px;
}

.post-list a {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(17,18,23,.12);
  padding: 24px 0;
}

.post-list time {
  color: var(--violet);
  font-weight: 900;
}

.post-list h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

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

.article-card,
.download-grid a {
  overflow: hidden;
  border: 1px solid rgba(17,18,23,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 65px rgba(30,24,46,.08);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.5;
  padding: 22px;
}

.download-grid a {
  padding: 28px;
}

.download-grid span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.download-grid h3 {
  margin: 18px 0 12px;
  font-size: 28px;
  line-height: 1.1;
}

.download-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.8;
}

.products-section {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .82fr);
  gap: 20px;
}

.product-card {
  min-height: 300px;
  border: 1px solid rgba(105,1,255,.14);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8f6ff);
  box-shadow: 0 22px 70px rgba(30,24,46,.08);
  padding: 26px;
}

.product-card-large {
  display: grid;
  grid-row: span 2;
  grid-template-columns: 0.68fr 1fr;
  align-items: start;
  gap: 24px;
}

.product-card-large > img {
  align-self: center;
}

.product-card h3 {
  margin: 13px 0 12px;
  font-size: 32px;
  line-height: 1.1;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.product-card img {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(17,18,23,.16);
}

.product-card .manaque-logo {
  width: 168px;
  margin: 24px 0 20px;
  border-radius: 0;
  box-shadow: none;
}

.product-card .mieru-product-logo {
  width: 176px;
  margin: 20px 0 24px;
  border-radius: 0;
  box-shadow: none;
}

.manaque-play-preview {
  width: 100%;
  margin-top: 22px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 50% 50%;
}

.tag {
  display: inline-flex;
  border: 1px solid rgba(105,1,255,.18);
  border-radius: 999px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.dark-card {
  border-color: rgba(255,255,255,.1);
  background:
    linear-gradient(135deg, rgba(105,1,255,.28), rgba(196,93,159,.18)),
    #151622;
  color: #fff;
}

.dark-card p {
  color: rgba(255,255,255,.72);
}

.dark-card .tag {
  border-color: rgba(255,255,255,.18);
  color: #fff;
}

.growth-section {
  background: var(--ink);
  color: #fff;
}

.growth-section .eyebrow,
.growth-section h2 {
  color: #fff;
}

.growth-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: stretch;
}

.funnel {
  display: grid;
  gap: 14px;
}

.funnel-step {
  display: grid;
  grid-template-columns: 56px 180px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  padding: 18px;
}

.funnel-step span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.funnel-step b {
  font-size: 20px;
}

.funnel-step p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.growth-copy {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(105,1,255,.28), rgba(54,215,255,.08)),
    rgba(255,255,255,.04);
  padding: 34px;
}

.growth-copy p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.growth-copy strong {
  color: #fff;
}

.growth-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.growth-copy li {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 900;
  padding: 9px 12px;
}

.strength-section {
  background: #f7f7f7;
}

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

.strength-grid article {
  min-height: 280px;
  border: 1px solid rgba(17,18,23,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(30,24,46,.07);
  padding: 28px;
}

.strength-grid span {
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
}

.strength-grid h3 {
  margin: 48px 0 14px;
  font-size: 25px;
  line-height: 1.35;
}

.strength-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.philosophy-section {
  background: #fff;
}

.philosophy-card {
  position: relative;
  overflow: hidden;
  max-width: var(--max);
  margin: 0 auto;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.76)),
    linear-gradient(125deg, rgba(105,1,255,.16), rgba(196,93,159,.1));
  box-shadow: 0 28px 90px rgba(30,24,46,.1);
  padding: 54px;
}

.philosophy-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105,1,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105,1,255,.08) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: .5;
}

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

.philosophy-card h2 {
  max-width: 900px;
}

.philosophy-card p:not(.eyebrow) {
  max-width: 820px;
  margin: 20px 0 0;
  color: #535766;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.95;
}

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

.thanks-loop span {
  border: 1px solid rgba(105,1,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  color: #222431;
  font-weight: 900;
  padding: 18px;
  text-align: center;
}

.thanks-loop span:nth-child(2) {
  background: var(--ink);
  color: #fff;
}

.final-cta {
  text-align: center;
  background: var(--ink);
  color: #fff;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: #fff;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255,255,255,.76);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.9;
}

.final-cta .button {
  margin-top: 30px;
}

.js-enabled .reveal {
  opacity: .001;
  transform: translateY(16px);
  transition: opacity .62s ease, transform .62s ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes edgeFlow {
  0%, 44% { transform: translateX(-100%); }
  72%, 100% { transform: translateX(100%); }
}

@keyframes scanPass {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

@keyframes dataSlide {
  from { transform: translateX(-18%); }
  to { transform: translateX(18%); }
}

@keyframes textRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(26px) rotateY(-16deg) rotateX(7deg);
  }
  to {
    opacity: 1;
  }
}

@keyframes floatLayer {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

@keyframes nodePulse {
  0%, 100% {
    opacity: .6;
    transform: scale(.86);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes orbitSpin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}

@keyframes lightSweep {
  0%, 18% {
    opacity: 0;
    transform: translateX(-34%) rotate(-16deg);
  }
  44% {
    opacity: .78;
  }
  76%, 100% {
    opacity: 0;
    transform: translateX(42%) rotate(-16deg);
  }
}

@keyframes particleDrift {
  0%, 100% {
    opacity: .42;
    transform: translate3d(0, 0, 0) scale(.82);
  }
  50% {
    opacity: 1;
    transform: translate3d(16px, -22px, 0) scale(1.18);
  }
}

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

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 150px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(249,247,255,.94) 46%, rgba(18,18,26,.98) 46.1%, rgba(13,13,19,1) 100%);
  }

  .hero-video.--pc {
    display: none;
  }

  .hero-video.--sp {
    display: block;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(56px, 13vw, 104px);
  }

  .hero-visual {
    min-height: 560px;
  }

  .visual-stage {
    height: 560px;
  }

  .cinematic-bloom {
    inset: 10px -28px 0 -28px;
    opacity: .82;
  }

  .main-window {
    right: 0;
    width: min(100%, 560px);
  }

  .side-window-b {
    left: 14px;
    width: 380px;
  }

  .growth-panel {
    right: 0;
  }

  .product-grid,
  .growth-layout,
  .strength-grid,
  .company-layout,
  .service-grid,
  .works-layout,
  .article-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card img {
    max-height: 280px;
  }

  .works-collage {
    grid-template-columns: 1fr;
  }

  .works-collage img:first-child {
    grid-row: auto;
  }

  .product-card-large {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 10px 10px 14px;
  }

  .brand img {
    width: 184px;
  }

  .header-cta {
    min-width: 92px;
    min-height: 40px;
  }

  .hero,
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 74px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-list li {
    font-size: 11px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 520px;
  }

  .visual-stage {
    height: 520px;
  }

  .motion-controller {
    gap: 8px;
    margin-top: 24px;
  }

  .motion-controller span {
    min-height: 34px;
    font-size: 10px;
  }

  .cinematic-bloom {
    inset: 12px -64px 0 -64px;
    opacity: .7;
  }

  .orbit-1 {
    width: 210px;
    height: 210px;
  }

  .orbit-2 {
    width: 300px;
    height: 300px;
  }

  .orbit-3 {
    width: 390px;
    height: 390px;
  }

  .orbit-4 {
    width: 480px;
    height: 480px;
  }

  .main-window {
    top: 94px;
  }

  .side-window-a {
    left: 0;
    width: 230px;
  }

  .side-window-b {
    left: 0;
    width: 300px;
  }

  .growth-panel {
    left: 0;
    right: auto;
    width: 280px;
  }

  .funnel-step {
    grid-template-columns: 1fr;
  }

  .philosophy-card {
    padding: 32px 22px;
  }

  .thanks-loop {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .company-copy {
    padding-left: 20px;
  }

  .post-head {
    display: grid;
    align-items: start;
  }

  .post-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .logo-marquee img {
    width: 154px;
    height: 72px;
  }
}

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