:root {

  --navy-900: #071322;
  --navy-800: #0c1e33;
  --cloud: #f5f8fc;
  --orange: #e88a2e;
  --orange-light: #f3a852;
  --orange-soft: #f3d8b8;
  --sky: #6eacdd;
  --sky-500: #4590c9;
  --sky-700: #2c6ca3;
  --ink: #4e5c6e;
  --ink-muted: #a9bcd1;
  --paper-50: #f3f6fa;
  --paper-100: #eceff3;
  --paper-200: #e9eff6;
  --line: #e4e9f0;
  --line-strong: #dce3ec;

  --font-display: "Space Grotesk", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fff;
  color: var(--navy-800);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
}
a:hover {
  color: var(--orange-light);
}

h1,
h2,
h3,
p,
blockquote,
dl,
dd {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 64px 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.eyebrow-sky {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--sky);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 3.4vw, 2.25rem);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--sky));
  z-index: 300;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(7, 19, 34, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
}
.nav__logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav__links {
  display: none;
  flex-wrap: wrap;
  gap: 32px;
}
.nav__link {
  font-size: 0.875rem;
  color: var(--ink-muted);
  padding: 4px 0;
  transition: color 0.15s;
}
.nav__link:hover {
  color: var(--cloud);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy-800);
  background: var(--cloud);
  padding: 8px 16px;
  border-radius: 4px;
  transition:
    background 0.15s,
    color 0.15s,
    transform 0.15s;
}
.nav__cta:hover {
  background: var(--orange);
  color: var(--cloud);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 4px;
  transition:
    background 0.15s,
    border-color 0.15s,
    box-shadow 0.15s,
    transform 0.15s;
}
.btn--lg {
  padding: 16px 24px;
}
.btn--primary {
  border: 1px solid transparent;
  background: var(--orange);
  color: var(--navy-900);
}
.btn--primary:hover {
  background: var(--orange-light);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(232, 138, 46, 0.35);
}
.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--cloud);
}
.btn--outline:hover {
  border-color: var(--sky);
  background: rgba(69, 144, 201, 0.1);
  color: var(--cloud);
}
.btn__arrow {
  width: 16px;
  height: 16px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--cloud);
  padding: 128px 0 72px;
}
.hero__grid,
.hero__spotlight,
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 68% 35%, #000 5%, transparent 78%);
  mask-image: radial-gradient(ellipse 75% 65% at 68% 35%, #000 5%, transparent 78%);
}
.hero__spotlight {
  background: radial-gradient(600px circle at 70% 30%, rgba(69, 144, 201, 0.18), transparent 60%);
  transition: background 0.15s linear;
}
.hero__glow {
  inset: -15% -8% auto auto;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(232, 138, 46, 0.16) 0%, transparent 68%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__content {
  max-width: 820px;
}
.hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: tm-pulse 2.4s ease-in-out infinite;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 8px;
}
.hero__role {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--sky);
  margin-bottom: 32px;
}
.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--cloud);
  max-width: 760px;
  margin: 0 auto 32px;
}
.hero__meta {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__meta strong {
  color: var(--cloud);
  font-weight: 500;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.block-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.block-head__title {
  margin-top: 12px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  overflow: hidden;
}
.spec-card {
  background: #fff;
  padding: 32px;
  transition:
    background 0.25s,
    transform 0.25s;
}
.spec-card:hover {
  background: var(--paper-50);
  transform: translateY(-4px);
}
.spec-card__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--sky-500);
  margin-bottom: 12px;
}
.spec-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--paper-50);
  color: var(--orange);
  margin-bottom: 24px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
}
.spec-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}
.spec-card:hover .spec-card__icon {
  background: var(--navy-800);
  color: var(--orange-light);
  transform: rotate(-6deg) scale(1.05);
}
.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy-800);
}
.card-copy {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}

.working {
  position: relative;
  overflow: hidden;
  background: var(--navy-800);
  color: var(--cloud);
}
.working__glow {
  position: absolute;
  inset: auto auto -30% -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(69, 144, 201, 0.24) 0%, transparent 70%);
  pointer-events: none;
}
.working__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.working__title {
  color: var(--cloud);
  margin-bottom: 16px;
}
.working__sub {
  font-size: 1.125rem;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.working__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--orange);
  border-bottom: 1px solid rgba(232, 138, 46, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.working__link:hover {
  border-color: var(--orange);
}
.working__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 32px;
  transition:
    border-color 0.25s,
    background 0.25s;
}
.working__card:hover {
  border-color: rgba(69, 144, 201, 0.5);
  background: rgba(255, 255, 255, 0.06);
}
.working__logo {
  height: 22px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}
.working__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cloud);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 20px;
  transition: border-color 0.15s;
}
.pill:hover {
  border-color: var(--sky);
}
.pill svg {
  width: 12px;
  height: 12px;
}
.working__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.working__stat strong {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange-light);
}
.working__stat span {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.ind-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.ind-head__lead {
  font-size: 0.875rem;
  color: var(--ink);
  max-width: 320px;
}
.marquee {
  overflow: hidden;
  padding: 12px 0 20px;
}
.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: tm-marquee 42s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.ind-card {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(12, 30, 51, 0.08);
  transition:
    box-shadow 0.25s,
    transform 0.25s,
    border-color 0.25s;
}
.ind-card:hover {
  box-shadow: 0 18px 40px -16px rgba(12, 30, 51, 0.3);
  transform: translateY(-6px);
  border-color: var(--orange);
}
.ind-card__ph {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-100);
  color: #9fb0c0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px;
}
.ind-card__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  background: var(--paper-100);
}
.ind-card__body {
  padding: 22px;
}
.ind-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.ind-card__copy {
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.55;
}

.steps {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.steps-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.steps-wrap__line {
  display: none;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 36px 0;
}
.step__spacer {
  display: none;
}
.step__badge-wrap {
  display: flex;
  justify-content: center;
}
.step__badge {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--paper-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--orange);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.step:hover .step__badge {
  transform: scale(1.18);
  box-shadow: 0 10px 24px -8px rgba(232, 138, 46, 0.7);
}
.step__body {
  max-width: 380px;
}
.step__body .card-title {
  margin-bottom: 12px;
}
.step__copy {
  color: var(--ink);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 14px;
}
.step__copy--last {
  margin-bottom: 0;
}
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--sky-700);
  letter-spacing: 0.02em;
  padding: 4px 12px;
  background: var(--paper-200);
  border-radius: 20px;
}

.stats {
  background: var(--navy-900);
  color: var(--cloud);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
.stat {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
  transition: border-color 0.25s;
}
.stat:hover {
  border-left-color: var(--orange);
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  color: var(--cloud);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.stat__num span {
  color: var(--orange);
}
.stat__label {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.note {
  background: var(--paper-50);
}
.note__card {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px -30px rgba(12, 30, 51, 0.25);
}
.note__media {
  background: var(--paper-200);
}
.note__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.note__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.note__eyebrow {
  display: block;
  margin-bottom: 20px;
}
.note__quote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy-800);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.note__p {
  font-size: 1.125rem;
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 20px;
}
.note__p--last {
  margin-bottom: 0;
}
.note__sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}
.note__sign-bar {
  width: 36px;
  height: 2px;
  background: var(--orange);
}
.note__sign-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-800);
}
.note__sign-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--cloud);
}
.contact__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, #000 5%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 60% at 30% 50%, #000 5%, transparent 78%);
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: end;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cloud);
  margin: 12px 0 24px;
  max-width: 520px;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.contact__value {
  font-size: 1.125rem;
  color: var(--cloud);
}
.contact__value a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cloud);
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.contact__value a:hover {
  color: var(--orange-light);
  border-color: var(--orange-light);
}
.contact__value svg {
  width: 14px;
  height: 14px;
}

.footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
.footer__meta p {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s,
    transform 0.25s,
    background 0.15s;
  z-index: 150;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.to-top svg {
  width: 18px;
  height: 18px;
}

@keyframes tm-marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes tm-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(232, 138, 46, 0.22);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 138, 46, 0.08);
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .section {
    padding: 96px 0;
  }
  .hero {
    padding: 152px 0 96px;
  }

  .nav__links {
    display: flex;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .note__card {
    grid-template-columns: 0.42fr 0.58fr;
  }
  .note__body {
    padding: 56px;
  }

  .contact__inner {
    grid-template-columns: 1fr 1fr;
  }

  .steps-wrap__line {
    display: block;
    position: absolute;
    top: -56px;
    bottom: -72px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      to bottom,
      rgba(228, 233, 240, 0) 0%,
      var(--line) 14%,
      var(--line) 78%,
      rgba(228, 233, 240, 0) 100%
    );
  }
  .step {
    grid-template-columns: 1fr 56px 1fr;
    column-gap: 40px;
    align-items: start;
  }
  .step__spacer {
    display: block;
  }
  .step--left .step__body {
    margin-left: auto;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .working__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__dot,
  .marquee-track {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}
