/* =====================
   DESIGN SYSTEM & TOKENS
   ===================== */

:root {
  --bg: #07111f;
  --bg-soft: #0d1b2e;
  --card: rgba(255,255,255,.075);
  --card-border: rgba(255,255,255,.14);
  --text: #f7fbff;
  --muted: #a9b8cb;
  --blue: #00a7ff;
  --cyan: #36e4ff;
  --gold: #f6b642;
  --orange: #ff7a1a;
  --green: #54e6a8;
  --shadow: 0 24px 80px rgba(0, 120, 255, .18);
  --shadow-sm: 0 12px 40px rgba(0, 120, 255, .12);
  --shadow-lg: 0 32px 120px rgba(0, 120, 255, .22);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-lg: 40px;
  --transition: cubic-bezier(.25,.46,.45,.94) .3s;
  --nav-height: 80px;
}

/* =====================
   RESET & BASE STYLES
   ===================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,122,26,.18), transparent 28%),
    radial-gradient(circle at 75% 0%, rgba(0,167,255,.22), transparent 32%),
    radial-gradient(circle at 50% 65%, rgba(54,228,255,.08), transparent 28%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
}

img,
video {
  max-width: 100%;
}

img {
  height: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: min(1200px, calc(100% - clamp(28px, 5vw, 48px)));
  margin: 0 auto;
}

/* =====================
   TYPOGRAPHY
   ===================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(48px, 6.5vw, 84px); line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.15; letter-spacing: -0.8px; }
h3 { font-size: clamp(24px, 2.5vw, 32px); line-height: 1.2; }

p { color: var(--muted); font-weight: 400; }

h1,
h2,
h3,
p,
a,
li,
span,
strong,
small {
  overflow-wrap: anywhere;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.reveal-float {
  opacity: 0;
  transform: translate3d(0, 52px, 0) scale(.975);
  filter: blur(12px);
  transition:
    opacity 1.05s cubic-bezier(.16,1,.3,1),
    transform 1.05s cubic-bezier(.16,1,.3,1),
    filter 1.05s cubic-bezier(.16,1,.3,1);
  will-change: opacity, transform, filter;
}

.reveal-float.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-head.reveal-float h2,
.section-head.reveal-float p {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .9s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1);
}

.section-head.reveal-float.is-visible h2,
.section-head.reveal-float.is-visible p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section-head.reveal-float.is-visible p {
  transition-delay: .14s;
}

.section-head.reveal-float.is-visible p:nth-of-type(2) {
  transition-delay: .26s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-float {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .section-head.reveal-float h2,
  .section-head.reveal-float p {
    opacity: 1;
    transform: none;
    transition: none;
  }

}

/* =====================
   NAVIGATION
   ===================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7,17,31,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(7,17,31,.92);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--nav-height);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  font-weight: 600;
  transition: var(--transition);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(0,167,255,.25);
  transition: var(--transition);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.brand-name img {
  display: block;
  width: 96px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #dbe8f7;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-inner > .btn {
  padding: 10px 18px;
  font-size: 13px;
}

/* =====================
   BUTTONS
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn span,
.btn-icon {
  position: relative;
  z-index: 1;
}

.btn-icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--gold), var(--orange), var(--cyan));
  box-shadow: 0 18px 50px rgba(0,167,255,.22);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0,167,255,.32);
}

.btn-secondary {
  background: rgba(255,255,255,.09);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-2px);
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,167,255,.06), transparent);
  filter: blur(40px);
  pointer-events: none;
}

.hero-illustration {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: min(58vw, 920px);
  height: 100%;
  pointer-events: none;
  background: url('../media/ilustration-going-to-digital-universe.png') right center / cover no-repeat;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.08) 15%, rgba(0,0,0,.55) 36%, #000 58%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.08) 15%, rgba(0,0,0,.55) 36%, #000 58%);
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url('../media/ilustration-going-to-digital-universe.png') right center / cover no-repeat;
  opacity: 1;
  transition: opacity 1.2s ease;
}

.hero-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, var(--bg) 0%, rgba(7,17,31,.62) 24%, rgba(7,17,31,.08) 56%, transparent 78%);
}

.hero-illustration img,
.hero-illustration video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.hero-illustration video {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-illustration.is-video-ready video {
  opacity: 1;
}

.hero-illustration.is-video-ready::before {
  opacity: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-grid > div {
  max-width: 880px;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, #bfeeff 28%, var(--cyan) 48%, var(--gold) 68%, #fff);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title {
  position: relative;
  margin-bottom: 28px;
  perspective: 900px;
  isolation: isolate;
}

.hero-title span:not(.hero-title-main) {
  position: relative;
  z-index: 2;
  transform-origin: left center;
  animation: heroTextReveal .9s cubic-bezier(.16,1,.3,1) both;
}

.hero-particles {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(760px, 68vw);
  pointer-events: none;
  opacity: 0;
  background-image:
    radial-gradient(circle, rgba(54,228,255,.75) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(246,182,66,.7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.55) 0 1px, transparent 1.5px);
  background-size: 76px 54px, 118px 82px, 162px 110px;
  background-position: 0 0, 18px 16px, 42px 30px;
  -webkit-mask-image:
    linear-gradient(to right, #000 0 68%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, #000 0 68%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  animation: particlesIn .8s ease .35s both, particlesFloat 9s linear 1s infinite;
}

.hero-title-kicker {
  display: block;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .02em;
  animation-delay: .05s;
}

.hero-title-main {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.12;
  padding-bottom: 4px;
  animation: gradientFlow 7s ease-in-out 1s infinite;
}

.typed-cursor {
  display: inline-block;
  color: var(--cyan);
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 500;
  line-height: 1;
  margin-left: 4px;
}

.hero-title-tagline {
  position: relative;
  display: block;
  width: min(100%, 720px);
  color: #d9e7f6;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  margin-top: 6px;
  padding-bottom: 18px;
  animation-delay: .28s;
}

.hero-title-tagline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(560px, 82vw);
  height: 3px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(54,228,255,.08) 6%, rgba(54,228,255,.48) 34%, rgba(246,182,66,.6) 52%, rgba(246,182,66,.08) 78%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.1) 18%, #fff 42%, var(--cyan) 50%, var(--gold) 62%, transparent 100%);
  background-size: 100% 100%, 36% 100%;
  background-repeat: no-repeat;
  background-position: center, -45% 0;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  clip-path: polygon(0 50%, 8% 0, 88% 0, 100% 50%, 88% 100%, 8% 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 78%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 78%, transparent 100%);
  animation:
    taglineTrace 1.1s cubic-bezier(.16,1,.3,1) .85s both,
    lightningSweep 1.8s cubic-bezier(.16,1,.3,1) 1.15s both,
    traceGlow 3.8s ease-in-out 2.5s infinite;
}

.hero-title-tagline::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 28%;
  bottom: -1px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(54,228,255,.65), rgba(246,182,66,.5), transparent);
  filter: blur(9px);
  opacity: 0;
  animation: lightningGlow 1.1s ease-out 1.1s both;
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateY(22px) rotateX(8deg);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes particlesIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: .75;
    transform: translateX(0);
  }
}

@keyframes particlesFloat {
  from {
    background-position: 0 0, 18px 16px, 42px 30px;
  }

  to {
    background-position: 76px -54px, 136px -66px, 204px -80px;
  }
}

@keyframes gradientFlow {
  0%, 100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes taglineTrace {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes traceGlow {
  0%, 100% {
    opacity: .45;
    filter: drop-shadow(0 0 2px rgba(54,228,255,.28));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(54,228,255,.55));
  }
}

@keyframes lightningSweep {
  from {
    background-position: center, -45% 0;
  }

  to {
    background-position: center, 145% 0;
  }
}

@keyframes lightningGlow {
  0% {
    opacity: 0;
    transform: scaleX(.35);
  }

  35% {
    opacity: .95;
    transform: scaleX(1);
  }

  100% {
    opacity: .25;
    transform: scaleX(1);
  }
}

@keyframes principleDrift {
  0% {
    translate: 0 0;
  }

  50% {
    translate: 8px -2px;
  }

  100% {
    translate: -4px 2px;
  }
}

@keyframes principleDriftAlt {
  0% {
    translate: 0 0;
  }

  50% {
    translate: -7px 2px;
  }

  100% {
    translate: 4px -2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particles,
  .hero-title-tagline::after,
  .partner-principle.is-visible,
  .hero-title span,
  .hero-title-main {
    animation: none;
  }

  .hero-title span {
    clip-path: none;
  }

  .hero-title-main {
    width: auto;
    white-space: normal;
  }
}

.hero p {
  font-size: 18px;
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-actions .btn {
  padding: 11px 20px;
  font-size: 13px;
}

/* =====================
   SECTIONS
   ===================== */

section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 1000px;
  margin-bottom: 54px;
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head p {
  font-size: 18px;
  line-height: 1.7;
}

/* =====================
   CARDS GRID
   ===================== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.partner-matrix {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 5% 0%, rgba(54,228,255,.16), transparent 32%),
    rgba(3,9,18,.44);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

.partner-track {
  content: '';
  position: absolute;
  inset: 26px;
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(54,228,255,.18) 11.2%, transparent 11.5% 52%, rgba(246,182,66,.14) 52.2%, transparent 52.5%),
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 1px);
  background-size: 100% 100%, 100% 76px;
  opacity: .75;
  pointer-events: none;
}

.partner-matrix-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 4px 4px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.partner-matrix-head span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.partner-matrix-head p {
  max-width: 720px;
  color: #d9e7f6;
  font-size: 15px;
  line-height: 1.65;
}

.partner-principle {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(7,17,31,.56);
  border: 1px solid rgba(255,255,255,.09);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 50%, calc(100% - 28px) 100%, 0 100%);
}

.partner-principle.is-visible {
  animation: principleDrift 7s ease-in-out 1.1s infinite alternate;
}

.partner-principle:nth-child(3),
.partner-principle:nth-child(5) {
  margin-left: 56px;
}

.partner-principle:nth-child(4).is-visible,
.partner-principle:nth-child(5).is-visible {
  animation-name: principleDriftAlt;
  animation-delay: 1.35s;
}

.partner-principle::after {
  content: '';
  position: absolute;
  inset: auto 28px 0 108px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(246,182,66,.8), transparent);
  opacity: .75;
}

.principle-number {
  color: var(--gold);
  font-size: 18px;
  font-weight: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 0 20px rgba(54,228,255,.08), 0 0 28px rgba(54,228,255,.12);
}

.principle-copy {
  display: grid;
  grid-template-columns: minmax(230px, .45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.principle-copy h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.1;
}

.principle-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
}

.card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 16px 45px rgba(0,0,0,.16);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(54,228,255,.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,167,255,.18);
}

.card:hover::before {
  opacity: 1;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #06111f;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  transition: var(--transition);
}

.card:hover .icon {
  transform: scale(1.1) rotate(-8deg);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  line-height: 1.7;
}

/* =====================
   DELIVERY BRIDGE
   ===================== */

.delivery-bridge {
  position: relative;
  width: 100%;
  padding: 52px 0;
  border-top: 1px solid rgba(7,17,31,.08);
  border-bottom: 1px solid rgba(7,17,31,.08);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(54,228,255,.1), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(246,182,66,.12), transparent 28%),
    #fff;
}

.delivery-bridge::before,
.delivery-bridge::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(180px, 16vw);
  height: 100%;
  pointer-events: none;
}

.delivery-bridge::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}

.delivery-bridge::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.partner-marquee {
  display: grid;
  gap: 10px;
}

.partner-marquee-row {
  width: 100%;
  padding: 10px 0;
  overflow: visible;
}

.partner-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partnerMarqueeLeft 34s linear infinite;
  will-change: transform;
}

.partner-marquee-row-forward .partner-marquee-track {
  animation-name: partnerMarqueeRight;
}

.partner-marquee-row-reverse .partner-marquee-track {
  animation-name: partnerMarqueeLeft;
  animation-duration: 38s;
}

.partner-marquee-row:hover .partner-marquee-track {
  animation-play-state: paused;
}

.partner-marquee-track img {
  display: block;
  flex: 0 0 auto;
  width: clamp(136px, 12vw, 184px);
  height: 76px;
  object-fit: contain;
  padding: 0;
  filter: grayscale(1) saturate(0) contrast(1.08) brightness(1) drop-shadow(0 10px 22px rgba(7,17,31,.12));
  opacity: .84;
  transition: filter var(--transition), opacity var(--transition), transform var(--transition);
}

.partner-marquee-track img:hover {
  filter: grayscale(0) saturate(1) contrast(1) brightness(1) drop-shadow(0 12px 28px rgba(7,17,31,.16));
  opacity: 1;
  transform: translateY(-3px) scale(1.04);
}

@keyframes partnerMarqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes partnerMarqueeRight {
  from {
    transform: translateX(calc(-50% - 9px));
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track {
    animation: none;
  }
}

/* =====================
   TEAM SECTION
   ===================== */

.team {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
}

.team-showcase {
  min-height: 470px;
  padding: 40px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 18% 18%, rgba(54,228,255,.22), transparent 34%),
    linear-gradient(135deg, rgba(0,167,255,.2), rgba(255,122,26,.12)),
    rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.team-showcase::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,182,66,.18), transparent 68%);
  pointer-events: none;
}

.team-showcase:hover {
  background:
    radial-gradient(circle at 18% 18%, rgba(54,228,255,.26), transparent 34%),
    linear-gradient(135deg, rgba(0,167,255,.24), rgba(255,122,26,.16)),
    rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
}

.team-kicker {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.team-showcase h3 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.team-showcase p {
  color: #d9e7f6;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.72;
}

.team-stage {
  position: relative;
  min-height: 470px;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 38%, rgba(54,228,255,.16), transparent 34%),
    radial-gradient(circle at 26% 74%, rgba(246,182,66,.12), transparent 28%),
    rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.1);
}

.team-stage::before {
  content: '';
  position: absolute;
  inset: 36px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  opacity: .65;
}

.team-visual {
  position: absolute;
  top: 50%;
  right: 42px;
  z-index: 3;
  width: min(310px, 46%);
  padding: 16px;
  border-radius: 34px;
  background: rgba(7,17,31,.76);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.3);
  transform: translateY(-50%);
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.team-visual:hover,
.team-visual.is-previewing {
  border-color: rgba(54,228,255,.34);
  box-shadow: 0 34px 90px rgba(0,167,255,.2);
  transform: translateY(-50%) scale(1.045);
}

.team-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}

.team-visual div {
  padding: 16px 4px 2px;
}

.team-visual span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-visual strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.team-visual p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.team-list {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.team-member {
  position: absolute;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  padding: 3px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--text);
  font: inherit;
  text-align: left;
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
  cursor: pointer;
  overflow: hidden;
  translate: var(--float-x, 0px) var(--float-y, 0px);
  scale: 1;
  transition: scale .28s cubic-bezier(.16,1,.3,1), background .3s ease, border-color .3s ease, box-shadow .3s ease;
  will-change: translate, scale;
}

.team-member:nth-child(1) { top: 12%; left: 10%; }
.team-member:nth-child(2) { top: 38%; left: 4%; }
.team-member:nth-child(3) { bottom: 12%; left: 18%; }
.team-member:nth-child(4) { top: 18%; left: 32%; }
.team-member:nth-child(5) { bottom: 18%; left: 36%; }

.team-member:hover,
.team-member:focus-visible,
.team-member.is-active {
  z-index: 6;
  background: rgba(54,228,255,.13);
  border-color: rgba(54,228,255,.36);
  box-shadow: 0 24px 58px rgba(0,167,255,.2), 0 0 0 7px rgba(54,228,255,.08);
  translate: var(--float-x, 0px) calc(var(--float-y, 0px) - 6px);
  scale: 1.13;
}

.team-member:focus-visible {
  outline: 2px solid rgba(54,228,255,.7);
  outline-offset: 4px;
}

.team-member img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,.08);
}

.team-member span {
  display: none;
}

.team-member strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.team-member small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

/* =====================
   PROCESS SECTION
   ===================== */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  counter-reset: step;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.step {
  position: relative;
  min-height: 430px;
  padding: 34px 28px 32px 0;
  border-right: 1px solid rgba(255,255,255,.1);
}

.step:last-child {
  border-right: 0;
}

.step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  color: rgba(255,255,255,.16);
  font-weight: 900;
  font-size: clamp(54px, 6vw, 88px);
  line-height: .85;
  margin-bottom: 52px;
  letter-spacing: -2px;
}

.step::after {
  content: '';
  position: absolute;
  top: 104px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(246,182,66,.65), transparent);
}

.step h3::before {
  content: '';
  position: absolute;
  top: -61px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(246,182,66,.55);
  z-index: 1;
}

.step h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
}

.step p {
  max-width: 320px;
  font-size: 14px;
  line-height: 1.7;
}

.step ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.step li {
  position: relative;
  padding: 9px 20px 9px 13px;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%, 8px 50%);
  color: #dcecf8;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(54,228,255,.18), rgba(255,255,255,.055));
  border: 1px solid rgba(54,228,255,.16);
  box-shadow: inset 0 0 18px rgba(54,228,255,.04), 0 10px 24px rgba(0,0,0,.12);
}

.step li::after {
  content: '';
  position: absolute;
  inset: 1px 2px 1px 1px;
  clip-path: inherit;
  background: linear-gradient(90deg, rgba(7,17,31,.56), rgba(7,17,31,.16));
  z-index: -1;
}

/* =====================
   CTA SECTION
   ===================== */

.cta {
  padding: 72px 56px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,122,26,.33), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(0,167,255,.34), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.16);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cta:hover {
  border-color: rgba(255,255,255,.22);
  box-shadow: var(--shadow-lg);
}

.cta h2 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.cta p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.7;
}

/* =====================
   CAREER PAGE
   ===================== */

.page-hero {
  position: relative;
  padding: 118px 0 82px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 10% 18%, rgba(54,228,255,.18), transparent 30%),
    radial-gradient(circle at 82% 4%, rgba(246,182,66,.17), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 70%);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: -82px;
  width: min(390px, 34vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(54,228,255,.16);
  background:
    radial-gradient(circle, rgba(54,228,255,.12), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-left: 0;
  margin-right: auto;
  padding-left: clamp(104px, 9vw, 142px);
  text-align: left;
}

.page-kicker {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero h1 {
  max-width: 880px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -1.2px;
}

.career-title {
  width: fit-content;
  padding-bottom: 8px;
  background: linear-gradient(135deg, #fff 18%, #dff8ff 42%, var(--cyan) 68%, var(--gold) 100%);
  background-size: 160% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 22px 70px rgba(54,228,255,.12);
}

.career-title::after {
  content: '';
  display: block;
  width: 62%;
  height: 10px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--cyan) 0%, #fff 34%, var(--gold) 68%, transparent 100%);
  clip-path: polygon(0 45%, 28% 45%, 34% 0, 45% 62%, 59% 18%, 65% 55%, 100% 55%, 100% 78%, 64% 78%, 58% 42%, 45% 86%, 34% 25%, 29% 72%, 0 72%);
  filter: drop-shadow(0 0 10px rgba(54,228,255,.52)) drop-shadow(0 0 14px rgba(246,182,66,.28));
}

.page-hero p {
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.75;
}

.career-hero-note {
  display: inline-grid;
  gap: 7px;
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.055);
}

.career-hero-note span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.career-hero-note strong {
  max-width: 560px;
  color: #eef8ff;
  font-size: 15px;
  line-height: 1.5;
}

.career-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.career-summary-item {
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  overflow: hidden;
}

.career-summary-item::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--gold));
}

.career-summary-item strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.career-summary-item span {
  color: var(--muted);
  font-size: 13px;
}

.career-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.job-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}

.job-card:hover {
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.job-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.job-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.job-meta span {
  color: #d9e7f6;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
}

.job-card ul {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
}

.job-detail {
  margin-top: 22px;
}

.job-detail summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 999px;
  color: #07111f;
  font-size: 13px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  cursor: pointer;
  list-style: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.job-detail summary::-webkit-details-marker {
  display: none;
}

.job-detail summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(7,17,31,.18);
  font-size: 14px;
  line-height: 1;
}

.job-detail[open] summary {
  box-shadow: 0 16px 36px rgba(54,228,255,.18);
}

.job-detail[open] summary::after {
  content: '-';
}

.job-detail summary:hover {
  transform: translateY(-2px);
}

.job-detail-body {
  margin-top: 18px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(7,17,31,.48);
  border: 1px solid rgba(255,255,255,.1);
}

.job-detail-body h4 {
  margin: 18px 0 10px;
  color: #f4fbff;
  font-size: 14px;
}

.job-detail-body h4:first-child {
  margin-top: 0;
}

.job-detail-body p {
  margin: 18px 0 0;
  color: var(--muted);
}

.job-detail-body a {
  color: var(--cyan);
  font-weight: 800;
}

.career-panel {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(0,167,255,.18), rgba(255,122,26,.09)),
    rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.14);
}

.career-panel h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.career-panel p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.application-steps {
  display: grid;
  gap: 0;
  margin: 0 0 20px;
  padding: 0;
  counter-reset: application-step;
  list-style: none;
}

.application-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-bottom: 12px;
  color: #e8f6ff;
  font-size: 14px;
  font-weight: 700;
}

.application-steps li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  left: 13px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(54,228,255,.52), rgba(246,182,66,.32));
}

.application-steps li::before {
  counter-increment: application-step;
  content: counter(application-step);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  background: rgba(7,17,31,.72);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 14px rgba(54,228,255,.08), 0 0 18px rgba(54,228,255,.12);
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.career-panel .btn {
  width: 100%;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: var(--muted);
  background: rgba(3,9,18,.62);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(160px, .7fr));
  gap: 40px;
  padding-bottom: 44px;
}

.footer-company {
  max-width: 420px;
}

.footer-logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 22px;
}

.footer-company p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h3 {
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.footer-column a,
.footer-contact address {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-style: normal;
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hero-illustration {
    width: 78vw;
    height: 58vw;
    opacity: .42;
  }

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

  .team-stage {
    min-height: 540px;
  }

  .grid-3,
  .process,
  .career-summary,
  .career-layout {
    grid-template-columns: 1fr;
  }

  .process {
    border-top: 0;
    border-bottom: 0;
  }

  .step {
    min-height: auto;
    padding: 28px 0 28px 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .step::before {
    position: absolute;
    left: 0;
    top: 30px;
    font-size: 42px;
    margin-bottom: 0;
  }

  .step::after {
    top: 0;
    bottom: 0;
    left: 46px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--cyan), rgba(246,182,66,.65), transparent);
  }

  .step h3::before {
    top: 10px;
    left: -33px;
  }

  .step p {
    max-width: none;
  }

  .partner-principle {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .partner-principle:nth-child(3),
  .partner-principle:nth-child(5) {
    margin-left: 0;
  }

  .principle-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .partner-matrix-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .career-panel {
    position: static;
  }

  .cta {
    padding: 48px 32px;
  }

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

  .footer-company {
    max-width: none;
  }

  section {
    padding: 72px 0;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    gap: 14px;
  }

  .nav-inner > .btn {
    padding: 9px 13px;
    gap: 7px;
    font-size: 12px;
  }

  .btn-icon {
    width: 15px;
    height: 15px;
  }

  .hero {
    min-height: auto;
    padding: 78px 0 52px;
    align-items: flex-start;
  }

  .hero-grid > div {
    max-width: 620px;
  }

  .hero-title {
    margin-bottom: 22px;
  }

  .hero-title-kicker {
    font-size: clamp(16px, 4vw, 22px);
  }

  .hero-title-main {
    font-size: clamp(38px, 11vw, 62px);
  }

  .typed-cursor {
    font-size: clamp(38px, 11vw, 62px);
  }

  .hero-title-tagline {
    width: min(100%, 560px);
    font-size: clamp(22px, 6vw, 34px);
  }

  .hero-actions {
    margin-bottom: 0;
  }

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

  .process {
    gap: 0;
  }

  .team-stage {
    overflow: hidden;
  }

  .team-member span {
    max-width: min(220px, 58vw);
  }

  .job-meta {
    gap: 8px;
  }

  .job-detail summary {
    max-width: 100%;
    white-space: normal;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 70px;
  }

  .nav-inner {
    gap: 16px;
  }

  .brand-name img {
    width: 82px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 13px;
  }

  .hero {
    padding: 64px 0 46px;
  }

  .hero-illustration {
    top: 78px;
    bottom: 0;
    right: -38%;
    width: 118vw;
    height: auto;
    opacity: .24;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-title-main {
    font-size: clamp(33px, 12vw, 46px);
  }

  .typed-cursor {
    font-size: clamp(33px, 12vw, 46px);
  }

  .card {
    padding: 24px;
  }

  .team-showcase {
    min-height: auto;
    padding: 30px;
    border-radius: 28px;
  }

  .delivery-bridge {
    padding: 34px 0;
  }

  .partner-marquee {
    gap: 6px;
  }

  .partner-marquee-row {
    padding: 8px 0;
  }

  .partner-marquee-track {
    gap: 12px;
  }

  .partner-marquee-track img {
    width: 128px;
    height: 64px;
  }

  .team-stage {
    min-height: 700px;
    border-radius: 28px;
  }

  .team-stage::before {
    inset: 76px 24px 34px;
  }

  .team-visual {
    top: 30px;
    right: 50%;
    width: min(270px, 78%);
    transform: translateX(50%);
  }

  .team-visual:hover,
  .team-visual.is-previewing {
    transform: translateX(50%) scale(1.035);
  }

  .team-member {
    width: 62px;
    height: 62px;
    padding: 3px;
  }

  .team-member img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }

  .team-member:hover,
  .team-member:focus-visible,
  .team-member.is-active {
    translate: var(--float-x, 0px) calc(var(--float-y, 0px) - 5px);
    scale: 1.12;
  }

  .team-member:nth-child(1) { top: 62%; left: 8%; }
  .team-member:nth-child(2) { top: 58%; left: 36%; }
  .team-member:nth-child(3) { bottom: 17%; left: 14%; }
  .team-member:nth-child(4) { bottom: 8%; left: 34%; }
  .team-member:nth-child(5) { top: 72%; left: 58%; }

  .partner-matrix {
    padding: 16px;
    border-radius: 20px;
  }

  .partner-principle {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
    clip-path: none;
  }

  .partner-principle::after {
    inset: auto 22px 0 22px;
  }

  .principle-copy p {
    font-size: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .section-head h2 {
    margin-bottom: 16px;
  }

  .section-head p {
    font-size: 15px;
  }

  .cta {
    padding: 36px 20px;
  }

  .page-hero {
    padding: 72px 0 48px;
  }

  .page-hero-inner {
    padding-left: 0;
  }

  .page-hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }

  .page-hero p {
    font-size: 15px;
  }

  .career-hero-note {
    padding: 16px 18px;
  }

  .career-summary-item {
    padding: 18px;
  }

  .job-card,
  .career-panel {
    padding: 24px;
  }

  .cta h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cta p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  section {
    padding: 56px 0;
  }

  .footer {
    padding: 48px 0 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-logo {
    width: 150px;
  }

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

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand-mark img {
    width: 30px;
    height: 30px;
  }

  .brand-name img {
    width: 74px;
  }

  .nav-inner {
    gap: 10px;
  }

  .nav-inner > .btn {
    width: auto;
    margin-left: auto;
    padding: 9px 11px;
  }

  .nav-inner > .btn span {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-title-tagline {
    padding-bottom: 15px;
  }

  .hero-title-tagline::after {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 44px;
  }

  .hero-actions {
    width: 100%;
  }

  .partner-marquee-track img {
    width: 112px;
    height: 56px;
  }

  .team-stage {
    min-height: 630px;
  }

  .team-visual {
    width: min(250px, 84%);
  }

  .team-member {
    width: 56px;
    height: 56px;
  }

  .team-member img {
    width: 50px;
    height: 50px;
  }

  .team-member span {
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    max-width: 190px;
  }

  .team-member:nth-child(1) { top: 61%; left: 7%; }
  .team-member:nth-child(2) { top: 57%; left: 38%; }
  .team-member:nth-child(3) { bottom: 18%; left: 12%; }
  .team-member:nth-child(4) { bottom: 9%; left: 38%; }
  .team-member:nth-child(5) { top: 72%; left: 66%; }

  .partner-matrix {
    padding: 12px;
  }

  .card,
  .step,
  .job-card,
  .career-panel {
    border-radius: 18px;
  }

  .job-detail-body {
    padding: 18px;
    border-radius: 18px;
  }
}

@media (max-width: 360px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  .brand-name img {
    width: 66px;
  }

  .hero-title-main,
  .typed-cursor {
    font-size: 31px;
  }

  .hero-title-tagline {
    font-size: 21px;
  }

  .partner-marquee-track img {
    width: 96px;
    height: 50px;
  }

  .team-stage {
    min-height: 600px;
  }

  .team-member {
    width: 50px;
    height: 50px;
  }

  .team-member img {
    width: 44px;
    height: 44px;
  }

  .job-card,
  .career-panel,
  .cta {
    padding: 20px;
  }
}
