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

@font-face {
  font-family: "Manrope";
  src: url("./Inter,Manrope,Poppins/Manrope/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./Inter,Manrope,Poppins/Inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --charcoal: #292929;
  --teal: #229693;
  --soft-teal: #59b0ad;
  --pale-teal: #a4d3d0;
  --slate: #616060;
  --soft-gray: #a1a1a0;
  --divider: #c2c0be;
  --off-white: #fbf8f6;
  --white: #ffffff;
  --dark: #1f1f1f;
  --shadow-soft: 0 24px 70px rgba(41, 41, 41, 0.1);
  --shadow-card: 0 18px 45px rgba(34, 150, 147, 0.12);
  --border: 1px solid rgba(194, 192, 190, 0.55);
  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-panel: 28px;
  --radius-soft: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(ellipse at 78% 10%, rgba(164, 211, 208, 0.36), transparent 32%),
    radial-gradient(ellipse at 12% 78%, rgba(89, 176, 173, 0.12), transparent 36%),
    linear-gradient(180deg, #fbf8f6 0%, #fffefe 46%, #fbf8f6 100%);
  background-attachment: fixed;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 20px;
  border: var(--border);
  border-radius: 22px;
  background: rgba(251, 248, 246, 0.78);
  box-shadow: 0 16px 50px rgba(41, 41, 41, 0.08);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(194, 192, 190, 0.75);
  box-shadow: 0 18px 60px rgba(41, 41, 41, 0.12);
}

.brand {
  display: flex;
  align-items: center;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--slate);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 20px;
  background: var(--teal);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--charcoal);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(194, 192, 190, 0.7);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
  border-radius: 10px;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 34%, rgba(164, 211, 208, 0.62), transparent 34%),
    radial-gradient(ellipse at 20% 78%, rgba(89, 176, 173, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(251, 248, 246, 0));
}

.hero-bg::before,
.hero-bg::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(34, 150, 147, 0.14);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-bg::before {
  width: 760px;
  height: 220px;
  right: -110px;
  top: 170px;
}

.hero-bg::after {
  width: 440px;
  height: 130px;
  left: -140px;
  bottom: 120px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  align-items: center;
  gap: 48px;
}

.hero-grid > *,
.service-grid > *,
.solution-cards > *,
.work-grid > *,
.process-track > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(34, 150, 147, 0.1);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--charcoal);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(42px, 4.85vw, 62px);
  line-height: 1.04;
  font-weight: 800;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.intent-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.intent-strip a {
  padding: 9px 11px;
  border: 1px solid rgba(194, 192, 190, 0.62);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.54);
  color: var(--slate);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.intent-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 150, 147, 0.45);
  color: var(--teal);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(34, 150, 147, 0.22);
}

.btn-primary:hover {
  background: var(--charcoal);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(194, 192, 190, 0.7);
  color: var(--charcoal);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 44px;
}

.hero-proof div {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(194, 192, 190, 0.45);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
}

.hero-proof strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.hero-proof span {
  display: block;
  margin-top: 8px;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-panel);
}

.visual-frame::before {
  position: absolute;
  content: "";
  inset: 40px 18px 40px 72px;
  border: 1px solid rgba(34, 150, 147, 0.16);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.visual-frame img {
  width: min(100%, 680px);
  border-radius: var(--radius-panel);
  filter: drop-shadow(0 28px 48px rgba(41, 41, 41, 0.12));
  animation: floatSlow 7s ease-in-out infinite;
}

.glass-tile {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  color: var(--charcoal);
}

.glass-tile small {
  display: block;
  color: var(--slate);
  font-size: 12px;
}

.glass-tile strong {
  display: block;
  margin-top: 8px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.glass-tile span {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.glass-tile-a {
  left: 10px;
  top: 102px;
  width: 168px;
  padding: 18px;
  animation: floatSoft 6.5s ease-in-out infinite;
}

.glass-tile-b {
  right: 16px;
  top: 140px;
  width: 150px;
  padding: 16px;
  animation: floatSoft 7.2s ease-in-out infinite 600ms;
}

.glass-tile-c {
  right: 46px;
  bottom: 104px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--slate);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  animation: floatSoft 8s ease-in-out infinite 300ms;
}

.status-dot {
  width: 9px;
  height: 9px;
  margin: 0;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(34, 150, 147, 0.12);
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 44px;
  margin-top: 16px;
}

.mini-bars i {
  width: 16px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--pale-teal), var(--teal));
}

.mini-bars i:nth-child(1) {
  height: 22px;
}

.mini-bars i:nth-child(2) {
  height: 34px;
}

.mini-bars i:nth-child(3) {
  height: 27px;
}

.mini-bars i:nth-child(4) {
  height: 42px;
}

.motion-showcase {
  --showreel-progress: 0;
  position: relative;
  min-height: 128vh;
  padding: 16px 0 112px;
  isolation: isolate;
}

.motion-showcase::before {
  position: absolute;
  content: "";
  inset: 6% 0 auto;
  z-index: -1;
  height: 56%;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(164, 211, 208, 0.34), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
}

.motion-shell {
  display: grid;
  gap: 26px;
}

.motion-topline {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 32px;
}

.motion-topline h2 {
  margin-top: 14px;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 0.98;
  font-weight: 800;
}

.motion-topline p {
  margin: 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

.motion-stage {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 38px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(164, 211, 208, 0.35), transparent 46%),
    var(--charcoal);
  box-shadow:
    0 34px 90px rgba(41, 41, 41, 0.18),
    0 0 0 1px rgba(194, 192, 190, 0.22);
  transform: scale(var(--showreel-scale, 0.965));
  transform-origin: center top;
}

.motion-stage::before,
.motion-stage::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.motion-stage::before {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(41, 41, 41, 0.08), transparent 34%, rgba(41, 41, 41, 0.38)),
    radial-gradient(ellipse at 12% 15%, rgba(255, 255, 255, 0.26), transparent 38%);
}

.motion-stage::after {
  width: 640px;
  height: 180px;
  right: -170px;
  bottom: 24px;
  z-index: 2;
  border: 1px solid rgba(251, 248, 246, 0.18);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.motion-video {
  display: block;
  width: 100%;
  height: min(72vh, 720px);
  min-height: 520px;
  object-fit: cover;
  background: var(--charcoal);
}

.motion-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.motion-overlay span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-pill);
  background: rgba(41, 41, 41, 0.34);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.motion-progress {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 14px;
  z-index: 4;
  height: 3px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.22);
}

.motion-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--soft-teal);
  transform: scaleX(var(--showreel-progress));
  transform-origin: left;
}

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

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

.section-heading h2,
.why-panel h2,
.cta-panel h2 {
  margin-top: 14px;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
}

.section-heading p,
.why-panel p,
.cta-panel p {
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.75;
}

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

.service-card {
  grid-column: span 3;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: var(--border);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34, 150, 147, 0.38);
  box-shadow: 0 26px 70px rgba(41, 41, 41, 0.12);
}

.service-card-wide {
  grid-column: span 6;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  align-items: center;
}

.service-visual {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background:
    radial-gradient(ellipse at center, rgba(164, 211, 208, 0.32), transparent 54%),
    linear-gradient(180deg, rgba(251, 248, 246, 0.7), rgba(255, 255, 255, 0));
}

.service-card-wide .service-visual {
  min-height: 420px;
}

.service-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-card);
  filter: drop-shadow(0 20px 36px rgba(41, 41, 41, 0.1));
}

.service-card-wide .service-visual img {
  max-width: 520px;
}

.service-content {
  padding: 0 32px 34px;
}

.service-card-wide .service-content {
  padding: 46px;
}

.service-content span,
.solution-card span,
.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(34, 150, 147, 0.1);
  color: var(--teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.service-content h3,
.solution-card h3,
.why-card h3,
.process-step h3,
.work-card h3 {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.service-content p,
.solution-card p,
.why-card p,
.process-step p,
.work-card p {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

.service-link {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  padding: 0 16px;
  border: 1px solid rgba(34, 150, 147, 0.24);
  border-radius: var(--radius-pill);
  background: rgba(34, 150, 147, 0.08);
  color: var(--teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 180ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(34, 150, 147, 0.48);
  background: var(--teal);
  color: var(--white);
}

.service-link:hover::after,
.service-link:focus-visible::after {
  transform: translateX(3px);
}

.game-visual {
  overflow: hidden;
}

.game-visual::before {
  position: absolute;
  content: "";
  width: 280px;
  height: 280px;
  border: 1px solid rgba(34, 150, 147, 0.18);
  border-radius: 50%;
  transform: rotate(22deg) scaleX(1.25);
}

.spin-wheel {
  position: relative;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, var(--teal), var(--pale-teal), var(--white), var(--soft-teal), var(--teal));
  box-shadow: 0 24px 42px rgba(34, 150, 147, 0.18);
  animation: turnWheel 18s linear infinite;
}

.spin-wheel span {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.spin-wheel i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 10px rgba(34, 150, 147, 0.12);
}

.game-glass,
.reward-chip {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.top-card {
  left: 36px;
  top: 36px;
  width: 116px;
  padding: 13px;
}

.top-card span,
.leaderboard small {
  display: block;
  color: var(--slate);
  font-size: 11px;
}

.top-card strong {
  display: block;
  margin-top: 5px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 26px;
}

.leaderboard {
  right: 38px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 170px;
  padding: 13px;
}

.leaderboard small {
  grid-column: 1 / -1;
}

.leaderboard b {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: rgba(34, 150, 147, 0.1);
  color: var(--teal);
  font-size: 12px;
}

.reward-chip {
  right: 66px;
  top: 42px;
  padding: 10px 13px;
  color: var(--teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.solutions {
  position: relative;
}

.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 32px;
  align-items: start;
}

.solution-system {
  position: relative;
  min-height: 250px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: var(--border);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(ellipse at 70% 10%, rgba(164, 211, 208, 0.42), transparent 46%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.system-line {
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 150, 147, 0.52), transparent);
}

.system-node {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(194, 192, 190, 0.6);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.62);
  color: var(--slate);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
}

.system-node.active {
  background: var(--charcoal);
  color: var(--white);
  box-shadow: 0 20px 34px rgba(41, 41, 41, 0.16);
}

.solution-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card,
.why-card,
.work-card,
.process-step {
  border: var(--border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 44px rgba(41, 41, 41, 0.07);
  backdrop-filter: blur(12px);
}

.solution-card {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.solution-card:hover,
.work-card:hover,
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 150, 147, 0.4);
}

.why {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(251, 248, 246, 0)),
    linear-gradient(90deg, rgba(34, 150, 147, 0.06), transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.why-panel {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border-radius: var(--radius-panel);
  background: var(--charcoal);
  box-shadow: 0 24px 64px rgba(41, 41, 41, 0.2);
}

.why-panel h2,
.why-panel p {
  color: var(--white);
}

.why-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.operating-card {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.operating-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.07);
}

.operating-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.operating-card b {
  color: var(--pale-teal);
  font-family: "Manrope", Arial, sans-serif;
}

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

.why-card {
  min-height: 250px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process-track::before {
  position: absolute;
  content: "";
  left: 7%;
  right: 7%;
  top: 47px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 150, 147, 0.5), transparent);
}

.process-step {
  position: relative;
  padding: 24px;
  min-height: 240px;
}

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

.work-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.work-meta {
  width: fit-content;
  padding: 8px 11px;
  border-radius: var(--radius-pill);
  background: rgba(34, 150, 147, 0.1);
  color: var(--teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
}

.tags span {
  padding: 7px 9px;
  border: 1px solid rgba(194, 192, 190, 0.58);
  border-radius: var(--radius-pill);
  color: var(--slate);
  font-size: 12px;
  line-height: 1;
}

.work-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.cta-section {
  padding: 70px 0 46px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: stretch;
  padding: 56px;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 82% 25%, rgba(164, 211, 208, 0.24), transparent 38%),
    linear-gradient(135deg, #292929, #1f1f1f);
  box-shadow: 0 26px 74px rgba(41, 41, 41, 0.22);
}

.cta-panel::before {
  position: absolute;
  content: "";
  width: 520px;
  height: 140px;
  right: -120px;
  top: 54px;
  border: 1px solid rgba(164, 211, 208, 0.18);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-panel > * {
  position: relative;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-routes {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-routes a {
  width: fit-content;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.form-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.form-topline span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(34, 150, 147, 0.16);
}

.brief-form label {
  display: grid;
  gap: 7px;
}

.brief-form label span {
  color: rgba(255, 255, 255, 0.64);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: 500 14px/1.4 "Inter", Arial, sans-serif;
  outline: none;
  padding: 0 13px;
}

.brief-form textarea {
  min-height: 92px;
  resize: vertical;
  padding-top: 12px;
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.brief-form select option {
  color: var(--charcoal);
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: rgba(164, 211, 208, 0.72);
  box-shadow: 0 0 0 3px rgba(34, 150, 147, 0.14);
}

.brief-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.brief-actions button {
  cursor: pointer;
  background: transparent;
}

.site-footer {
  padding: 52px 0 34px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 36px;
  align-items: start;
}

.footer-logo {
  width: 138px;
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0;
  max-width: 260px;
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.footer-contact {
  display: grid;
  gap: 9px;
  justify-content: end;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

@media (max-width: 1120px) {
  h1 {
    font-size: 56px;
  }

  .hero-grid,
  .solutions-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .motion-topline p {
    max-width: 680px;
  }

  .motion-video {
    height: min(62vh, 620px);
    min-height: 460px;
  }

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

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

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

  .process-track::before {
    display: none;
  }
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 9px 10px 9px 16px;
  }

  .brand img {
    width: 120px;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: var(--border);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px;
    border-radius: var(--radius-pill);
  }

  .site-nav a:hover {
    background: rgba(34, 150, 147, 0.08);
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .motion-showcase {
    min-height: auto;
    padding: 6px 0 82px;
  }

  .motion-stage {
    position: relative;
    top: auto;
    border-radius: var(--radius-panel);
    transform: none;
  }

  .motion-video {
    height: 58vw;
    min-height: 340px;
  }

  .motion-overlay {
    left: 18px;
    right: 18px;
    bottom: 22px;
    font-size: 12px;
  }

  .motion-progress {
    left: 18px;
    right: 18px;
    bottom: 10px;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    font-size: 48px;
  }

  .section-heading h2,
  .why-panel h2,
  .cta-panel h2 {
    font-size: 38px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .service-card-wide {
    grid-column: span 6;
    min-height: auto;
  }

  .service-card-wide .service-visual {
    min-height: 330px;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 38px 28px;
  }

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

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

  .footer-contact {
    justify-content: start;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 70px 0;
  }

  .hero {
    padding-top: 128px;
  }

  h1 {
    max-width: 100%;
    font-size: 35px;
    line-height: 1.08;
  }

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

  .motion-shell {
    gap: 18px;
  }

  .motion-topline h2 {
    font-size: 36px;
    line-height: 1.06;
  }

  .motion-topline p {
    font-size: 15px;
  }

  .motion-video {
    height: 72vw;
    min-height: 260px;
  }

  .motion-overlay {
    display: grid;
    justify-content: start;
    bottom: 18px;
  }

  .motion-overlay span:last-child {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .intent-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .intent-strip a {
    width: 100%;
    text-align: center;
  }

  .brief-actions {
    grid-template-columns: 1fr;
  }

  .visual-frame {
    min-height: 390px;
  }

  .visual-frame::before,
  .glass-tile-a,
  .glass-tile-b,
  .glass-tile-c {
    display: none;
  }

  .service-content,
  .service-card-wide .service-content,
  .why-panel,
  .solution-card,
  .work-card,
  .process-step {
    padding: 24px;
  }

  .service-visual,
  .service-card-wide .service-visual {
    min-height: 260px;
  }

  .service-visual img {
    max-width: 320px;
  }

  .solution-system {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 20px;
  }

  .system-line {
    display: none;
  }

  .solution-cards,
  .work-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .why-panel {
    min-height: auto;
  }

  .work-card {
    min-height: 260px;
  }
}

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

  .motion-stage {
    transform: none;
  }
}
