:root {
  --bg: #050505;
  --panel: #101010;
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #d5aa57;
  --green: #19d76b;
  --green-dark: #08a94f;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 20%, rgba(213, 170, 87, 0.18), transparent 28rem),
    linear-gradient(135deg, #000 0%, #0b0b0b 48%, #000 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.presell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.card {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 16, 16, 0.88);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
}

.photo-wrap {
  min-height: 620px;
  background: #050505;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.content {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 58px);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.message {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.58;
}

.button {
  width: 100%;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  border-radius: 14px;
  color: #031008;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 20px 60px rgba(25, 215, 107, 0.24);
  font-size: 0.98rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(25, 215, 107, 0.34);
  outline: none;
}

.auto {
  margin: -6px 0 0;
  color: rgba(245, 247, 251, 0.56);
  font-size: 0.86rem;
  text-align: center;
}

.auto strong {
  color: var(--gold);
}

@media (max-width: 760px) {
  .presell {
    align-items: start;
    padding: 0;
  }

  .card {
    min-height: 100vh;
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    background: #080808;
  }

  .photo-wrap {
    min-height: auto;
    height: 52vh;
  }

  .photo-wrap img {
    object-position: center 17%;
  }

  .content {
    align-content: start;
    padding: 26px 18px 30px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .message {
    font-size: 1rem;
  }
}
