﻿:root {
  --bg: #0a0b0e;
  --bg-elev: #111318;
  --line: #222631;
  --text: #f1f3f7;
  --muted: #a6afc1;
  --accent: #d7b26d;
  --accent-soft: #45381f;
  --radius: 18px;
  --content: min(1240px, 94vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 80% -15%, #1d1f28 0%, transparent 34%), var(--bg);
  color: var(--text);
}

.intro {
  min-height: 92vh;
  padding: 3.2rem 0;
  display: grid;
  align-items: center;
}

.intro__frame {
  width: var(--content);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(145deg, #11141b, #0d0f14);
  padding: clamp(2rem, 4vw, 4rem);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1 {
  margin: 0.9rem 0 1.15rem;
  font-size: clamp(2.2rem, 7vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 12ch;
}

.intro__sub {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.btn {
  margin-top: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #16120b;
}

.btn--primary:hover {
  transform: translateY(-1px);
  background: #e1bf7f;
}

main {
  width: var(--content);
  margin: 0 auto;
}

.featured {
  margin-bottom: 5rem;
}

.featured-shell {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #0d1016;
}

.featured-media {
  aspect-ratio: 16 / 8;
  background: linear-gradient(145deg, #1b2030, #0f1219);
  border-bottom: 1px solid var(--line);
  padding: 1.3rem;
}

.mock-screen {
  width: 100%;
  height: 100%;
  border: 1px solid #2b3140;
  border-radius: 14px;
  background: linear-gradient(180deg, #1b2434, #101722);
  overflow: hidden;
}

.mock-topbar {
  height: 2.1rem;
  border-bottom: 1px solid #2b3140;
  background: #161c29;
}

.mock-body {
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.mock-block {
  height: clamp(2.8rem, 7vw, 4.7rem);
  background: linear-gradient(145deg, #273246, #1c2737);
  border: 1px solid #37445f;
  border-radius: 9px;
}

.featured-copy {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  align-items: end;
}

.featured-text h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: -0.025em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
}

.meta span {
  border: 1px solid #333949;
  background: #121722;
  color: #c5cfdf;
  border-radius: 999px;
  padding: 0.26rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.showcases {
  display: grid;
  gap: 2.4rem;
  padding-bottom: 4rem;
}

.showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-elev);
}

.showcase:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.showcase:nth-child(even) .showcase-media {
  order: 2;
}

.showcase-media {
  min-height: 320px;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(160deg, #1a1e29, #11141b);
}

.showcase:nth-child(even) .showcase-media {
  border-right: 0;
  border-left: 1px solid var(--line);
}

.showcase-panel {
  height: 100%;
  border: 1px solid #2a2f3c;
  border-radius: 13px;
  background: linear-gradient(150deg, #1d2536, #121722);
  padding: 1rem;
  transform: translateY(0);
  transition: transform 280ms ease;
}

.showcase:hover .showcase-panel {
  transform: translateY(-4px);
}

.showcase-copy {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}

.showcase-copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.btn--ghost {
  background: transparent;
  border-color: #353c4d;
  color: #d6ddea;
}

.btn--ghost:hover {
  background: #171c27;
}

.site-foot {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2.4rem;
  text-align: center;
}

.site-foot p {
  color: #7f8796;
  font-size: 0.82rem;
}

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

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

@media (max-width: 980px) {
  .featured-copy {
    grid-template-columns: 1fr;
  }

  .showcase,
  .showcase:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .showcase-media,
  .showcase:nth-child(even) .showcase-media {
    order: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .intro {
    min-height: 82vh;
  }

  h1 {
    max-width: 15ch;
  }

  .actions {
    width: 100%;
  }

  .btn {
    flex: 1;
  }
}
