@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/cormorant-garamond-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #04100d;
  --surface: rgba(8, 21, 17, 0.9);
  --surface-border: rgba(212, 164, 79, 0.24);
  --text: #f3ebdd;
  --muted: #c8c0af;
  --primary: #d4a44f;
  --primary-hover: #e2b563;
  --primary-pressed: #b98234;
  --on-primary: #07110d;
  --focus: #f1c66f;
  --success: #b8ddb9;
  --error: #ffc0b8;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--background);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(3, 13, 10, 0.98) 0%, rgba(3, 13, 10, 0.9) 34%, rgba(3, 13, 10, 0.43) 68%, rgba(3, 13, 10, 0.16) 100%),
    linear-gradient(180deg, transparent 60%, var(--background) 100%),
    url("/assets/average-hunter-webinar-hero.png") center / cover no-repeat fixed;
}

a {
  color: var(--primary-hover);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #f1c66f;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--on-primary);
  background: var(--primary);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.launch-shell {
  display: grid;
  min-height: 100vh;
  align-items: stretch;
  padding: clamp(1rem, 4vw, 3rem);
}

.privacy-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 3rem);
}

.launch-panel {
  display: flex;
  width: min(100%, 45rem);
  min-height: calc(100vh - clamp(2rem, 8vw, 6rem));
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.25rem, 4vw, 3.5rem);
  border: 1px solid var(--surface-border);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(155deg, rgba(13, 28, 23, 0.96), rgba(6, 17, 13, 0.86)),
    var(--surface);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.launch-panel > * {
  min-width: 0;
}

.privacy-panel {
  width: min(100%, 56rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 5vw, 4.5rem);
  border: 1px solid var(--surface-border);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(155deg, rgba(13, 28, 23, 0.98), rgba(6, 17, 13, 0.94)),
    var(--surface);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  color: var(--text);
}

.brand-mark {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0.75rem 1rem rgba(0, 0, 0, 0.34));
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-name,
.eyebrow {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-name {
  color: var(--primary-hover);
}

.brand-product {
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.launch-copy {
  width: 100%;
  min-width: 0;
  max-width: 39rem;
  margin: clamp(4rem, 11vh, 8rem) 0 2rem;
}

.privacy-heading {
  margin: clamp(4rem, 10vw, 7rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.privacy-heading h1 {
  max-width: none;
  font-size: clamp(3.4rem, 9vw, 6.7rem);
  line-height: 0.94;
}

.privacy-updated {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-content {
  display: grid;
  gap: 2rem;
  max-width: 45rem;
  margin-bottom: clamp(3rem, 8vw, 6rem);
}

.privacy-content section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 192, 175, 0.18);
}

.privacy-content h2 {
  margin: 0 0 0.7rem;
  color: var(--primary-hover);
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 600;
}

.privacy-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(4.4rem, 10vw, 7.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.84;
  text-wrap: balance;
}

.intro {
  max-width: 37rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.signup-form {
  width: 100%;
  min-width: 0;
  max-width: 40rem;
  margin-bottom: clamp(2.25rem, 6vh, 4.5rem);
}

.signup-form > label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.signup-row {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

input,
button {
  min-height: 3.5rem;
  border-radius: 0.75rem;
  font: inherit;
}

input {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--text);
  border: 1px solid #56665b;
  background: rgba(2, 8, 6, 0.76);
}

input::placeholder {
  color: #a7a092;
}

button {
  min-width: 10.25rem;
  padding: 0.85rem 1.25rem;
  color: var(--on-primary);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary-hover), var(--primary-pressed));
  box-shadow: 0 0.7rem 1.8rem rgba(212, 164, 79, 0.16);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease;
}

button:hover:not(:disabled) {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

button:disabled {
  cursor: wait;
  filter: saturate(0.5);
  opacity: 0.72;
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.website-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.turnstile-container {
  min-height: 0;
  margin-top: 0.75rem;
}

.signup-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.signup-status[data-state="success"] {
  color: var(--success);
}

.signup-status[data-state="error"] {
  color: var(--error);
}

.consent-copy {
  max-width: 39rem;
  margin: 0.4rem 0 0;
  color: #ada697;
  font-size: 0.82rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  color: #9c9689;
  border-top: 1px solid rgba(200, 192, 175, 0.18);
  font-size: 0.82rem;
}

@media (max-width: 720px) {
  body {
    background:
      linear-gradient(180deg, rgba(3, 13, 10, 0.65) 0%, rgba(3, 13, 10, 0.9) 30%, rgba(3, 13, 10, 0.99) 72%),
      url("/assets/average-hunter-webinar-hero.png") 66% center / cover no-repeat fixed;
  }

  .launch-shell {
    padding: 0;
  }

  .privacy-shell {
    padding: 0;
  }

  .launch-panel {
    width: 100%;
    min-height: 100vh;
    padding: 1.25rem 1rem 1.5rem;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(4, 16, 13, 0.42), rgba(4, 16, 13, 0.94) 38%, var(--background) 72%);
    box-shadow: none;
    backdrop-filter: none;
  }

  .privacy-panel {
    min-height: 100vh;
    padding: 1.25rem 1rem 1.5rem;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(4, 16, 13, 0.82), var(--background) 32%);
    box-shadow: none;
  }

  .brand-mark {
    width: 3.75rem;
    height: 3.75rem;
  }

  .launch-copy {
    margin-top: clamp(5rem, 17vh, 9rem);
  }

  h1 {
    font-size: clamp(4.1rem, 20vw, 6rem);
  }

  .signup-row {
    grid-template-columns: 1fr;
  }

  button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .launch-panel,
  input,
  button {
    border: 1px solid CanvasText;
  }
}
