/* Jaishree Sharma — coming soon
   Near-black and monochrome. No colour, no glow: type does all the work. */

:root {
  --bg: #030303;
  --text: #ededed;
  --muted: #8c8c8c;
  --faint: #7a7a7a;
  --line: rgba(255, 255, 255, 0.07);

  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* a whisper of film grain so the black reads as a surface, not a void */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, p { margin: 0; }

/* a hairline frame, inset from the edge of the screen */
.frame {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 48px);
}
.frame::before {
  content: "";
  position: absolute;
  inset: clamp(12px, 1.6vw, 20px);
  border: 1px solid var(--line);
  border-radius: 20px;
  pointer-events: none;
}

.top,
.bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
}

.mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: 48px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text);
  animation: breathe 2.8s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

h1 {
  margin-top: 28px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 14vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
h1 em {
  font-style: italic;
  color: var(--muted);
}

.sub {
  margin-top: 36px;
  max-width: 28em;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  color: var(--muted);
}

/* everything arrives once, gently */
.center > * {
  opacity: 0;
  translate: 0 14px;
  animation: arrive 1.2s var(--ease) forwards;
}
.center > :nth-child(2) { animation-delay: 0.12s; }
.center > :nth-child(3) { animation-delay: 0.26s; }
@keyframes arrive { to { opacity: 1; translate: none; } }

@media (max-width: 520px) {
  .bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .dot { animation: none; }
  .center > * { animation: none; opacity: 1; translate: none; }
}
