:root {
  color-scheme: dark;
  --bg: #101516;
  --bg-soft: #162022;
  --panel: #f4f0e8;
  --text: #f7f5ee;
  --muted: #b8c0bc;
  --ink: #182022;
  --ink-muted: #56615d;
  --line: rgba(255, 255, 255, 0.14);
  --teal: #33d6bd;
  --coral: #f47157;
  --gold: #efc86f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 5%, rgba(51, 214, 189, 0.22), transparent 26rem),
    linear-gradient(145deg, #101516 0%, #172325 54%, #101516 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.inline-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(51, 214, 189, 0.55);
  text-underline-offset: 4px;
}

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

.site-header,
.hero,
.section,
.feature-grid,
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 36%, var(--bg) 36% 46%, transparent 46%),
    linear-gradient(135deg, var(--teal), var(--coral));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav {
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav a {
  transition: color 160ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 44px;
  min-height: calc(100vh - 82px);
  padding: 34px 0 72px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 4.9rem, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.7rem, 3rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal);
  color: #071211;
}

.button.secondary {
  border-color: var(--line);
  color: var(--text);
}

.hero-art {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 21, 22, 0.34), transparent 52%);
  content: "";
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  padding: 76px 0;
  border-top: 1px solid var(--line);
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 76px;
}

.feature-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink-muted);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
}

.feature-card p {
  margin-bottom: 0;
}

.work {
  align-items: stretch;
  padding-bottom: 92px;
}

.work-panel,
.status-panel {
  border-radius: 8px;
}

.work-panel {
  padding: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.status-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 32px;
  background: linear-gradient(135deg, var(--coral), #f2a15d);
  color: #17100d;
}

.status-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 16, 13, 0.22);
}

.status-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.status-label {
  color: rgba(23, 16, 13, 0.68);
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}

.footer a {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .section,
  .feature-grid,
  .footer {
    width: min(100% - 28px, 680px);
  }

  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 34px 0 56px;
  }

  h1 {
    font-size: clamp(2.55rem, 3.3rem, 3.8rem);
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    aspect-ratio: 16 / 10;
  }

  .section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    gap: 10px;
    padding: 58px 0;
  }

  .feature-grid {
    padding-bottom: 58px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 24px;
  }

  .work {
    padding-bottom: 64px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .work-panel,
  .status-panel {
    padding: 24px;
  }

  .status-panel div {
    display: grid;
    gap: 4px;
  }
}
