/* PRN Marketing — coming soon page */

:root {
  --bg: #ffffff;
  --card-bg: #141416;
  --fg: #ffffff;
  --fg-muted: rgba(255, 255, 255, 0.82);
  --fg-faint: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.3);
  --field-bg: rgba(255, 255, 255, 0.06);
  --radius-card: clamp(24px, 3vw, 44px);
  --pad-card: clamp(22px, 3.4vw, 48px);
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/poppins-300-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/poppins-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/poppins-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF;
}

html {
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: var(--fg);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.page {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  padding: clamp(14px, 1.8vw, 24px);
  padding-top: max(clamp(14px, 1.8vw, 24px), env(safe-area-inset-top, 0px));
  padding-bottom: max(clamp(14px, 1.8vw, 24px), env(safe-area-inset-bottom, 0px));
  background: var(--bg);
  display: flex;
}

.card {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--card-bg);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: var(--pad-card);
}

.card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: grayscale(1);
  pointer-events: none;
}

.card__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 15, 0.78) 0%,
    rgba(13, 13, 15, 0.2) 42%,
    rgba(13, 13, 15, 0.86) 100%
  );
}

.card__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  height: 22px;
  width: auto;
  display: block;
}

.location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #fff;
  flex-shrink: 0;
}

.card__main {
  position: relative;
  margin: auto 0;
  padding: clamp(24px, min(8vw, 8vh), 96px) 0;
  max-width: 760px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

h1 {
  margin: clamp(14px, 2vw, 22px) 0 0;
  font-size: clamp(40px, 7.4vw, 104px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.lede {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  max-width: 460px;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--fg-muted);
}

.signup {
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 520px;
}

.signup__form {
  flex-wrap: wrap;
  gap: 10px;
}

.signup__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.signup__input {
  flex: 1 1 240px;
  min-width: 0;
  min-height: 52px;
  box-sizing: border-box;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--field-bg);
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease;
}

.signup__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup__input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.signup__submit {
  min-height: 52px;
  padding: 0 8px 0 24px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111112;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}

.signup__submit:hover,
.signup__submit:focus-visible {
  background: #ededeb;
}

.signup__submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.signup__submit-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #111112;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.signup__status {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #fff;
}

.signup__status[hidden],
.signup[data-state="idle"] .signup__status,
.signup[data-state="loading"] .signup__status,
.signup[data-state="success"] .signup__form,
.signup[data-state="error"] .signup__form {
  display: none;
}

.signup[data-state="idle"] .signup__form,
.signup[data-state="loading"] .signup__form {
  display: flex;
}

.signup[data-state="success"] .signup__status,
.signup[data-state="error"] .signup__status {
  display: flex;
}

.signup__error {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 120, 120, 0.95);
}

.signup__error[hidden] {
  display: none;
}

.card__footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-faint);
}

.card__footer address {
  font-style: normal;
  line-height: 1.7;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

@media (prefers-reduced-motion: reduce) {
  .signup__submit,
  .signup__input,
  a {
    transition: none;
  }
}

/* 404 page */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: background-color 0.15s ease;
}

.pill:hover,
.pill:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.notfound {
  position: relative;
  margin: auto 0;
  padding: clamp(24px, 8vh, 96px) 0;
  text-align: center;
}

.notfound .eyebrow {
  color: var(--fg-muted);
}

.sliced {
  position: relative;
  display: inline-block;
  margin-top: clamp(8px, 2vw, 20px);
  font-size: clamp(120px, 28vw, 380px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff;
  user-select: none;
}

.sliced span {
  position: absolute;
  inset: 0;
}

.sliced span:nth-child(1) {
  position: relative;
  clip-path: inset(0 0 62% 0);
}

.sliced span:nth-child(2) {
  clip-path: inset(38% 0 32% 0);
  transform: translateX(-0.07em);
}

.sliced span:nth-child(3) {
  clip-path: inset(68% 0 0 0);
  transform: translateX(0.05em);
}
