@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  color-scheme: light;
  --bg: #050505;
  --bg-alt: #131313;
  --surface: rgba(18, 18, 18, 0.94);
  --surface-strong: rgba(12, 12, 12, 0.98);
  --border: rgba(214, 178, 85, 0.28);
  --text: #f4ddb0;
  --muted: #c6a95d;
  --accent: #d7b35a;
  --accent-strong: #f1d28a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(215, 179, 90, 0.18), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(241, 210, 138, 0.12), transparent 24%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

body::before {
  top: -6rem;
  right: -5rem;
  background: rgba(215, 179, 90, 0.16);
}

body::after {
  bottom: -8rem;
  left: -6rem;
  background: rgba(241, 210, 138, 0.12);
}

.page-shell {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 1.75rem 2rem 0;
}

.hero-card {
  width: 100%;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.logo-image {
  display: block;
  width: min(200px, 34vw);
  height: auto;
  border-radius: 0;
}

.eyebrow {
  margin: 3rem 0 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--accent-strong);
  letter-spacing: 0;
  text-transform: none;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 500;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 60ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-strong);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-right: auto;
}

.support-email svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.support-email:hover,
.support-email:focus-visible {
  text-decoration: underline;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  transform: translateY(-2px);
  background: transparent;
}

.site-footer svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  .page-shell {
    padding: 1rem 1rem 0;
  }

  .site-footer {
    display: grid;
    justify-items: start;
    gap: 1rem;
  }
}
