@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/Manrope-Semibold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #07111f;
  --charcoal: #0b1220;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --white: #f8fafc;
  --muted: #94a3b8;
  --soft: #e2e8f0;
  --cyan: #38bdf8;
  --teal: #14b8a6;
  --gold: #c7a76c;
  --line: rgba(255, 255, 255, 0.12);
  --dark-line: rgba(7, 17, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(56, 189, 248, 0.46) rgba(7, 17, 31, 0.2);
  scrollbar-width: thin;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--white);
  font-family: "Manrope", Tahoma, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

body.is-leaving .page-transition {
  transform: translateY(0);
}

body.is-leaving .page-transition span {
  transform: scaleX(1);
}

::selection {
  background: rgba(56, 189, 248, 0.32);
}

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

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

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

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: 0;
}

p {
  line-height: 1.7;
}

.page-transition {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 650ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition span {
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--navy);
  transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
}

.page-transition span:nth-child(2) {
  background: #0a1d33;
  transition-delay: 70ms;
}

.page-transition span:nth-child(3) {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  transition-delay: 140ms;
}

.scroll-rail {
  display: none;
  position: fixed;
  z-index: 55;
  right: 18px;
  top: 50%;
  width: 4px;
  height: min(210px, 28vh);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  transform: translateY(-50%);
  pointer-events: none;
}

.scroll-rail span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.38);
  transform: scaleY(var(--scroll-progress, 0));
  transform-origin: top center;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(20px, 4vw, 64px);
  color: var(--white);
  transform: translateY(-18px);
  opacity: 0;
  animation: header-in 760ms cubic-bezier(0.22, 1, 0.36, 1) 360ms forwards;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.1));
  backdrop-filter: blur(8px);
  mask-image: linear-gradient(#000 72%, transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: clamp(182px, 14vw, 236px);
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: center;
  filter: invert(1) drop-shadow(0 10px 24px rgba(14, 165, 233, 0.18));
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(248, 250, 252, 0.74);
  font-size: 14px;
}

.desktop-nav a,
.footer a,
.menu-grid a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer a:hover,
.menu-grid a:hover {
  color: var(--cyan);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.08);
  backdrop-filter: blur(14px);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 250, 252, 0.68);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.language-switch button:hover,
.language-switch button.is-active {
  background: rgba(56, 189, 248, 0.16);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.28);
}

.menu-language-switch {
  margin-top: 22px;
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(56, 189, 248, 0.38);
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  color: var(--white);
  font-size: 14px;
}

.menu-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(248, 250, 252, 0.22);
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.06);
  color: inherit;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 40;
  inset: 0;
  padding: 126px clamp(20px, 4vw, 64px) 48px;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.14), transparent 28%),
    rgba(7, 17, 31, 0.97);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: clamp(28px, 8vw, 120px);
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.menu-grid a {
  display: block;
  padding: 8px 0;
  color: rgba(248, 250, 252, 0.82);
}

[data-animate] {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform, filter;
}

[data-animate="clip"] {
  clip-path: inset(0 0 100% 0 round 24px);
  transform: translate3d(0, 46px, 0) scale(1);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    clip-path 1050ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}

[data-animate="slide-left"] {
  transform: translate3d(-52px, 0, 0);
}

[data-animate="slide-right"] {
  transform: translate3d(52px, 0, 0);
}

[data-animate="zoom"] {
  transform: scale(0.92);
}

.is-inview [data-animate],
[data-animate].is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  clip-path: inset(0 0 0 0 round 0);
}

.is-outview [data-animate] {
  opacity: 0.82;
  transform: translate3d(0, -10px, 0) scale(0.995);
  filter: blur(0);
}

.section {
  position: relative;
  overflow: clip;
}

.scroll-scene {
  --scene-progress: 0;
  --scene-image-y: 0px;
  --scene-image-scale: 1;
  --scene-bridge-scale: 0.62;
  --scene-bridge-opacity: 0.55;
  --scene-next-bg: #f8fafc;
  position: relative;
  min-height: min(1000px, 100svh);
  isolation: isolate;
}

.section.scroll-scene {
  display: grid;
  align-items: center;
}

.scroll-scene.scene-next-dark {
  --scene-next-bg: #0b1220;
}

.scroll-scene.scene-next-light {
  --scene-next-bg: #f8fafc;
}

.scroll-scene.scene-next-cta,
.scroll-scene.scene-next-footer {
  --scene-next-bg: #07111f;
}

.scroll-scene::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: -1px;
  width: clamp(190px, 26vw, 430px);
  height: clamp(24px, 3.2vw, 42px);
  border-radius: 28px 28px 0 0;
  background: var(--scene-next-bg);
  box-shadow: 0 -18px 54px rgba(2, 8, 23, 0.1);
  opacity: var(--scene-bridge-opacity);
  transform: translateX(-50%) scaleX(var(--scene-bridge-scale));
  transform-origin: center bottom;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
  pointer-events: none;
}

.scroll-scene.is-active-scene {
  --scene-bridge-scale: 1;
  --scene-bridge-opacity: 1;
}

.hero.scroll-scene::after,
.proof-strip.scroll-scene::after,
.footer.scroll-scene::after {
  display: none;
}

.scroll-scene.scene-dark {
  background:
    radial-gradient(circle at calc(18% + (var(--scene-progress) * 10%)) 0%, rgba(56, 189, 248, 0.13), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--charcoal);
  background-size: auto, 48px 48px, 48px 48px, auto;
}

.scroll-scene.scene-light {
  background:
    radial-gradient(circle at calc(82% - (var(--scene-progress) * 10%)) 8%, rgba(56, 189, 248, 0.12), transparent 25%),
    #f8fafc;
}

.scroll-scene .visual-frame img,
.scroll-scene .showcase-grid img,
.scroll-scene .card-visual,
.scroll-scene .work-visual,
.scroll-scene .philosophy-logo-mark img {
  transform: translate3d(0, var(--scene-image-y), 0) scale(var(--scene-image-scale));
}

.scroll-scene .visual-frame,
.scroll-scene .showcase-grid article,
.scroll-scene .service-visual,
.scroll-scene .pillar-card,
.scroll-scene .work-grid article {
  clip-path: inset(0 0 0 0 round 24px);
}

.scroll-scene.is-outview .visual-frame,
.scroll-scene.is-outview .showcase-grid article,
.scroll-scene.is-outview .service-visual,
.scroll-scene.is-outview .pillar-card,
.scroll-scene.is-outview .work-grid article {
  clip-path: inset(3% 2% 3% 2% round 28px);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.55), transparent);
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section.is-inview::before {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(56, 189, 248, 0.18), transparent 28%),
    radial-gradient(circle at 14% 76%, rgba(20, 184, 166, 0.13), transparent 26%),
    var(--navy);
}

.hero-showcase {
  min-height: 100svh;
  display: block;
  padding: 92px 18px 18px;
  background:
    radial-gradient(circle at 85% 10%, rgba(56, 189, 248, 0.16), transparent 30%),
    linear-gradient(180deg, #0b1220 0%, #07111f 100%);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 46px 46px;
  opacity: 0.45;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(82px, 6.2vw, 106px) clamp(82px, 6.2vw, 106px) clamp(82px, 6.2vw, 106px);
  gap: 10px;
  width: min(1360px, 100%);
  height: calc(100svh - 110px);
  min-height: 560px;
  margin: 0 auto;
  transition:
    grid-template-columns 560ms cubic-bezier(0.22, 1, 0.36, 1),
    grid-template-rows 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-accordion-card {
  --hero-image: none;
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(5, 8, 23, 0.72) 46%, rgba(8, 13, 34, 0.44) 100%),
    var(--hero-image) center / cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: filter 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-accordion-card.is-active {
  cursor: default;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-accordion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.44) 72%, rgba(0, 0, 0, 0.84) 100%),
    radial-gradient(circle at 74% 38%, rgba(56, 189, 248, 0.24), transparent 32%);
  pointer-events: none;
}

.hero-accordion-card:not(.is-active)::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.58)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 48%, rgba(255, 255, 255, 0.06));
}

.hero-accordion-card:not(.is-active):hover {
  border-color: rgba(56, 189, 248, 0.8);
  filter: brightness(1.08);
}

.hero-bg-software {
  --hero-image: url("assets/real-web-development.jpg");
}

.hero-bg-product {
  --hero-image: url("assets/real-team-collaboration.jpg");
}

.hero-bg-ai {
  --hero-image: url("assets/real-ai-technology.jpg");
}

.hero-bg-consulting {
  --hero-image: url("assets/real-business-strategy.jpg");
}

.hero-controls {
  position: absolute;
  top: 8%;
  right: 6%;
  z-index: 3;
  display: flex;
  gap: 14px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(56, 189, 248, 0.85);
}

.hero-feature-line {
  position: absolute;
  top: 12%;
  left: 6%;
  z-index: 2;
  width: min(360px, 42%);
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-feature-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  transform: scaleX(0);
  transform-origin: left center;
}

.hero-feature-line span.is-running {
  animation: hero-progress 6s linear forwards;
}

.hero-feature-content {
  position: relative;
  z-index: 2;
  width: min(660px, 78%);
  margin-top: auto;
  padding: 0 0 120px 6%;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-feature-content h1 {
  max-width: 620px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-feature-content > p:not(.eyebrow) {
  width: min(480px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button-hero {
  min-width: 146px;
  min-height: 42px;
  border-color: var(--cyan);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #04111d;
  font-size: 13px;
  font-weight: 700;
  box-shadow: none;
}

.button-ghost {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8eef7;
  box-shadow: none;
}

.hero-proof {
  position: absolute;
  right: 6%;
  bottom: 18px;
  left: 6%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: stretch;
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-proof span {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.46);
  backdrop-filter: blur(10px);
}

.hero-proof strong {
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.hero-proof small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.35;
}

.hero-collapsed-label {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  opacity: 1;
  transition: opacity 220ms ease 140ms, transform 360ms ease;
}

.hero-collapsed-label span {
  display: block;
  width: 100%;
  max-height: 260px;
  padding: 0 0 42px;
  overflow: hidden;
  font-size: clamp(19px, 1.45vw, 26px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-accordion-card:not(.is-active) .hero-feature-line,
.hero-accordion-card:not(.is-active) .hero-feature-content,
.hero-accordion-card:not(.is-active) .hero-controls,
.hero-accordion-card:not(.is-active) .hero-proof {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.hero-accordion-card.is-active .hero-collapsed-label {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) rotate(180deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.98));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(calc(var(--scroll-progress, 0) * 80px)) scale(1.08);
  transition: transform 120ms linear;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  padding: 132px clamp(20px, 4vw, 64px) 72px;
}

.hero-copy {
  max-width: 850px;
  opacity: 0;
  transform: translateY(26px);
  animation: hero-copy-in 950ms cubic-bezier(0.22, 1, 0.36, 1) 260ms forwards;
}

.kicker,
.section-label,
.eyebrow {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: 76px;
  line-height: 0.98;
}

.hero-subtitle {
  max-width: 740px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(56, 189, 248, 0.16);
}

.button::after {
  content: "";
  position: absolute;
  inset: -80% auto -80% -40%;
  width: 38%;
  transform: rotate(18deg) translateX(-180%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover::after {
  transform: rotate(18deg) translateX(520%);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #04111d;
  font-weight: 700;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.hero-system {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: system-in 1050ms cubic-bezier(0.22, 1, 0.36, 1) 520ms forwards;
}

.hero-photo-card {
  position: absolute;
  z-index: 0;
  top: 8px;
  right: 10px;
  width: min(360px, 72%);
  margin: 0;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg);
}

.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.72)),
    radial-gradient(circle at 24% 22%, rgba(56, 189, 248, 0.2), transparent 34%);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.82);
}

.system-orbit {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: orbit-float 8s ease-in-out infinite alternate;
}

.system-orbit span {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.8);
  color: var(--soft);
  font-size: 13px;
  animation: tag-pulse 3.8s ease-in-out infinite;
}

.system-orbit span:nth-child(1) {
  top: 24px;
  left: 36px;
}

.system-orbit span:nth-child(2) {
  top: 42%;
  right: 18px;
}

.system-orbit span:nth-child(3) {
  bottom: 34px;
  left: 28%;
}

.system-orbit span:nth-child(4) {
  top: 33%;
  left: -10px;
}

.system-card,
.floating-card,
.pillar-card,
.work-grid article,
.problem-grid article,
.package-grid article,
.timeline article,
details {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
}

.main-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  padding: 30px;
  border-radius: 28px;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.main-card::before,
.pillar-card::before,
.work-grid article::before,
.problem-grid article::before,
.package-grid article::before,
.timeline article::before,
details::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(
      420px circle at var(--glow-x, 50%) var(--glow-y, 50%),
      rgba(56, 189, 248, 0.22),
      transparent 42%
    );
  transition: opacity 220ms ease;
}

.main-card:hover::before,
.pillar-card:hover::before,
.work-grid article:hover::before,
.problem-grid article:hover::before,
.package-grid article:hover::before,
.timeline article:hover::before,
details:hover::before {
  opacity: 1;
}

.main-card:hover {
  border-color: rgba(56, 189, 248, 0.42);
  box-shadow: 0 34px 100px rgba(56, 189, 248, 0.16);
}

.main-card h2 {
  margin-top: 16px;
  font-size: 32px;
  line-height: 1.12;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.metric-grid div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  color: var(--cyan);
  font-size: 28px;
}

.metric-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.floating-card {
  position: absolute;
  z-index: 3;
  max-width: 210px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--soft);
  font-size: 14px;
  animation: float-card 5.4s ease-in-out infinite alternate;
}

.floating-card span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 22px var(--teal);
}

.card-a {
  top: 78px;
  right: 6px;
}

.card-b {
  left: 8px;
  bottom: 82px;
  animation-delay: 900ms;
}

.proof-strip {
  display: flex;
  gap: 12px;
  padding: 18px clamp(20px, 4vw, 64px);
  overflow: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  scroll-snap-type: x proximity;
}

.proof-strip span {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.proof-strip span:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(56, 189, 248, 0.4);
  background: rgba(56, 189, 248, 0.08);
}

.section {
  padding: 112px clamp(20px, 4vw, 64px);
}

.about,
.problems,
.solutions,
.process,
.faq {
  background: #f8fafc;
  color: var(--navy);
}

.dark-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.12), transparent 28%),
    var(--charcoal);
  color: var(--white);
}

.section-grid,
.split {
  display: grid;
  grid-template-columns: 0.6fr 1.25fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.visual-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  margin: 0 auto;
}

.visual-split.is-light .section-heading {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.visual-frame {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(7, 17, 31, 0.08);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.dark-band .visual-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.22);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), transparent 34%, rgba(20, 184, 166, 0.16));
  opacity: 0.6;
}

.visual-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: 22px;
  filter: saturate(0.82) contrast(1.06);
}

.visual-frame figcaption {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.dark-band .visual-frame figcaption {
  color: var(--muted);
}

.visual-frame.is-compact {
  max-width: 430px;
  justify-self: center;
}

.philosophy-logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(34vw, 360px);
  min-width: 220px;
  margin: 0;
  isolation: isolate;
}

.philosophy-logo-mark::before {
  content: "";
  position: absolute;
  width: 132%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(34, 211, 238, 0.2), transparent 55%),
    radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
  filter: blur(8px);
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  z-index: -1;
}

.philosophy-logo-mark img {
  width: min(100%, 300px);
  aspect-ratio: 1;
  object-fit: contain;
  opacity: 0.92;
  filter:
    drop-shadow(0 0 34px rgba(34, 211, 238, 0.28))
    drop-shadow(0 24px 60px rgba(2, 8, 23, 0.42));
  transition:
    opacity 360ms ease,
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 360ms ease;
}

.philosophy-logo-mark:hover img {
  opacity: 1;
  transform: scale(1.045) rotate(-1.2deg);
  filter:
    drop-shadow(0 0 44px rgba(34, 211, 238, 0.38))
    drop-shadow(0 30px 70px rgba(2, 8, 23, 0.5));
}

.scroll-scene .philosophy-logo-mark:hover img {
  transform: translate3d(0, var(--scene-image-y), 0) scale(1.06) rotate(-1.2deg);
}

.visual-showcase {
  padding: 28px clamp(20px, 4vw, 64px) 100px;
}

.visual-showcase.scroll-scene {
  display: grid;
  align-items: center;
  min-height: 84svh;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.showcase-grid article {
  min-height: 390px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
}

.showcase-grid h3 {
  margin: 20px 10px 0;
  font-size: 24px;
}

.showcase-grid p {
  margin: 12px 10px 10px;
  color: var(--muted);
}

.section-title h2,
.split h2,
.visual-split h2,
.section-heading h2,
.case-head h2,
.cta h2 {
  font-size: 54px;
  line-height: 1.05;
}

.philosophy .visual-split {
  grid-template-columns: 0.95fr 0.72fr 0.95fr;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: #475569;
  font-size: 17px;
}

.philosophy p,
.why-list p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.is-left {
  text-align: left;
}

.problem-grid,
.pillar-grid,
.package-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.problem-grid article,
.package-grid article,
.timeline article,
details {
  border-color: var(--dark-line);
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.problem-grid article,
.pillar-card,
.package-grid article,
.work-grid article,
.timeline article {
  min-height: 260px;
  padding: 24px;
  border-radius: 24px;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  will-change: transform;
  overflow: hidden;
}

.problem-grid article:hover,
.pillar-card:hover,
.package-grid article:hover,
.work-grid article:hover,
.timeline article:hover {
  transform: translateY(-8px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.problem-grid span,
.pillar-card span,
.timeline span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.problem-icon,
.package-visual {
  position: relative;
  width: 100%;
  min-height: 132px;
  margin-bottom: 22px;
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 20px;
  background:
    radial-gradient(circle at 24% 26%, rgba(56, 189, 248, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.05), rgba(20, 184, 166, 0.08));
  overflow: hidden;
}

.problem-icon span,
.package-visual span {
  position: absolute;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.12);
}

.problem-icon span:nth-child(1) {
  width: 58%;
  height: 12px;
  top: 28px;
  left: 22px;
}

.problem-icon span:nth-child(2) {
  width: 34%;
  height: 48px;
  left: 22px;
  bottom: 24px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.28);
}

.problem-icon span:nth-child(3) {
  width: 42%;
  height: 48px;
  right: 22px;
  bottom: 24px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.22);
}

.problem-icon.is-flow span:nth-child(1),
.problem-icon.is-system span:nth-child(1) {
  width: 46px;
  height: 46px;
  top: 42px;
  left: 22px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.25);
}

.problem-icon.is-flow span:nth-child(2),
.problem-icon.is-system span:nth-child(2) {
  width: 46px;
  height: 46px;
  top: 42px;
  left: calc(50% - 23px);
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.24);
}

.problem-icon.is-flow span:nth-child(3),
.problem-icon.is-system span:nth-child(3) {
  width: 46px;
  height: 46px;
  top: 42px;
  right: 22px;
  border-radius: 50%;
  background: rgba(199, 167, 108, 0.28);
}

.problem-icon.is-chart span:nth-child(1) {
  width: 18px;
  height: 70px;
  left: 34px;
  bottom: 24px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.32);
}

.problem-icon.is-chart span:nth-child(2) {
  width: 18px;
  height: 92px;
  left: 74px;
  bottom: 24px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.26);
}

.problem-icon.is-chart span:nth-child(3) {
  width: 18px;
  height: 48px;
  left: 114px;
  bottom: 24px;
  border-radius: 8px;
  background: rgba(199, 167, 108, 0.32);
}

.problem-grid h3,
.pillar-card h3,
.package-grid h3,
.work-grid h3,
.timeline h3 {
  margin-top: 24px;
  font-size: 25px;
  line-height: 1.15;
}

.problem-grid p,
.package-grid span,
.timeline p {
  display: block;
  margin-top: 14px;
  color: #64748b;
}

.problem-grid article.problem-card {
  width: 100%;
  min-height: 430px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
  transform: none;
}

.problem-grid article.problem-card::before {
  display: none;
}

.problem-grid article.problem-card:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.problem-card-inner {
  position: relative;
  width: 100%;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 760ms cubic-bezier(0.2, 0.86, 0.24, 1);
}

.problem-card:hover .problem-card-inner,
.problem-card.is-flipped .problem-card-inner,
.problem-card:focus-visible .problem-card-inner {
  transform: rotateY(180deg);
}

.problem-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: 24px;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.problem-front {
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    #fff;
}

.problem-front::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1px solid rgba(7, 17, 31, 0.06);
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(20, 184, 166, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.34;
  pointer-events: none;
}

.problem-front .problem-number {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.problem-front h3,
.problem-front p {
  position: relative;
  z-index: 1;
}

.problem-front h3 {
  max-width: 250px;
  margin-top: 96px;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.03;
}

.problem-front p {
  max-width: 270px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
}

.problem-back {
  justify-content: flex-end;
  background: var(--navy);
  color: #fff;
  transform: rotateY(180deg);
}

.problem-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.1), rgba(2, 8, 23, 0.78)),
    radial-gradient(circle at 22% 18%, rgba(56, 189, 248, 0.34), transparent 34%);
  pointer-events: none;
}

.problem-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 900ms cubic-bezier(0.2, 0.86, 0.24, 1);
}

.problem-card:hover .problem-back img,
.problem-card.is-flipped .problem-back img,
.problem-card:focus-visible .problem-back img {
  transform: scale(1);
}

.problem-back-copy {
  position: relative;
  z-index: 1;
  padding: 30px;
  transform: translateZ(46px);
}

.problem-back-copy span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-back-copy h3 {
  max-width: 290px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(26px, 2.15vw, 34px);
  line-height: 1.04;
}

.problem-card:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.55);
  outline-offset: 6px;
}

.pillar-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.card-visual,
.work-visual {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  filter: saturate(0.82) contrast(1.08) brightness(0.78);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about .visual-frame img,
.solutions .visual-frame img,
.process .visual-frame img {
  filter: saturate(0.85) contrast(1.04) brightness(0.92);
}

.card-visual[src*="real-web-development"] {
  object-position: center;
}

.card-visual[src*="real-ai-technology"],
.showcase-grid img[src*="real-ai-technology"] {
  object-position: center;
}

.work-visual[src*="real-operations-team"],
.showcase-grid img[src*="real-operations-team"] {
  object-position: center 38%;
}

.pillar-card:hover .card-visual,
.work-grid article:hover .work-visual {
  transform: scale(1.035) translateY(-3px);
}

.pillar-card:hover,
.work-grid article:hover {
  box-shadow: 0 34px 100px rgba(56, 189, 248, 0.12);
}

.pillar-card p,
.work-grid p {
  margin-top: 16px;
  color: var(--muted);
}

.pillar-card ul {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
  font-size: 14px;
}

.pillar-card li {
  padding-left: 16px;
  position: relative;
}

.pillar-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.services-scroll {
  --services-progress: 0;
  --service-local-progress: 0;
  position: relative;
  min-height: 420svh;
  padding: 0;
  overflow: visible;
}

.service-anchor {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.service-anchor-automate {
  top: 25%;
}

.service-anchor-grow {
  top: 50%;
}

.service-anchor-optimize {
  top: 75%;
}

.services-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(86px, 9vh, 120px) clamp(20px, 4vw, 64px) clamp(32px, 5vh, 64px);
}

.services-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at calc(12% + (var(--services-progress) * 22%)) 12%, rgba(56, 189, 248, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 48px 48px, 48px 48px;
  opacity: 0.8;
}

.service-stage {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  min-height: min(760px, calc(100svh - 156px));
  margin: 0 auto;
}

.service-slide,
.service-copy-slide,
.service-image-slide,
.service-caption-slide {
  position: absolute;
  inset: 0;
  transform: translate3d(0, 105%, 0);
  transition: opacity 160ms ease;
  will-change: transform;
}

.service-slide.is-active,
.service-copy-slide.is-active,
.service-image-slide.is-active,
.service-caption-slide.is-active {
  transform: translate3d(0, 0, 0);
}

.service-slide.is-before,
.service-copy-slide.is-before,
.service-image-slide.is-before,
.service-caption-slide.is-before {
  transform: translate3d(0, -105%, 0);
}

.service-slide.is-after,
.service-copy-slide.is-after,
.service-image-slide.is-after,
.service-caption-slide.is-after {
  transform: translate3d(0, 105%, 0);
}

.service-progress {
  display: none;
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 48px);
  top: 50%;
  width: 4px;
  height: min(280px, 34vh);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.18);
  transform: translateY(-50%);
}

.service-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.44);
  transform: scaleY(var(--services-progress));
  transform-origin: top center;
}

.services-scroll [data-animate] {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
  transition: none;
}

.service-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
  width: min(1320px, 100%);
  min-height: min(760px, calc(100svh - 156px));
  margin: 0 auto;
}

.service-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 100%;
  padding: clamp(34px, 3.4vw, 64px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.9)),
    #f8fafc;
  color: var(--navy);
  box-shadow: 0 32px 90px rgba(2, 8, 23, 0.24);
}

.service-copy-viewport {
  position: relative;
  min-height: min(500px, calc(100svh - 330px));
  overflow: hidden;
}

.service-copy-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-width: 0;
  opacity: 0;
  pointer-events: none;
}

.service-copy-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.service-count {
  display: block;
  margin-top: 42px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.service-panel h2 {
  margin-top: 18px;
  max-width: 100%;
  font-size: clamp(56px, 5.8vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.service-copy-slide > p:not(.section-label) {
  max-width: 470px;
  margin-top: 26px;
  color: #64748b;
  font-size: 18px;
}

.service-copy-slide ul {
  display: grid;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: #334155;
}

.service-copy-slide li {
  position: relative;
  padding-left: 18px;
}

.service-copy-slide li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.62);
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: auto;
  padding-top: 42px;
  color: #94a3b8;
  font-size: 13px;
}

.service-tabs a {
  position: relative;
  padding-top: 8px;
  transition: color 180ms ease, transform 180ms ease;
}

.service-tabs a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 240ms ease;
}

.service-tabs a:hover,
.service-tabs a.is-active {
  color: var(--navy);
  transform: translateY(-2px);
}

.service-tabs a.is-active::before,
.service-tabs a:hover::before {
  transform: scaleX(1);
}

.service-visual {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.32);
  isolation: isolate;
}

.service-image-viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.06), rgba(7, 17, 31, 0.54)),
    radial-gradient(circle at 26% 22%, rgba(56, 189, 248, 0.2), transparent 34%);
  pointer-events: none;
}

.service-visual img,
.service-image-slide {
  width: 100%;
  height: 100%;
  min-height: min(760px, calc(100svh - 156px));
  object-fit: cover;
  filter: saturate(0.84) contrast(1.08) brightness(0.82);
}

.service-image-slide {
  opacity: 1;
}

.service-caption-viewport {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(18px, 3vw, 46px);
  width: min(330px, calc(100% - 36px));
  min-height: 108px;
  overflow: hidden;
  pointer-events: none;
}

.service-visual figcaption {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: auto;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(226, 232, 240, 0.2);
  backdrop-filter: blur(18px);
  color: rgba(248, 250, 252, 0.82);
  font-size: 14px;
  line-height: 1.45;
}

.service-visual figcaption span {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-bottom: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.8);
}

.service-image-slide.service-automate,
.service-image-slide.service-grow {
  object-position: center;
}

.service-image-slide.service-optimize {
  object-position: center 35%;
}

.package-carousel {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.package-stage {
  position: relative;
  min-height: min(720px, calc(100svh - 146px));
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 34px;
  background: var(--navy);
  box-shadow: 0 34px 110px rgba(15, 23, 42, 0.2);
  isolation: isolate;
}

.package-stage::after {
  content: none;
}

.package-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 760ms ease,
    filter 760ms ease;
}

.package-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  filter: saturate(1.04);
}

.package-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 16%, rgba(56, 189, 248, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.92), rgba(2, 8, 23, 0.7) 42%, rgba(2, 8, 23, 0.28) 72%, rgba(2, 8, 23, 0.12)),
    linear-gradient(180deg, rgba(2, 8, 23, 0.14), rgba(2, 8, 23, 0.62));
}

.package-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1800ms cubic-bezier(0.2, 0.86, 0.24, 1);
}

.package-slide.is-active img {
  transform: scale(1.02);
}

.package-overlay {
  position: absolute;
  z-index: 2;
  top: clamp(48px, 7vw, 88px);
  left: clamp(28px, 5.6vw, 76px);
  bottom: auto;
  max-width: min(720px, calc(100% - 56px));
  color: #fff;
  text-shadow: 0 3px 26px rgba(2, 8, 23, 0.72);
}

.package-kicker {
  display: block;
  margin-top: 18px;
  color: #67e8f9;
  font-size: 15px;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.42);
}

.package-overlay h2 {
  margin-top: 16px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 34px rgba(2, 8, 23, 0.88);
}

.package-overlay p:not(.section-label) {
  max-width: 590px;
  margin-top: 24px;
  color: rgba(248, 250, 252, 0.94);
  font-size: 20px;
  line-height: 1.55;
  text-shadow: 0 3px 24px rgba(2, 8, 23, 0.82);
}

.package-cues {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(22px, 3.4vw, 46px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.package-cue {
  display: grid;
  gap: 12px;
  min-height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(226, 232, 240, 0.62);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.package-cue span {
  min-height: 38px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.28;
}

.package-cue i {
  display: block;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.22);
}

.package-cue b {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  transform: scaleX(0);
  transform-origin: left center;
}

.package-cue.is-active {
  color: #fff;
}

.package-cue.is-active b {
  transform: scaleX(var(--package-progress, 0));
}

.work .case-head {
  max-width: 1240px;
  margin: 0 auto 40px;
}

.case-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-grid article {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.04), rgba(20, 184, 166, 0.08)),
    var(--panel);
}

.work-visual {
  min-height: auto;
  margin-bottom: auto;
}

.work-grid span {
  color: var(--gold);
  font-size: 13px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(220px, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
  overflow-x: auto;
  padding-bottom: 8px;
}

.process-visual-head {
  margin-bottom: 44px;
}

.timeline article {
  min-height: 260px;
}

.why-list {
  display: grid;
  gap: 18px;
}

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

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
  padding: 22px 24px;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

details:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.24);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.12);
}

details[open] {
  border-color: rgba(20, 184, 166, 0.34);
}

summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 700;
}

details p {
  margin-top: 16px;
  color: #64748b;
}

.cta {
  text-align: left;
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.18), transparent 34%),
    var(--navy);
  color: var(--white);
}

.cta h2 {
  max-width: 860px;
  margin-top: 12px;
}

.cta p:not(.section-label) {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.cta-visual {
  justify-self: end;
}

.footer {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: clamp(28px, 6vw, 84px);
  padding: 60px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.footer .brand {
  margin-bottom: 22px;
}

.footer .brand-logo {
  width: min(300px, 100%);
  max-height: 96px;
}

.footer p {
  color: var(--muted);
}

.footer a {
  display: block;
  padding: 8px 0;
  color: rgba(248, 250, 252, 0.78);
}

.copyright {
  margin-top: 34px;
  font-size: 14px;
}

@keyframes header-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes system-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes orbit-float {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-12px) rotate(0.45deg);
  }
}

@keyframes float-card {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14px);
  }
}

@keyframes tag-pulse {
  0%,
  100% {
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 0 rgba(56, 189, 248, 0);
  }

  50% {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.16);
  }
}

@keyframes hero-progress {
  to {
    transform: scaleX(1);
  }
}

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

  [data-animate],
  .hero-copy,
  .hero-system,
  .site-header,
  .scroll-scene .visual-frame img,
  .scroll-scene .showcase-grid img,
  .scroll-scene .service-visual img,
  .scroll-scene .card-visual,
  .scroll-scene .work-visual,
  .scroll-scene .philosophy-logo-mark img {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .scroll-rail,
  .scroll-scene::after {
    display: none !important;
  }

  .problem-card:hover .problem-card-inner,
  .problem-card.is-flipped .problem-card-inner,
  .problem-card:focus-visible .problem-card-inner {
    transform: none;
  }
}

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
  }

  .hero-content,
  .section-grid,
  .split,
  .visual-split,
  .service-scene,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .hero-system {
    min-height: 480px;
  }

  .problem-grid,
  .pillar-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-frame,
  .service-visual,
  .cta-visual {
    justify-self: stretch;
  }

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

  .service-panel {
    min-height: 520px;
  }

  .service-visual img {
    min-height: 460px;
  }

  .package-stage {
    min-height: 640px;
  }

  .package-overlay h2 {
    font-size: clamp(36px, 5.6vw, 56px);
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
  }

  h1 {
    font-size: 64px;
  }

  .section-title h2,
  .split h2,
  .visual-split h2,
  .section-heading h2,
  .case-head h2,
  .cta h2 {
    font-size: 46px;
  }
}

@media (max-width: 980px) {
  .hero-showcase {
    padding: 86px 14px 14px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-rows: 560px repeat(3, 94px);
    height: auto;
    min-height: 0;
  }

  .hero-accordion-card {
    min-height: 94px;
  }

  .hero-accordion-card.is-active {
    min-height: 560px;
  }

  .hero-collapsed-label span {
    padding: 0 22px;
    text-align: left;
    writing-mode: horizontal-tb;
    transform: none;
  }
}

@media (max-width: 720px) {
  .scroll-rail {
    right: 8px;
    height: 132px;
  }

  .site-header {
    padding: 16px 18px;
    gap: 10px;
  }

  .site-header .brand-logo {
    width: 136px;
    max-height: 50px;
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 28px;
    padding: 6px 8px;
    font-size: 11px;
  }

  .menu-panel {
    overflow-y: auto;
    padding-top: 108px;
  }

  .menu-grid,
  .problem-grid,
  .pillar-grid,
  .package-grid,
  .work-grid,
  .showcase-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 112px 18px 58px;
  }

  .hero-showcase {
    padding: 82px 10px 10px;
  }

  .hero-shell {
    grid-template-rows: 540px repeat(3, 88px);
    gap: 8px;
  }

  .hero-accordion-card.is-active {
    min-height: 540px;
  }

  .hero-feature-content {
    width: 88%;
    padding: 0 0 28px 24px;
  }

  .hero-feature-content h1 {
    font-size: 42px;
  }

  .hero-feature-content > p:not(.eyebrow) {
    font-size: 14px;
  }

  .hero-feature-line {
    left: 24px;
    width: 46%;
  }

  .hero-controls {
    right: 24px;
  }

  .hero-proof {
    display: none;
  }

  h1 {
    font-size: 45px;
    line-height: 1.03;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .section {
    padding: 76px 18px;
  }

  .services-sticky {
    padding-top: 90px;
    padding-bottom: 42px;
  }

  .service-stage {
    min-height: calc(100svh - 132px);
  }

  .service-scene {
    gap: 16px;
  }

  .service-panel {
    min-height: auto;
    padding: 30px;
    border-radius: 24px;
  }

  .service-panel h2 {
    font-size: 58px;
  }

  .service-copy-slide > p:not(.section-label) {
    font-size: 16px;
  }

  .service-tabs {
    padding-top: 28px;
  }

  .service-visual {
    border-radius: 24px;
  }

  .service-visual img {
    min-height: 360px;
  }

  .service-visual figcaption {
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .package-stage {
    min-height: 680px;
    border-radius: 26px;
  }

  .package-slide::after {
    background:
      radial-gradient(circle at 78% 12%, rgba(56, 189, 248, 0.24), transparent 30%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.58), rgba(2, 8, 23, 0.84));
  }

  .package-overlay {
    top: 42px;
    left: 24px;
    right: 24px;
    bottom: auto;
    max-width: none;
  }

  .package-overlay h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .package-overlay p:not(.section-label) {
    font-size: 16px;
  }

  .package-cues {
    left: 22px;
    right: 22px;
    bottom: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-cue {
    min-height: 58px;
  }

  .package-cue span {
    min-height: 0;
    font-size: 13px;
  }

  .section.scroll-scene {
    min-height: auto;
  }

  .scroll-scene::after {
    width: 168px;
    height: 24px;
  }

  .section-title h2,
  .split h2,
  .visual-split h2,
  .section-heading h2,
  .case-head h2,
  .cta h2 {
    font-size: 36px;
  }

  .hero-system {
    min-height: 520px;
    margin-top: 24px;
  }

  .visual-showcase {
    padding: 18px 18px 76px;
  }

  .showcase-grid article {
    min-height: auto;
  }

  .visual-frame {
    padding: 10px;
    border-radius: 24px;
  }

  .visual-frame img,
  .card-visual,
  .work-visual {
    border-radius: 16px;
  }

  .philosophy-logo-mark {
    width: min(70vw, 260px);
    min-width: 0;
  }

  .philosophy-logo-mark img {
    width: min(100%, 230px);
  }

  .problem-icon,
  .package-visual {
    min-height: 108px;
  }

  .problem-grid article.problem-card {
    min-height: 360px;
  }

  .problem-front {
    padding: 28px;
  }

  .problem-front h3 {
    max-width: 100%;
    margin-top: 74px;
    font-size: 28px;
  }

  .problem-front p {
    max-width: 100%;
    font-size: 16px;
  }

  .problem-back-copy {
    padding: 26px;
  }

  .system-orbit {
    inset: 0;
  }

  .main-card {
    padding: 22px;
  }

  .main-card h2 {
    font-size: 26px;
  }

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

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 12px;
    max-width: none;
    width: 100%;
  }

  .case-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline {
    grid-template-columns: repeat(6, 78vw);
  }
}
