:root {
  color-scheme: dark;
  --bg: #080a0b;
  --panel: #111518;
  --panel-2: #171d21;
  --text: #f5f7f5;
  --muted: #b9c2bd;
  --line: rgba(255, 255, 255, 0.14);
  --yellow: #f3c94b;
  --green: #72d18b;
  --steel: #8da2ac;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 14% 8%, rgba(243, 201, 75, 0.11), transparent 28rem),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto;
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 10, 11, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 1000;
  box-shadow: 0 0 28px rgba(243, 201, 75, 0.22);
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 7vw, 6rem) clamp(1rem, 4vw, 3rem);
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, 0.95), rgba(8, 10, 11, 0.62) 46%, rgba(8, 10, 11, 0.28)),
    linear-gradient(0deg, rgba(8, 10, 11, 0.86), transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy p:not(.eyebrow),
.copy p,
.future p,
.contact p,
.cards p {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.primary-button,
.app-button,
.secondary-button,
.contact-actions a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(243, 201, 75, 0.54);
  border-radius: 6px;
  padding: 0.82rem 1.05rem;
  font-weight: 1000;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-button {
  background: linear-gradient(135deg, var(--yellow), #ffdf78);
  color: #181000;
  box-shadow: 0 16px 50px rgba(243, 201, 75, 0.18);
}

.app-button,
.app-link {
  border-color: rgba(114, 209, 139, 0.66);
  background: linear-gradient(135deg, var(--green), #b5f3c5);
  color: #04100a;
  box-shadow: 0 16px 50px rgba(114, 209, 139, 0.16);
}

.secondary-button,
.contact-actions a {
  background: rgba(17, 21, 24, 0.86);
}

.contact-actions .app-link {
  background: linear-gradient(135deg, var(--green), #b5f3c5);
  color: #04100a;
}

.metric-strip,
.split,
.cards,
.experience,
.visual-grid,
.process,
.future,
.contact {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-strip article {
  min-height: 130px;
  padding: 1.2rem;
  background: rgba(17, 21, 24, 0.92);
}

.metric-strip strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.metric-strip span {
  display: block;
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 900;
}

.split,
.future,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.copy p:first-child,
.future p {
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cards article {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(23, 29, 33, 0.96), rgba(17, 21, 24, 0.96));
  box-shadow: var(--shadow);
}

.cards span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.cards h3 {
  margin-top: 0.65rem;
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1.14fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0 0;
}

.experience-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.14rem);
  line-height: 1.65;
}

.experience figure,
.visual-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.experience img,
.visual-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0 clamp(3rem, 8vw, 5rem);
}

.visual-grid figcaption {
  padding: 1rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.45;
}

.process {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  list-style: none;
  counter-reset: steps;
}

.process li {
  counter-increment: steps;
  min-height: 148px;
  padding: 1.2rem;
  background: rgba(17, 21, 24, 0.94);
}

.process li::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 0.75rem;
  color: var(--yellow);
  font-weight: 1000;
}

.process strong,
.process span {
  display: block;
}

.process span {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.5;
}

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

.contact {
  align-items: center;
  padding-bottom: 3rem;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 10, 11, 0.92), rgba(8, 10, 11, 0.7)),
      linear-gradient(0deg, rgba(8, 10, 11, 0.86), transparent 38%);
  }

  .metric-strip,
  .split,
  .cards,
  .experience,
  .visual-grid,
  .process ol,
  .future,
  .contact {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions a,
  .contact-actions a {
    width: 100%;
  }
}
