:root {
  --bg: #101010;
  --fg: #f2f2f2;
  --muted: rgba(242, 242, 242, 0.72);
  --accent: #e7bc0d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);

  font-family: "Texturina", "Old English MT", Georgia, serif;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding-top: 14px;
  padding-inline: 18px; 
  padding-bottom: 120px;
}

@media (max-width: 480px) {
  .wrap {
    padding-inline: 8px;
    padding-bottom: 150px;
  }
}

.logo-header {
  width: 100%;
  text-align: center;
}

.logo {
  width: clamp(260px, 88vw, 820px);
  height: auto;
  display: block;
  margin: 0 auto 12px; 
}

.cta {
  margin-top: clamp(6px, 1.5vh, 14px);
  text-align: center;
}

.ctaMeta {
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Texturina", "Old English MT", Georgia, serif;
  font-size: clamp(20px, 5vw, 32px);
  letter-spacing: 0.8px;
  margin-bottom: clamp(10px, 1.5vh, 20px);
}

.ctaMeta .dot {
  opacity: 0.55;
}

.ctaPrimary {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ctaSecondary {
  margin-top: clamp(30px, 3vh, 60px);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.75;
}

.ctaLink {
  text-decoration: none;
  color: var(--fg);

  font-size: clamp(22px, 3.8vw, 40px);
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.1;

  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 4px;

  transition: background-size 180ms ease, opacity 180ms ease, color 180ms ease;
}

.ctaLink:hover {
  color: var(--accent);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 2px;
  opacity: 1;
}

.ctaLink:active {
  opacity: 0.6;
}

.ctaSubLink {
  text-decoration: none;
  color: var(--fg);

  font-size: clamp(20px, 2.7vw, 26px);
  font-weight: 500;
  letter-spacing: 0.5px;

  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;

  transition: background-size 160ms ease, opacity 160ms ease, color 160ms ease;
}

.ctaSubLink:hover {
  color: var(--accent);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 100% 1px;
  opacity: 1;
}

.ctaSubLink:active {
  opacity: 0.6;
}

.divider {
  opacity: 0.4;
  font-size: clamp(20px, 3vw, 28px);
  transform: translateY(-2px);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, var(--bg) 80%, transparent); 
  text-align: center;
  z-index: 100;
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 400px;
  margin-inline: auto;
  font-style: italic;
}

.footer-link {
  display: inline-block;
  text-decoration: none;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px; 
  background-repeat: no-repeat;
  background-position: 0 100%;
  padding-bottom: 2px;
  transition: background-size 180ms ease, color 180ms ease;
}

.footer-link:hover {
  color: var(--accent);
  background-size: 100% 1px;
}