:root {
  --bg: #e7e7e7;
  --surface: #dedede;
  --text: #111111;
  --muted: #3d3d3d;
  --line: #b9b9b9;
  --accent: #111111;
  --shoe-edge-blend: 1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.page {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 0.9rem 0 1rem;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
}

.brand-logo-image {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-wordmark-image {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.hero {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: auto;
  display: grid;
  place-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.headline {
  font-family: "Bebas Neue", sans-serif;
  margin: 0;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 9vw, 8.5rem);
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  text-wrap: normal;
}

.headline-simple {
  color: var(--text);
}

.shoe-wrap {
  position: relative;
  width: min(860px, 92vw);
  max-width: 100%;
  overflow: hidden;
  animation: riseIn 900ms ease-out both;
}

.shoe-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--shoe-edge-blend);
  background:
    linear-gradient(to right, var(--bg) 0%, transparent 6%, transparent 94%, var(--bg) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 12%, transparent 100%);
}

.shoe-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.details {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 0.6rem;
  justify-items: center;
  text-align: center;
  margin-top: -0.25rem;
}

.subheader {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 500;
  max-width: none;
  color: var(--text);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.subline {
  margin: 0.45rem 0 0;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.98rem;
  font-weight: 700;
}

.launch-form {
  margin-top: 0.15rem;
  width: min(920px, 100%);
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.9rem;
  background: var(--surface);
}

.launch-form label {
  display: block;
  text-align: center;
  margin-bottom: 0.65rem;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.form-row {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: 1fr;
}

input[type="email"] {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #a9a9a9;
  background: #ffffff;
  color: var(--text);
  padding: 0.82rem 0.92rem;
  font: inherit;
}

input[type="email"]::placeholder {
  color: #666666;
}

button {
  appearance: none;
  border: 0;
  background: #111111;
  color: #f5f5f5;
  border-radius: 0.6rem;
  padding: 0.82rem 1.05rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

button:hover {
  filter: brightness(0.94);
}

button.is-confirmed {
  background: #1f8f4d;
  color: #ffffff;
}

.form-note {
  margin: 0.68rem 0 0;
  text-align: left;
  font-size: 0.78rem;
  color: #666666;
  overflow-wrap: anywhere;
}

.cta-subcopy {
  margin: 0.72rem 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.footer {
  width: 100%;
  max-width: 100%;
  margin-top: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@keyframes riseIn {
  from {
    transform: translateY(16px) scale(0.98);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .page {
    width: min(1200px, calc(100% - 1rem));
  }

  .headline {
    font-size: clamp(2rem, 10.5vw, 4.4rem);
  }

  .shoe-wrap {
    width: min(760px, 94vw);
  }
}

@media (max-width: 560px) {
  .brand-row {
    justify-content: center;
  }

  .brand-logo-image {
    height: 30px;
  }

  .brand-wordmark-image {
    height: 20px;
  }

  .hero {
    gap: 0.45rem;
  }

  .headline {
    font-size: clamp(1.7rem, 9.4vw, 2.6rem);
    letter-spacing: 0.012em;
    padding: 0 0.1rem;
  }

  .shoe-wrap {
    width: 92vw;
  }

  .details {
    margin-top: 0;
  }

  .subheader {
    font-size: clamp(0.8rem, 3.2vw, 0.95rem);
    letter-spacing: -0.01em;
  }

  .launch-form label,
  .form-note {
    text-align: center;
  }
}

@media (max-width: 430px) {
  .page {
    width: min(1200px, calc(100% - 0.75rem));
    gap: 0.75rem;
  }

  .brand-logo-image {
    height: 27px;
  }

  .brand-wordmark-image {
    height: 18px;
  }

  .headline {
    font-size: clamp(1.55rem, 8.7vw, 2.2rem);
  }

  .shoe-wrap {
    width: 88vw;
  }

  .subheader {
    font-size: clamp(0.68rem, 2.7vw, 0.8rem);
  }

  .launch-form {
    padding: 0.75rem;
  }

  button {
    font-size: 0.95rem;
    line-height: 1.2;
    padding: 0.75rem 0.9rem;
  }
}

@media (max-width: 360px) {
  .subheader {
    font-size: 0.68rem;
  }
}
