:root {
  --yellow: #ffd84d;
  --yellow-soft: #fff5bf;
  --black: #16213e;
  --ink: #24324a;
  --muted: #65738b;
  --line: #dfe7f3;
  --pale: #f7fbff;
  --white: #ffffff;
  --red: #ff5f6d;
  --mint: #24d9b4;
  --blue: #4c8dff;
  --purple: #9a7cff;
  --orange: #ffad5b;
  --pink: #ff8fc7;
  --navy: #10275c;
  --shadow: 0 18px 46px rgba(44, 64, 100, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  background:
    radial-gradient(circle at 8% 10%, rgba(76, 141, 255, 0.12), transparent 22%),
    radial-gradient(circle at 96% 24%, rgba(255, 143, 199, 0.15), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(36, 217, 180, 0.12), transparent 26%),
    var(--white);
}

body.modal-open {
  overflow: hidden;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--mint), var(--blue), var(--purple));
  transform: scaleX(0);
  transform-origin: left;
}

.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--navy);
  background: var(--white);
  transition: opacity 0.9s var(--ease-out), visibility 0.9s var(--ease-out);
}

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

.intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 216, 77, 0.36), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(36, 217, 180, 0.28), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(154, 124, 255, 0.24), transparent 28%),
    linear-gradient(180deg, #ffffff, #f9fcff);
}

.intro-blob {
  position: absolute;
  display: block;
  border-radius: 45% 55% 60% 40%;
  filter: blur(0.2px);
  opacity: 0;
  transform: scale(0.55) rotate(-18deg);
  animation: introBlob 2.4s var(--ease-out) forwards;
}

.blob-one {
  top: 14%;
  left: 12%;
  width: 170px;
  height: 170px;
  background: var(--yellow);
}

.blob-two {
  right: 15%;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: var(--mint);
  animation-delay: 0.18s;
}

.blob-three {
  top: 20%;
  right: 22%;
  width: 120px;
  height: 120px;
  background: var(--pink);
  animation-delay: 0.34s;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 24px;
  text-align: center;
}

.intro-content p,
.intro-content span {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  opacity: 0;
  transform: translateY(18px);
  animation: introText 0.9s var(--ease-out) forwards;
}

.intro-content p {
  color: var(--blue);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.intro-content strong {
  color: var(--navy);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.92;
  opacity: 0;
  transform: translateY(34px) scale(0.94);
  animation: introTitle 1.05s var(--ease-out) 0.2s forwards;
}

.intro-content span {
  animation-delay: 0.48s;
}

.intro-line {
  position: absolute;
  right: 10vw;
  bottom: 13vh;
  left: 10vw;
  z-index: 1;
  height: 5px;
  overflow: hidden;
  background: rgba(16, 39, 92, 0.1);
  border-radius: 999px;
}

.intro-line::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--mint), var(--blue), var(--purple));
  border-radius: inherit;
  transform: translateX(-100%);
  animation: introLine 1.65s var(--ease-out) 0.32s forwards;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  line-break: strict;
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
dd {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--black);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0;
}

.heading-particle {
  display: inline !important;
  font-size: 0.82em;
  line-height: 0;
  opacity: 1 !important;
  transform: none !important;
  vertical-align: baseline;
  animation: none !important;
}

.container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(218, 223, 232, 0.7);
  box-shadow: 0 10px 30px rgba(16, 39, 92, 0.04);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.home-page .site-header {
  position: fixed;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(218, 223, 232, 0.52);
  box-shadow: 0 12px 34px rgba(16, 39, 92, 0.06);
}

.home-page .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(218, 223, 232, 0.42);
  box-shadow: 0 12px 34px rgba(16, 39, 92, 0.08);
}

#top {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 216, 77, 0.22), transparent 16%),
    radial-gradient(circle at 90% 18%, rgba(76, 141, 255, 0.18), transparent 18%),
    radial-gradient(circle at 8% 58%, rgba(255, 95, 109, 0.09), transparent 20%),
    radial-gradient(circle at 94% 80%, rgba(36, 217, 180, 0.13), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 22%, #ffffff 44%, #f6fffb 66%, #ffffff 100%);
}

#top::before,
#top::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  content: "";
}

#top::before {
  top: 590px;
  left: -24vw;
  width: 150vw;
  height: 860px;
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 95, 109, 0.18), transparent 27%),
    radial-gradient(circle at 48% 50%, rgba(36, 217, 180, 0.24), transparent 34%),
    radial-gradient(circle at 84% 54%, rgba(154, 124, 255, 0.18), transparent 30%),
    linear-gradient(105deg, rgba(255, 255, 255, 0) 7%, rgba(238, 255, 249, 0.88) 28%, rgba(238, 246, 255, 0.9) 58%, rgba(255, 251, 236, 0.58) 72%, rgba(255, 255, 255, 0) 90%);
  border-radius: 56% 44% 48% 52% / 40% 58% 42% 60%;
  filter: blur(1.6px);
  opacity: 0.96;
  transform: rotate(-7deg);
}

#top::after {
  top: 2080px;
  right: -34vw;
  width: 144vw;
  height: 1180px;
  background:
    radial-gradient(circle at 24% 38%, rgba(255, 216, 77, 0.2), transparent 28%),
    radial-gradient(circle at 48% 46%, rgba(76, 141, 255, 0.19), transparent 34%),
    radial-gradient(circle at 73% 58%, rgba(255, 143, 199, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 6%, rgba(255, 250, 231, 0.9) 26%, rgba(244, 250, 255, 0.88) 52%, rgba(232, 255, 246, 0.7) 78%, rgba(255, 255, 255, 0) 94%);
  border-radius: 62% 38% 56% 44% / 46% 60% 40% 54%;
  opacity: 0.92;
  transform: rotate(8deg);
}

#top > section {
  position: relative;
  z-index: 1;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
}

.site-header .brand,
.site-header .global-nav,
.site-header .nav-button {
  transition: opacity 0.24s ease, transform 0.24s var(--ease-out);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 900;
}

.brand-symbol {
  width: 30px;
  height: 30px;
  background: conic-gradient(from 90deg, var(--red), var(--yellow), var(--mint), var(--blue), var(--purple), var(--red));
  border: 2px solid var(--black);
  border-radius: 50% 50% 50% 10%;
  animation: brandPulse 3.8s ease-in-out infinite;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--purple) 52%, var(--blue));
  border: 2px solid var(--black);
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.header-cta:hover {
  box-shadow: 4px 4px 0 var(--black);
  transform: translate(-2px, -2px);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 216, 77, 0.55), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(36, 217, 180, 0.38), transparent 24%),
    radial-gradient(circle at 82% 76%, rgba(154, 124, 255, 0.34), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(255, 95, 109, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  background-size: 130% 130%, 120% 120%, 125% 125%, 120% 120%, 100% 100%;
  background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 0 0;
  isolation: isolate;
  animation: heroGradientWake 1.2s var(--ease-out) both, heroGradientDrift 18s ease-in-out 1.2s infinite alternate;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    radial-gradient(rgba(76, 141, 255, 0.2) 2px, transparent 2.5px),
    radial-gradient(rgba(255, 95, 109, 0.14) 2px, transparent 2.5px);
  background-position: 0 0, 44px 44px;
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  opacity: 0.56;
  animation: dotDrift 20s linear infinite;
}

.hero-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  display: block;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(22, 33, 62, 0.92);
  border-radius: 44% 56% 50% 50%;
  background: var(--white);
  box-shadow: 10px 14px 0 rgba(22, 33, 62, 0.09);
  opacity: 0;
  transform: translateY(20px) scale(0.76) rotate(-10deg);
  animation: heroShapeEnter 0.9s var(--ease-out) forwards, floatShape 8s ease-in-out 1.1s infinite;
}

.hero-orbit span:nth-child(1) {
  top: 12%;
  right: 8%;
  background: var(--mint);
  animation-delay: 0.34s, 1.24s;
}

.hero-orbit span:nth-child(2) {
  top: 64%;
  right: 36%;
  width: 54px;
  height: 54px;
  background: var(--red);
  animation-delay: 0.52s, 1.42s;
}

.hero-orbit span:nth-child(3) {
  top: 22%;
  left: auto;
  right: 47%;
  width: 44px;
  height: 44px;
  background: var(--blue);
  animation-delay: 0.68s, 1.58s;
}

.hero-orbit span:nth-child(4) {
  right: 7%;
  bottom: 12%;
  width: 66px;
  height: 66px;
  background: var(--purple);
  animation-delay: 0.82s, 1.72s;
}

.sparkle {
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: var(--sparkle-color, var(--yellow));
  border: 0;
  border-radius: 42% 58% 54% 46%;
  opacity: 0;
  filter: blur(0.1px);
  animation: sparkleEnter 0.7s var(--ease-out) forwards, sparkleFloat var(--sparkle-speed, 6s) ease-in-out 1s infinite;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(40px, 4.5vw, 72px);
  align-items: center;
  width: min(1440px, 100%);
  min-height: 700px;
  margin: 0 auto;
  padding: 76px clamp(24px, 6vw, 96px) 88px;
  z-index: 1;
}

.hero-copy.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  min-width: 0;
}

.tag,
.label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 18px;
  padding: 2px 14px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(22, 33, 62, 0.9);
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.72);
}

.hero-copy h1 span {
  display: block;
  opacity: 0;
  transform: translateY(28px) rotate(-1deg);
  animation: titleIn 0.95s var(--ease-out) 1.02s forwards;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-copy .hero-phrase {
  white-space: nowrap;
}

.hero-copy h1 span:nth-child(2) {
  animation-delay: 1.16s;
}

.hero-copy p:not(.tag) {
  max-width: 640px;
  margin: 28px 0 0;
  color: #2f2f2f;
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  font-weight: 700;
}

.hero-copy .tag,
.hero-copy p:not(.tag),
.hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextItemEnter 0.8s var(--ease-out) forwards;
}

.hero-copy .tag {
  animation-delay: 0.82s;
}

.hero-copy p:not(.tag) {
  animation-delay: 1.34s;
}

.hero-actions {
  animation-delay: 1.48s;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 26px;
  font-weight: 900;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.22s ease;
}

.button:hover {
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.2);
  transform: translate(-3px, -3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue) 55%, var(--purple));
  border: 2px solid var(--black);
}

.button-outline {
  color: var(--black);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 191, 0.94));
  border: 2px solid var(--black);
}

.image-blank {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 95, 109, 0.22), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(36, 217, 180, 0.24), transparent 18%),
    radial-gradient(circle at 72% 82%, rgba(154, 124, 255, 0.18), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.94)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(76, 141, 255, 0.045) 14px 16px);
  border: 2px dashed rgba(22, 33, 62, 0.26);
  border-radius: 28px;
}

.image-blank::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(105deg, transparent 26%, rgba(255, 255, 255, 0.9) 42%, transparent 58%);
  transform: translateX(-120%);
  animation: shimmer 4.8s ease-in-out infinite;
}

.hero-visual {
  justify-self: center;
  width: min(100%, 560px);
  min-height: 520px;
  box-shadow: 24px 24px 0 rgba(255, 216, 77, 0.66), var(--shadow);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(26px) scale(0.94) rotate(-1deg);
  animation: heroVisualEnter 1s var(--ease-out) 0.58s forwards, heroFloat 7s ease-in-out 1.7s infinite;
}

.device-stage {
  position: absolute;
  inset: 24px;
  display: grid;
  place-items: center;
}

.hub-map {
  position: absolute;
  inset: 22px;
  z-index: 1;
  min-height: 0;
}

.hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow {
  fill: none;
  stroke: rgba(16, 39, 92, 0.28);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 9 12;
  opacity: 0;
  animation: flowLineIn 0.9s var(--ease-out) forwards, flowDash 8s linear 1.35s infinite;
}

.flow-a {
  stroke: rgba(255, 95, 109, 0.58);
  animation-delay: 0.72s, 1.5s;
}

.flow-b {
  stroke: rgba(36, 217, 180, 0.62);
  animation-delay: 0.82s, 1.6s;
}

.flow-c {
  stroke: rgba(76, 141, 255, 0.58);
  animation-delay: 0.92s, 1.7s;
}

.flow-d {
  stroke: rgba(154, 124, 255, 0.58);
  animation-delay: 1.02s, 1.8s;
}

.flow-e {
  stroke: rgba(255, 216, 77, 0.8);
  animation-delay: 1.12s, 1.9s;
}

.hub-map .hub-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(43%, 230px);
  aspect-ratio: 1;
  place-items: center;
  padding: 22px;
  color: var(--navy);
  text-align: center;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(135deg, var(--yellow), #fff7cf 44%, var(--mint));
  border: 2px solid rgba(22, 33, 62, 0.82);
  border-radius: 38% 62% 52% 48%;
  box-shadow: 12px 16px 0 rgba(16, 39, 92, 0.12);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82) rotate(-4deg);
  animation: hubCoreIn 0.9s var(--ease-out) 0.52s forwards, hubBreathe 4.2s ease-in-out 1.5s infinite;
}

.hub-map .hub-core span {
  display: block;
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  font-weight: 900;
  line-height: 1;
}

.hub-map .hub-core small {
  display: block;
  margin-top: 8px;
  color: rgba(16, 39, 92, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-node {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 112px;
  padding: 13px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 2px solid rgba(22, 33, 62, 0.15);
  border-radius: 999px;
  box-shadow: 8px 10px 0 rgba(16, 39, 92, 0.08);
  opacity: 0;
  transform: translateY(18px) scale(0.88);
  animation: hubNodeIn 0.78s var(--ease-out) forwards, hubNodeFloat 6.8s ease-in-out 1.8s infinite;
}

.hub-node strong {
  font-size: 1rem;
  line-height: 1.1;
}

.hub-node span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.node-recruit {
  top: 8%;
  left: 4%;
  border-color: rgba(255, 95, 109, 0.32);
  animation-delay: 0.86s, 1.95s;
}

.node-shift {
  top: 5%;
  right: 4%;
  border-color: rgba(36, 217, 180, 0.34);
  animation-delay: 1s, 2.12s;
  animation-duration: 0.78s, 7.4s;
}

.node-attendance {
  right: 0;
  bottom: 17%;
  border-color: rgba(76, 141, 255, 0.32);
  animation-delay: 1.14s, 2.24s;
  animation-duration: 0.78s, 6.2s;
}

.node-pay {
  bottom: 8%;
  left: 4%;
  border-color: rgba(154, 124, 255, 0.34);
  animation-delay: 1.28s, 2.38s;
  animation-duration: 0.78s, 8.2s;
}

.node-ivr {
  top: 51%;
  left: 0;
  border-color: rgba(255, 216, 77, 0.76);
  animation-delay: 1.42s, 2.52s;
  animation-duration: 0.78s, 7s;
}

.flow-pulse {
  position: absolute;
  z-index: 3;
  display: block;
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(76, 141, 255, 0.12);
  opacity: 0;
  animation: pulseMove 5.6s ease-in-out 1.8s infinite;
}

.pulse-a {
  top: 28%;
  left: 30%;
  background: var(--red);
}

.pulse-b {
  top: 35%;
  right: 25%;
  background: var(--mint);
  animation-delay: 2.4s;
  animation-duration: 6.3s;
}

.pulse-c {
  right: 28%;
  bottom: 30%;
  background: var(--purple);
  animation-delay: 3s;
  animation-duration: 7s;
}

.device-core,
.device-card {
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--black);
  font-weight: 900;
  border: 2px solid var(--black);
  box-shadow: 8px 10px 0 rgba(22, 33, 62, 0.12);
}

.device-core {
  width: min(52%, 240px);
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--yellow), #fff7cf 42%, var(--mint));
  border-radius: 34px;
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  opacity: 0;
  transform: scale(0.82);
  animation: coreReveal 0.9s var(--ease-out) 0.9s forwards, coreBreathe 3.8s ease-in-out 1.85s infinite;
}

.device-card {
  min-width: 88px;
  min-height: 48px;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(16px) scale(0.86);
  animation: cardPop 0.75s var(--ease-out) forwards, cardOrbit 7s ease-in-out 1.8s infinite;
}

.card-a {
  top: 12%;
  left: 6%;
  background: #ffe7e4;
  animation-delay: 1.05s, 1.9s;
  animation-duration: 0.75s, 6.8s;
}

.card-b {
  top: 18%;
  right: 4%;
  background: #dffcf5;
  animation-delay: 1.18s, 2.02s;
  animation-duration: 0.75s, 8.2s;
}

.card-c {
  right: 10%;
  bottom: 16%;
  background: #ece7ff;
  animation-delay: 1.31s, 2.15s;
  animation-duration: 0.75s, 7.4s;
}

.card-d {
  bottom: 10%;
  left: 12%;
  background: #e5f0ff;
  animation-delay: 1.44s, 2.28s;
  animation-duration: 0.75s, 9s;
}

.scroll-cue {
  position: absolute;
  right: 50%;
  bottom: clamp(50px, 6vh, 72px);
  z-index: 5;
  width: 26px;
  height: 42px;
  border: 2px solid var(--black);
  border-radius: 999px;
  transform: translateX(50%);
}

.hero-immersive + .section {
  z-index: 3;
}

.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--black);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollCue 1.7s ease-in-out infinite;
}

.hero-immersive {
  position: sticky;
  top: 0;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  padding: clamp(118px, 15vh, 160px) clamp(24px, 6vw, 96px) clamp(112px, 14vh, 156px);
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 216, 77, 0.46), transparent 26%),
    radial-gradient(circle at 76% 20%, rgba(36, 217, 180, 0.34), transparent 25%),
    radial-gradient(circle at 72% 78%, rgba(154, 124, 255, 0.3), transparent 30%),
    radial-gradient(circle at 28% 78%, rgba(76, 141, 255, 0.22), transparent 27%),
    linear-gradient(135deg, #ffffff 0%, #f9fcff 44%, #ffffff 100%);
  background-size: 130% 130%, 120% 120%, 125% 125%, 120% 120%, 100% 100%;
  animation: heroGradientWake 1.2s var(--ease-out) both, heroGradientDrift 18s ease-in-out 1.2s infinite alternate;
}

.hero-immersive::before,
.hero-immersive::after {
  position: absolute;
  right: -12vw;
  left: -12vw;
  z-index: 0;
  height: clamp(72px, 10vh, 116px);
  pointer-events: none;
  content: "";
  opacity: 0.28;
  transition: transform 0.2s linear, opacity 0.2s linear;
}

.hero-immersive::before {
  top: -7vh;
  background:
    radial-gradient(circle at 24% 64%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(105deg, rgba(255, 255, 255, 0) 6%, rgba(255, 216, 77, 0.34) 24%, rgba(255, 143, 199, 0.22) 52%, rgba(255, 255, 255, 0) 88%);
  border-radius: 0 0 58% 42% / 0 0 48% 52%;
  transform: translateY(calc(var(--hero-progress, 0) * -28px)) rotate(-1.2deg);
}

.hero-immersive::after {
  bottom: -8vh;
  background:
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(105deg, rgba(255, 255, 255, 0) 8%, rgba(36, 217, 180, 0.28) 26%, rgba(76, 141, 255, 0.26) 56%, rgba(154, 124, 255, 0.18) 76%, rgba(255, 255, 255, 0) 92%);
  border-radius: 54% 46% 0 0 / 50% 50% 0 0;
  transform: translateY(calc(var(--hero-progress, 0) * 36px)) rotate(1.8deg);
}

.hero-immersive .sparkle {
  display: none;
}

.connection-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-marquee {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  height: clamp(42px, 3.45vw, 51px);
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(90deg, #18cda2 0%, #13c79d 46%, #1998f5 74%, #ff4f76 100%);
  box-shadow: 0 8px 22px rgba(12, 166, 135, 0.16);
}

.hero-marquee-bottom {
  bottom: 0;
  background:
    linear-gradient(90deg, #ff4f76 0%, #ffd21f 28%, #12bfa0 55%, #18cda2 100%);
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  height: 100%;
  gap: 0;
  color: #ffffff;
  font-family: var(--font-en);
  font-size: clamp(1.32rem, 1.72vw, 1.82rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
}

.hero-marquee-set {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 2.2vw, 36px);
  padding-inline: clamp(10px, 1.4vw, 22px);
}

.hero-marquee-set > span:nth-child(even) {
  color: rgba(255, 255, 255, 0.9);
  -webkit-text-stroke: 0;
}

.hero-marquee-set > span:nth-child(3n) {
  color: #ffffff;
}

.hero-marquee-bottom .hero-marquee-track {
  color: #ffffff;
  animation: heroMarqueeRight 38s linear infinite;
}

.field-glow {
  position: absolute;
  display: block;
  border-radius: 42% 58% 50% 50%;
  filter: blur(1px);
  opacity: 0;
  transform: translateY(24px) scale(0.78) rotate(-8deg);
  animation: fieldGlowIn 1.15s var(--ease-out) forwards, fieldGlowFloat 11s ease-in-out 1.25s infinite;
}

.glow-a {
  top: 13%;
  left: 8%;
  width: clamp(120px, 16vw, 230px);
  height: clamp(120px, 16vw, 230px);
  background: rgba(255, 95, 109, 0.22);
  animation-delay: 0.08s, 1.2s;
}

.glow-b {
  right: 9%;
  bottom: 14%;
  width: clamp(180px, 22vw, 330px);
  height: clamp(180px, 22vw, 330px);
  background: rgba(36, 217, 180, 0.24);
  animation-delay: 0.18s, 1.36s;
  animation-duration: 1.15s, 13s;
}

.glow-c {
  top: 15%;
  right: 19%;
  width: clamp(130px, 17vw, 250px);
  height: clamp(130px, 17vw, 250px);
  background: rgba(154, 124, 255, 0.22);
  animation-delay: 0.3s, 1.48s;
  animation-duration: 1.15s, 15s;
}

.connection-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-static-illustration {
  position: absolute;
  left: clamp(12px, 4vw, 56px);
  bottom: clamp(18px, 4vh, 46px);
  z-index: 1;
  width: min(760px, 58vw);
  aspect-ratio: 1536 / 1024;
  opacity: 0.16;
  background-image: url("assets/hero-launch-sketch.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: saturate(0.94) contrast(1.04);
  mask-image: radial-gradient(ellipse at center, black 35%, rgba(0, 0, 0, 0.7) 66%, transparent 94%);
  pointer-events: none;
  transform: rotate(-1.5deg);
}

.motion-orb {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: orbAppear 0.9s var(--ease-out) forwards, orbFloat var(--orb-speed, 9s) ease-in-out 1.2s infinite;
  animation-delay: var(--orb-delay, 0.2s), 1.2s;
}

.orb-ring {
  border: 2px solid rgba(16, 39, 92, 0.16);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.22);
}

.orb-solid {
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.34), rgba(255, 216, 77, 0.3));
  filter: blur(0.2px);
}

.orb-soft {
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.78), rgba(36, 217, 180, 0.24) 52%, transparent 72%);
}

.orb-dash {
  border: 2px dashed rgba(76, 141, 255, 0.36);
  background: rgba(255, 255, 255, 0.28);
  animation-name: orbAppear, orbFloat, orbSpin;
  animation-duration: 0.9s, var(--orb-speed, 9s), 18s;
  animation-timing-function: var(--ease-out), ease-in-out, linear;
  animation-delay: var(--orb-delay, 0.2s), 1.2s, 1.2s;
  animation-iteration-count: 1, infinite, infinite;
  animation-fill-mode: forwards, none, none;
}

.orb-dot {
  background: var(--blue);
  box-shadow: 0 0 0 12px rgba(76, 141, 255, 0.12);
}

.orb-a {
  top: 17%;
  left: 12%;
  width: 112px;
  height: 112px;
  --orb-delay: 0.28s;
  --orb-speed: 9.5s;
}

.orb-b {
  top: 23%;
  right: 16%;
  width: 58px;
  height: 58px;
  --orb-delay: 0.44s;
  --orb-speed: 7.8s;
}

.orb-c {
  right: 8%;
  bottom: 23%;
  width: 132px;
  height: 132px;
  --orb-delay: 0.58s;
  --orb-speed: 11s;
}

.orb-d {
  bottom: 16%;
  left: 19%;
  width: 170px;
  height: 170px;
  --orb-delay: 0.72s;
  --orb-speed: 12s;
}

.orb-e {
  top: 49%;
  left: 7%;
  width: 54px;
  height: 54px;
  border-color: rgba(154, 124, 255, 0.34);
  --orb-delay: 0.88s;
  --orb-speed: 8.6s;
}

.orb-f {
  right: 27%;
  bottom: 14%;
  width: 18px;
  height: 18px;
  --orb-delay: 1.02s;
  --orb-speed: 6.8s;
}

.connection-path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2.5;
  stroke-dasharray: 12 18;
  opacity: 0;
  filter: drop-shadow(0 10px 16px rgba(16, 39, 92, 0.08));
  animation: connectionPathIn 1.15s var(--ease-out) forwards, connectionPathFlow 14s linear 1.2s infinite;
}

.path-a {
  stroke: rgba(255, 95, 109, 0.55);
  animation-delay: 2.05s, 3.1s;
}

.path-b {
  stroke: rgba(36, 217, 180, 0.58);
  animation-delay: 2.28s, 3.35s;
  animation-duration: 1.15s, 16s;
}

.path-c {
  stroke: rgba(76, 141, 255, 0.48);
  animation-delay: 2.5s, 3.6s;
  animation-duration: 1.15s, 18s;
}

.field-node {
  position: absolute;
  z-index: 1;
  display: grid;
  width: clamp(28px, 3.8vw, 54px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--navy);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95) 0 16%, transparent 17%),
    linear-gradient(135deg, var(--mint), var(--blue));
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(16, 39, 92, 0.12), 0 0 0 12px rgba(36, 217, 180, 0.1);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(22px) scale(0.52);
  animation: fieldNodeIn 0.92s var(--ease-out) forwards, fieldNodeFloat 8.4s ease-in-out 4.2s infinite;
}

.field-node::before {
  position: absolute;
  inset: -12px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.28;
  animation: nodePulseRing 3.8s ease-in-out 4.2s infinite;
}

.node-human {
  top: 18%;
  left: 12%;
  color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--pink));
  animation-delay: 2.75s, 4.4s;
}

.node-company {
  top: 13%;
  right: 18%;
  color: var(--mint);
  background: linear-gradient(135deg, var(--mint), #b8ffe8);
  animation-delay: 2.9s, 4.55s;
  animation-duration: 0.92s, 9.4s;
}

.node-data {
  right: 8%;
  bottom: 30%;
  color: var(--blue);
  background: linear-gradient(135deg, var(--blue), #a8ccff);
  animation-delay: 3.05s, 4.7s;
  animation-duration: 0.92s, 7.8s;
}

.node-field {
  bottom: 17%;
  left: 16%;
  color: var(--purple);
  background: linear-gradient(135deg, var(--purple), #d9ceff);
  animation-delay: 3.2s, 4.85s;
  animation-duration: 0.92s, 9.8s;
}

.node-ai {
  top: 46%;
  left: 6%;
  width: clamp(18px, 2.8vw, 38px);
  color: var(--yellow);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  animation-delay: 3.35s, 5s;
  animation-duration: 0.92s, 8.8s;
}

.node-system {
  right: 26%;
  bottom: 12%;
  width: clamp(20px, 3vw, 40px);
  color: var(--navy);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  animation-delay: 3.5s, 5.15s;
  animation-duration: 0.92s, 10.2s;
}

.signal {
  position: absolute;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--blue);
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(76, 141, 255, 0.12);
  opacity: 0;
  animation: signalTravel 7.8s ease-in-out 4s infinite;
}

.signal-a {
  top: 32%;
  left: 25%;
  background: var(--red);
}

.signal-b {
  top: 59%;
  right: 22%;
  background: var(--mint);
  animation-delay: 4.65s;
  animation-duration: 8.4s;
}

.signal-c {
  right: 37%;
  bottom: 24%;
  background: var(--purple);
  animation-delay: 5.2s;
  animation-duration: 9.2s;
}

.hero-statement {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(880px, 100%);
  justify-items: center;
  text-align: center;
  transform: translateY(calc(var(--hero-progress, 0) * -28px)) scale(calc(1 - (var(--hero-progress, 0) * 0.035)));
  transition: transform 0.18s linear;
}

.hero-statement .tag {
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroStatementIn 0.82s var(--ease-out) 1.1s forwards;
}

.hero-statement h1 {
  max-width: min(820px, 100%);
  color: var(--navy);
  font-size: clamp(2.5rem, 4.75vw, 4.55rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
}

.hero-statement h1 > span {
  display: block;
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  animation: heroStatementIn 0.88s var(--ease-out) forwards;
}

.hero-statement h1 > span:nth-child(1) {
  animation-delay: 1.32s;
}

.hero-statement h1 > span:nth-child(2) {
  animation-delay: 1.5s;
}

.hero-statement > p:not(.tag) {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(36, 50, 74, 0.82);
  font-size: clamp(0.98rem, 1.32vw, 1.12rem);
  font-weight: 800;
  line-height: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: heroStatementIn 0.82s var(--ease-out) 1.82s forwards;
}

.hero-lead span:first-child,
.hero-lead span:nth-child(2) {
  display: inline;
}

.hero-lead span:nth-child(2)::after {
  content: "";
  display: block;
}

.hero-lead span:nth-child(3) {
  display: block;
}

.brand-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-brand h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.product-brand p,
.product-detail-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.product-suite {
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 95, 109, 0.14), transparent 24%),
    radial-gradient(circle at 90% 22%, rgba(76, 141, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbff 54%, #ffffff);
}

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

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

.product-brand {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(22, 33, 62, 0.14);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.product-brand::before {
  position: absolute;
  inset: auto 28px 28px 28px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--mint), transparent);
  opacity: 0.64;
}

.brand-tsunaria::before {
  background: linear-gradient(90deg, var(--blue), var(--purple), transparent);
}

.brand-redpl {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 95, 109, 0.14), transparent 24%),
    rgba(255, 255, 255, 0.8);
}

.brand-tsunaria {
  background:
    radial-gradient(circle at 88% 12%, rgba(76, 141, 255, 0.15), transparent 24%),
    rgba(255, 255, 255, 0.8);
}

.brand-heading {
  max-width: 42em;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.product-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 13px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 33, 62, 0.14);
  border-radius: 999px;
}

.product-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  gap: 8px;
  margin-top: 42px;
}

.product-line span {
  position: relative;
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 10px 6px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(22, 33, 62, 0.12);
  border-radius: 999px;
}

.brand-redpl .product-line span:nth-child(odd) {
  background: rgba(255, 95, 109, 0.12);
}

.brand-tsunaria .product-line span:nth-child(odd) {
  background: rgba(76, 141, 255, 0.12);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.product-detail-grid article {
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(22, 33, 62, 0.12);
  border-radius: 24px;
  box-shadow: 8px 10px 0 rgba(16, 39, 92, 0.05);
}

.product-note {
  width: fit-content;
  max-width: 100%;
  margin: 34px auto 0;
  padding: 14px 20px;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 2px solid rgba(22, 33, 62, 0.12);
  border-radius: 999px;
}

.product-overview-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(22, 33, 62, 0.1);
  border-radius: 24px;
}

.product-overview-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 80px;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 216, 77, 0.28), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(36, 217, 180, 0.2), transparent 26%),
    radial-gradient(circle at 76% 78%, rgba(154, 124, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.service-hero-inner {
  max-width: 940px;
}

.service-hero h1 {
  max-width: 9em;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.service-hero p:not(.label) {
  max-width: 48em;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 800;
}

.service-catalog {
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 95, 109, 0.045), transparent 24%),
    var(--white);
}

.service-catalog-alt {
  background:
    radial-gradient(circle at 8% 16%, rgba(76, 141, 255, 0.055), transparent 24%),
    linear-gradient(180deg, #f8fbff, #ffffff);
}

.service-catalog::before,
.service-catalog::after {
  display: none;
}

.service-series-head {
  position: relative;
  max-width: 840px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 0;
}

.service-series-head::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(240px, 52%);
  height: 10px;
  content: "";
  background: linear-gradient(90deg, rgba(255, 95, 109, 0.22), rgba(36, 217, 180, 0.2), transparent);
  border-radius: 999px;
  filter: blur(1px);
}

.service-tsunaria .service-series-head::after {
  background: linear-gradient(90deg, rgba(76, 141, 255, 0.22), rgba(154, 124, 255, 0.2), transparent);
}

.service-other .service-series-head::after {
  background: linear-gradient(90deg, rgba(16, 39, 92, 0.18), rgba(36, 217, 180, 0.18), transparent);
}

.service-series-head h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.4rem);
  white-space: nowrap;
}

.service-series-head p:not(.label) {
  max-width: 45em;
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.service-series-head .label {
  min-height: auto;
  margin-bottom: 18px;
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-tsunaria .service-series-head .label {
  color: var(--blue);
}

.service-other .service-series-head .label {
  color: var(--navy);
}

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

.service-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 88% 12%, rgba(255, 216, 77, 0.2), transparent 24%);
  border: 2px solid rgba(22, 33, 62, 0.14);
  border-radius: 24px;
  box-shadow: 8px 10px 0 rgba(16, 39, 92, 0.05);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.service-card-link {
  cursor: pointer;
}

.service-card-link::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 28px;
  height: 28px;
  content: "";
  background:
    linear-gradient(currentColor, currentColor) center / 13px 2px no-repeat,
    linear-gradient(45deg, transparent 45%, currentColor 46% 54%, transparent 55%) 14px 9px / 9px 9px no-repeat;
  color: rgba(16, 39, 92, 0.34);
  border: 1px solid rgba(16, 39, 92, 0.16);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.24s ease, transform 0.24s var(--ease-out);
}

.service-card-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.service-redpl .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 88% 12%, rgba(255, 95, 109, 0.13), transparent 24%),
    radial-gradient(circle at 14% 92%, rgba(36, 217, 180, 0.1), transparent 20%);
}

.service-tsunaria .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 88% 12%, rgba(76, 141, 255, 0.13), transparent 24%),
    radial-gradient(circle at 14% 92%, rgba(154, 124, 255, 0.1), transparent 20%);
}

.service-redpl .service-card .pill {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--mint));
}

.service-tsunaria .service-card .pill {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.service-other .service-card .pill {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.service-card:hover {
  box-shadow: 14px 16px 0 rgba(16, 39, 92, 0.08);
  transform: translate(-4px, -5px);
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.owned-site {
  margin-top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 33, 62, 0.12);
  border-radius: 18px;
}

.owned-site strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
}

.owned-site-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-top: 6px;
}

.owned-site p {
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.75;
}

.owned-site a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 11px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(36, 217, 180, 0.16);
  border: 1px solid rgba(16, 39, 92, 0.12);
  border-radius: 999px;
  text-decoration: none;
}

.service-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, var(--navy), var(--blue), var(--purple));
  border-radius: 28px;
}

.service-page-cta p {
  max-width: 42em;
  margin: 0;
  font-weight: 800;
}

.section {
  position: relative;
  overflow: visible;
  padding: 112px 0;
  background: transparent;
}

.section + .section {
  margin-top: -76px;
  padding-top: 156px;
}

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

.product-suite > .container::before,
.services > .container::before,
.news > .container::before,
.company > .container::before {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.product-suite > .container::before {
  top: -46px;
  right: clamp(12px, 8vw, 120px);
  width: 118px;
  height: 118px;
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.42), rgba(255, 143, 199, 0.24));
  border-radius: 34% 66% 45% 55% / 45% 38% 62% 55%;
  opacity: 0.68;
  transform: rotate(12deg);
}

.services > .container::before {
  bottom: -34px;
  left: clamp(16px, 10vw, 140px);
  width: 190px;
  height: 46px;
  background: linear-gradient(90deg, rgba(255, 95, 109, 0.22), rgba(36, 217, 180, 0.26), rgba(76, 141, 255, 0.18));
  border-radius: 999px;
  opacity: 0.58;
  transform: rotate(-8deg);
}

.news > .container::before {
  top: -24px;
  right: clamp(24px, 7vw, 110px);
  width: 96px;
  height: 96px;
  background:
    linear-gradient(90deg, rgba(76, 141, 255, 0.22) 0 28%, transparent 28% 42%, rgba(36, 217, 180, 0.28) 42% 70%, transparent 70%),
    linear-gradient(rgba(255, 95, 109, 0.22), rgba(255, 95, 109, 0.22));
  border-radius: 50%;
  opacity: 0.42;
  transform: rotate(24deg);
}

.news::before {
  position: absolute;
  right: -18vw;
  bottom: -230px;
  z-index: 0;
  width: 122vw;
  height: 420px;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 216, 77, 0.2), transparent 30%),
    radial-gradient(circle at 58% 44%, rgba(36, 217, 180, 0.18), transparent 34%),
    radial-gradient(circle at 82% 54%, rgba(76, 141, 255, 0.16), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 8%, rgba(255, 251, 232, 0.78) 30%, rgba(232, 255, 246, 0.72) 62%, rgba(241, 247, 255, 0.64) 82%, rgba(255, 255, 255, 0) 94%);
  border-radius: 50% 50% 44% 56% / 45% 52% 48% 55%;
  opacity: 0.88;
  transform: rotate(-3deg);
}

.company > .container::before {
  top: 18px;
  left: clamp(20px, 9vw, 132px);
  width: 132px;
  height: 132px;
  background:
    radial-gradient(circle at 58% 58%, rgba(255, 255, 255, 0.86), transparent 26%),
    conic-gradient(from 30deg, rgba(36, 217, 180, 0.2), rgba(76, 141, 255, 0.18), rgba(255, 216, 77, 0.22), rgba(36, 217, 180, 0.2));
  border-radius: 999px;
  opacity: 0.38;
}

.section-ink {
  position: absolute;
  z-index: 0;
  width: min(680px, 56vw);
  pointer-events: none;
  filter: invert(13%) sepia(20%) saturate(1800%) hue-rotate(188deg) brightness(72%) contrast(94%);
  mix-blend-mode: multiply;
  opacity: 0.23;
}

.about-ink {
  right: clamp(-90px, 1vw, 36px);
  bottom: -150px;
  opacity: 0.2;
  transform: rotate(-6deg) scale(1.18);
}

.products-ink {
  left: clamp(-110px, -2vw, 24px);
  bottom: -150px;
  opacity: 0.18;
  transform: rotate(4deg) scale(1.22);
}

.services-ink {
  top: auto;
  left: clamp(-120px, -2vw, 22px);
  bottom: -150px;
  opacity: 0.2;
  transform: rotate(-3deg) scale(1.24);
}

.giveback-ink {
  right: clamp(-110px, 0vw, 40px);
  bottom: -150px;
  opacity: 0.18;
  transform: rotate(6deg) scale(1.22);
}

.section-motion::before {
  position: absolute;
  top: 22px;
  right: -116px;
  width: 260px;
  height: 260px;
  content: "";
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.28), rgba(255, 143, 199, 0.2));
  border-radius: 45% 55% 60% 40%;
  filter: blur(0.4px);
  opacity: 0.42;
  animation: sectionOrb 12s ease-in-out infinite;
  transition: transform 0.9s var(--ease-out), opacity 0.9s ease;
}

.section-motion.is-active::before {
  opacity: 0.58;
  transform: translateY(26px) scale(1.12) rotate(12deg);
}

.section-motion::after {
  position: absolute;
  bottom: -118px;
  left: -18vw;
  width: 118vw;
  height: 300px;
  content: "";
  background:
    radial-gradient(circle at 18% 42%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(105deg, rgba(255, 255, 255, 0) 4%, rgba(255, 247, 222, 0.54) 26%, rgba(232, 255, 246, 0.5) 58%, rgba(241, 247, 255, 0.46) 78%, rgba(255, 255, 255, 0) 96%);
  border-radius: 50% 50% 42% 58% / 46% 54% 44% 56%;
  opacity: 0.72;
  transform: rotate(-3deg);
}

.product-suite.section-motion::after {
  right: -18vw;
  left: auto;
  background:
    radial-gradient(circle at 78% 42%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(112deg, rgba(255, 255, 255, 0) 4%, rgba(232, 255, 246, 0.56) 26%, rgba(239, 247, 255, 0.6) 60%, rgba(255, 239, 245, 0.38) 82%, rgba(255, 255, 255, 0) 96%);
  transform: rotate(4deg);
}

.strength.section-motion::after {
  height: 330px;
  background:
    radial-gradient(circle at 18% 44%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(105deg, rgba(255, 255, 255, 0) 4%, rgba(244, 239, 255, 0.58) 28%, rgba(255, 250, 229, 0.56) 60%, rgba(232, 255, 246, 0.34) 82%, rgba(255, 255, 255, 0) 96%);
}

.services.section-motion::after {
  right: -20vw;
  left: auto;
  height: 360px;
  background:
    radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(110deg, rgba(255, 255, 255, 0) 4%, rgba(236, 246, 255, 0.68) 28%, rgba(232, 255, 246, 0.62) 62%, rgba(255, 250, 228, 0.42) 84%, rgba(255, 255, 255, 0) 96%);
  transform: rotate(5deg);
}

.giveback.section-motion::after {
  bottom: -136px;
  height: 340px;
  background:
    radial-gradient(circle at 22% 48%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(108deg, rgba(255, 255, 255, 0) 4%, rgba(232, 255, 246, 0.64) 28%, rgba(239, 247, 255, 0.58) 64%, rgba(255, 239, 245, 0.34) 84%, rgba(255, 255, 255, 0) 96%);
}

.about,
.product-suite,
.strength,
.services,
.news,
.company {
  background: transparent;
}

.about.section-motion::before {
  right: -120px;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.86), transparent 28%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.34), rgba(255, 143, 199, 0.24));
}

.product-suite.section-motion::before {
  top: 18px;
  right: auto;
  left: -146px;
  width: 300px;
  height: 300px;
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(36, 217, 180, 0.28), rgba(76, 141, 255, 0.24));
  border-radius: 54% 46% 38% 62% / 48% 42% 58% 52%;
}

.strength.section-motion::before {
  right: -146px;
  width: 320px;
  height: 320px;
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(135deg, rgba(154, 124, 255, 0.25), rgba(255, 216, 77, 0.25));
}

.services.section-motion::before {
  top: 58px;
  right: -170px;
  width: 360px;
  height: 360px;
  background:
    radial-gradient(circle at 38% 32%, rgba(255, 255, 255, 0.82), transparent 28%),
    linear-gradient(135deg, rgba(76, 141, 255, 0.26), rgba(36, 217, 180, 0.28));
  border-radius: 46% 54% 62% 38% / 56% 42% 58% 44%;
}

.news.section-motion::before {
  top: 12px;
  right: auto;
  left: -150px;
  width: 300px;
  height: 300px;
  background:
    radial-gradient(circle at 58% 34%, rgba(255, 255, 255, 0.82), transparent 30%),
    linear-gradient(135deg, rgba(255, 95, 109, 0.24), rgba(255, 216, 77, 0.3));
}

.giveback.section-motion::before {
  top: 30px;
  right: -188px;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle at 36% 36%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(36, 217, 180, 0.28), rgba(76, 141, 255, 0.24), rgba(154, 124, 255, 0.24));
}

.company.section-motion::before,
.contact.section-motion::before {
  opacity: 0.24;
  background:
    radial-gradient(circle at 44% 34%, rgba(255, 255, 255, 0.78), transparent 30%),
    linear-gradient(135deg, rgba(255, 216, 77, 0.2), rgba(36, 217, 180, 0.16));
}

.about {
  z-index: 3;
  margin-top: 0;
  padding: 112px 0 96px;
  border-radius: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 216, 77, 0.18), transparent 24%),
    radial-gradient(circle at 8% 14%, rgba(36, 217, 180, 0.12), transparent 26%),
    linear-gradient(180deg, #f2fbff 0%, #ffffff 58%, rgba(255, 255, 255, 0) 100%);
  box-shadow: none;
}

.about::before {
  top: 36px;
  right: -96px;
  width: 150px;
  height: 150px;
  opacity: 0.22;
}

.about::after {
  opacity: 0.045;
}

.about-inner {
  display: grid;
  gap: 30px;
  justify-items: center;
  max-width: 860px;
  text-align: center;
}

.about-heading {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.about-heading h2 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}

.copy-block p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 44em;
}

.about-copy {
  max-width: 720px;
}

.about-copy p {
  margin: 0 auto 16px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 2;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-copy span {
  display: block;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.center-heading p:not(.label) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-lead span {
  display: block;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 54px;
  padding: 42px;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 95, 109, 0.18), transparent 22%),
    radial-gradient(circle at 85% 82%, rgba(255, 216, 77, 0.36), transparent 26%),
    var(--white);
  border: 2px solid rgba(22, 33, 62, 0.18);
  border-radius: 36px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.feature-row:hover {
  box-shadow: 16px 16px 0 rgba(255, 95, 109, 0.32);
  transform: translate(-5px, -5px) rotate(-0.3deg);
}

.feature-row.reverse {
  direction: rtl;
  background:
    radial-gradient(circle at 14% 80%, rgba(36, 217, 180, 0.24), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(76, 141, 255, 0.18), transparent 24%),
    var(--white);
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-image {
  min-height: 380px;
}

.blank-motion {
  position: absolute;
  inset: 38px;
  border: 2px solid rgba(22, 33, 62, 0.78);
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(17, 17, 17, 0.12) 49% 51%, transparent 51%),
    linear-gradient(var(--red), var(--red)) 22% 28% / 34% 14px no-repeat,
    linear-gradient(var(--black), var(--black)) 22% 42% / 56% 10px no-repeat,
    linear-gradient(var(--black), var(--black)) 22% 53% / 44% 10px no-repeat,
    var(--white);
  animation: panelPop 4.4s ease-in-out infinite;
}

.mint-motion {
  background:
    linear-gradient(90deg, transparent 49%, rgba(17, 17, 17, 0.12) 49% 51%, transparent 51%),
    linear-gradient(var(--mint), var(--mint)) 22% 28% / 34% 14px no-repeat,
    linear-gradient(var(--black), var(--black)) 22% 42% / 56% 10px no-repeat,
    linear-gradient(var(--black), var(--black)) 22% 53% / 44% 10px no-repeat,
    var(--white);
}

.blue-motion {
  background:
    radial-gradient(circle at 30% 40%, var(--blue) 0 12px, transparent 13px),
    radial-gradient(circle at 62% 56%, var(--purple) 0 16px, transparent 17px),
    radial-gradient(circle at 45% 68%, var(--mint) 0 10px, transparent 11px),
    var(--white);
  animation: mapPulse 4s ease-in-out infinite;
}

.service-visual-collage {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.08fr;
  gap: 18px;
  margin-top: 34px;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 95, 109, 0.12), transparent 24%),
    radial-gradient(circle at 92% 12%, rgba(255, 216, 77, 0.22), transparent 26%),
    radial-gradient(circle at 18% 92%, rgba(36, 217, 180, 0.13), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.82));
  border: 1px solid rgba(22, 33, 62, 0.12);
  border-radius: 30px;
  box-shadow: 16px 18px 0 rgba(76, 141, 255, 0.06);
}

.service-visual-collage::before {
  position: absolute;
  right: -54px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(142, 108, 255, 0.14), rgba(36, 217, 180, 0.16));
  border-radius: 999px;
}

.service-visual-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 152px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(247, 251, 255, 0.44)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(22, 33, 62, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(16, 39, 92, 0.06);
}

.service-visual-card img {
  display: block;
  width: 94%;
  height: 94%;
  min-height: 152px;
  object-fit: contain;
  filter: invert(12%) sepia(20%) saturate(1500%) hue-rotate(188deg) brightness(78%) contrast(94%);
  mix-blend-mode: multiply;
  opacity: 0.58;
}

.service-visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 39, 92, 0.07));
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.visual-product {
  grid-row: span 2;
}

.visual-product img {
  min-height: 322px;
  opacity: 0.5;
}

.visual-development {
  transform: translateY(8px);
}

.visual-system {
  transform: translateY(-2px);
}

.feature-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 37em;
}

.pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  border-radius: 999px;
}

.pill.red {
  background: var(--red);
}

.pill.mint {
  color: var(--black);
  background: var(--mint);
}

.pill.blue {
  background: var(--blue);
}

.pill.purple {
  background: var(--purple);
}

.pill.navy {
  background: var(--navy);
}

.mini-products,
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.mini-products article,
.cards article,
.service-list article {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 18% 10%, rgba(255, 216, 77, 0.24), transparent 22%);
  border: 2px solid rgba(22, 33, 62, 0.16);
  border-radius: 24px;
  box-shadow: 8px 8px 0 rgba(255, 216, 77, 0.56);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.mini-products article:nth-child(2),
.cards article:nth-child(2),
.service-list article:nth-child(2) {
  box-shadow: 8px 8px 0 rgba(36, 217, 180, 0.42);
}

.mini-products article:nth-child(3),
.cards article:nth-child(3),
.service-list article:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(154, 124, 255, 0.36);
}

.mini-products article:hover,
.cards article:hover,
.service-list article:hover {
  box-shadow: 12px 12px 0 rgba(76, 141, 255, 0.34);
  transform: translate(-5px, -5px) rotate(-0.5deg);
}

.mini-products p,
.cards p,
.service-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cards span,
.service-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 900;
}

.service-title-row {
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.service-title-row span {
  flex: 0 0 auto;
  margin-bottom: 0;
  line-height: 1;
}

.service-title-row h3 {
  min-width: 0;
  line-height: 1.35;
}

.side-blank {
  min-height: 320px;
  margin-top: 30px;
}

.service-list {
  display: grid;
  gap: 22px;
}

.service-more {
  width: fit-content;
  margin-top: 24px;
}

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

.text-link {
  color: var(--black);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--mint);
  text-underline-offset: 6px;
}

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

.news-list article,
.news-row {
  display: grid;
  grid-template-columns: 130px 90px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(44, 64, 100, 0.06);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s var(--ease-out);
}

.news-list article:hover,
.news-row:hover {
  background: rgba(255, 251, 224, 0.92);
  box-shadow: 0 18px 42px rgba(44, 64, 100, 0.1);
  transform: translateY(-2px);
}

.news-list time,
.news-row time {
  font-weight: 900;
}

.news-list span,
.news-row span {
  display: inline-flex;
  justify-content: center;
  padding: 4px 10px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 999px;
}

.news-list p,
.news-row p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.news-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 216, 77, 0.42), transparent 24%),
    radial-gradient(circle at 88% 26%, rgba(76, 141, 255, 0.2), transparent 26%),
    radial-gradient(circle at 74% 84%, rgba(36, 217, 180, 0.18), transparent 24%),
    linear-gradient(180deg, var(--white), #f8fbff);
}

.news-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.news-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(28px) rotate(-1deg);
  animation: titleIn 0.95s var(--ease-out) forwards;
}

.news-hero h1 span:nth-child(2) {
  animation-delay: 0.16s;
}

.news-hero p:not(.label) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 700;
}

.news-archive {
  background:
    radial-gradient(circle at 8% 24%, rgba(255, 143, 199, 0.1), transparent 24%),
    radial-gradient(circle at 94% 78%, rgba(154, 124, 255, 0.14), transparent 26%),
    var(--white);
}

.archive-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 48px;
  align-items: start;
}

.archive-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}

.archive-side h2 {
  white-space: nowrap;
}

.archive-side p:not(.label) {
  margin: 0;
  color: var(--muted);
}

.archive-side .button {
  width: fit-content;
}

.archive-list {
  display: grid;
  gap: 24px;
}

.archive-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(200px, 0.48fr) 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 90% 18%, rgba(255, 216, 77, 0.22), transparent 24%);
  border: 2px solid rgba(22, 33, 62, 0.14);
  border-radius: 30px;
  box-shadow: 10px 10px 0 rgba(76, 141, 255, 0.18);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.archive-card:hover {
  box-shadow: 16px 18px 0 rgba(36, 217, 180, 0.22);
  transform: translate(-6px, -8px) rotate(-0.3deg);
}

.archive-card::before {
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 95, 109, 0.18), rgba(154, 124, 255, 0.18));
  border-radius: 45% 55% 60% 40%;
  animation: sectionOrb 12s ease-in-out infinite;
}

.archive-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.archive-meta time {
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 900;
}

.archive-meta span {
  display: inline-flex;
  width: fit-content;
  justify-content: center;
  padding: 5px 12px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 999px;
}

.archive-thumb {
  z-index: 1;
  min-height: 210px;
  border-radius: 24px;
}

.archive-content {
  position: relative;
  z-index: 1;
}

.archive-content.full-width {
  grid-column: 2 / -1;
}

.archive-content p {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 216, 77, 0.24), transparent 24%),
    radial-gradient(circle at 92% 30%, rgba(76, 141, 255, 0.12), transparent 24%),
    var(--white);
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 70px;
  background:
    radial-gradient(circle at 18% 24%, rgba(36, 217, 180, 0.2), transparent 24%),
    radial-gradient(circle at 78% 72%, rgba(154, 124, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #ffffff, #f8fbff);
}

.article-hero-inner {
  max-width: 900px;
}

.back-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: rgba(36, 217, 180, 0.55);
  text-underline-offset: 6px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.article-meta time {
  color: var(--navy);
  font-weight: 900;
}

.article-meta span {
  display: inline-flex;
  padding: 4px 12px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--red), var(--purple));
  border-radius: 999px;
}

.article-hero h1 {
  max-width: 12em;
  font-size: clamp(2.3rem, 5.4vw, 4.8rem);
}

.article-hero p {
  max-width: 46em;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 700;
}

.article-body-section {
  padding-top: 76px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: 54px;
  align-items: start;
}

.article-visual {
  position: sticky;
  top: 96px;
  min-height: 420px;
}

.article-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid rgba(22, 33, 62, 0.14);
  border-radius: 28px;
  box-shadow: 12px 12px 0 rgba(36, 217, 180, 0.26), var(--shadow);
}

.article-photo img,
.archive-photo-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-photo-thumb {
  overflow: hidden;
  min-height: 180px;
  background: var(--white);
  border: 2px solid rgba(22, 33, 62, 0.12);
  border-radius: 22px;
}

.article-body {
  max-width: 720px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid rgba(22, 33, 62, 0.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.article-body p {
  margin: 0 0 1.35em;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.35vw, 1.12rem);
  line-height: 2;
}

.article-body p:last-of-type {
  margin-bottom: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.giveback {
  background:
    linear-gradient(180deg, rgba(232, 255, 246, 0.42) 0%, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 8% 18%, rgba(36, 217, 180, 0.16), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(76, 141, 255, 0.13), transparent 26%),
    radial-gradient(circle at 74% 82%, rgba(154, 124, 255, 0.13), transparent 28%);
}

.giveback::before {
  background: linear-gradient(135deg, var(--mint), var(--blue), var(--purple));
}

.giveback-hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 64px;
  align-items: start;
}

.giveback-title span {
  display: block;
  white-space: nowrap;
}

.giveback-copy {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 2px solid rgba(22, 33, 62, 0.12);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.giveback-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.giveback-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 85% 10%, rgba(36, 217, 180, 0.2), transparent 25%);
  border: 2px solid rgba(22, 33, 62, 0.14);
  border-radius: 30px;
  box-shadow: 8px 8px 0 rgba(36, 217, 180, 0.32);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.32s ease;
}

.giveback-card:nth-child(2) {
  box-shadow: 8px 8px 0 rgba(76, 141, 255, 0.28);
}

.giveback-card:nth-child(3) {
  box-shadow: 8px 8px 0 rgba(154, 124, 255, 0.28);
}

.giveback-card:nth-child(4) {
  box-shadow: 8px 8px 0 rgba(255, 95, 109, 0.24);
}

.giveback-card:hover {
  border-color: rgba(22, 33, 62, 0.28);
  box-shadow: 16px 18px 0 rgba(16, 39, 92, 0.13);
  transform: translate(-7px, -9px) rotate(-0.6deg);
}

.giveback-card::after {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 128px;
  height: 128px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.44), rgba(255, 143, 199, 0.32));
  border-radius: 45% 55% 50% 50%;
  animation: sectionOrb 10s ease-in-out infinite;
}

.giveback-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(22, 33, 62, 0.18);
  border-radius: 22px;
  box-shadow: 6px 7px 0 rgba(255, 216, 77, 0.58);
  transition: transform 0.32s var(--ease-out);
}

.giveback-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.giveback-icon.heart {
  color: var(--red);
}

.giveback-icon.tree {
  color: var(--mint);
}

.giveback-icon.globe {
  color: var(--blue);
}

.giveback-icon.people {
  color: var(--purple);
}

.giveback-card:hover .giveback-icon {
  transform: translateY(-8px) rotate(-8deg) scale(1.08);
  animation: iconWiggle 0.68s var(--ease-out);
}

.giveback-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 1.45rem;
  font-weight: 900;
}

.giveback-card h3,
.giveback-card p {
  position: relative;
  z-index: 1;
}

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

.giveback-message {
  display: grid;
  grid-template-columns: minmax(240px, 0.28fr) 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 42px;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--purple));
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.giveback-message p {
  margin: 0;
}

.hub-word {
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.company-table {
  margin: 0;
  background: var(--white);
  border: 2px solid rgba(22, 33, 62, 0.16);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 14px 14px 0 rgba(36, 217, 180, 0.22);
}

.company-table div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.company-table div:last-child {
  border-bottom: 0;
}

.company-table dt {
  color: var(--muted);
  font-weight: 900;
}

.company-table dd {
  margin: 0;
  color: var(--black);
  font-weight: 800;
}

.contact {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 216, 77, 0.13), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(255, 143, 199, 0.1), transparent 24%);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 2px solid rgba(22, 33, 62, 0.16);
  border-radius: 28px;
  box-shadow: 12px 12px 0 rgba(255, 216, 77, 0.54), var(--shadow);
}

.contact-form:focus-within {
  box-shadow: 16px 16px 0 rgba(76, 141, 255, 0.26), var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--black);
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: var(--pale);
}

.contact-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.agree {
  display: flex !important;
  align-items: center;
}

.agree input {
  width: 18px;
  min-height: 18px;
}

.agree a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.formspree-message {
  display: none;
  max-width: 860px;
  margin: 0 auto 18px;
  padding: 14px 16px;
  font-weight: 900;
  color: #0f604f;
  background: rgba(36, 217, 180, 0.16);
  border: 2px solid rgba(36, 217, 180, 0.42);
  border-radius: 14px;
}

.formspree-message-error {
  color: #9f2132;
  background: rgba(255, 95, 109, 0.13);
  border: 2px solid rgba(255, 95, 109, 0.34);
}

.formspree-message.is-visible {
  display: block;
}

.contact-complete {
  max-width: 760px;
  margin: 0 auto;
  padding: 42px;
  background: var(--white);
  border: 2px solid rgba(36, 217, 180, 0.3);
  border-radius: 28px;
  box-shadow: 12px 12px 0 rgba(36, 217, 180, 0.18), var(--shadow);
  text-align: center;
}

.contact-complete[hidden],
.contact-modal[hidden] {
  display: none;
}

.contact-complete h3,
.contact-modal-panel h3 {
  margin: 8px 0 14px;
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.25;
}

.contact-complete p:not(.label),
.contact-modal-panel p:not(.label) {
  margin: 0 auto 24px;
  max-width: 560px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.9;
}

.contact-complete .form-actions,
.contact-modal-panel .form-actions {
  justify-content: center;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 39, 92, 0.48);
  backdrop-filter: blur(8px);
}

.contact-modal-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(82vh, 760px);
  overflow: auto;
  padding: 34px;
  background: rgba(255, 255, 255, 0.98);
  border: 2px solid rgba(22, 33, 62, 0.14);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(16, 39, 92, 0.25);
}

.confirm-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 33, 62, 0.12);
}

.confirm-list dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.confirm-list dd {
  margin: 0;
  color: var(--black);
  font-weight: 900;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

[aria-invalid="true"] {
  border-color: rgba(255, 95, 109, 0.72) !important;
  background: rgba(255, 95, 109, 0.06) !important;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.footer {
  padding: 42px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, var(--red), var(--yellow), var(--mint), var(--blue), var(--purple)) top / 100% 6px no-repeat,
    var(--navy);
}

.footer-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  font-weight: 800;
}

.policy-hero {
  min-height: auto;
  padding-top: 148px;
}

.policy-date {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px !important;
  padding: 8px 14px;
  color: var(--navy) !important;
  background: rgba(255, 230, 109, 0.65);
  border: 2px solid rgba(22, 33, 62, 0.15);
  border-radius: 999px;
  font-size: 0.92rem !important;
  font-weight: 900;
}

.policy-wrap {
  padding-top: 24px;
}

.policy-body {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 100% 0%, rgba(36, 217, 180, 0.12), transparent 34%),
    radial-gradient(circle at 0% 8%, rgba(255, 95, 109, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.94);
  border: 2px solid rgba(22, 33, 62, 0.12);
  border-radius: 30px;
  box-shadow: 16px 16px 0 rgba(36, 217, 180, 0.12), var(--shadow);
}

.policy-body h2 {
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(1.9rem, 3.3vw, 3rem);
  line-height: 1.25;
}

.policy-body p,
.policy-body li,
.policy-body address {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.95;
}

.policy-body p {
  margin: 0 0 16px;
}

.policy-block {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(22, 33, 62, 0.12);
}

.policy-block h3 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.policy-block h4 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.policy-body ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 1.2em;
}

.policy-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.policy-body address {
  font-style: normal;
}

.policy-supplement {
  padding: 22px;
  background: rgba(247, 250, 255, 0.86);
  border: 1px solid rgba(22, 33, 62, 0.1);
  border-radius: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.stagger .reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 0.36s;
}

@keyframes fieldGridIn {
  to {
    opacity: 0.54;
  }
}

@keyframes fieldGridDrift {
  from {
    background-position: center;
  }
  to {
    background-position: calc(50% + 74px) calc(50% + 74px);
  }
}

@keyframes fieldGlowIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.78) rotate(-8deg);
  }
  100% {
    opacity: 0.86;
    transform: translateY(0) scale(1) rotate(4deg);
  }
}

@keyframes fieldGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(4deg);
  }
  50% {
    transform: translate3d(24px, -30px, 0) scale(1.08) rotate(-6deg);
  }
}

@keyframes orbAppear {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.72);
  }
  100% {
    opacity: 0.72;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.06);
  }
}

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

@keyframes connectionPathIn {
  to {
    opacity: 1;
  }
}

@keyframes connectionPathFlow {
  to {
    stroke-dashoffset: -260;
  }
}

@keyframes fieldNodeIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.52);
  }
  72% {
    opacity: 1;
    transform: translateY(-5px) scale(1.12);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fieldNodeFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(14px, -18px, 0) rotate(3deg);
  }
}

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

@keyframes nodePulseRing {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.18);
  }
}

@keyframes signalTravel {
  0% {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0) scale(0.6);
  }
  18%,
  68% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: translate3d(92px, -58px, 0) scale(1.22);
  }
}

@keyframes heroStatementIn {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes keywordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes keywordFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes titleIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes heroGradientWake {
  from {
    filter: saturate(0.8);
    background-position: 50% 42%, 58% 44%, 45% 60%, 52% 56%, 0 0;
  }
  to {
    filter: saturate(1);
    background-position: 50% 50%, 50% 50%, 50% 50%, 50% 50%, 0 0;
  }
}

@keyframes heroGradientDrift {
  0% {
    background-position: 48% 48%, 52% 46%, 50% 52%, 46% 54%, 0 0;
  }
  50% {
    background-position: 54% 52%, 46% 54%, 55% 47%, 52% 48%, 0 0;
  }
  100% {
    background-position: 46% 54%, 56% 48%, 48% 55%, 54% 52%, 0 0;
  }
}

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

@keyframes heroShapeEnter {
  to {
    opacity: 0.78;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes heroTextItemEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroVisualEnter {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.94) rotate(-1deg);
  }
  70% {
    opacity: 1;
    transform: translateY(-5px) scale(1.015) rotate(0.4deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes coreReveal {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }
  72% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cardPop {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.86);
  }
  72% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sparkleEnter {
  to {
    opacity: 0.5;
  }
}

@keyframes flowLineIn {
  to {
    opacity: 1;
  }
}

@keyframes flowDash {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes hubCoreIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.82) rotate(-4deg);
  }
  72% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

@keyframes hubBreathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.035) rotate(1.2deg);
  }
}

@keyframes hubNodeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hubNodeFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }
}

@keyframes pulseMove {
  0% {
    opacity: 0;
    transform: translate3d(-8px, 8px, 0) scale(0.72);
  }
  18%,
  72% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: translate3d(44px, -34px, 0) scale(1.15);
  }
}

@keyframes introBlob {
  0% {
    opacity: 0;
    transform: scale(0.55) rotate(-18deg);
  }
  42% {
    opacity: 0.86;
  }
  100% {
    opacity: 0.78;
    transform: scale(1) rotate(8deg);
  }
}

@keyframes introText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introTitle {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.94);
  }
  72% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introLine {
  to {
    transform: translateX(0);
  }
}

@keyframes dotDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 96px 48px;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(16px, -22px, 0) rotate(7deg);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes coreBreathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes cardOrbit {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -12px) rotate(3deg);
  }
}

@keyframes shimmer {
  0%,
  45% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes scrollCue {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

@keyframes sectionOrb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(44px) scale(0.86);
  }
}

@keyframes panelPop {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes mapPulse {
  0%,
  100% {
    transform: scale(1);
    filter: saturate(1);
  }
  50% {
    transform: scale(1.035);
    filter: saturate(1.35);
  }
}

@keyframes brandPulse {
  0%,
  100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0.72);
  }
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(18px, -26px, 0) scale(1.35) rotate(120deg);
  }
}

@keyframes confettiSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes iconWiggle {
  0%,
  100% {
    transform: translateY(-8px) rotate(-8deg) scale(1.08);
  }
  45% {
    transform: translateY(-10px) rotate(8deg) scale(1.12);
  }
}

@media (max-width: 920px) {
  .nav-button {
    display: grid;
    gap: 5px;
    width: 44px;
    padding: 10px;
    cursor: pointer;
  }

  .nav-button span {
    height: 3px;
    background: var(--black);
  }

  .global-nav {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .global-nav a {
    padding: 12px;
  }

  .nav-toggle:checked ~ .global-nav {
    display: flex;
  }

  .hero-inner,
  .product-brands,
  .product-detail-grid,
  .service-series-head,
  .split,
  .archive-layout,
  .article-layout,
  .giveback-hero,
  .giveback-message,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .product-brand {
    min-height: auto;
  }

  .service-card-grid,
  .service-card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-series-head {
    gap: 16px;
  }

  .service-series-head h2 {
    max-width: 100%;
  }

  .hero-inner {
    min-height: auto;
    padding: 56px clamp(22px, 5vw, 48px) 70px;
  }

  .hero-immersive {
    min-height: 100svh;
    padding: 132px clamp(22px, 6vw, 52px) 126px;
  }

  .hero-marquee-bottom {
    bottom: 0;
  }

  .hero-marquee {
    height: 40px;
  }

  .hero-marquee-set {
    gap: 22px;
    font-size: clamp(1.12rem, 3vw, 1.3rem);
  }

  .hero-statement {
    width: min(760px, 100%);
  }

  .hero-statement h1 {
    font-size: clamp(2.25rem, 7.6vw, 3.75rem);
    line-height: 1.12;
  }

  .hero-statement > p:not(.tag) {
    max-width: 620px;
  }

  .hero-static-illustration {
    left: clamp(10px, 3vw, 28px);
    bottom: 26px;
    width: min(680px, 82vw);
    opacity: 0.12;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.35rem, 7.2vw, 3.8rem);
  }

  .hero-copy .hero-phrase {
    white-space: normal;
    text-wrap: balance;
  }

  .product-title-nowrap {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-orbit span {
    opacity: 0.32;
  }

  .hero-visual,
  .feature-image {
    min-height: 340px;
  }

  .hero-visual {
    width: min(100%, 620px);
  }

  .hub-map {
    inset: 18px;
  }

  .hub-node {
    min-width: 100px;
    padding: 11px 13px;
  }

  .hub-node strong {
    font-size: 0.94rem;
  }

  .hub-node span {
    font-size: 0.68rem;
  }

  .service-visual-collage {
    max-width: 620px;
  }

  .archive-side {
    position: static;
  }

  .article-visual {
    position: relative;
    top: auto;
    min-height: 300px;
  }

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

  .archive-content.full-width {
    grid-column: auto;
  }

  .mini-products,
  .cards.three,
  .giveback-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  #top {
    background:
      radial-gradient(circle at 14% 9%, rgba(255, 216, 77, 0.16), transparent 18%),
      radial-gradient(circle at 92% 20%, rgba(76, 141, 255, 0.13), transparent 20%),
      linear-gradient(180deg, #ffffff 0%, #fbfdff 32%, #ffffff 58%, #f9fffc 78%, #ffffff 100%);
  }

  #top::before {
    top: 650px;
    left: -52vw;
    width: 190vw;
    height: 560px;
    opacity: 0.58;
    transform: rotate(-10deg);
  }

  #top::after {
    top: 2360px;
    right: -74vw;
    width: 210vw;
    height: 780px;
    opacity: 0.6;
    transform: rotate(9deg);
  }

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 36px, 1080px);
  }

  .hero-inner {
    width: min(100% - 36px, 1080px);
  }

  .section {
    padding: 64px 0;
    overflow: clip;
  }

  .section + .section {
    margin-top: -32px;
    padding-top: 82px;
  }

  .product-suite > .container::before,
  .services > .container::before,
  .news > .container::before,
  .company > .container::before {
    display: none;
  }

  .section-motion::before {
    width: 190px;
    height: 190px;
    opacity: 0.22;
  }

  .section-motion::after {
    bottom: -72px;
    left: -50vw;
    width: 190vw;
    height: 190px;
    opacity: 0.34;
  }

  .news::before {
    right: -70vw;
    bottom: -150px;
    width: 230vw;
    height: 320px;
    opacity: 0.52;
  }

  .heading-particle {
    font-size: 0.9em;
  }

  .section-ink {
    width: min(360px, 82vw);
    opacity: 0.08;
  }

  .products-ink,
  .giveback-ink {
    display: none;
  }

  .about-ink,
  .services-ink {
    bottom: -70px;
    transform: rotate(-4deg) scale(1);
  }

  .about {
    padding: 54px 0;
  }

  .about-inner {
    gap: 24px;
  }

  .about-heading h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .service-hero {
    padding: 62px 0 44px;
  }

  .service-hero h1 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .service-card-grid,
  .service-card-grid.two {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 6px 6px 0 rgba(16, 39, 92, 0.08);
  }

  .service-series-head h2 {
    white-space: normal;
  }

  .mini-products,
  .cards.three {
    gap: 16px;
    margin-top: 24px;
  }

  .mini-products article,
  .cards article,
  .service-list article,
  .giveback-card {
    padding: 20px;
    border-radius: 18px;
    box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.34);
  }

  .cards article:nth-child(2),
  .service-list article:nth-child(2) {
    box-shadow: 5px 5px 0 rgba(36, 217, 180, 0.3);
  }

  .cards article:nth-child(3),
  .service-list article:nth-child(3) {
    box-shadow: 5px 5px 0 rgba(154, 124, 255, 0.26);
  }

  .cards span,
  .service-list span,
  .giveback-card span {
    margin-bottom: 10px;
    font-size: 1.12rem;
  }

  .cards h3,
  .service-list h3,
  .giveback-card h3 {
    font-size: clamp(1.22rem, 5.8vw, 1.55rem);
    line-height: 1.35;
  }

  .cards p,
  .service-list p,
  .giveback-card p {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .service-title-row {
    gap: 10px;
  }

  .service-title-row span {
    font-size: 1.12rem;
  }

  .service-series-head::after {
    width: 56%;
  }

  .service-page-cta {
    padding: 20px;
    border-radius: 18px;
  }

  .service-visual-collage {
    display: none;
  }

  .giveback-title {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .giveback-cards {
    gap: 16px;
  }

  .giveback-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 16px;
    box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.38);
  }

  .giveback-icon svg {
    width: 28px;
    height: 28px;
  }

  .product-brand,
  .product-detail-grid article {
    padding: 20px;
    border-radius: 18px;
    box-shadow: 6px 6px 0 rgba(16, 39, 92, 0.08);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.2vw, 3rem);
  }

  .hero-immersive {
    min-height: 100svh;
    padding: 112px 18px 112px;
  }

  .hero-immersive::before,
  .hero-immersive::after {
    right: -34vw;
    left: -34vw;
    height: 150px;
    opacity: 0.48;
  }

  .hero-marquee-bottom {
    bottom: 0;
  }

  .hero-marquee {
    height: 38px;
  }

  .hero-marquee-set {
    gap: 18px;
    font-size: 1rem;
    opacity: 1;
  }

  .hero-statement .tag {
    margin-bottom: 16px;
  }

  .hero-statement h1 {
    font-size: clamp(1.82rem, 8.8vw, 2.62rem);
    line-height: 1.14;
  }

  .hero-statement h1 > span {
    display: inline;
  }

  .hero-statement h1 > span + span::before {
    content: "\A";
    white-space: pre;
  }

  .hero-statement > p:not(.tag) {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .hero-lead span {
    display: block;
  }

  .field-glow {
    opacity: 0.5;
  }

  .hero-static-illustration {
    left: -26px;
    bottom: 14px;
    width: 92vw;
    opacity: 0.1;
  }

  .motion-orb {
    opacity: 0.45;
  }

  .about {
    margin-top: 0;
    padding-top: 86px;
    border-radius: 0;
  }

  .orb-a,
  .orb-c,
  .orb-d {
    transform: scale(0.78);
  }

  .hero-visual {
    min-height: 300px;
    box-shadow: 12px 12px 0 rgba(255, 216, 77, 0.58), var(--shadow);
  }

  .device-stage {
    inset: 16px;
  }

  .hub-map {
    inset: 14px;
  }

  .hub-map .hub-core {
    width: min(45%, 170px);
    padding: 16px;
  }

  .hub-node {
    min-width: 86px;
    padding: 9px 10px;
    border-radius: 18px;
  }

  .hub-node strong {
    font-size: 0.82rem;
  }

  .hub-node span {
    font-size: 0.62rem;
  }

  .node-attendance {
    right: 2%;
    bottom: 13%;
  }

  .node-ivr {
    top: 48%;
  }

  .flow-pulse {
    display: none;
  }

  .intro-line {
    right: 24px;
    left: 24px;
  }

  .blob-one {
    left: -34px;
    width: 130px;
    height: 130px;
  }

  .blob-two {
    right: -46px;
    width: 160px;
    height: 160px;
  }

  .hero-orbit span:nth-child(1) {
    right: -20px;
  }

  .hero-orbit span:nth-child(3) {
    display: none;
  }

  .feature-row {
    padding: 20px;
    border-radius: 18px;
  }

  .section-head-row,
  .footer-inner {
    display: grid;
    gap: 20px;
  }

  .news-list article,
  .news-row,
  .company-table div,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .full {
    grid-column: auto;
  }

  .contact-form {
    padding: 20px;
    border-radius: 18px;
    box-shadow: 6px 6px 0 rgba(255, 216, 77, 0.38), var(--shadow);
  }

  .contact-complete,
  .contact-modal-panel {
    padding: 24px;
    border-radius: 20px;
  }

  .contact-modal {
    padding: 16px;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-complete .form-actions,
  .contact-modal-panel .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .article-hero {
    padding: 78px 0 54px;
  }

  .policy-hero {
    padding-top: 112px;
  }

  .policy-body {
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 8px 8px 0 rgba(36, 217, 180, 0.12), var(--shadow);
  }

  .policy-block {
    padding-top: 24px;
    margin-top: 24px;
  }

  .article-body {
    padding: 20px;
    border-radius: 18px;
  }

  .article-actions,
  .article-actions .button {
    width: 100%;
  }

  .giveback-copy,
  .giveback-message,
  .giveback-card {
    border-radius: 18px;
  }

  .giveback-message {
    padding: 20px;
  }

  .footer nav {
    justify-content: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .intro-loader {
    display: none;
  }
}
