:root {
  --bg: #0d0d0d;
  --panel: #151515;
  --panel-soft: #1d1d1d;
  --text: #f2f2f2;
  --muted: #a6a6a6;
  --line: rgba(255, 255, 255, 0.12);
  --orange: #ff6a00;
  --orange-soft: rgba(255, 106, 0, 0.18);
  --silver: #c0c0c0;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 106, 0, 0.16), transparent 28rem),
    radial-gradient(circle at 18% 16%, rgba(192, 192, 192, 0.09), transparent 20rem),
    linear-gradient(135deg, #070707, var(--bg) 55%, #050505);
  color: var(--text);
  font-family: "Montserrat", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

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

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

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand span,
footer span {
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f4f4f4;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--muted);
  font-size: 0.9rem;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 6rem);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 9% 4% auto auto;
  width: min(44vw, 34rem);
  height: min(44vw, 34rem);
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 62%);
  filter: blur(1px);
  opacity: 0.75;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-family: "Rajdhani", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Rajdhani", system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.4rem, 8.2vw, 7.8rem);
  line-height: 0.82;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
}

h3 {
  margin: 0 0 1rem;
  font-size: 1.65rem;
}

.hero__text,
.showcase p,
.contact p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.button--primary {
  background: linear-gradient(135deg, var(--orange), #ff8c27);
  color: #120700;
  box-shadow: 0 0 38px rgba(255, 106, 0, 0.28);
}

.button--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.hero__visual {
  padding: clamp(0.55rem, 1.8vw, 1rem);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(145deg, rgba(255, 106, 0, 0.12), transparent 45%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  border-radius: 1.35rem;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -1.5rem clamp(1rem, 5vw, 6rem) 5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.intro-strip article {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.intro-strip article:last-child {
  border-right: 0;
}

.intro-strip span {
  display: block;
  color: var(--orange);
  margin-bottom: 0.8rem;
  font-family: "Rajdhani", system-ui, sans-serif;
  font-weight: 700;
}

.intro-strip strong {
  display: block;
  font-family: "Rajdhani", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.intro-strip p,
.card p,
.process p {
  color: var(--muted);
  line-height: 1.65;
}

.section,
.showcase,
.contact {
  padding: 5rem clamp(1rem, 5vw, 6rem);
}

.section__heading {
  margin-bottom: 2rem;
}

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

.card {
  min-height: 18rem;
  padding: 2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel);
  box-shadow: var(--shadow);
  border-radius: 1.35rem;
}

.card--accent {
  background:
    radial-gradient(circle at top right, var(--orange-soft), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent),
    var(--panel);
  border-color: rgba(255, 106, 0, 0.42);
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent),
    rgba(255, 255, 255, 0.018);
}

.showcase img {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  max-height: 720px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.process ol {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.process li {
  counter-increment: step;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  border-radius: 1.15rem;
}

.process li::before {
  content: "0" counter(step);
  display: block;
  margin-bottom: 1.5rem;
  color: var(--orange);
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.process strong {
  display: block;
  font-family: "Rajdhani", system-ui, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: center;
  margin: clamp(1rem, 5vw, 6rem);
  border: 1px solid rgba(255, 106, 0, 0.36);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.04);
}

.contact__box {
  display: grid;
  gap: 1rem;
}

.contact__box a {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.22);
  color: var(--silver);
}

.contact__box a:hover {
  border-color: var(--orange);
  color: white;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 6rem);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .showcase,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .intro-strip,
  .cards,
  .process ol {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .intro-strip,
  .cards,
  .process ol {
    grid-template-columns: 1fr;
  }

  .intro-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
