/* Cetratop — coming soon (static, no framework) */

:root {
  --bg0: #070708;
  --bg1: #0e0e12;
  --ink: #e8e6e3;
  --ink-dim: rgba(232, 230, 227, 0.58);
  --ink-faint: rgba(232, 230, 227, 0.32);
  --accent: #c9a962;
  --accent-soft: rgba(201, 169, 98, 0.22);
  --ring: rgba(201, 169, 98, 0.35);
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Instrument Sans", system-ui, -apple-system, Segoe UI, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: radial-gradient(120% 90% at 50% 0%, #14141a 0%, var(--bg0) 45%, #040405 100%);
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.065;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
}

.glow--a {
  width: min(520px, 85vw);
  height: min(520px, 85vw);
  top: -12%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 40% 40%, var(--accent-soft), transparent 65%);
  animation: drift-a 28s var(--ease-out) infinite alternate;
}

.glow--b {
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  bottom: -18%;
  right: -6%;
  background: radial-gradient(circle at 60% 50%, rgba(120, 130, 200, 0.12), transparent 70%);
  animation: drift-b 34s var(--ease-out) infinite alternate;
  animation-delay: -8s;
}

@keyframes drift-a {
  0% {
    transform: translate(-50%, 0) scale(1);
  }
  100% {
    transform: translate(-52%, 3%) scale(1.06);
  }
}

@keyframes drift-b {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-2%, -2%) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glow {
    animation: none;
  }
}

.shell {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2.75rem)
    clamp(1.75rem, 4vw, 2.5rem);
  max-width: 920px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  align-self: flex-start;
}

.brand__mark {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), #f0e6c8);
  box-shadow: 0 0 0 1px var(--ring), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand__name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 8vh, 5rem) 0;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.title {
  margin: 0 0 1.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7.5vw, 4.25rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.title__line {
  display: block;
}

.title__line--accent {
  font-style: italic;
  color: transparent;
  background: linear-gradient(120deg, #f5f1e6 12%, var(--accent) 55%, #8a7340 98%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 24px 60px rgba(201, 169, 98, 0.15);
}

.lede {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-dim);
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.65;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 2.5rem 0 1.25rem;
}

.divider__line {
  width: min(120px, 22vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink-faint), transparent);
}

.divider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2.8s var(--ease-out) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.75;
    transform: scale(0.92);
  }
}

@media (prefers-reduced-motion: reduce) {
  .divider__dot {
    animation: none;
  }
}

.soon {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.foot {
  align-self: stretch;
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.foot p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
