/* ============================================================
   INCINC — pre-drop landing page
   Same design system as the storefront: white ground, ink black,
   warm grey hairlines, uppercase micro-type.
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: #878782;
  --line: #e7e7e4;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  animation: page-in 0.6s ease both;
}

@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

img { max-width: 100%; display: block; }

:focus-visible { outline: 1px solid var(--ink); outline-offset: 3px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* ---------- stage ---------- */

.landing {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px 24px 56px;
  text-align: center;
}

.landing-logo {
  width: min(34vh, 320px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.landing-wordmark {
  font-size: clamp(26px, 4.6vw, 42px);
  font-weight: 700;
  letter-spacing: 0.42em;
  margin-right: -0.42em; /* re-centre the tracked type */
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}

.landing-tagline {
  font-size: 14px;
  letter-spacing: 0.22em;
  margin-right: -0.22em;
  text-transform: none;
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- countdown ---------- */

.countdown {
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s both;
}

.countdown-clock {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 22px);
}

.unit { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.digits {
  font-size: clamp(38px, 9vw, 76px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  /* fixed-width digits so the clock doesn't jitter as numbers change */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.unit-label {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}

.sep {
  font-size: clamp(30px, 7vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--line);
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.site-footer nav { display: flex; gap: 22px; }

.site-footer a:hover { color: var(--ink); }

/* ---------- responsive ---------- */

@media (max-width: 620px) {
  .landing { gap: 24px; padding: 32px 18px 44px; }
  .landing-logo { width: min(30vh, 260px); }
  .site-footer { flex-direction: column; padding: 18px 20px; }
}

/* short/landscape phones — keep the whole page on one screen */
@media (max-height: 620px) {
  .landing-logo { width: min(26vh, 200px); }
  .landing { gap: 20px; }
}
