:root {
  color-scheme: dark;
  --bg: #050914;
  --surface: #0c1424;
  --surface-2: #101b30;
  --surface-3: #16233a;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f6f8fb;
  --muted: #b0bfd2;
  --accent: #2ec7ff;
  --accent-2: #ff4fd8;
  --accent-3: #ffd166;
  --danger: #ff5f7e;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.48), var(--bg) 42rem),
    radial-gradient(circle at 10% 10%, rgba(46, 199, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 82% 8%, rgba(255, 79, 216, 0.13), transparent 26rem),
    radial-gradient(circle at 78% 48%, rgba(255, 209, 102, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

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

svg {
  fill: currentColor;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 9, 20, 0.88);
  border-bottom: 1px solid rgba(46, 199, 255, 0.18);
  display: flex;
  gap: 28px;
  height: 76px;
  justify-content: space-between;
  left: 0;
  overflow: visible;
  padding: 0 clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
  font-weight: 900;
  height: 100%;
  overflow: hidden;
}

.brand-name {
  background: linear-gradient(135deg, var(--text), #ffb7f0 52%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.brand-logo {
  background: transparent;
  display: block;
  flex: 0 0 auto;
  height: 46px;
  max-height: calc(100% - 18px);
  object-fit: contain;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.nav-links a,
.nav-cta {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--text);
}

.nav-case {
  align-items: center;
  align-self: stretch;
  display: flex;
  position: relative;
}

.nav-case-menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 14, 26, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  min-width: 280px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% - 8px);
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-case:hover .nav-case-menu,
.nav-case:focus-within .nav-case-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-case-menu a {
  border-radius: 8px;
  color: var(--text);
  display: block;
  font-size: 0.88rem;
  line-height: 1.35;
  padding: 10px 12px;
}

.nav-case-menu a:hover {
  background: rgba(46, 199, 255, 0.1);
}

.nav-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  padding: 10px 16px;
}

.mobile-menu {
  display: none;
  flex: 0 0 auto;
  margin-left: auto;
  position: relative;
  z-index: 20;
}

.mobile-menu > summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  height: 44px;
  justify-content: center;
  list-style: none;
  padding: 0;
  width: 44px;
}

.mobile-menu[open] > summary {
  background: linear-gradient(135deg, rgba(46, 199, 255, 0.22), rgba(255, 79, 216, 0.16));
  border-color: rgba(46, 199, 255, 0.34);
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu > summary span {
  background: var(--text);
  border-radius: 999px;
  display: block;
  height: 2px;
  position: absolute;
  width: 18px;
}

.mobile-menu > summary span:nth-child(1) {
  transform: translateY(-5px);
}

.mobile-menu > summary span:nth-child(2) {
  transform: translateY(0);
}

.mobile-menu > summary span:nth-child(3) {
  transform: translateY(5px);
  width: 18px;
}

.mobile-menu-panel {
  background:
    linear-gradient(180deg, rgba(46, 199, 255, 0.1), rgba(255, 79, 216, 0.055)),
    rgba(7, 12, 23, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  max-height: calc(100vh - 96px);
  min-width: min(330px, calc(100vw - 32px));
  overflow: auto;
  padding: 10px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
}

.mobile-menu-panel a {
  border-radius: 10px;
  color: var(--text);
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 12px 14px;
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.mobile-case-menu {
  border-radius: 10px;
  display: block;
  overflow: hidden;
  width: 100%;
}

.mobile-case-menu summary {
  align-items: center;
  border-radius: 10px;
  box-sizing: border-box;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: space-between;
  line-height: 1.35;
  list-style: none;
  padding: 12px 14px;
  width: 100%;
}

.mobile-case-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-case-menu summary::after {
  content: none;
}

.mobile-case-icon {
  color: var(--accent);
  display: inline-block;
  font-size: 1rem;
  font-weight: 900;
  margin-left: 16px;
}

.mobile-case-menu[open] summary {
  background: rgba(255, 255, 255, 0.07);
}

.mobile-case-menu div {
  display: grid;
  gap: 2px;
  padding: 2px 0 6px;
}

.mobile-case-menu div a {
  color: var(--muted);
  font-size: 0.82rem;
  padding-left: 26px;
}

.hero {
  align-items: center;
  display: flex;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  padding: clamp(62px, 9vw, 132px) clamp(18px, 5vw, 72px) clamp(62px, 9vw, 116px);
  position: relative;
}

.hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.hero::after {
  background:
    radial-gradient(circle at 72% 30%, rgba(46, 199, 255, 0.26), transparent 20rem),
    radial-gradient(circle at 88% 62%, rgba(255, 79, 216, 0.18), transparent 22rem);
  content: "";
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
}

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

.hero-copy {
  max-width: 880px;
}

.hero-graphic {
  bottom: clamp(64px, 8vw, 104px);
  height: min(500px, 64vh);
  opacity: 0.88;
  pointer-events: none;
  position: absolute;
  right: clamp(18px, 3vw, 58px);
  width: min(540px, 42vw);
  z-index: 1;
}

.hero-graphic::before {
  background:
    linear-gradient(120deg, rgba(46, 199, 255, 0.2), rgba(255, 79, 216, 0.08)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  content: "";
  inset: 9% 4% 5% 10%;
  position: absolute;
  transform: rotate(-4deg);
}

.hero-flow-lines {
  color: rgba(182, 238, 255, 0.36);
  filter: drop-shadow(0 0 12px rgba(46, 199, 255, 0.16));
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-flow-lines path {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  stroke-width: 2;
}

.hero-flow-card {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(8, 14, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  position: absolute;
}

.hero-flow-card span {
  align-items: center;
  background: rgba(46, 199, 255, 0.12);
  border: 1px solid rgba(46, 199, 255, 0.25);
  border-radius: 10px;
  color: var(--accent);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.hero-flow-card span svg {
  height: 18px;
  width: 18px;
}

.hero-flow-card strong {
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-flow-card-main {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.24), rgba(255, 79, 216, 0.18)),
    rgba(7, 12, 23, 0.9);
  left: 50%;
  min-height: 82px;
  padding: 16px 18px;
  top: 48%;
  transform: translate(-50%, -50%);
}

.hero-flow-card-main .hero-flow-icon {
  background: linear-gradient(135deg, rgba(46, 199, 255, 0.24), rgba(255, 79, 216, 0.22));
  height: 46px;
  width: 46px;
}

.hero-flow-icon svg {
  height: 22px;
  width: 22px;
}

.hero-flow-card-main strong {
  font-size: 1rem;
}

.hero-flow-card-a {
  left: 0;
  top: 16%;
}

.hero-flow-card-b {
  right: 3%;
  top: 16%;
}

.hero-flow-card-c {
  bottom: 16%;
  left: 0;
}

.hero-flow-card-d {
  bottom: 15%;
  right: 3%;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  letter-spacing: 0;
  line-height: 1.03;
  margin-bottom: 26px;
  max-width: 720px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  font-size: clamp(1rem, 2vw, 1.22rem);
  max-width: min(690px, 100%);
}

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

.button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03101a;
  box-shadow: 0 14px 34px rgba(46, 199, 255, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--text);
}

.hero-visual {
  max-width: 100%;
  min-height: 560px;
}

.orbit-grid {
  inset: 4% 0 0 8%;
  position: absolute;
}

.orbit-grid span {
  animation: pulse 3.8s ease-in-out infinite;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  box-shadow: 0 0 32px rgba(46, 199, 255, 0.28);
  height: 10px;
  position: absolute;
  width: 10px;
}

.orbit-grid span:nth-child(1) { left: 8%; top: 12%; }
.orbit-grid span:nth-child(2) { animation-delay: 0.4s; left: 78%; top: 18%; }
.orbit-grid span:nth-child(3) { animation-delay: 0.8s; left: 30%; top: 44%; }
.orbit-grid span:nth-child(4) { animation-delay: 1.2s; left: 88%; top: 58%; }
.orbit-grid span:nth-child(5) { animation-delay: 1.6s; left: 14%; top: 78%; }
.orbit-grid span:nth-child(6) { animation-delay: 2s; left: 64%; top: 86%; }

.agent-console {
  background: linear-gradient(180deg, rgba(21, 31, 45, 0.94), rgba(10, 15, 22, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin: 38px 24px 0 0;
  max-width: 100%;
  overflow: hidden;
  padding: 16px;
  position: relative;
  z-index: 2;
}

.console-bar {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 8px;
  margin: -16px -16px 16px;
  padding: 14px 16px;
}

.console-bar span {
  background: #344354;
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.console-bar strong {
  color: var(--muted);
  font-size: 0.82rem;
  margin-left: auto;
}

.console-status {
  align-items: center;
  background: rgba(46, 199, 255, 0.1);
  border: 1px solid rgba(46, 199, 255, 0.24);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 14px;
}

.console-status div {
  align-items: center;
  color: var(--text);
  display: flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 9px;
}

.status-dot {
  animation: glow 1.6s ease-in-out infinite;
  background: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  height: 9px;
  width: 9px;
}

.workflow-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  grid-template-columns: 48px 1fr;
  margin-bottom: 12px;
  padding: 14px;
}

.workflow-card > div:last-child {
  min-width: 0;
}

.workflow-card.active {
  border-color: rgba(46, 199, 255, 0.58);
  box-shadow: 0 0 0 1px rgba(46, 199, 255, 0.12), 0 16px 50px rgba(255, 79, 216, 0.1);
}

.workflow-card strong,
.workflow-card span {
  display: block;
  min-width: 0;
}

.workflow-card span {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.icon-badge {
  align-items: center;
  background: rgba(46, 199, 255, 0.11);
  border-radius: 12px;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.icon-badge svg,
.service-card svg {
  color: var(--accent);
  height: 24px;
  width: 24px;
}

.mini-card {
  background: rgba(10, 15, 22, 0.82);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  padding: 16px 18px;
  position: absolute;
  z-index: 3;
}

.mini-card span,
.mini-card strong {
  display: block;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 7px;
}

.mini-card strong {
  font-size: 1.3rem;
}

.mini-card-one {
  left: 0;
  top: 58%;
}

.mini-card-two {
  bottom: 6%;
  right: 0;
}

.trust-strip {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip div {
  padding: 26px clamp(18px, 5vw, 72px);
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.2rem;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 6px;
}

.section,
.contact {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 790px;
}

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

.service-card,
.case-card,
.process-grid article {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

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

.service-card.featured {
  background: linear-gradient(180deg, rgba(46, 199, 255, 0.12), rgba(255, 79, 216, 0.06));
  border-color: rgba(46, 199, 255, 0.34);
}

.service-card svg {
  margin-bottom: 26px;
}

.split {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(46, 199, 255, 0.1), rgba(255, 79, 216, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
  border-block: 1px solid var(--line);
  display: grid;
  gap: 46px;
  grid-template-columns: 0.85fr 1fr;
}

.agents-intro {
  max-width: 680px;
}

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

.feature-list > div {
  align-items: flex-start;
  background: rgba(5, 9, 20, 0.58);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  gap: 16px;
  min-height: 188px;
  padding: 20px;
}

.feature-icon {
  align-items: center;
  background: rgba(255, 209, 102, 0.14);
  border: 1px solid rgba(255, 209, 102, 0.32);
  border-radius: 12px;
  color: var(--accent-3);
  display: inline-flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.feature-icon svg {
  height: 23px;
  width: 23px;
}

.feature-copy {
  min-width: 0;
}

.feature-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.35;
}

.feature-copy p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 5px;
}

.cases-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    #090d14;
}

.case-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}

.case-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.case-card:hover {
  border-color: rgba(46, 199, 255, 0.36);
  transform: translateY(-2px);
}

.case-card::after {
  background: linear-gradient(135deg, rgba(46, 199, 255, 0.28), rgba(255, 79, 216, 0.16));
  border-radius: 999px;
  content: "";
  height: 86px;
  position: absolute;
  right: -42px;
  top: -44px;
  width: 86px;
}

.case-card span {
  color: var(--text);
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.32;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.case-card p {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.case-card p::after {
  color: var(--accent);
  content: "Read case study";
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: auto;
  padding-top: 18px;
  text-transform: uppercase;
}

.case-hero {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.13), rgba(255, 79, 216, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  position: relative;
}

.case-hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, black, transparent 76%);
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
}

.case-hero > :not(.case-hero-graphic) {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.case-hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 1.02;
  max-width: 720px;
}

.case-hero .hero-text {
  max-width: 680px;
}

.case-hero .button {
  margin-top: 28px;
}

.case-hero-graphic {
  bottom: clamp(24px, 5vw, 54px);
  height: min(360px, 58vh);
  opacity: 0.78;
  pointer-events: none;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  width: min(520px, 42vw);
  z-index: 1;
}

.case-hero-graphic::before {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.16), rgba(255, 79, 216, 0.09)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  content: "";
  inset: 8% 5% 6% 9%;
  position: absolute;
  transform: rotate(-3deg);
}

.case-hero-resort::before {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.18), rgba(255, 209, 102, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.case-hero-operations::before {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.15), rgba(127, 255, 212, 0.08)),
    rgba(255, 255, 255, 0.035);
}

.case-hero-leads::before {
  background:
    linear-gradient(135deg, rgba(255, 79, 216, 0.14), rgba(46, 199, 255, 0.12)),
    rgba(255, 255, 255, 0.035);
}

.case-visual-lines {
  color: rgba(182, 238, 255, 0.34);
  filter: drop-shadow(0 0 12px rgba(46, 199, 255, 0.14));
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.case-visual-lines path {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 8 12;
  stroke-linecap: round;
  stroke-width: 2;
}

.case-visual-card {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(8, 14, 26, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  color: var(--text);
  display: flex;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  position: absolute;
}

.case-visual-card svg {
  background: rgba(46, 199, 255, 0.12);
  border: 1px solid rgba(46, 199, 255, 0.25);
  border-radius: 10px;
  color: var(--accent);
  flex: 0 0 auto;
  height: 34px;
  padding: 8px;
  width: 34px;
}

.case-visual-card strong {
  font-size: 0.86rem;
  line-height: 1.1;
  white-space: nowrap;
}

.case-visual-card-main {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.22), rgba(255, 79, 216, 0.16)),
    rgba(7, 12, 23, 0.9);
  left: 50%;
  min-height: 78px;
  padding: 16px 18px;
  top: 48%;
  transform: translate(-50%, -50%);
}

.case-visual-card-main svg {
  height: 46px;
  padding: 10px;
  width: 46px;
}

.case-visual-card-main strong {
  font-size: 1rem;
}

.case-visual-card-a {
  left: 0;
  top: 13%;
}

.case-visual-card-b {
  right: 4%;
  top: 13%;
}

.case-visual-card-c {
  bottom: 14%;
  left: 4%;
}

.case-detail {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.case-detail h3 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin: 0 0 16px;
}

.case-panel {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.case-panel ul,
.case-panel ol {
  color: var(--muted);
  margin: 0;
  padding-left: 19px;
}

.case-panel li + li {
  margin-top: 10px;
}

.case-panel b {
  color: var(--text);
}

.workflow-flow {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.flow-step {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  position: relative;
}

.flow-step::after {
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  bottom: -16px;
  content: "";
  left: 20px;
  opacity: 0.55;
  position: absolute;
  top: 42px;
  width: 2px;
}

.flow-step:last-child::after {
  display: none;
}

.flow-node {
  align-items: center;
  background: linear-gradient(135deg, rgba(46, 199, 255, 0.26), rgba(255, 79, 216, 0.2));
  border: 1px solid rgba(46, 199, 255, 0.36);
  border-radius: 999px;
  color: var(--text);
  display: flex;
  font-size: 0.82rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
  z-index: 1;
}

.flow-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.flow-card span {
  color: var(--accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.flow-card p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.case-kpi-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.case-kpi {
  background: rgba(46, 199, 255, 0.08);
  border: 1px solid rgba(46, 199, 255, 0.22);
  border-radius: 12px;
  padding: 18px;
}

.case-kpi span {
  color: var(--accent);
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.case-kpi p {
  color: var(--text);
  font-weight: 800;
  margin: 0;
}

.training-band {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.training-band p {
  max-width: 760px;
}

.process-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}

.process-grid span {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.18), rgba(255, 79, 216, 0.14)),
    var(--surface-3);
  border: 1px solid rgba(46, 199, 255, 0.28);
  border-radius: 50%;
  color: var(--accent);
  display: flex;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 22px;
  width: 46px;
}

.process-grid span svg {
  height: 23px;
  width: 23px;
}

.process-grid strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.faq-section {
  background:
    linear-gradient(135deg, rgba(46, 199, 255, 0.075), transparent 38%),
    linear-gradient(180deg, rgba(255, 79, 216, 0.045), rgba(255, 209, 102, 0.018)),
    rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.faq-section::before {
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  opacity: 0.35;
  pointer-events: none;
  position: absolute;
}

.faq-section > * {
  position: relative;
}

.faq-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 34px;
}

.faq-grid details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-grid details::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0.72;
  position: absolute;
  right: 0;
  top: 0;
}

.faq-grid details[open] {
  border-color: rgba(255, 79, 216, 0.36);
  background:
    linear-gradient(180deg, rgba(255, 79, 216, 0.1), rgba(46, 199, 255, 0.04)),
    var(--surface);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.faq-grid summary {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  gap: 16px;
  justify-content: space-between;
  line-height: 1.35;
  list-style: none;
  min-height: 82px;
  padding: 20px 18px 16px;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  content: "+";
  display: flex;
  flex: 0 0 28px;
  font-size: 1.12rem;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.faq-grid details[open] summary::after {
  content: "-";
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 20px;
}

.contact {
  align-items: start;
  background: #0b1018;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr minmax(320px, 430px);
}

.contact > *,
.split > *,
.service-card,
.case-card,
.process-grid article {
  min-width: 0;
}

.contact-card {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(46, 199, 255, 0.12), rgba(255, 79, 216, 0.06)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 22px;
}

.contact-card strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.25;
}

.contact-card .button {
  justify-self: start;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 72px);
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 900;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.34;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.55);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(46, 199, 255, 0.38);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(46, 199, 255, 0);
  }
}

@media (max-width: 1100px) {
  .case-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .site-header {
    align-content: center;
    flex-wrap: nowrap;
    gap: 16px;
    height: 76px;
    justify-content: space-between;
    min-height: 76px;
    padding-block: 0;
  }

  .brand {
    flex: 0 1 auto;
    justify-content: flex-start;
    margin-right: 0;
    min-width: 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: 0;
    position: relative;
    right: auto;
    top: auto;
  }

  .nav-cta {
    display: none;
  }

  .split,
  .contact,
  .case-detail {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-graphic {
    height: 430px;
    opacity: 0.58;
    right: -210px;
    width: 520px;
  }

  .case-hero-graphic {
    height: 320px;
    opacity: 0.5;
    right: -160px;
    width: 440px;
  }

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

  .training-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 14px;
    justify-content: space-between;
    min-height: 76px;
    padding: 0 16px;
  }

  .brand {
    height: 100%;
    justify-content: flex-start;
    margin-right: 0;
    min-width: 0;
    width: auto;
  }

  .brand-logo {
    height: 42px;
    max-height: 42px;
  }

  .mobile-menu-panel {
    left: 16px;
    min-width: 0;
    position: fixed;
    right: 16px;
    top: 76px;
    width: auto;
  }

  .hero {
    overflow: hidden;
    padding-inline: 16px;
    padding-top: 58px;
  }

  .hero-copy {
    max-width: calc(100vw - 32px);
    width: 100%;
  }

  .hero-graphic {
    bottom: -76px;
    height: 290px;
    opacity: 0.38;
    right: -176px;
    width: 360px;
  }

  .hero-graphic::before {
    border-radius: 22px;
    inset: 8% 2% 4% 11%;
  }

  .hero-flow-card {
    border-radius: 12px;
    min-height: 44px;
    padding: 9px 10px;
  }

  .hero-flow-card span {
    border-radius: 8px;
    font-size: 0.62rem;
    height: 26px;
    width: 26px;
  }

  .hero-flow-card strong {
    font-size: 0.68rem;
  }

  .hero-flow-card-main {
    min-height: 56px;
    padding: 10px 12px;
  }

  .hero-flow-card-main .hero-flow-icon {
    height: 32px;
    width: 32px;
  }

  .hero-flow-icon svg {
    height: 16px;
    width: 16px;
  }

  .hero-flow-card {
    display: none;
  }

  .case-hero {
    padding-inline: 16px;
  }

  .case-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
    line-height: 1.04;
    max-width: calc(100vw - 32px);
    overflow-wrap: normal;
  }

  .case-hero .hero-text {
    max-width: calc(100vw - 32px);
  }

  .case-hero-graphic {
    bottom: -64px;
    height: 250px;
    opacity: 0.32;
    right: -142px;
    width: 330px;
  }

  .case-hero-graphic::before {
    border-radius: 20px;
  }

  .case-visual-card {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 3.25rem);
    overflow-wrap: anywhere;
  }

  .hero-text {
    max-width: 31ch;
    overflow-wrap: normal;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 0.96;
    max-width: 9.5ch;
    overflow-wrap: normal;
  }

  .case-hero h1 {
    font-size: clamp(2.25rem, 9.8vw, 2.8rem);
    line-height: 1.04;
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
  }

  .case-hero .hero-text {
    max-width: calc(100vw - 32px);
  }

  .case-hero > h1:not(.case-hero-graphic),
  .case-hero > .hero-text:not(.case-hero-graphic) {
    max-width: calc(100vw - 32px) !important;
    width: calc(100vw - 32px);
  }

  .case-hero > h1:not(.case-hero-graphic) {
    overflow-wrap: anywhere !important;
    word-break: normal;
  }

  .case-grid,
  .process-grid,
  .faq-grid,
  .case-kpi-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
