:root {
  --bg: #08090d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f2e8;
  --muted: rgba(247, 242, 232, 0.72);
  --soft: rgba(247, 242, 232, 0.42);
  --sun: #ffb76b;
  --day: #ffe7a3;
  --wave: #8fd3ff;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 183, 107, 0.22), transparent 32rem),
    radial-gradient(circle at 72% 24%, rgba(143, 211, 255, 0.16), transparent 34rem),
    linear-gradient(135deg, #08090d 0%, #11131b 52%, #090a0f 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 72%);
}

.page {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-name {
  font-weight: 760;
  letter-spacing: -0.04em;
  font-size: 1.15rem;
}

.status {
  color: var(--muted);
  font-size: 0.92rem;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 999px;
  padding: 10px 14px;
  backdrop-filter: blur(12px);
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 64px 0 80px;
}

.card {
  width: min(920px, 100%);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: clamp(32px, 7vw, 76px);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 30%;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 183, 107, 0.28), transparent 68%);
  filter: blur(14px);
}

.logo-full {
  width: min(560px, 100%);
  height: auto;
  display: block;
  margin-bottom: 42px;
}

.kicker {
  color: var(--day);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 760;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.lede {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.pill {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 999px;
  padding: 13px 17px;
  font-weight: 650;
  font-size: 0.96rem;
}

.pill.hot {
  background: linear-gradient(135deg, var(--day), var(--sun));
  color: #14100d;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 34px;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

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

@media (max-width: 680px) {
  .header { align-items: flex-start; gap: 18px; flex-direction: column; }
  .card { border-radius: 26px; }
  .logo-full { margin-bottom: 30px; }
}
