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

:root {
  --bg: #141414;
  --bg-elevated: #1c1c1c;
  --text: #f5f3f0;
  --text-muted: rgba(245, 243, 240, 0.55);
  --accent: #9b1d20;
  --accent-hover: #b82428;
  --accent-soft: rgba(155, 29, 32, 0.18);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.landing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  overflow: hidden;
}

.landing__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  transform: translate(-50%, -58%);
  background: radial-gradient(
    circle,
    var(--accent-soft) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.landing__brand,
.landing__actions,
.landing__footer {
  position: relative;
  z-index: 1;
}

.landing__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 28rem;
  margin-bottom: clamp(2rem, 6vw, 3rem);
}

.landing__logo {
  width: clamp(7.5rem, 22vw, 10rem);
  height: clamp(7.5rem, 22vw, 10rem);
  margin-bottom: 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 24px 48px rgba(0, 0, 0, 0.45);
  animation: fade-up 0.7s ease both;
}

.landing__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  animation: fade-up 0.7s ease 0.08s both;
}

.landing__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 7vw, 3.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
  animation: fade-up 0.7s ease 0.14s both;
}

.landing__tagline {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 22ch;
  animation: fade-up 0.7s ease 0.2s both;
}

.landing__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 22rem;
  animation: fade-up 0.7s ease 0.28s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 1rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(155, 29, 32, 0.35);
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 32px rgba(155, 29, 32, 0.45);
}

.btn--secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  background: #252525;
  border-color: rgba(255, 255, 255, 0.14);
}

.btn__icon {
  display: flex;
  opacity: 0.85;
}

.landing__footer {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  animation: fade-up 0.7s ease 0.36s both;
}

.landing__footer p {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 480px) {
  .landing__actions {
    flex-direction: row;
    max-width: 32rem;
  }

  .btn {
    flex: 1;
    min-width: 0;
    padding: 1.05rem 1rem;
    font-size: 0.72rem;
  }
}

@media (min-width: 768px) {
  .landing__actions {
    max-width: 36rem;
    gap: 1rem;
  }

  .btn {
    font-size: 0.78rem;
    padding: 1.1rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing__logo,
  .landing__eyebrow,
  .landing__title,
  .landing__tagline,
  .landing__actions,
  .landing__footer {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:active {
    transform: none;
  }
}
