:root {
  --paper: #f5f8fc;
  --white: #ffffff;
  --ink: #0c1d33;
  --navy: #081b36;
  --navy-2: #0d2a52;
  --blue: #1d6fe8;
  --blue-deep: #0e4ec0;
  --ice: #e8f1fb;
  --mist: #d5e4f4;
  --muted: #5b6d84;
  --line: rgba(13, 42, 82, 0.1);
  --shadow: 0 24px 60px rgba(8, 27, 54, 0.08);
  --shadow-sm: 0 10px 30px rgba(8, 27, 54, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1220px;
  --header: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.display {
  font-family: Sora, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1.display {
  font-size: clamp(2.5rem, 5.4vw, 4.6rem);
}

h2.display {
  font-size: clamp(1.9rem, 3.4vw, 3.15rem);
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header) + 8px);
}

.section-head {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lede {
  margin-inline: auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Sora, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.55s var(--ease), background 0.5s ease,
    color 0.45s ease, border-color 0.45s ease, box-shadow 0.55s var(--ease);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(29, 111, 232, 0.28);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--mist);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-light {
  background: #fff;
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  overflow: visible;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(8, 27, 54, 0.08);
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img,
.logo svg {
  height: 44px;
  width: auto;
  display: block;
}

.skip-link {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 6px 22px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy-2);
  font-family: Sora, sans-serif;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--blue);
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.45;
}

.nav-ai {
  margin-right: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(29, 111, 232, 0.28);
  background: #eef5ff;
  color: var(--blue-deep) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-ai:hover {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
}

.btn-quote {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 18px rgba(29, 111, 232, 0.28);
}

.btn-quote:hover {
  background: var(--blue-deep);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--mist);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: var(--navy);
}

.hero-media,
.hero-media video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transform: scale(1.06);
  animation: heroZoom 32s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 27, 54, 0.72) 0%, rgba(8, 27, 54, 0.38) 42%, rgba(8, 27, 54, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 27, 54, 0.18) 0%, rgba(8, 27, 54, 0.28) 55%, rgba(8, 27, 54, 0.78) 100%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 88px 0 48px;
}

.hero-stage h1 {
  margin: 18px 0 22px;
  max-width: 13ch;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
}

.hero-stage h1 em {
  font-style: normal;
  color: #8ec5ff;
}

.ai-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #d6e8ff;
  font-family: Sora, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero .lede.light {
  margin-bottom: 28px;
  max-width: 36rem;
  color: #dbe7f6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}

.btn-on-dark:hover {
  background: #fff;
  color: var(--navy);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero-metrics li {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  color: #d5e3f4;
  font-size: 14px;
}

.hero-metrics b {
  font-family: Sora, sans-serif;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-awards {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(8, 27, 54, 0.35);
  backdrop-filter: blur(12px);
}

.awards-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  padding: 14px 0;
  font-family: Sora, sans-serif;
  font-size: 13px;
}

.awards-row p {
  margin-right: auto;
  color: #c5d4e8;
}

.awards-row a {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 6px 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.awards-row img {
  height: 56px;
  width: auto;
  display: block;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}

.clients {
  padding: 28px 0 12px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.clients-label {
  margin-bottom: 18px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  min-height: 92px;
  padding: 12px 16px 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}

.client-logo.on-dark {
  background: var(--navy);
  border-color: transparent;
}

.client-logo img {
  height: 36px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
}

.client-logo figcaption {
  color: var(--navy-2);
  font-family: Sora, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.client-logo.on-dark figcaption {
  color: #fff;
}

.client-chip {
  display: flex;
  align-items: center;
  min-width: 140px;
  color: var(--navy-2);
  font-family: Sora, sans-serif;
  font-size: 15px;
  font-weight: 600;
  opacity: 0.7;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.why {
  background: var(--paper);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card,
.model-card,
.industry,
.quote,
.cap-card,
.story-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.55s var(--ease), background-color 0.5s ease, color 0.45s ease, border-color 0.45s ease, box-shadow 0.55s var(--ease);
}

.why-card {
  padding: 28px;
}

.why-card:hover,
.model-card:hover,
.cap-card:hover,
.story-card:hover,
.industry:hover {
  transform: translateY(-4px);
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 18px 40px rgba(8, 27, 54, 0.12);
}

.why-card:hover p,
.model-card:hover p,
.cap-card:hover p,
.industry:hover p {
  color: #c5d4e8;
  transition: color 0.45s ease;
}

.why-card:hover .icon-orb,
.industry:hover span {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.icon-orb {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--ice);
  color: var(--blue);
}

.why-card h3,
.model-card h3,
.cap-card h3 {
  margin-bottom: 10px;
  font-family: Sora, sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.why-card p,
.model-card p,
.cap-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.services .wrap {
  display: block;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cap-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 28px;
  color: inherit;
}

.cap-card.featured {
  grid-column: span 2;
  background:
    linear-gradient(160deg, #0d2a52 0%, #081b36 100%);
  color: #fff;
  border: 0;
}

.cap-card.featured p {
  color: #c5d4e8;
}

.cap-card.featured h3 {
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.cap-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--ice);
  color: var(--blue);
  font-size: 18px;
}

.cap-card.featured .cap-icon {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.cap-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.cap-card.featured .cap-link {
  color: #9ec5ff;
}

.tech {
  background:
    linear-gradient(180deg, #fff, var(--paper));
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 104px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-family: Sora, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-item b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #fff;
  font-size: 12px;
}

.t-kotlin b { background: #7F52FF; }
.t-java b { background: #E76F00; }
.t-dart b { background: #0175C2; }
.t-rn b { background: #61DAFB; color: #083344; }
.t-js b { background: #F7DF1E; color: #1b1b1b; }
.t-py b { background: #3776AB; }
.t-sf b { background: #00A1E0; }
.t-dj b { background: #092E20; }
.t-php b { background: #777BB4; }
.t-rb b { background: #CC342D; }
.t-cs b { background: #512BD4; }
.t-next b { background: #111111; }
.t-ng b { background: #DD0031; }
.t-wp b { background: #21759B; }
.t-bc b { background: #F7931A; }
.t-mg b { background: #F26322; }
.t-node b { background: #339933; }
.t-fl b { background: #02569B; }
.t-sh b { background: #96BF48; }
.t-aws b { background: #FF9900; color: #111; font-size: 9px; }
.t-net b { background: #512BD4; }

.tech-item:hover,
.industry:hover {
  border-color: rgba(29, 111, 232, 0.35);
  transform: translateY(-3px);
}

.stats {
  background:
    radial-gradient(800px 280px at 80% 0%, rgba(29, 111, 232, 0.22), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}

.stats .eyebrow,
.stats .lede {
  color: #b7c9e0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 8px 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat b {
  display: block;
  margin: 16px 0 6px;
  font-family: Sora, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.stat span {
  color: #b7c9e0;
  font-size: 14px;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.model-card {
  padding: 32px 28px;
}

.model-card .tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
}

.model-card ul {
  margin-top: 18px;
}

.model-card li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.model-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 1px;
  background: var(--blue);
}

.cases {
  background: var(--paper);
}

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

.work-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.work-card figure {
  margin: 0;
  height: 240px;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.work-card:hover img {
  transform: scale(1.06);
}

.work-body {
  padding: 22px 22px 24px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tags span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 600;
}

.work-body h3 {
  margin-bottom: 8px;
  font-family: Sora, sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.work-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.work-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.work-metrics b {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

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

.review-count {
  color: var(--muted);
  font-family: Sora, sans-serif;
  font-size: 13px;
}

.review-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 48s linear infinite;
}

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

.review-card {
  width: 340px;
  min-height: 240px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.review-card p {
  font-family: Sora, sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.review-card cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
}

.review-card strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 14px;
}

.review-card span {
  color: var(--muted);
  font-size: 13px;
}

.case-board {
  display: grid;
  gap: 22px;
}

.case {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 460px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.case:nth-child(even) .case-media {
  order: 2;
}

.case-media {
  position: relative;
  min-height: 340px;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-body {
  padding: 40px 36px;
}

.case-body h3 {
  margin: 8px 0 16px;
  font-family: Sora, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.case-body h4 {
  margin: 18px 0 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

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

.impact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 26px;
}

.impact div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.impact b {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

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

.quotes-wrap {
  position: relative;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote {
  padding: 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote p {
  font-size: 1.05rem;
  line-height: 1.55;
}

.quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
}

.quote cite strong {
  display: block;
  font-family: Sora, sans-serif;
  font-size: 14px;
}

.quote cite span {
  color: var(--muted);
  font-size: 13px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  text-align: left;
  font-family: Sora, sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.55s var(--ease), background 0.5s ease, color 0.45s ease, border-color 0.45s ease, box-shadow 0.55s var(--ease);
}

.industry span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ice);
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.industry h3 {
  margin: 18px 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.industry p {
  color: var(--muted);
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
}

.cta {
  background:
    radial-gradient(680px 240px at 20% 0%, rgba(29, 111, 232, 0.18), transparent 60%),
    var(--navy);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.cta .lede,
.cta .eyebrow {
  color: #c5d4e8;
}

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

.form {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 27, 54, 0.35);
  color: #fff;
  padding: 14px 16px;
  outline: none;
}

.form option {
  color: var(--ink);
}

.form input::placeholder,
.form textarea::placeholder {
  color: #9bb0c9;
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

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

.form .hint {
  color: #9bb0c9;
  font-size: 13px;
}

.form .status {
  min-height: 20px;
  color: #8fd3a4;
  font-size: 14px;
}

.site-footer {
  background: #061327;
  color: #c5d4e8;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .logo img,
.site-footer .logo svg {
  height: 48px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin-top: 16px;
  max-width: 280px;
  font-size: 14px;
}

.site-footer h4 {
  margin-bottom: 16px;
  color: #fff;
  font-family: Sora, sans-serif;
  font-size: 14px;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer li + li {
  margin-top: 8px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  font-size: 13px;
}

.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(8, 27, 54, 0.94);
  color: #fff;
  box-shadow: var(--shadow);
}

.cookie.show {
  display: flex;
}

.cookie .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.32s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-family: Sora, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #fff;
}

.c-orange { background: #e67a1a; }
.c-pink { background: #f80157; }
.c-navy { background: #12345c; }
.c-teal { background: #0e8f8a; }
.c-green { background: #1f8a4c; }
.c-gold { background: #b8872a; }
.c-blue { background: #1d6fe8; }
.c-mint { background: #0e7a5c; }
.c-violet { background: #6c4ce0; }
.c-indigo { background: #2f4aa0; }
.c-coral { background: #e25b45; }

.ai-band {
  background:
    radial-gradient(700px 240px at 90% 20%, rgba(29,111,232,.12), transparent 60%),
    var(--paper);
  padding-top: 64px;
  padding-bottom: 64px;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.ai-points {
  display: grid;
  gap: 14px;
}

.ai-points li {
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.ai-points strong {
  display: block;
  margin-bottom: 4px;
  font-family: Sora, sans-serif;
}

.section-head.split,
.life-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  max-width: none;
}

.life {
  padding: 48px 0 40px;
  overflow: hidden;
}

.life-marquee,
.speak-marquee {
  overflow: hidden;
  margin-top: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.life-track,
.speak-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.life-track {
  animation: marquee 36s linear infinite;
}

.speak-track {
  animation: marquee 42s linear infinite;
}

.life-marquee:hover .life-track,
.speak-marquee:hover .speak-track {
  animation-play-state: paused;
}

.life-shot,
.life-track .life-card {
  position: relative;
  width: 220px;
  height: 168px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
}

.life-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.life-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  color: #fff;
  font-family: Sora, sans-serif;
  font-size: 12px;
  background: linear-gradient(transparent, rgba(8,27,54,.8));
}

.speak-track .team-card {
  width: 210px;
  flex-shrink: 0;
}

.speak-track .team-card img {
  height: 240px;
}

.life-card {
  display: grid;
  place-content: center;
  padding: 24px;
  text-align: center;
  color: #fff;
}

.life-card.accent {
  background: linear-gradient(160deg, #1d6fe8, #0d2a52);
}

.life-card.hangout {
  background: linear-gradient(160deg, #0d2a52, #081b36);
}

.life-card h3 {
  font-family: Sora, sans-serif;
  letter-spacing: -0.03em;
}

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

.team-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.team-card:hover img {
  transform: scale(1.06);
}

.team-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(8,27,54,.85));
}

.team-card span {
  display: block;
  font-size: 12px;
  opacity: .8;
}

.team-card strong {
  font-family: Sora, sans-serif;
  font-size: 14px;
}

.play {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
}

.play::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.story-card {
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.story-card h3 {
  font-family: Sora, sans-serif;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.float-slow {
  animation: floaty 5s ease-in-out infinite;
}

.float-slower {
  animation: floaty 6.4s ease-in-out infinite reverse;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js-reveal.in {
  opacity: 1;
  transform: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: rgba(8,27,54,.72);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  position: relative;
  width: min(860px, calc(100% - 32px));
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

body.has-cursor,
body.has-cursor a,
body.has-cursor button {
  cursor: none;
}

.cursor-dot,
.cursor-ring,
.cursor-glow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 90;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

body.has-cursor .cursor-dot,
body.has-cursor .cursor-ring,
body.has-cursor .cursor-glow {
  display: block;
}

.cursor-glow {
  z-index: 2;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(29,111,232,0.18), transparent 68%);
  mix-blend-mode: multiply;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  z-index: 92;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(29, 111, 232, 0.55);
  z-index: 91;
  transition: width .2s ease, height .2s ease, background .2s ease;
}

.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  background: rgba(29, 111, 232, 0.08);
}

.section {
  position: relative;
}

.section > .wrap,
.clients .wrap,
.hero-stage {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.section.is-inview > .wrap,
.clients.is-inview .wrap,
.hero.is-inview .hero-stage {
  opacity: 1;
  transform: none;
}

.section.is-inview > .wrap:nth-child(2),
.life.is-inview .culture-board {
  transition-delay: 0.12s;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.quote-nav {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--mist);
  background: #fff;
  color: var(--ink);
  transition: background .3s ease, color .3s ease;
}

.icon-btn:hover {
  background: var(--navy);
  color: #fff;
}

.quote-stage {
  position: relative;
  min-height: 320px;
}

.quote-feature {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(160deg, #0d2a52, #081b36);
  color: #fff;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}

.quote-feature.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.quote-feature p {
  font-family: Sora, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.quote-feature cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
}

.quote-feature cite strong,
.quote-feature cite span:last-child {
  display: block;
}

.quote-feature .avatar {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  font-family: Sora, sans-serif;
  font-size: 13px;
}

.life {
  padding-top: 48px;
  padding-bottom: 36px;
}

.life-head {
  margin-bottom: 22px;
  align-items: center;
}

.text-link {
  color: var(--blue);
  font-family: Sora, sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  background: none;
}

.text-link:hover {
  color: var(--blue-deep);
}

.culture-board {
  display: none;
}

.culture-hero {
  position: relative;
  min-height: 460px;
  height: 100%;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.culture-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  height: 100%;
  min-height: 460px;
}

.culture-mosaic figure,
.culture-mosaic .life-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.culture-hero img,
.culture-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.culture-hero:hover img,
.culture-mosaic figure:hover img {
  transform: scale(1.06);
}

.culture-hero figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px;
  color: #fff;
  background: linear-gradient(transparent, rgba(8,27,54,.85));
}

.culture-hero h3 {
  font-family: Sora, sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.team-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.team-card.featured img {
  height: 100%;
  min-height: 420px;
}

.cap-card.featured:hover {
  background: var(--blue);
}

@media (max-width: 1100px) {
  .work-grid,
  .culture-board {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .testimonial-layout,
  .culture-board {
    grid-template-columns: 1fr;
  }

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

  .quote-stage {
    min-height: 300px;
  }

  .culture-hero,
  .culture-mosaic {
    min-height: 320px;
  }

  .cap-grid,
  .ai-grid,
  .story-grid,
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cap-card.featured {
    grid-column: span 2;
  }

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

  .hero-grid,
  .cta-grid,
  .case,
  .life-head,
  .section-head.split {
    grid-template-columns: 1fr;
  }

  .life-head,
  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }

  .case:nth-child(even) .case-media {
    order: 0;
  }

  .tech-grid,
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .float-card.a,
  .float-card.b {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 1100px) {
  .nav,
  .phone-link {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px 28px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav.open .nav-ai {
    margin: 0 0 4px;
  }
}

@media (max-width: 860px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .why-grid,
  .models-grid,
  .quotes,
  .stats-grid,
  .form-row,
  .cap-grid,
  .ai-grid,
  .story-grid,
  .team-grid,
  .team-bento,
  .culture-mosaic {
    grid-template-columns: 1fr;
  }

  .team-card.featured {
    grid-column: auto;
    grid-row: auto;
  }

  .cap-card.featured {
    grid-column: auto;
  }

  .hero-visual,
  .visual-frame {
    min-height: 360px;
    height: 360px;
  }

  .section {
    padding: 56px 0;
  }

  .cookie,
  .legal {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .tech-grid,
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo img,
  .logo svg {
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section > .wrap,
  .clients .wrap,
  .hero-stage,
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: none !important;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-glow {
    display: none !important;
  }

  .review-track,
  .marquee-track,
  .life-track,
  .speak-track,
  .hero-media video,
  .reveal,
  .btn,
  .why-card,
  .cap-card,
  .model-card {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
