:root {
  --bg: #111010;
  --bg-alt: #181717;
  --fg: #f7f4ec;
  --muted: #a29f96;
  --accent: #ffd800; /* Whatnot-style yellow */
  --border-subtle: #262323;
  --max-width: 1080px;
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #1f1b17 0, #0b0908 55%, #050404 100%);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

header {
  padding: 20px 32px 0;
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #111010;
  font-weight: 900;
  text-transform: lowercase;
}

.brand-text {
  font-size: 18px;
}

main {
  flex: 1;
  padding: 40px 32px 80px;
}

.layout {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero {
  margin-top: 60px;
}

.hero-kicker {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.06;
  margin: 0 0 16px;
}

.hero-subtitle {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
  backdrop-filter: blur(10px);
  background: rgba(18, 17, 16, 0.7);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 216, 0, 0.7);
}

.tabs {
  margin-top: 60px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  gap: 32px;
  font-size: 15px;
  color: var(--muted);
  overflow-x: auto;
  padding-bottom: 8px;
}

.tab {
  padding-bottom: 8px;
  white-space: nowrap;
}

.tab.active {
  color: var(--fg);
  border-bottom: 2px solid var(--fg);
}

.content-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(145deg, rgba(29, 26, 23, 0.96), rgba(13, 11, 10, 0.96));
  padding: 20px 20px 22px;
}

.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.tag-row {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  color: var(--muted);
}

.email-box {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-input {
  flex: 1 1 220px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  padding: 10px 14px;
  font-size: 14px;
  background: rgba(10, 9, 8, 0.9);
  color: var(--fg);
  outline: none;
}

.email-input::placeholder {
  color: #64615a;
}

.email-btn {
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--accent);
  color: #111010;
  cursor: pointer;
}

.email-btn:active {
  transform: translateY(1px);
}

.note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.timeline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline ul {
  padding-left: 18px;
  margin: 8px 0 0;
}

.timeline li {
  margin-bottom: 4px;
}

footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-alt);
  padding: 28px 32px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-inner strong {
  color: var(--fg);
  font-weight: 600;
}

.footer-heading {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  color: var(--fg);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
}

.disclaimer {
  margin-top: 8px;
  font-size: 11px;
  color: #7e7a72;
}

.bottom-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
  font-size: 11px;
  color: #6b6860;
}

.bottom-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  header {
    padding: 16px 18px 0;
  }

  main {
    padding: 28px 18px 56px;
  }

  .hero {
    margin-top: 40px;
  }

  .content-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-title {
    font-size: 36px;
  }
}

.toast {
  visibility:hidden;
  min-width:200px;
  background:#222;
  color:#fff;
  text-align:center;
  border-radius:6px;
  padding:12px 18px;
  position:fixed;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  font-size:14px;
  z-index:999;
  opacity:0;
  background-color: red;
  transition:opacity 0.4s ease;
}
