:root {
  --bg: #0c1115;
  --panel: rgba(14, 22, 29, 0.86);
  --panel-alt: rgba(18, 27, 35, 0.92);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #ecf1f4;
  --muted: #9eacb6;
  --accent: #f37321;
  --accent-strong: #fdb913;
  --accent-green: #50b848;
  --accent-lime: #d9e021;
  --accent-blue: #00aeef;
  --accent-blue-soft: #d9f1fd;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(243, 115, 33, 0.28);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(243, 115, 33, 0.16), transparent 24%),
    radial-gradient(circle at left center, rgba(0, 174, 239, 0.1), transparent 28%),
    radial-gradient(circle at 70% 75%, rgba(80, 184, 72, 0.08), transparent 22%),
    linear-gradient(135deg, #091017 0%, #111b24 48%, #06090d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent);
  pointer-events: none;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px);
  background-size: 180px 180px;
}

.hero,
.metrics,
.overview,
.services,
.expertise,
.notify,
.contact,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 28px 0 40px;
}

.hero__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.04em;
}

.brand__mark {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

img.brand__mark {
  display: block;
  flex-shrink: 0;
  height: clamp(3.5rem, 10vw, 6rem);
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  background: none;
}

.brand__text,
.hero__status,
.eyebrow,
.panel__label,
.countdown__unit,
.metric__label,
.contact__label {
  color: var(--muted);
}

.hero__status {
  margin: 0;
  font-size: 0.95rem;
}

.hero__content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.hero__copy,
.hero__panel,
.metric,
.overview__card,
.service-pill,
.card,
.notify,
.contact__card {
  border: 1px solid var(--panel-border);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.hero__copy::after {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(243, 115, 33, 0.24);
}

.eyebrow,
.panel__label,
.contact__label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}

h1,
h2,
h3,
.countdown__value,
.metric__value,
.card__tag {
  font-family: "Rajdhani", sans-serif;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1;
}

.hero__lead,
.overview__card p,
.service-pill p,
.card p,
.notify__lead,
.contact__card p,
.footer p {
  margin: 0;
  color: #d5dde2;
  line-height: 1.75;
}

.hero__lead {
  max-width: 61ch;
  margin-top: 24px;
  font-size: 1.05rem;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #101010;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.button--full {
  width: 100%;
}

.hero__highlights {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero__highlights li {
  padding-left: 18px;
  position: relative;
  color: #d9e0e5;
}

.hero__highlights li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
}

.hero__panel {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 16px;
}

.countdown__item {
  padding: 22px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.countdown__value {
  display: block;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.9;
}

.countdown__unit {
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.panel__meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.panel__meta p {
  margin: 0 0 10px;
  line-height: 1.6;
}

.panel__contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.metric {
  padding: 28px;
}

.metric__value {
  display: block;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--accent-strong);
}

.metric__label {
  display: block;
  margin-top: 10px;
}

.overview,
.services,
.expertise,
.contact {
  padding: 52px 0 0;
}

.notify {
  margin-top: 52px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.14), rgba(14, 22, 29, 0.92));
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading--compact {
  margin-bottom: 10px;
}

.overview__grid,
.cards,
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.overview__card,
.contact__card,
.card {
  padding: 28px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-pill {
  padding: 24px;
  background: var(--panel-alt);
}

.service-pill__title {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-blue);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.cards {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  min-height: 220px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(243, 115, 33, 0.08), rgba(22, 33, 42, 0.96) 35%),
    rgba(22, 33, 42, 0.96);
  box-shadow: 0 34px 68px rgba(0, 0, 0, 0.42);
}

.card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border: 1px solid var(--line-strong);
  color: var(--accent-strong);
  background: linear-gradient(135deg, rgba(243, 115, 33, 0.14), rgba(0, 174, 239, 0.08));
  font-size: 1.4rem;
}

.notify__form {
  display: grid;
  gap: 12px;
}

.notify__form input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(0, 174, 239, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.notify__form input::placeholder {
  color: #b4c0c8;
}

.form__status {
  min-height: 24px;
  margin: 0;
  color: #dce7ee;
}

.contact__card a {
  text-decoration: none;
}

.contact__card a:hover {
  text-decoration: underline;
}

.footer {
  padding: 40px 0 36px;
}

.footer p {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-strong);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero__content,
  .metrics,
  .overview__grid,
  .service-strip,
  .cards,
  .notify,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__panel,
  .notify {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  body::before,
  .noise {
    display: none;
  }

  .hero__copy,
  .hero__panel,
  .metric,
  .overview__card,
  .service-pill,
  .card,
  .notify,
  .contact__card {
    backdrop-filter: none;
  }

  .hero {
    padding-top: 18px;
  }

  .hero__topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  h1,
  h2 {
    max-width: none;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
  }

  .countdown__item {
    padding: 18px 14px;
  }

  .hero,
  .metrics,
  .overview,
  .services,
  .expertise,
  .notify,
  .contact,
  .footer {
    width: min(100% - 20px, 1180px);
  }
}
