:root {
  --bg: #050505;
  --cream: #f3f1ea;
  --muted: #8f8d88;
  --muted-2: #a6a29e;
  --orange: #e6752c;
  --gold: #e8a944;
  --accent: #ff8d28;
  --amber: #fbad03;
  --nav: rgba(22, 20, 16, 0.88);
  --card: rgba(45, 36, 24, 0.8);
  --xp: rgba(28, 26, 24, 0.72);
  --panel: #1a1510;
  --footer: #12100c;
  --grad: linear-gradient(90deg, #e6742b 0%, #e8a944 100%);
  --gold-line: #d4a04a;
  --radius-pill: 57px;
  --wrap: min(1440px, calc(100% - 48px));
  --font-display: "Space Grotesk", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(ellipse at 12% -10%, rgba(232, 169, 68, 0.08), transparent 42%),
    radial-gradient(ellipse at 88% 18%, rgba(230, 116, 43, 0.05), transparent 36%),
    var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--accent);
  color: #1a0f04;
  padding: 8px 12px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

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

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gold-rule {
  display: block;
  width: min(684px, 100%);
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, rgba(212, 160, 74, 0) 0%, #d4a04a 50%, rgba(212, 160, 74, 0) 100%);
}

.gold-rule--sm {
  width: min(420px, 80%);
}

.gold-rule--side {
  flex: 1;
  margin: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(212, 160, 74, 0) 0%, #d4a04a 100%);
}

.gold-rule--rev {
  background: linear-gradient(90deg, #d4a04a 0%, rgba(212, 160, 74, 0) 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
}

.section-kicker {
  margin-bottom: 10px;
  color: #f0c274;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-lead {
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--muted-2);
  font-size: 16.5px;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn--solid {
  background: var(--grad);
  color: #1a0f04;
  box-shadow: 0 10px 28px rgba(230, 116, 43, 0.22);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: rgba(232, 169, 68, 0.55);
}

.btn--pill {
  border-radius: 24px;
  min-height: 40px;
  padding: 0 22px;
  background: var(--grad);
  color: #1a0f04;
  font-size: 13.5px;
  box-shadow: 0 8px 20px rgba(230, 116, 43, 0.2);
}

.btn--wide {
  width: 100%;
  min-height: 54px;
  border-radius: 24px;
  text-transform: uppercase;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

/* Header */
.header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 24px;
  pointer-events: none;
}

.header .nav {
  pointer-events: auto;
}

.header.is-scrolled .nav {
  background: rgba(14, 12, 10, 0.94);
  border-color: rgba(232, 169, 68, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.nav {
  width: min(1390px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  padding: 0 28px 0 18px;
  background: var(--nav);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.brand__logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand--footer .brand__logo {
  height: 56px;
  margin-bottom: 16px;
}

.nav .brand {
  padding: 2px 6px;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a,
.nav__links button {
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease;
}

.nav__links a:hover,
.nav__links button:hover,
.nav__links a.is-active {
  color: var(--gold);
}

.has-sub {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 12px 0;
  background: #1a160d;
  border: 1px solid rgba(255, 141, 40, 0.35);
  border-radius: 12px;
  display: none;
}

.has-sub:hover .nav__dropdown,
.has-sub:focus-within .nav__dropdown,
.has-sub.is-open .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  white-space: nowrap;
}

.nav__dropdown a:hover {
  background: rgba(255, 141, 40, 0.08);
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.62) 38%, rgba(5, 5, 5, 0.18) 62%, transparent 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, transparent 28%, transparent 72%, rgba(5, 5, 5, 0.55) 100%);
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__visual picture,
.hero__media {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: cover;
  object-position: right center;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 168px 0 96px;
  max-width: 640px;
  margin-left: max(24px, calc((100% - 1440px) / 2 + 65px));
  width: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f0c274;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--grad);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero__lead {
  color: #c9c7c1;
  font-size: 17.5px;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* What We Build */
.build {
  position: relative;
  padding: 72px 0 56px;
}

.build::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 169, 68, 0.08), transparent 55%);
}

.build__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
}

.build-card {
  padding: 28px 22px 26px;
  background:
    linear-gradient(165deg, rgba(40, 32, 22, 0.9), rgba(14, 12, 10, 0.78));
  border: 1px solid rgba(232, 169, 68, 0.22);
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.build-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 141, 40, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(232, 169, 68, 0.08);
}

.build-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: #f0c274;
  background: rgba(255, 141, 40, 0.08);
  border: 1px solid rgba(232, 169, 68, 0.28);
  border-radius: 12px;
}

.build-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: #fff;
}

.build-card p {
  color: #a8a49e;
  font-size: 14.5px;
  line-height: 1.55;
}

/* Expertise */
.expertise {
  position: relative;
  padding: 36px 0 80px;
}

.expertise__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  pointer-events: none;
}

.expertise .wrap {
  position: relative;
  z-index: 1;
}

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

.xp-card {
  min-height: 440px;
  padding: 28px 20px 24px;
  background: var(--xp);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.xp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 141, 40, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
}

.xp-card__icon {
  width: 160px;
  height: 150px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, rgba(45, 36, 24, 0.95), rgba(18, 14, 10, 0.9));
  border: 1px solid rgba(232, 169, 68, 0.35);
  border-radius: 16px;
  margin-bottom: 16px;
}

.xp-card__icon img {
  width: 72%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(251, 173, 3, 0.35));
  transition: transform 0.3s ease;
}

.xp-card:hover .xp-card__icon img {
  transform: scale(1.05);
}

.xp-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 8px 0 12px;
  color: var(--cream);
}

.xp-card p {
  color: #cfcfcf;
  font-size: 15.5px;
  line-height: 1.45;
  opacity: 0.88;
  max-width: 280px;
  flex: 1;
}

.xp-card a {
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 18px;
  transition: color 0.18s ease, letter-spacing 0.18s ease;
}

.xp-card a:hover {
  color: #f0c274;
  letter-spacing: 0.02em;
}

/* About */
.about {
  padding: 56px 0 72px;
}

.about__lead {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted-2);
  font-size: 17px;
  line-height: 1.65;
}

.page-hero {
  padding: 168px 0 28px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(232, 169, 68, 0.16), transparent 52%),
    linear-gradient(#090808, #000);
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 18px;
}

.page-hero__lead {
  max-width: 720px;
  margin: 0 auto;
  color: #c9c7c1;
  font-size: 17px;
  line-height: 1.65;
}

.about--page {
  padding-top: 36px;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.about__facts article {
  padding: 22px 16px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(232, 169, 68, 0.28);
  border-radius: 14px;
}

.about__facts strong {
  display: block;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  margin-bottom: 6px;
}

.about__facts span {
  color: var(--muted-2);
  font-size: 14px;
}

.about__cta {
  margin-top: 48px;
  padding: 36px 24px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(232, 169, 68, 0.28);
  border-radius: 16px;
}

.about__cta p {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
}

.about__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0c274;
  margin: 0 0 18px;
}

.about__leaders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

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

.person {
  padding: 22px 16px 20px;
  background: var(--xp);
  border: 1px solid rgba(255, 141, 40, 0.22);
  border-radius: 14px;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.person:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.person--lead {
  padding: 28px 20px 24px;
  background: var(--card);
  border-color: rgba(232, 169, 68, 0.4);
}

.person__avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid transparent;
  background:
    linear-gradient(#1a160d, #1a160d) padding-box,
    var(--grad) border-box;
  color: #f6d48a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.person--lead .person__avatar {
  width: 88px;
  height: 88px;
  font-size: 24px;
}

.person h3,
.person h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.person--lead h3,
.person--lead h4 {
  font-size: 20px;
}

.person__role {
  color: #e8a944;
  font-size: 13px;
  font-weight: 600;
}

.person__bio {
  margin-top: 10px;
  color: #a6a29e;
  font-size: 13.5px;
  line-height: 1.5;
}

/* Advantage */
.advantage {
  background: #101010;
  padding: 72px 0 0;
}

.advantage__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.advantage__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  text-transform: none;
  margin-bottom: 28px;
}

.advantage__copy h3 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: none;
  margin-bottom: 8px;
}

.advantage__muted {
  color: var(--muted-2);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 480px;
}

.advantage__visual img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(230, 116, 43, 0.2));
}

.metrics {
  position: relative;
  padding: 40px 24px 72px;
}

.metrics__title {
  display: flex;
  align-items: center;
  gap: 18px;
  width: min(1200px, 100%);
  margin: 0 auto 36px;
}

.metrics__title h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  text-transform: none;
  white-space: nowrap;
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.metrics__grid > div {
  padding: 22px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.metrics__grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 6px;
}

.metrics__grid span {
  color: var(--muted);
  font-size: 17px;
}

.metrics__more {
  position: absolute;
  right: max(24px, calc((100% - 1440px) / 2 + 40px));
  bottom: 28px;
  color: #f0c274;
  font-size: 13.5px;
  font-weight: 700;
}

/* Technologies */
.tech {
  position: relative;
  padding: 56px 0 80px;
  min-height: 560px;
}

.tech__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.tech .wrap {
  position: relative;
  z-index: 1;
}

.tech__sub {
  margin-top: 12px;
  color: var(--muted-2);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
}

.tech-orbit {
  position: relative;
  height: 280px;
  margin-top: 20px;
}

.tech-orbit__item {
  position: absolute;
  left: calc(var(--x) * 1%);
  top: calc(50% + var(--y) * 1px);
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: rgba(18, 16, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tech-orbit__item:hover {
  transform: translateY(-50%) scale(1.08);
  border-color: rgba(232, 169, 68, 0.55);
  box-shadow: 0 0 24px rgba(232, 169, 68, 0.18);
}

.tech-orbit__item img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.tech-orbit__sql span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-top: 10px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  pointer-events: none;
}

/* Contact */
.contact {
  padding: 20px 0 80px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.panel {
  background: var(--panel);
  border-radius: 27px;
  padding: 44px 40px 36px;
  min-height: 690px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--panel), var(--panel)),
    linear-gradient(180deg, #ff8d28 0%, #666 23%, #ff8d28 46%, #666 67%, #666 83%, #ff8d28 98%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.panel h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.panel__lead,
.panel__mail {
  font-family: "IBM Plex Sans", sans-serif;
  color: #b8b4b0;
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.panel__kicker {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f0c274;
  margin-bottom: 12px;
}

.panel--form h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 18px;
}

.panel__mail a {
  color: var(--amber);
  font-weight: 500;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 16px;
  min-height: 90px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
}

.steps li.is-active {
  border-color: var(--accent);
  background: linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(-48deg, #ff8d28 0%, #ff8d28 46%, #666 76%, #ff8d28 98%) border-box;
}

.steps__num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid #7b7777;
  font-family: "Protest Strike", Impact, sans-serif;
  font-size: 32px;
  color: rgba(184, 184, 184, 0.35);
}

.steps li.is-active .steps__num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.steps__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(20px, 2vw, 32px);
  color: rgba(184, 184, 184, 0.41);
}

.steps li.is-active .steps__label {
  color: #ebebeb;
  font-weight: 500;
}

.steps__arrow {
  color: #8f8f8f;
  font-size: 28px;
}

.steps li.is-active .steps__arrow {
  color: var(--accent);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ada7a7;
}

.form label span {
  color: #f00;
}

.form input,
.form textarea {
  width: 100%;
  background: rgba(217, 217, 217, 0.2);
  border: 0;
  border-radius: 4px;
  padding: 12px 22px;
  font-size: 20px;
  font-weight: 400;
  outline: none;
}

.form input {
  height: 54px;
}

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

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(157, 156, 156, 0.7);
}

.form input:focus,
.form textarea:focus {
  box-shadow: 0 0 0 1px var(--accent);
}

.form__status {
  font-family: "IBM Plex Sans", sans-serif;
  color: #9ae6b4;
  font-size: 15px;
}

/* Footer */
.footer {
  background: var(--footer);
  padding: 48px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer__brand p,
.footer li a,
.footer__offices p {
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--muted-2);
  font-size: 16px;
  line-height: 1.6;
}

.footer h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  margin-bottom: 18px;
}

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

.footer li a:hover {
  color: #fff;
}

.footer__offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 28px;
}

.footer__offices article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 28px 30px;
}

.footer__offices h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer__offices a {
  display: inline-block;
  margin-top: 10px;
  color: var(--amber);
  font-family: "IBM Plex Sans", sans-serif;
}

@media (max-width: 1100px) {
  .expertise__grid,
  .metrics__grid,
  .contact__grid,
  .advantage__inner,
  .footer__top,
  .about__team {
    grid-template-columns: 1fr 1fr;
  }

  .tech-orbit {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .tech-orbit__item {
    position: static;
    transform: none;
  }

  .hero__content {
    margin-left: 24px;
    padding-right: 24px;
  }

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

@media (max-width: 860px) {
  .nav {
    min-height: 72px;
    padding: 0 12px 0 8px;
    border-radius: 36px;
  }

  .brand__logo {
    height: 40px;
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
    background: #1a160d;
    border: 1px solid rgba(255, 141, 40, 0.35);
    border-radius: 16px;
  }

  .nav.is-open .nav__menu {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav__dropdown {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    margin-top: 8px;
  }

  .has-sub.is-open .nav__dropdown {
    display: block;
  }

  .header {
    top: 10px;
  }

  .hero {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    order: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 108px 20px 24px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .hero h1 br,
  .hero__lead br {
    display: none;
  }

  .hero__lead {
    font-size: 15.5px;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__visual {
    position: relative;
    order: 2;
    inset: auto;
    height: min(72vw, 520px);
    z-index: 1;
    margin-top: 0;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 28%, transparent 55%);
  }

  .hero__media {
    object-position: center bottom;
  }

  .build {
    padding: 40px 0 28px;
  }

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

  .page-hero {
    padding: 128px 20px 20px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .expertise__grid,
  .metrics__grid,
  .contact__grid,
  .advantage__inner,
  .footer__top,
  .footer__offices,
  .about__leaders,
  .about__facts {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: 0;
    padding: 28px 22px;
  }

  .metrics__more {
    position: static;
    display: block;
    text-align: right;
    margin-top: 20px;
  }

  .advantage__muted {
    font-size: 17px;
  }

  .xp-card h3 {
    font-size: 22px;
  }
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero__content.reveal {
  transition-delay: 0.08s;
}

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

  .btn:hover,
  .build-card:hover,
  .xp-card:hover,
  .tech-orbit__item:hover {
    transform: none;
  }

  .coming-soon__glow,
  .coming-soon__inner {
    animation: none;
  }
}

/* Coming soon */
html.env-pending body > :not(#coming-soon) {
  visibility: hidden;
}

html.is-coming-soon,
html.is-coming-soon body {
  height: 100%;
  overflow: hidden;
}

html.is-coming-soon body > :not(#coming-soon) {
  display: none !important;
}

.coming-soon {
  position: relative;
  z-index: 100;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(232, 169, 68, 0.14), transparent 42%),
    radial-gradient(ellipse at 80% 80%, rgba(230, 116, 43, 0.08), transparent 36%),
    #050505;
}

.coming-soon[hidden] {
  display: none !important;
}

.coming-soon__glow {
  position: absolute;
  width: min(520px, 70vw);
  height: min(520px, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 169, 68, 0.22), transparent 68%);
  filter: blur(8px);
  animation: soon-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

.coming-soon__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 20%, transparent 72%);
  pointer-events: none;
  opacity: 0.55;
}

.coming-soon__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-align: center;
  animation: soon-rise 0.9s ease both;
}

.coming-soon__logo {
  width: min(280px, 72vw);
  height: auto;
  margin: 0 auto 36px;
  object-fit: contain;
}

.coming-soon__eyebrow {
  margin-bottom: 14px;
  color: #f0c274;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coming-soon__title {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 84px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cream);
}

.coming-soon__lead {
  max-width: 520px;
  margin: 0 auto 32px;
  color: #b8b4ae;
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.65;
}

.coming-soon__mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid rgba(232, 169, 68, 0.35);
  border-radius: 999px;
  color: #f6d48a;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 141, 40, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.coming-soon__mail:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 141, 40, 0.7);
  background: rgba(255, 141, 40, 0.12);
}

@keyframes soon-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes soon-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
