:root {
  --ink: #f8fbff;
  --muted: #aeb8c8;
  --soft: #d9e2ef;
  --bg: #090b10;
  --panel: rgba(17, 22, 32, 0.86);
  --panel-strong: #121823;
  --line: rgba(255, 255, 255, 0.14);
  --cyan: #5de4ff;
  --pink: #ff63c8;
  --amber: #ffd36a;
  --green: #6af0a2;
  --coral: #ff806a;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(9, 11, 16, 0.88), rgba(9, 11, 16, 0.98) 42%),
    url("/about-section-bg.jpg") center / cover fixed;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(93, 228, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(255, 128, 106, 0.13), transparent 22%),
    linear-gradient(120deg, rgba(255, 99, 200, 0.08), transparent 38%);
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.service-banner {
  position: relative;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 211, 106, 0.38);
  color: #221600;
  background:
    linear-gradient(90deg, #ffd36a, #ffedb3 42%, #5de4ff 100%);
}

.service-banner-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 800;
}

.service-banner-inner span:last-child {
  color: rgba(34, 22, 0, 0.78);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(9, 11, 16, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(93, 228, 255, 0.28));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 228, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
}

.button.primary {
  border-color: transparent;
  color: #061018;
  background: linear-gradient(135deg, var(--cyan), #a8f3ff);
  box-shadow: 0 16px 36px rgba(93, 228, 255, 0.22);
}

.button.pink,
.button.accent {
  border-color: transparent;
  color: #190717;
  background: linear-gradient(135deg, var(--pink), #ffb36f);
  box-shadow: 0 16px 36px rgba(255, 99, 200, 0.2);
}

.button.disabled {
  pointer-events: none;
  color: #8a94a9;
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  min-height: calc(100svh - 118px);
  display: flex;
  align-items: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image, url("/Assets/smokeystudio/smokeystudio2025.png")) center / cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.98), rgba(9, 11, 16, 0.74) 52%, rgba(9, 11, 16, 0.5)),
    linear-gradient(0deg, rgba(9, 11, 16, 0.96), transparent 46%, rgba(9, 11, 16, 0.62));
}

.home-hero {
  min-height: calc(100svh - 118px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 40px;
  align-items: center;
}

.hero-content {
  max-width: 820px;
}

.kicker {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(93, 228, 255, 0.32);
  border-radius: 999px;
  color: #c7f6ff;
  background: rgba(8, 16, 24, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker.subtle {
  color: #ffe6f5;
  border-color: rgba(255, 99, 200, 0.3);
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(106, 240, 162, 0.76);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: 68px;
  line-height: 0.96;
}

.hero-copy {
  max-width: 670px;
  margin: 0 0 28px;
  color: #ced8e8;
  font-size: 19px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(18, 24, 35, 0.94), rgba(10, 13, 20, 0.9)),
    linear-gradient(135deg, rgba(93, 228, 255, 0.18), rgba(255, 99, 200, 0.1));
  box-shadow: var(--shadow);
}

.panel-topline {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.panel-topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.panel-topline span:nth-child(2) {
  background: var(--amber);
}

.panel-topline span:nth-child(3) {
  background: var(--green);
}

.system-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.system-label {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.system-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  line-height: 1.04;
}

.progress-track {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--amber));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.mini-grid div,
.terminal-strip {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.mini-grid span,
.terminal-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-grid strong,
.terminal-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.terminal-strip {
  margin-top: 10px;
  border-color: rgba(93, 228, 255, 0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 104px;
  padding: 18px;
  background: rgba(11, 14, 22, 0.78);
}

.metric strong {
  display: block;
  font-family: "Space Grotesk", Manrope, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 28px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 211, 106, 0.36);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 211, 106, 0.16), rgba(16, 21, 34, 0.92));
}

.notice-badge,
.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #dce6f8;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.notice-badge {
  color: #241600;
  background: var(--amber);
}

.notice strong {
  display: block;
  color: #ffe6a8;
}

.notice p {
  margin: 2px 0 0;
  color: #e9d7af;
}

.section {
  padding: 76px 0;
}

.section.tint {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-band {
  background:
    linear-gradient(135deg, rgba(93, 228, 255, 0.08), transparent 42%),
    linear-gradient(270deg, rgba(255, 128, 106, 0.08), transparent 44%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2 {
  max-width: 660px;
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 24, 35, 0.92), rgba(12, 15, 24, 0.94));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 228, 255, 0.4);
  background: linear-gradient(180deg, rgba(24, 32, 47, 0.96), rgba(12, 15, 24, 0.96));
}

.card-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 999px;
  color: #061018;
  background: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card:nth-child(2n) .card-label {
  color: #190717;
  background: var(--pink);
}

.card:nth-child(3n) .card-label {
  color: #241600;
  background: var(--amber);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
}

.showcase-media {
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0b0f18 center / cover no-repeat;
  box-shadow: var(--shadow);
}

.showcase-copy h2 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.05;
}

.showcase-copy p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.status-item {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.status-pill.live {
  color: #062111;
  background: var(--green);
}

.status-pill.work {
  color: #241600;
  background: var(--amber);
}

.status-item strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
}

.status-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}

.roadmap {
  display: grid;
  gap: 12px;
}

.roadmap-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 24, 35, 0.86);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.profile {
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 24, 35, 0.9);
}

.avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  background-size: cover;
  background-position: center;
}

.profile h3 {
  margin: 0 0 2px;
}

.profile p {
  margin: 0 0 16px;
  color: var(--muted);
}

.article {
  max-width: 880px;
  margin: 0 auto;
}

.article h1 {
  font-size: 54px;
}

.article-block {
  margin: 18px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 24, 35, 0.9);
}

.article-block h2 {
  margin: 0 0 12px;
}

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(9, 11, 16, 0.82);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  h1,
  .article h1 {
    font-size: 46px;
  }

  .hero,
  .home-hero {
    min-height: auto;
    padding: 76px 0 54px;
  }

  .hero-grid,
  .grid,
  .grid.two,
  .showcase,
  .status-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .showcase-copy h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .service-banner-inner {
    display: grid;
    gap: 6px;
    align-items: start;
  }

  .site-nav {
    min-height: 64px;
  }

  .brand {
    font-size: 17px;
  }

  h1,
  .article h1 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-metrics {
    display: none;
  }

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

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .notice,
  .roadmap-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
