@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --blue: #2F6FED;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.52);
  --faint: rgba(255, 255, 255, 0.1);
}

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

html, body {
  background: #000;
  color: var(--white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
}

.blue { color: var(--blue); }

.hero {
  padding: 168px 0 128px;
  border-bottom: 1px solid var(--faint);
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(76px, 15vw, 136px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.065em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-date {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 88px;
}

.declaration { margin-bottom: 72px; }

.declaration p {
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero-body {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 560px;
}

.hero-body p {
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: var(--muted);
}

.by-entering {
  color: var(--white) !important;
  font-weight: 600 !important;
}

.section {
  padding: 112px 0;
  border-bottom: 1px solid var(--faint);
}

.section h2 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 52px;
}

.body-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}

.body-copy p {
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.025em;
  color: var(--muted);
}

.three-beat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.three-beat p {
  font-size: clamp(17px, 2.4vw, 22px) !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  letter-spacing: -0.03em !important;
}

.closing {
  padding: 168px 0 128px;
  border-bottom: 1px solid var(--faint);
}

.closing-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.closing-brand {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.055em;
  color: var(--white);
  margin-bottom: 28px;
}

.closing-category {
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-tagline {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 40px;
}

.closing-date {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 24px;
}

.published {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.site-footer { padding: 64px 0 52px; }

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-sub {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.01em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 140ms ease;
}

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

@media (max-width: 640px) {
  .hero { padding: 104px 0 88px; }
  .closing { padding: 104px 0 88px; }
  .section { padding: 80px 0; }
  .declaration p { font-size: clamp(22px, 7vw, 36px); }
}
