:root {
  --bg: #050505;
  --panel: rgba(9, 9, 9, 0.72);
  --panel-strong: rgba(12, 12, 12, 0.9);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f1e8;
  --muted: rgba(245, 241, 232, 0.68);
  --muted-strong: rgba(245, 241, 232, 0.82);
  --shadow: rgba(0, 0, 0, 0.42);
  --accent: #cdc2b0;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

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

img {
  display: block;
  max-width: 100%;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  pointer-events: none;
  user-select: none;
}

button,
input,
textarea {
  font: inherit;
}

a,
button {
  touch-action: manipulation;
}

input,
textarea {
  -webkit-touch-callout: default;
  user-select: text;
}

html.age-gate-active,
html.age-gate-active body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.98);
  color: #050505;
  opacity: 0;
  transition: opacity 180ms ease;
}

.age-gate-is-visible {
  opacity: 1;
}

.age-gate-is-closing {
  opacity: 0;
}

.age-gate-panel {
  width: min(100%, 760px);
  padding: 28px 0;
  text-align: center;
}

.age-gate-logo {
  width: min(56vw, 370px);
  max-height: 190px;
  margin: 0 auto 38px;
  object-fit: contain;
}

.age-gate h2 {
  margin: 0;
  color: #050505;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.65rem, 5vw, 2.7rem);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1.08;
  text-transform: uppercase;
}

.age-gate p {
  margin: 22px auto 30px;
  color: #3d3d3d;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.92rem, 2.6vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.age-gate-actions {
  display: grid;
  gap: 16px;
}

.age-gate-button {
  width: 100%;
  min-height: 72px;
  padding: 18px 28px;
  border: 2px solid #050505;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.15;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.age-gate-button:hover {
  transform: translateY(-2px);
}

.age-gate-button:focus-visible {
  outline: 4px solid #ffc51d;
  outline-offset: 4px;
}

.age-gate-confirm {
  background: #050505;
  color: #ffffff;
}

.age-gate-decline {
  background: #ffffff;
  color: #050505;
}

@media (max-width: 600px) {
  .age-gate {
    align-items: center;
    padding: 20px;
  }

  .age-gate-panel {
    padding: 18px 0;
  }

  .age-gate-logo {
    width: min(78vw, 310px);
    margin-bottom: 30px;
  }

  .age-gate p {
    margin: 18px auto 26px;
  }

  .age-gate-button {
    min-height: 62px;
    padding: 15px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .age-gate,
  .age-gate-button {
    transition: none;
  }
}

.drop-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #040404;
}

.site-backdrop,
.site-overlay {
  position: absolute;
  inset: 0;
}

.site-backdrop {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.72) 100%),
    url('/images/SiteBackground.PNG') center center / cover no-repeat;
  transform: scale(1.03);
}

.site-overlay {
  background:
    radial-gradient(circle at 74% 48%, rgba(255, 255, 255, 0.06) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%);
  pointer-events: none;
}

.drop-frame {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-bar,
.drop-layout,
.info-strip {
  width: min(1380px, 100%);
  margin: 0 auto;
}

.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.4));
}

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

.phase-chip {
  margin: 0;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(245, 241, 232, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.64rem;
}

.drop-layout {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  flex: 1;
  padding: 28px 0;
}

.drop-copy {
  max-width: 520px;
  padding-top: 8px;
}

.eyebrow,
.field-label,
.unlock-kicker {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--muted);
}

h1,
h2 {
  font-family: 'Sora', sans-serif;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: clamp(3.1rem, 7vw, 6.35rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.subtitle {
  margin: 26px 0 0;
  max-width: 30ch;
  color: rgba(245, 241, 232, 0.78);
  font-size: 0.96rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.countdown {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.time-card {
  padding: 18px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(9, 9, 9, 0.64);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.time-value,
.time-label {
  display: block;
}

.time-value {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0.06em;
}

.time-label {
  margin-top: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
}

.access-form {
  margin-top: 34px;
}

.field-row {
  display: flex;
  gap: 14px;
}

.field-row input {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.68);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.field-row input::placeholder {
  color: rgba(245, 241, 232, 0.42);
}

.field-row input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.unlock-button {
  flex-shrink: 0;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #f3efe7;
  color: #080808;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.unlock-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.unlock-button:active {
  transform: translateY(0);
}

.access-status {
  margin: 14px 0 0;
  min-height: 1.4em;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.access-status.is-success {
  color: #f3efe7;
}

.access-status.is-error {
  color: #d1bbb1;
}

.unlock-panel {
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-strong);
  max-width: 420px;
}

.unlock-kicker {
  margin-bottom: 8px;
  color: var(--accent);
}

.unlock-copy {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.6;
}

.product-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding-right: 18px;
}

.product-halo {
  position: absolute;
  width: min(76%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 38%, transparent 70%);
  filter: blur(10px);
}

.product-render {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(100%, 780px);
  max-height: min(78vh, 860px);
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.42));
  animation: floatProduct 7.2s ease-in-out infinite;
}

.product-shadow {
  position: absolute;
  bottom: 60px;
  width: min(62%, 420px);
  height: 42px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  filter: blur(22px);
  transform: translateY(14px);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
  margin-bottom: 8px;
}

.info-item {
  padding: 22px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(16px);
}

.info-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.22em;
}

.info-item h2 {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
}

.info-item p {
  margin: 12px 0 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-is-loading .fade-in,
.page-is-loading .fade-rise,
.page-is-loading .fade-rise-delayed {
  opacity: 0;
}

.page-is-loading .fade-in {
  animation: fadeIn 0.9s ease forwards;
}

.page-is-loading .fade-rise {
  animation: fadeRise 1s ease forwards;
}

.page-is-loading .fade-rise-delayed {
  animation: fadeRise 1.1s ease 0.14s forwards;
}

.drop-shell[data-unlocked='true'] .unlock-button {
  background: #d9cfbe;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes floatProduct {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1100px) {
  .drop-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .drop-copy {
    max-width: 100%;
  }

  .product-stage {
    min-height: 460px;
    order: -1;
  }

  .product-render {
    width: min(100%, 560px);
  }
}

@media (max-width: 780px) {
  .drop-frame {
    padding: 18px;
  }

  .brand-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .field-row,
  .info-strip,
  .countdown {
    grid-template-columns: 1fr;
  }

  .field-row {
    display: grid;
  }

  .unlock-button {
    width: 100%;
  }

  .product-stage {
    min-height: 360px;
  }
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.launch-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #050505;
  background: url('assets/dabber-made/webbackground.PNG') center top / cover repeat-y;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}

.launch-page input,
.launch-page textarea {
  -webkit-touch-callout: default;
  user-select: text;
}

.launch-ribbon,
.launch-header,
.launch-main,
.launch-footer {
  position: relative;
  z-index: 1;
}

.launch-ribbon {
  margin: 0;
  padding: 12px 18px 11px;
  background: rgba(252, 248, 241, 0.95);
  text-align: center;
  font-size: clamp(0.64rem, 1.5vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.launch-header {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
  padding: 34px 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.mini-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.mini-logo img {
  width: clamp(150px, 18vw, 220px);
  height: auto;
}

.launch-nav,
.social-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}

.launch-nav a,
.social-links a,
.launch-footer a {
  color: #040404;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.launch-nav a {
  font-size: clamp(0.78rem, 1.4vw, 1rem);
}

.social-links {
  justify-content: flex-end;
  gap: 24px;
}

.social-links a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.launch-main {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  padding-top: clamp(74px, 11vw, 148px);
}

.brand-logo {
  margin: 0 auto;
  width: clamp(320px, 47vw, 590px);
  height: auto;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.08));
}

.hero-copy h1 {
  margin: 38px 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.65rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.08em;
}

.hero-copy p,
.signup-card p,
.value-row p,
.launch-footer p {
  margin: 0;
  font-weight: 800;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 600px;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.mascot-stage {
  margin-top: 18px;
  min-height: clamp(300px, 41vw, 520px);
  display: grid;
  place-items: center;
}

.mascot {
  width: clamp(250px, 34vw, 430px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.16));
  animation: mascotFloat 5.8s ease-in-out 1s infinite;
  will-change: transform;
}

.signup-card,
.contact-section {
  width: min(650px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: rgba(250, 246, 239, 0.92);
  box-shadow: 0 18px 42px rgba(24, 71, 108, 0.18);
  backdrop-filter: blur(10px);
}

.signup-card {
  margin: clamp(16px, 4vw, 38px) auto 0;
}

.contact-section {
  margin: 16px auto 72px;
  scroll-margin-top: 96px;
}

.contact-page-main {
  min-height: 58vh;
  padding: clamp(58px, 9vw, 118px) 0 28px;
  align-content: center;
}

.contact-page-main .contact-section {
  margin-top: 0;
}

.about-page-main {
  width: min(920px, calc(100% - 36px));
  min-height: 58vh;
  padding: clamp(58px, 9vw, 118px) 0 34px;
  align-content: center;
}

.about-section {
  width: 100%;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  background: rgba(250, 246, 239, 0.92);
  box-shadow: 0 18px 42px rgba(24, 71, 108, 0.18);
  backdrop-filter: blur(10px);
  text-align: left;
}

.about-section h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.35rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-transform: none;
}

.about-copy {
  margin: clamp(22px, 4vw, 34px) 0 0;
  display: grid;
  gap: 18px;
  color: #050505;
  text-transform: none;
}

.about-copy p {
  margin: 0;
  font-size: clamp(0.98rem, 2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.62;
  letter-spacing: 0.02em;
}

.daisy-dash-main {
  width: min(1120px, calc(100% - 36px));
  min-height: 58vh;
  padding: clamp(42px, 7vw, 92px) 0 34px;
  align-content: center;
}

.daisy-game-section {
  width: 100%;
  text-align: center;
}

.daisy-game-section h1 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.35rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.05em;
  text-transform: none;
}

.daisy-game-shell {
  margin-top: clamp(20px, 4vw, 34px);
  display: grid;
  gap: 18px;
  overscroll-behavior: contain;
}

.daisy-game-stage {
  position: relative;
  container-type: inline-size;
}

.daisy-game-canvas {
  display: block;
  width: 100%;
  max-height: min(76vh, 720px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border: 2px solid rgba(5, 5, 5, 0.88);
  border-radius: 16px;
  background: #9ddfff;
  box-shadow: 0 18px 42px rgba(24, 71, 108, 0.18);
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  touch-action: none;
  user-select: none;
}

.daisy-pause-button {
  position: absolute;
  top: clamp(12px, 2.6vw, 20px);
  right: clamp(12px, 2.6vw, 20px);
  width: clamp(58px, 12vw, 86px);
  aspect-ratio: 759 / 570;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  user-select: none;
  z-index: 2;
}

.daisy-pause-button:disabled {
  cursor: default;
  opacity: 0.55;
}

.daisy-pause-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.daisy-start-button {
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(30%, 300px);
  aspect-ratio: 2004 / 588;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateX(-50%);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 3;
}

.daisy-start-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.daisy-start-button[hidden],
.daisy-over-actions[hidden] {
  display: none;
}

.daisy-over-actions {
  position: absolute;
  top: calc(100% + clamp(10px, 1.8cqw, 18px));
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 1.2cqw, 14px);
  pointer-events: none;
  z-index: 3;
}

.daisy-game-stage:has(.daisy-over-actions:not([hidden])) {
  margin-bottom: clamp(80px, 11cqw, 132px);
}

.daisy-over-actions button {
  width: min(34%, 360px);
  height: clamp(30px, 5cqw, 56px);
  padding: 0 clamp(8px, 1.5cqw, 18px);
  border: 6px solid #ffc51d;
  border-radius: 16px;
  background: #050505;
  color: #fffaf1;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.68rem, 2.2cqw, 1.55rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #050505;
  box-shadow: 0 5px 0 #050505;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

.daisy-game-note {
  margin: 16px 0 0;
  color: #050505;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.signup-card h2,
.contact-section h1,
.contact-section h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: none;
}

.signup-card p,
.contact-copy {
  margin-top: 12px;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  letter-spacing: 0.04em;
}

.contact-copy {
  line-height: 1.45;
}

.contact-copy a {
  color: #050505;
  font-weight: 900;
}

.signup-form,
.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

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

.signup-form input,
.signup-form button,
.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.signup-form input,
.contact-form input,
.contact-form textarea {
  border: 1.5px solid #050505;
  padding: 19px 28px;
  background: rgba(255, 255, 255, 0.28);
  color: #050505;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
  border-radius: 24px;
  line-height: 1.45;
}

.signup-form input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(5, 5, 5, 0.58);
}

.signup-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(5, 5, 5, 0.12);
}

.signup-form button,
.contact-form button {
  border: 0;
  padding: 20px 28px;
  background: #050505;
  color: #fffaf1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.signup-status,
.contact-status {
  min-height: 1.3em;
  color: rgba(5, 5, 5, 0.62);
}

.signup-status.is-error,
.contact-status.is-error {
  color: #7e1414;
}

.signup-status.is-success,
.contact-status.is-success {
  color: #0d5e3a;
}

.signup-status.is-pending,
.contact-status.is-pending {
  color: rgba(5, 5, 5, 0.72);
}

.lookbook-section {
  width: min(1040px, 100%);
  margin: clamp(58px, 9vw, 96px) auto 0;
  scroll-margin-top: 96px;
}

.section-kicker,
.lookbook-section h2 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.section-kicker {
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  letter-spacing: 0.16em;
}

.lookbook-section h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
}

.lookbook-copy {
  width: min(760px, 100%);
  margin: 20px auto 0;
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.lookbook-copy-quartz {
  margin-top: clamp(24px, 4vw, 38px);
}

.lookbook-grid {
  margin-top: clamp(28px, 5vw, 46px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 30px);
}

.lookbook-grid-quartz {
  margin-top: clamp(18px, 3vw, 28px);
}

.lookbook-card {
  position: relative;
  min-width: 0;
  padding: clamp(12px, 2vw, 18px);
  border: 0;
  background: transparent;
  cursor: default;
  overflow: hidden;
}

.lookbook-card img {
  width: 92%;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    brightness(1.03)
    saturate(1.02)
    contrast(1.01)
    drop-shadow(0 14px 22px rgba(0, 0, 0, 0.14));
  animation: lookbookFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

.lookbook-card:nth-child(2) img {
  animation-delay: -1.4s;
}

.lookbook-card:nth-child(3) img {
  animation-delay: -2.8s;
}

.lookbook-grid-quartz .lookbook-card:nth-child(1) img {
  animation-delay: -0.7s;
}

.lookbook-grid-quartz .lookbook-card:nth-child(2) img {
  animation-delay: -2.1s;
}

.lookbook-grid-quartz .lookbook-card:nth-child(3) img {
  animation-delay: -3.5s;
}

.lookbook-card-quartz:hover img,
.lookbook-card-quartz:focus-within img {
  filter:
    brightness(1.08)
    saturate(1.04)
    contrast(1.03)
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.16));
}

.value-row {
  margin: 48px auto 46px;
  display: flex;
  justify-content: center;
}

.value-row img {
  width: min(780px, 92vw);
  height: auto;
  object-fit: contain;
}

.launch-footer {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 74px;
  border-top: 1.5px solid rgba(5, 5, 5, 0.62);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 42px;
}

.launch-footer h2 {
  margin: 0 0 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.launch-footer nav,
.footer-connect {
  display: grid;
  align-content: start;
  gap: 12px;
}

.launch-footer a,
.launch-footer p {
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-logo p {
  margin-top: 28px;
}

.launch-sky {
  display: none;
}

.page-is-loading .hero-copy,
.page-is-loading .mascot-stage,
.page-is-loading .signup-card,
.page-is-loading .contact-section,
.page-is-loading .value-row,
.page-is-loading .launch-footer {
  opacity: 0;
}

.hero-copy,
.mascot-stage,
.signup-card,
.contact-section,
.about-section,
.value-row,
.launch-footer {
  animation: launchFade 0.8s ease forwards;
}

.mascot-stage { animation-delay: 0.08s; }
.signup-card { animation-delay: 0.14s; }
.value-row { animation-delay: 0.18s; }
.launch-footer { animation-delay: 0.22s; }

@keyframes launchFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes mascotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.35deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(0.35deg);
  }
}

@keyframes lookbookFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 820px) {
  .launch-page {
    background-image: url('assets/dabber-made/mobilbackgroubd.PNG');
  }

  .launch-page,
  .launch-page * {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }

  .launch-page input,
  .launch-page textarea {
    -webkit-touch-callout: default !important;
    -webkit-user-select: text !important;
    user-select: text !important;
  }

  .launch-header {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 24px;
  }

  .social-links {
    justify-content: center;
  }

  .hero-copy {
    padding-top: 48px;
  }

  .launch-footer {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
  }

  .daisy-dash-main {
    width: min(100% - 24px, 720px);
    padding-top: 40px;
  }

  .footer-logo,
  .launch-footer .mini-logo {
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .launch-nav {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 14px;
  }

  .brand-logo {
    width: min(86vw, 390px);
  }

  .launch-footer {
    grid-template-columns: 1fr;
  }
}

.checkout-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #040404;
}

.checkout-frame {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 24px;
}

.checkout-layout {
  width: min(1380px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(320px, 460px);
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.checkout-copy {
  max-width: 520px;
}

.checkout-title {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: 0.03em;
}

.checkout-form {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.size-group {
  margin: 0 0 4px;
  padding: 0;
  border: 0;
  display: grid;
  gap: 10px;
}

.size-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.74);
  color: var(--muted-strong);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  min-height: 72px;
  overflow: hidden;
}

.size-option:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.size-option.is-selected {
  border-color: rgba(243, 239, 231, 0.42);
  background: rgba(243, 239, 231, 0.1);
  box-shadow: inset 0 0 0 1px rgba(243, 239, 231, 0.14);
}

.size-option input {
  margin: 0;
  accent-color: #f3efe7;
  width: 18px;
  height: 18px;
}

.size-option span {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.size-option-text {
  display: block;
  min-width: 0;
  max-width: 100%;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.74);
  color: var(--text);
  outline: none;
}

.checkout-form select {
  appearance: none;
}

.checkout-submit {
  margin-top: 8px;
  width: 100%;
}

.checkout-summary {
  display: grid;
  gap: 18px;
  justify-items: end;
  align-content: start;
  padding-top: 22px;
}

.checkout-render {
  width: auto;
  max-width: min(100%, 360px);
  max-height: 520px;
  height: auto;
  justify-self: center;
  object-fit: contain;
  object-position: center top;
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.42));
}

.summary-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.58);
  backdrop-filter: blur(16px);
  width: min(100%, 360px);
}

.summary-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--muted);
}

.summary-card h2 {
  margin: 0 0 18px;
  font-size: 1.08rem;
  letter-spacing: 0.16em;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.summary-row strong {
  color: var(--text);
  font-weight: 700;
}

.summary-total {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 239, 231, 0.22);
}

.summary-total span,
.summary-total strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    order: -1;
  }
}
