:root {
  --ink: #091318;
  --ink-soft: #19272d;
  --paper: #f3f0e8;
  --paper-deep: #e8e3d8;
  --white: #fffef9;
  --cyan: #017eff;
  --cyan-soft: #a9f5eb;
  --orange: #ff6a35;
  --orange-soft: #ffb293;
  --line: rgba(9, 19, 24, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --radius: 24px;
  --radius-small: 14px;
  --font-body: "Manrope", sans-serif;
  --font-display: "Space Grotesk", sans-serif;
  --shadow: 0 24px 70px rgba(2, 12, 16, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--cyan);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 1000;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .05);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 114px;
  padding: 0 clamp(24px, 4vw, 72px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  transition: height .35s ease, background .35s ease, border-color .35s ease, color .35s ease;
  border-bottom: 1px solid rgba(9, 19, 24, 0.08);
}

.site-header.is-scrolled {
  height: 114px;
  color: var(--ink);
  background: rgba(243, 240, 232, .92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-logo {
  height: 102px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform .25s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 42px);
}

.desktop-nav a {
  position: relative;
  font-size: .87rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  transition: transform .3s ease;
}

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

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

.menu-toggle {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: translateX(-105%);
  transition: transform .45s cubic-bezier(.65, 0, .15, 1);
  background: var(--orange);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(0);
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  background: var(--cyan);
  font-size: .82rem;
}

.button--primary {
  color: var(--ink);
  background: var(--cyan);
  box-shadow: 0 12px 35px rgba(72, 230, 210, .22);
}

.button--dark {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.text-link span {
  color: var(--orange);
  transition: transform .25s ease;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.mobile-menu {
  position: fixed;
  z-index: 850;
  inset: 0;
  display: none;
  padding: 120px 28px 40px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-100%);
  visibility: hidden;
}

.mobile-menu nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font: 600 clamp(2rem, 10vw, 4rem)/1.1 var(--font-display);
}

.mobile-menu a span {
  color: var(--cyan);
  font: 700 .72rem/1 var(--font-body);
}

.mobile-menu__signal {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(72, 230, 210, .2);
  border-radius: 50%;
}

.mobile-menu__signal::before,
.mobile-menu__signal::after {
  content: "";
  position: absolute;
  inset: 60px;
  border: inherit;
  border-radius: inherit;
}

.mobile-menu__signal::after {
  inset: 125px;
}

.section-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-signal {
  background: var(--cyan);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 70px;
}

.section-heading h2,
.skills-copy h2,
.contact-copy h2 {
  margin: 0;
  font: 600 clamp(2.65rem, 6vw, 6rem)/.95 var(--font-display);
  letter-spacing: -.065em;
}

.section-heading>p:last-child,
.skills-copy>p:last-child,
.contact-copy>p:nth-of-type(2) {
  max-width: 620px;
  margin: 28px 0 0;
  color: #506068;
  font-size: 1.04rem;
}

.section-heading--light>p:last-child,
.section-heading--light.section-heading--split>p {
  color: rgba(255, 255, 255, .62);
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  max-width: none;
  gap: 70px;
}

.section-heading--split>p {
  margin: 0 0 4px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 30px;
  padding: 130px clamp(24px, 6vw, 105px) 76px;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 35%, rgba(1, 126, 255, 0.14), transparent 45%),
    radial-gradient(circle at 20% 65%, rgba(255, 106, 53, 0.12), transparent 42%),
    linear-gradient(135deg, #ffffff 0%, #f6f3eb 50%, #eae5db 100%);
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(rgba(9, 19, 24, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(9, 19, 24, .07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .65) 0%, transparent 50%, rgba(255, 255, 255, .1));
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(1, 126, 255, 0.16);
  border-radius: 50%;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}

.hero-orbit--one {
  right: -7vw;
  top: 12vh;
  width: 42vw;
  height: 42vw;
}

.hero-orbit--one::before {
  top: 15%;
  left: 10%;
}

.hero-orbit--two {
  right: 9vw;
  top: 26vh;
  width: 23vw;
  height: 23vw;
}

.hero-orbit--two::before {
  right: 6%;
  bottom: 23%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 920px;
}

.hero-title {
  margin: 0;
  color: var(--ink);
  font: 600 clamp(2.2rem, 4.2vw, 4.8rem)/.95 var(--font-display);
  letter-spacing: -.035em;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-line--accent {
  color: var(--cyan);
}

.accent-dot {
  position: relative;
}

.accent-dot::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 57%;
  width: .09em;
  height: .09em;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 106, 53, .8);
}

.hero-description {
  max-width: 650px;
  margin: 35px 0 0;
  color: #33444c;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 35px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 25px;
  margin-top: 46px;
  color: rgba(9, 19, 24, 0.72);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.hero-meta i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
}

.hero-kid-img {
  width: 100%;
  min-width: 1000px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(9, 19, 24, 0.1));
  animation: floatKid 4.5s ease-in-out infinite;
}

@keyframes floatKid {

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

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

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: rgba(9, 19, 24, 0.65);
}

.scroll-cue__code {
  font: 700 .66rem/1 var(--font-display);
  letter-spacing: .1em;
}

.scroll-cue__line {
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(9, 19, 24, 0.15);
}

.scroll-cue__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: var(--cyan);
  animation: scrollLine 1.7s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-120%);
  }

  70%,
  100% {
    transform: translateY(220%);
  }
}

@keyframes pulse {
  50% {
    opacity: .25;
  }
}

.journey {
  padding: 150px 0 170px;
}

.journey-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(350px, 0.9fr) minmax(400px, 1.1fr);
  gap: 70px;
}

.journey-track {
  position: absolute;
  left: calc(50% - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, .08);
}

.journey-track span {
  display: block;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(var(--cyan), var(--orange));
}

.journey-visual {
  position: sticky;
  top: 15vh;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.journey-image-frame {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(1, 126, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 35px rgba(1, 126, 255, 0.3);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.journey-image-frame:hover {
  border-color: rgba(1, 126, 255, 0.6);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(1, 126, 255, 0.45);
}

.journey-image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(9, 19, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.journey-image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  background: #0d151a;
}

.journey-img-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96) translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-img-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.journey-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journey-image-dots {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  display: flex;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(9, 19, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.journey-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.journey-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.journey-frame-glow {
  position: absolute;
  inset: -20px;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(1, 126, 255, 0.3), rgba(255, 106, 53, 0.15), transparent 70%);
  pointer-events: none;
  filter: blur(24px);
}

.journey-steps {
  grid-column: 2;
}

.journey-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  min-height: 260px;
  padding: 35px 0 60px 58px;
  opacity: .25;
  transition: opacity .35s ease, transform .35s ease;
}

.journey-step.is-active {
  opacity: 1;
  transform: translateX(12px);
}

.journey-step__number {
  padding-top: 12px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
}

.journey-step h3 {
  margin: 0;
  font: 600 clamp(2.3rem, 4vw, 3.2rem)/1 var(--font-display);
  letter-spacing: -.05em;
}

.journey-step p {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .6);
}

.programs {
  padding: 150px 0 170px;
}

.programs .section-heading {
  max-width: 900px;
}

.lab-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  min-height: 720px;
}

.lab-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lab-connections path {
  fill: none;
  stroke: rgba(9, 19, 24, .12);
  stroke-width: 2;
  stroke-dasharray: 5 8;
}

.lab-node {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: 0 12px 35px rgba(9, 19, 24, 0.14);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.lab-node::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lab-node::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(9, 19, 24, 0.45) 0%, rgba(9, 19, 24, 0.70) 100%);
  transition: background 0.4s ease;
}

.lab-node:hover,
.lab-node:focus-visible {
  z-index: 5;
  transform: translateY(-10px) rotate(-.5deg);
  border-color: rgba(1, 126, 255, 0.7);
  box-shadow: 0 20px 45px rgba(9, 19, 24, 0.4);
  outline: 0;
}

.lab-node:hover::before,
.lab-node:focus-visible::before {
  transform: scale(1.08);
}

.lab-node:hover::after,
.lab-node:focus-visible::after {
  background: linear-gradient(135deg, rgba(9, 19, 24, 0.20) 0%, rgba(9, 19, 24, 0.50) 100%);
}

.lab-node__index {
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.lab-node__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 20px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(9, 19, 24, 0.65);
  backdrop-filter: blur(8px);
  font: 700 1rem/1 var(--font-display);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lab-node h3 {
  margin: 0;
  color: var(--white);
  font: 600 1.45rem/1.1 var(--font-display);
  letter-spacing: -.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.lab-node p {
  margin: 13px 0 19px;
  color: rgba(255, 255, 255, 0.95);
  font-size: .9rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.lab-node ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.lab-node li {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(9, 19, 24, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  font-size: .68rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.lab-node--coding {
  --card-bg: url('laboratuvar/robotik-kodlama.jpeg');
  grid-column: 1 / 5;
  grid-row: 1;
}

.lab-node--stem {
  --card-bg: url('laboratuvar/stem-ve-deney.jpeg');
  grid-column: 5 / 9;
  grid-row: 1;
  margin-top: 70px;
}

.lab-node--design {
  --card-bg: url('laboratuvar/3d-tasarim.jpeg');
  grid-column: 9 / 13;
  grid-row: 1;
}

.lab-node--ai {
  --card-bg: url('laboratuvar/yapay-zeka.jpeg');
  grid-column: 2 / 6;
  grid-row: 2;
}

.lab-node--mind {
  --card-bg: url('laboratuvar/akil-zeka.jpeg');
  grid-column: 6 / 10;
  grid-row: 2;
  margin-top: 60px;
}

.lab-node--vr {
  --card-bg: url('laboratuvar/sanal-gerceklik.jpeg');
  grid-column: 10 / 13;
  grid-row: 2;
}

.content-note {
  margin: 35px 0 0;
  color: #6d797e;
  font-size: .78rem;
}

.skills {
  padding: 150px 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 85px;
  align-items: center;
}

.skills-copy>p:last-child,
.contact-copy>p:nth-of-type(2) {
  color: rgba(9, 19, 24, .68);
}

.skill-console {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 560px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 14px 14px 0 var(--ink);
  overflow: hidden;
}

.console-topbar {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 43px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.console-topbar span {
  width: 8px;
  height: 8px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.console-topbar span:first-child {
  background: var(--orange);
}

.console-topbar small {
  margin-left: auto;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.console-radar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding-top: 43px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(9, 19, 24, .18);
  border-radius: 50%;
}

.radar-ring--one {
  width: 70%;
  aspect-ratio: 1;
}

.radar-ring--two {
  width: 48%;
  aspect-ratio: 1;
}

.radar-ring--three {
  width: 25%;
  aspect-ratio: 1;
}

.radar-sweep {
  position: absolute;
  width: 35%;
  height: 1px;
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--orange));
  animation: radar 4s linear infinite;
}

.radar-point {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cyan);
}

.radar-point--one {
  top: 31%;
  left: 54%;
}

.radar-point--two {
  top: 63%;
  left: 29%;
}

.radar-point--three {
  top: 72%;
  left: 67%;
}

.radar-point--four {
  top: 45%;
  left: 39%;
}

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

.skill-list {
  padding: 70px 30px 115px;
}

.skill-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  background: transparent;
  font: 600 clamp(1.05rem, 1.6vw, 1.45rem)/1.2 var(--font-display);
  cursor: pointer;
  transition: padding .25s ease, color .25s ease;
}

.skill-item span {
  padding-top: 3px;
  color: #778287;
  font: 800 .62rem/1 var(--font-body);
}

.skill-item:hover,
.skill-item.is-active {
  padding-left: 12px;
  color: var(--orange);
}

.skill-detail {
  position: absolute;
  right: 30px;
  bottom: 20px;
  left: calc(40% + 30px);
  margin: 0;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: .78rem;
  font-weight: 700;
}

.projects {
  padding: 150px 0 170px;
}

.project-deck {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.project-card {
  grid-column: span 4;
  min-height: 480px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #0f1d23;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(72, 230, 210, .45);
}

.project-card--large {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 530px;
}

.project-card--wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 400px;
}

.project-card__visual {
  position: relative;
  min-height: 270px;
  background: radial-gradient(circle at center, rgba(72, 230, 210, .13), transparent 55%), linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  overflow: hidden;
}

.project-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.project-card__copy>span {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-card__copy h3 {
  margin: 12px 0;
  font: 600 clamp(1.7rem, 3vw, 3rem)/1 var(--font-display);
  letter-spacing: -.05em;
}

.project-card__copy p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
}

.project-card__copy div {
  display: flex;
  gap: 7px;
  margin-top: 28px;
}

.project-card__copy small {
  padding: 6px 9px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  color: rgba(255, 255, 255, .58);
}

.project-card__visual--car {
  min-height: 100%;
}

.car-body {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 220px;
  height: 100px;
  transform: translate(-50%, -50%) rotate(-7deg);
  border: 2px solid var(--cyan);
  border-radius: 30px 50px 18px 18px;
  box-shadow: inset 0 0 40px rgba(72, 230, 210, .08), 0 0 40px rgba(72, 230, 210, .08);
}

.car-body::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 45px;
  width: 105px;
  height: 48px;
  border: 2px solid var(--orange);
  border-bottom: 0;
  border-radius: 25px 25px 0 0;
}

.car-body::after {
  content: "";
  position: absolute;
  top: 31px;
  right: -12px;
  width: 20px;
  height: 28px;
  border-radius: 5px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 106, 53, .5);
}

.car-wheel {
  position: absolute;
  top: 61%;
  width: 56px;
  height: 56px;
  border: 8px solid #26373f;
  border-radius: 50%;
  background: var(--cyan);
}

.car-wheel--one {
  left: calc(50% - 82px);
}

.car-wheel--two {
  left: calc(50% + 65px);
}

.sensor-wave {
  position: absolute;
  top: 44%;
  left: calc(50% + 120px);
  width: 100px;
  height: 100px;
  border: 1px solid var(--orange);
  border-left: 0;
  border-radius: 0 100% 100% 0;
  animation: sensor 2s ease-in-out infinite;
}

.sensor-wave::before,
.sensor-wave::after {
  content: "";
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  right: 20px;
  border: inherit;
  border-radius: inherit;
}

.sensor-wave::after {
  top: 30px;
  bottom: 30px;
  right: 40px;
}

@keyframes sensor {
  50% {
    opacity: .25;
    transform: scale(1.12);
  }
}

.home-wall {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 110px;
  transform: translate(-50%, -35%);
  border: 2px solid var(--cyan);
}

.home-roof {
  position: absolute;
  left: 50%;
  top: 34%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.home-signal {
  position: absolute;
  left: calc(50% - 4px);
  top: 42%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 20px rgba(255, 106, 53, .08), 0 0 0 40px rgba(255, 106, 53, .04);
  animation: pulse 1.4s ease infinite;
}

.project-card__visual--cube {
  display: grid;
  place-items: center;
  perspective: 600px;
}

.project-card__visual--cube span {
  width: 115px;
  height: 115px;
  border: 2px solid var(--cyan);
  transform: rotateX(55deg) rotateZ(45deg);
  box-shadow: 45px 45px 0 -2px rgba(255, 106, 53, .06), 45px 45px 0 0 var(--orange);
  animation: cubeFloat 4s ease-in-out infinite;
}

@keyframes cubeFloat {
  50% {
    transform: translateY(-14px) rotateX(55deg) rotateZ(48deg);
  }
}

.project-card__visual--ai {
  min-height: 100%;
}

.ai-node {
  position: absolute;
  width: 64px;
  height: 64px;
  border: 2px solid var(--cyan);
  border-radius: 18px;
  background: #0f1d23;
  box-shadow: 0 0 35px rgba(72, 230, 210, .09);
}

.ai-node::after {
  content: "";
  position: absolute;
  inset: 19px;
  border-radius: 50%;
  background: var(--orange);
}

.ai-node--one {
  top: 26%;
  left: 17%;
}

.ai-node--two {
  top: 55%;
  left: 45%;
}

.ai-node--three {
  top: 22%;
  right: 13%;
}

.ai-line {
  position: absolute;
  height: 2px;
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

.ai-line--one {
  top: 39%;
  left: 25%;
  width: 240px;
  transform: rotate(11deg);
}

.ai-line--two {
  top: 57%;
  left: 51%;
  width: 190px;
  transform: rotate(-25deg);
}

.atelier {
  padding: 150px 0 180px;
}

.workbench {
  position: relative;
  min-height: 720px;
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 35px;
  background: #d8c9ae;
  box-shadow: inset 0 0 80px rgba(82, 55, 25, .08);
  overflow: hidden;
}

.workbench::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(90deg, transparent 49.6%, rgba(70, 45, 20, .16) 50%, transparent 50.4%), linear-gradient(transparent 49.6%, rgba(70, 45, 20, .12) 50%, transparent 50.4%);
  background-size: 210px 210px;
}

.workbench-card {
  position: absolute;
  z-index: 2;
  padding: 14px 14px 20px;
  color: var(--ink);
  background: #fffaf0;
  box-shadow: 0 20px 40px rgba(69, 48, 24, .18);
  transition: transform .35s ease, box-shadow .35s ease;
}

.workbench-card:hover {
  z-index: 5;
  box-shadow: 0 30px 60px rgba(69, 48, 24, .25);
}

.workbench-card p {
  margin: 16px 4px 0;
  font: 600 1.05rem/1.2 var(--font-display);
}

.workbench-card--one {
  top: 9%;
  left: 8%;
  width: 33%;
  transform: rotate(-5deg);
}

.workbench-card--one:hover {
  transform: rotate(-2deg) translateY(-10px);
}

.workbench-card--two {
  top: 16%;
  right: 8%;
  width: 31%;
  transform: rotate(4deg);
}

.workbench-card--two:hover {
  transform: rotate(1deg) translateY(-10px);
}

.workbench-card--three {
  left: 37%;
  bottom: 7%;
  width: 31%;
  transform: rotate(-1deg);
}

.workbench-card--three:hover {
  transform: rotate(2deg) translateY(-10px);
}

.workbench-placeholder {
  display: grid;
  place-items: center;
  min-height: 250px;
  color: var(--white);
  background-color: #102129;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s ease;
}

.workbench-card--one .workbench-placeholder {
  background-image: url('yarisma/first-3.jpg');
}

.workbench-card--two .workbench-placeholder {
  background-image: url('yarisma/first-1.jpg');
}

.workbench-card--three .workbench-placeholder {
  background-image: url('yarisma/first-2.png');
}

.workbench-card:hover .workbench-placeholder {
  transform: scale(1.03);
}

.tape {
  position: absolute;
  top: -15px;
  left: 38%;
  width: 80px;
  height: 30px;
  transform: rotate(2deg);
  background: rgba(255, 228, 144, .72);
}

.tape--orange {
  background: rgba(255, 106, 53, .45);
}

.paperclip {
  position: absolute;
  right: 16px;
  top: -22px;
  width: 28px;
  height: 60px;
  border: 3px solid #7a7f7e;
  border-bottom-color: transparent;
  border-radius: 20px 20px 0 0;
}

.workbench-note {
  position: absolute;
  z-index: 1;
  left: 8%;
  bottom: 8%;
  width: 24%;
  padding: 25px;
  transform: rotate(2deg);
  background: #fff0a8;
  box-shadow: 0 18px 30px rgba(69, 48, 24, .12);
}

.workbench-note span {
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.workbench-note p {
  margin: 14px 0 0;
  font: 600 1.25rem/1.3 var(--font-display);
}

.workbench-tools {
  position: absolute;
  right: 10%;
  bottom: 13%;
  display: flex;
  align-items: end;
  gap: 12px;
}

.workbench-tools span {
  display: block;
  width: 18px;
  height: 130px;
  border-radius: 9px;
  background: var(--ink);
  transform: rotate(28deg);
}

.workbench-tools span:nth-child(2) {
  height: 90px;
  background: var(--orange);
}

.workbench-tools span:nth-child(3) {
  width: 70px;
  height: 70px;
  border: 14px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.instagram-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  font-weight: 800;
}

.instagram-link span {
  color: var(--orange);
}

.approach {
  padding: 150px 0;
}

.approach-list {
  border-top: 1px solid var(--line-light);
}

.approach-list article {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: center;
  gap: 30px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding .35s ease, background .35s ease;
}

.approach-list article:hover {
  padding-left: 25px;
  padding-right: 25px;
  background: rgba(255, 255, 255, .035);
}

.approach-list article>span {
  color: var(--cyan);
  font-size: .68rem;
  font-weight: 800;
}

.approach-list h3 {
  margin: 0;
  font: 600 clamp(1.7rem, 3vw, 3.2rem)/1 var(--font-display);
  letter-spacing: -.05em;
}

.approach-list p {
  max-width: 700px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .57);
}

.approach-list i {
  color: var(--orange);
  font-style: normal;
  font-size: 1.5rem;
  transition: transform .3s ease;
}

.approach-list article:hover i {
  transform: translate(5px, -5px);
}

.faq {
  padding: 150px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
}

.faq-list {
  border-top: 2px solid var(--white);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  color: var(--white);
  font: 600 clamp(1.05rem, 1.7vw, 1.35rem)/1.3 var(--font-display);
  cursor: pointer;
  list-style: none;
  transition: color .25s ease;
}

.faq-list summary:hover {
  color: var(--cyan);
}

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

.faq-list summary span {
  position: relative;
  flex: 0 0 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transition: border-color .25s ease, background .25s ease;
}

.faq-list summary:hover span {
  border-color: var(--cyan);
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--white);
  transition: background .25s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .25s ease;
}

.faq-list details[open] summary span {
  background: var(--cyan);
  border-color: var(--cyan);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: var(--ink);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 670px;
  margin: -3px 50px 25px 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  padding: 150px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.contact-instagram {
  display: inline-flex;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--ink);
  font-weight: 800;
}

.contact-form {
  position: relative;
  padding: 38px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 21px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #9ca4a5;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: 0;
  transition: border-color .25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .is-invalid {
  border-color: #c4301c;
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 5px;
  color: #b22819;
  font-size: .64rem;
}

.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 0 0 5px !important;
  color: #58666b;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  accent-color: var(--orange);
}

.consent strong {
  color: var(--ink);
}

.form-note {
  margin: 15px 0 0;
  color: #6d797e;
  font-size: .65rem;
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: var(--cyan-soft);
}

.form-success.is-visible {
  display: flex;
  flex-direction: column;
}

.form-success span {
  margin-top: 4px;
  color: #405054;
  font-size: .8rem;
}

.site-footer {
  position: relative;
  padding: 85px 0 25px;
  color: var(--white);
  background: #061015;
  overflow: hidden;
}

.footer-signal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .08);
}

.footer-signal span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--orange));
  animation: footerSignal 6s linear infinite;
}

@keyframes footerSignal {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(350%);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.2fr 1.6fr;
  gap: 45px;
}

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

.brand-logo--footer {
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.footer-brand-col p {
  max-width: 340px;
  color: rgba(255, 255, 255, .58);
  font-size: .84rem;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links-col a,
.footer-contact-item {
  color: rgba(255, 255, 255, .65);
  font-size: .84rem;
  transition: color 0.25s ease;
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-contact-item:hover {
  color: var(--white);
}

.contact-icon {
  font-style: normal;
  font-size: 0.95rem;
}

.footer-map-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(1, 126, 255, 0.12);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}

.map-directions-btn:hover {
  background: var(--cyan);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .35);
  font-size: .7rem;
}

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

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

  .menu-toggle {
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: transform .3s ease;
  }

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

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

  .mobile-menu {
    display: block;
  }

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

  .hero-title {
    font-size: clamp(3.6rem, 8vw, 6.5rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-kid-img {
    min-width: 0;
  }

  .skills-grid,
  .contact-grid {
    gap: 50px;
  }

  .faq-grid {
    gap: 60px;
  }

  .lab-node--coding {
    grid-column: 1 / 7;
  }

  .lab-node--stem {
    grid-column: 7 / 13;
  }

  .lab-node--design {
    grid-column: 1 / 7;
    grid-row: 2;
  }

  .lab-node--ai {
    grid-column: 7 / 13;
    grid-row: 2;
  }

  .lab-node--mind {
    grid-column: 1 / 7;
    grid-row: 3;
  }

  .lab-node--vr {
    grid-column: 7 / 13;
    grid-row: 3;
  }

  .lab-node--stem,
  .lab-node--mind {
    margin-top: 30px;
  }

  .lab-map {
    min-height: auto;
  }

  .lab-connections {
    display: none;
  }
}

@media (max-width: 820px) {
  .section-shell {
    width: min(100% - 34px, 720px);
  }

  .section-heading--split,
  .skills-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 130px 24px 80px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 20px;
    width: 100%;
  }

  .hero-kid-img {
    min-width: 0;
    max-width: 340px;
    margin: 0 auto;
  }

  .robot-label--logic {
    left: 6%;
  }

  .scroll-cue {
    display: none;
  }

  .journey,
  .programs,
  .skills,
  .projects,
  .atelier,
  .approach,
  .faq,
  .contact {
    padding: 105px 0;
  }

  .journey-stage {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .journey-track {
    left: 19px;
    top: 480px;
  }

  .journey-visual {
    position: sticky;
    top: 75px;
    z-index: 20;
    min-height: auto;
    margin-bottom: 20px;
  }

  .journey-steps {
    grid-column: auto;
  }

  .journey-step {
    grid-template-columns: 40px 1fr;
    min-height: auto;
    padding: 35px 0 55px 35px;
  }

  .journey-step.is-active {
    transform: translateX(6px);
  }

  .lab-node {
    grid-column: span 6 !important;
    grid-row: auto !important;
    margin-top: 0 !important;
  }

  .skill-console {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .console-radar {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .skill-detail {
    left: 30px;
  }

  .project-card,
  .project-card--large,
  .project-card--wide {
    grid-column: span 12;
  }

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

  .project-card__visual--car,
  .project-card__visual--ai {
    min-height: 350px;
  }

  .workbench {
    min-height: 960px;
  }

  .workbench-card--one {
    width: 54%;
  }

  .workbench-card--two {
    top: 29%;
    width: 50%;
  }

  .workbench-card--three {
    left: 25%;
    bottom: 8%;
    width: 50%;
  }

  .workbench-note {
    left: 7%;
    bottom: 31%;
    width: 30%;
  }

  .workbench-tools {
    right: 7%;
    bottom: 26%;
  }

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

@media (max-width: 560px) {
  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .site-header.is-scrolled {
    height: 72px;
  }

  .brand-logo {
    height: 42px;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 6.8vw, 2.8rem);
    line-height: .98;
  }

  .hero-description {
    margin-top: 26px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .button--primary {
    width: 100%;
  }

  .hero-meta {
    display: grid;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 15px;
  }

  .hero-kid-img {
    max-width: 280px;
  }

  .robot-label {
    font-size: .55rem;
  }

  .robot-label::before {
    width: 25px;
  }

  .robot-label--sensor {
    top: 17%;
  }

  .robot-label--logic {
    top: 48%;
    left: 0;
  }

  .robot-label--motion {
    bottom: 20%;
  }

  .visual-status {
    right: 0;
    bottom: 0;
  }

  .section-heading {
    margin-bottom: 48px;
  }

  .section-heading h2,
  .skills-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .journey-core {
    width: 235px;
  }

  .journey-code--one {
    top: 8%;
  }

  .journey-code--three {
    bottom: 5%;
  }

  .lab-map {
    grid-template-columns: 1fr;
  }

  .lab-node {
    grid-column: auto !important;
    min-height: 230px;
  }

  .skill-console {
    box-shadow: 7px 7px 0 var(--ink);
  }

  .console-radar {
    min-height: 290px;
  }

  .skill-list {
    padding: 65px 20px 125px;
  }

  .skill-detail {
    right: 20px;
    left: 20px;
  }

  .project-card {
    min-height: 420px;
  }

  .car-body {
    transform: translate(-50%, -50%) rotate(-7deg) scale(.75);
  }

  .car-wheel {
    transform: scale(.75);
  }

  .car-wheel--one {
    left: calc(50% - 70px);
  }

  .car-wheel--two {
    left: calc(50% + 48px);
  }

  .sensor-wave {
    left: calc(50% + 70px);
    transform: scale(.7);
  }

  .workbench {
    min-height: 1110px;
    padding: 22px;
  }

  .workbench-card--one {
    top: 6%;
    left: 6%;
    width: 82%;
  }

  .workbench-card--two {
    top: 36%;
    right: 6%;
    width: 78%;
  }

  .workbench-card--three {
    left: 12%;
    bottom: 5%;
    width: 76%;
  }

  .workbench-placeholder {
    min-height: 210px;
  }

  .workbench-note {
    left: 5%;
    bottom: 30%;
    width: 50%;
  }

  .workbench-tools {
    right: 4%;
    bottom: 31%;
    transform: scale(.7);
    transform-origin: right bottom;
  }

  .approach-list article {
    grid-template-columns: 40px 1fr;
    gap: 15px;
  }

  .approach-list article>i {
    display: none;
  }

  .approach-list h3 {
    font-size: 1.7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 25px 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

.floating-whatsapp {
  position: fixed;
  z-index: 9999;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform .3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

.floating-whatsapp:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 560px) {
  .floating-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}