:root {
  --bg: #202020;
  --surface: #1e1e1e;
  --elevated: #2f2f2f;
  --border: #3e3e3e;
  --ghost: #979797;
  --text: #ffffff;
  --dim: rgba(255, 255, 255, 0.55);
  --accent: #a13535;
  --os: #2f42a1;
  --radius: 5px;
  --font: Inter, "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

.stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 28px 48px 22px;
}

.bg {
  position: absolute;
  inset: -8%;
  background: url("../assets/scene.png") center / cover no-repeat;
  filter: saturate(0.88) brightness(0.48);
  animation: kenburns 36s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.1) translate(-1.4%, -0.8%); }
}

.scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(18, 18, 18, 0.15) 0%, rgba(10, 10, 10, 0.62) 58%, rgba(8, 8, 8, 0.82) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%, rgba(0, 0, 0, 0.55) 100%);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top, .frame, .foot {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.frame {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 36px 0 28px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(30, 30, 30, 0.72);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(161, 53, 53, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(161, 53, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(161, 53, 53, 0); }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.rule {
  width: 56px;
  height: 3px;
  margin: 20px 0 18px;
  background: var(--accent);
  border-radius: 2px;
}

.lead, .follow {
  margin: 0;
  max-width: 460px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--dim);
}

.follow {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.social {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(30, 30, 30, 0.78);
  backdrop-filter: blur(12px);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.social:hover {
  border-color: #6a6a6a;
  background: rgba(47, 47, 47, 0.88);
}

.social-ico {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--elevated);
}

.social-ico svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.social b {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.social small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ghost);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ghost);
}

@media (max-width: 900px) {
  .stage { padding: 20px 18px 16px; }
  .frame { padding: 28px 0 20px; }
  .social { min-width: min(220px, 100%); }
}

@media (max-width: 520px) {
  .social { min-width: 100%; }
}
