:root {
  color-scheme: light;
  --ink: #1c1917;
  --muted: #57534e;
  --paper: #f6f1e8;
  --line: #e7e0d4;
  --accent: #9a3412;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

.tease {
  min-height: 100dvh;
  display: flex;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 12% -10%, #fffaf1 0%, transparent 55%),
    radial-gradient(900px 500px at 110% 20%, #f3e6d2 0%, transparent 50%),
    var(--paper);
}

.tease::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.tease-inner {
  position: relative;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 28px 0 32px;
}

.tease-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.tease-brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.tease-status {
  margin: 0;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tease-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 40px;
}

.tease-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tease-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 12vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.tease-title span {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: tease-in 0.85s ease forwards;
}

.tease-title span:nth-child(2) {
  animation-delay: 0.12s;
}

.tease-title span:nth-child(3) {
  animation-delay: 0.24s;
}

.tease-lede {
  margin: 28px 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.55;
  opacity: 0;
  animation: tease-in 0.85s ease 0.32s forwards;
}

.tease-beats {
  list-style: none;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  opacity: 0;
  animation: tease-in 0.85s ease 0.42s forwards;
}

.tease-beats h2 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.tease-beats p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.tease-vert {
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.tease-foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.tease-foot p {
  margin: 0;
}

@keyframes tease-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .tease-hero {
    padding: 36px 0 28px;
  }

  .tease-title {
    font-size: clamp(2.8rem, 16vw, 4rem);
  }

  .tease-beats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .tease-foot {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tease-title span,
  .tease-lede,
  .tease-beats {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
