:root {
  color-scheme: dark;
  --bg: #07070a;
  --surface: #111116;
  --surface-soft: #181820;
  --line: #2a2a34;
  --text: #f3f2f5;
  --muted: #aaa7b2;
  --soft: #d3d0dc;
  --accent: #b83242;
  --accent-strong: #c084fc;
  --accent-soft: rgba(192, 132, 252, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(192, 132, 252, 0.1), transparent 30rem),
    radial-gradient(circle at top left, rgba(184, 50, 66, 0.08), transparent 28rem),
    linear-gradient(180deg, #08080d 0%, var(--bg) 34rem);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(184, 50, 66, 0.16);
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.top-nav a:hover,
.text-link:hover {
  color: var(--accent-strong);
}

.section {
  padding: 88px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  min-height: calc(100vh - 82px);
  padding-top: 80px;
  padding-bottom: 96px;
}

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

.hero-logo {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-logo::before {
  position: absolute;
  inset: 24%;
  border-radius: 999px;
  background: rgba(192, 132, 252, 0.08);
  filter: blur(58px);
  content: "";
}

.hero-logo img {
  position: relative;
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(184, 50, 66, 0.16));
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 9vw, 6.85rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 36px;
  color: var(--soft);
  font-size: clamp(1.08rem, 2.4vw, 1.45rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 700;
}

.button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: currentColor;
}

.button.primary {
  background: var(--accent);
  color: #fff7f6;
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(16, 20, 19, 0.76);
  color: var(--text);
}

.button.primary:hover {
  background: #cc3b4c;
}

.button.secondary:hover {
  border-color: rgba(192, 132, 252, 0.42);
  color: var(--accent-strong);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.copy {
  color: var(--soft);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.copy p {
  margin-bottom: 20px;
}

.copy p:last-child,
.project-main p:last-child,
.social-copy {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.55fr);
  gap: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(24, 24, 24, 0.94), rgba(12, 12, 12, 0.96));
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 46px);
}

.project-label {
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-main p,
.social-copy {
  max-width: 660px;
  color: var(--soft);
  font-size: 1.08rem;
}

.project-side {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.status-title {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-list,
.now-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.status-list li,
.now-list li {
  position: relative;
  padding-left: 22px;
  color: var(--soft);
}

.status-list li::before,
.now-list li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.text-link {
  color: var(--text);
  font-weight: 800;
}

.text-link.disabled {
  color: var(--muted);
  cursor: not-allowed;
}

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

.now-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
  max-width: 820px;
  font-size: 1.08rem;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 96px);
}

.social-section .section-heading {
  margin-bottom: 0;
}

.social-copy {
  margin-bottom: 26px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.04), rgba(184, 50, 66, 0.04)),
    var(--surface);
  padding: 0;
  color: var(--text);
  font-weight: 700;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(168, 85, 247, 0.5);
  color: var(--accent-strong);
  box-shadow: 0 0 18px rgba(168, 85, 247, 0.15);
}

.social-links svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.social-links svg rect,
.social-links svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding: 30px 0 40px;
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .top-nav {
    gap: 14px;
    font-size: 0.9rem;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .hero-logo {
    order: -1;
    justify-content: flex-start;
  }

  .hero-logo img {
    width: min(50vw, 190px);
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .button {
    width: 100%;
  }

  .two-column,
  .project-card,
  .now-list,
  .social-section {
    grid-template-columns: 1fr;
  }

  .project-card {
    gap: 32px;
  }

  .project-side {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-top: 28px;
    padding-left: 0;
  }

  .social-links a {
    flex: 1 1 calc(50% - 12px);
  }

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

@media (max-width: 430px) {
  .brand span:last-child {
    display: none;
  }

  .social-links a {
    flex-basis: 100%;
  }
}
