:root {
  --ink: #071426;
  --ink-soft: #304056;
  --paper: #f4f1e9;
  --paper-bright: #fbfaf6;
  --blue: #126bff;
  --blue-dark: #0750c9;
  --amber: #f5a623;
  --line: rgba(7, 20, 38, .13);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.section-shell,
.site-header,
.site-footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.04em;
}

.brand b { color: var(--blue); }

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 8px 8px 8px 2px;
  font-size: 13px;
  letter-spacing: -.05em;
}

nav { display: flex; gap: 34px; }

nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

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

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 70px;
  padding-block: 78px 90px;
}

.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  background: currentColor;
}

h1, h2, h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
}

h1 {
  max-width: 720px;
  font-size: clamp(56px, 6.5vw, 92px);
  line-height: .98;
  letter-spacing: -.065em;
}

h1 em, h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lede {
  max-width: 620px;
  margin: 30px 0 34px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  font-weight: 700;
  text-underline-offset: 5px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 13%;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(7, 20, 38, .22);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(18, 107, 255, .25);
  border-radius: 50%;
}

.orbit-one { inset: 4%; }
.orbit-two { inset: 22%; border-color: rgba(245,166,35,.35); }

.experience-badge {
  width: 230px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.experience-number {
  font-family: "Manrope", sans-serif;
  font-size: 78px;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.08em;
}

.experience-number span { color: var(--amber); }

.experience-label {
  margin-top: 14px;
  color: #c9d4e3;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.code-card {
  position: absolute;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid white;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7,20,38,.14);
  font-size: 12px;
  font-weight: 700;
}

.code-card-top { top: 17%; right: 1%; }
.code-card-bottom { bottom: 14%; left: 0; }
.status-dot { width: 8px; height: 8px; background: #3abd75; border-radius: 50%; }
.code-bracket { color: var(--blue); font-family: monospace; font-size: 17px; }

.products,
.technology { padding-block: 110px; }

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2,
.experience h2,
.contact h2 {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -.055em;
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  min-height: 480px;
  position: relative;
  overflow: hidden;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
}

.band-card { color: white; background: #10213a; }
.work-card { background: #ded8cc; }

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 800;
}

.band-icon { color: var(--ink); background: var(--amber); }
.work-icon { color: white; background: var(--blue); }

.product-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .7;
}

.product-content { position: relative; z-index: 2; max-width: 430px; }

.product-content h3 {
  margin-bottom: 18px;
  font-size: clamp(39px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -.06em;
}

.product-content h3 span { color: var(--blue); }
.band-card .product-content h3 span { color: var(--amber); }

.product-content p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  opacity: .8;
}

.product-content a {
  font-weight: 700;
  text-underline-offset: 5px;
}

.equalizer {
  position: absolute;
  right: -20px;
  bottom: -30px;
  display: flex;
  align-items: end;
  gap: 9px;
  opacity: .12;
  transform: rotate(-7deg);
}

.equalizer i { width: 14px; height: 180px; background: var(--amber); border-radius: 8px; }
.equalizer i:nth-child(2n) { height: 290px; }
.equalizer i:nth-child(3n) { height: 230px; }

.work-lines {
  position: absolute;
  right: -80px;
  top: 115px;
  display: grid;
  gap: 22px;
  transform: rotate(-12deg);
  opacity: .13;
}

.work-lines i {
  width: 360px;
  height: 52px;
  border: 5px solid var(--blue);
  border-radius: 8px;
}

.experience {
  width: 100%;
  max-width: none;
  padding: 105px max(24px, calc((100% - 1132px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  color: white;
  background: var(--ink);
}

.eyebrow.light { color: var(--amber); }
.experience h2 em { color: var(--amber); }

.experience-copy {
  padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.experience-copy > p {
  margin: 0;
  color: #c8d2df;
  font-size: 18px;
  line-height: 1.8;
}

.principles {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.principles span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.technology { border-bottom: 1px solid var(--line); }

.tech-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tech-list span {
  min-height: 104px;
  padding: 28px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.tech-list span::before {
  content: "◼";
  margin-right: 13px;
  color: var(--blue);
  font-size: 8px;
  transform: rotate(45deg);
}

.contact {
  width: 100%;
  max-width: none;
  padding: 90px max(24px, calc((100% - 1132px) / 2));
  color: white;
  background: var(--blue);
}

.contact .eyebrow { margin-bottom: 22px; color: rgba(255,255,255,.72); }

.contact > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.button-light { color: var(--ink); background: white; border-color: white; }
.button-light:hover { background: var(--paper); }

.site-footer {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer p:nth-child(2) { text-align: center; }
.site-footer p:last-child { text-align: right; }
.footer-brand { color: var(--ink); }

@media (max-width: 900px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 65px; }
  .hero-visual { width: min(560px, 100%); margin-inline: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .experience { grid-template-columns: 1fr; gap: 40px; }
  .experience-copy { padding-top: 32px; }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header,
  .site-footer { width: min(100% - 32px, 1180px); }
  .site-header { height: 72px; }
  .site-header .button { display: none; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero { gap: 38px; padding-block: 55px 70px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { text-align: center; }
  .hero-visual { width: calc(100% + 10px); }
  .experience-badge { width: 180px; height: 180px; }
  .experience-number { font-size: 62px; }
  .code-card { padding: 11px; font-size: 10px; }
  .products, .technology { padding-block: 78px; }
  .product-card { min-height: 470px; padding: 26px; }
  .experience, .contact { padding-block: 78px; }
  .tech-list { grid-template-columns: 1fr 1fr; }
  .tech-list span { min-height: 84px; padding: 18px; font-size: 15px; }
  .contact > div { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-block: 28px; grid-template-columns: 1fr; gap: 14px; }
  .site-footer p { margin: 0; }
  .site-footer p:nth-child(2), .site-footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
