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

:root{
  --bg:#06060c;
  --accent:#D4A843;
  --text-bright:#E2E1E8;
  --text-body:#B4B3BE;
  --text-dim:#87868F;
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans:'DM Sans','Helvetica Neue',Helvetica,sans-serif;
}

html{height:100%}

body{
  min-height:100dvh;
  display:flex;align-items:center;justify-content:center;
  background:var(--bg);color:var(--text-body);
  font-family:var(--sans);
  padding:2rem 1.5rem;
  position:relative;
  overflow:hidden;
}

/* noise */
body::before{
  content:'';position:fixed;inset:0;z-index:2;pointer-events:none;
  opacity:.03;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%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");
  background-size:128px 128px;
}

/* ── aurora ── */
.aurora{position:fixed;inset:0;z-index:0;overflow:hidden}
.aurora .blob{
  position:absolute;border-radius:50%;
  filter:blur(80px);opacity:.35;will-change:transform;
}
.blob-1{
  width:min(55vw,500px);height:min(55vw,500px);
  background:radial-gradient(circle,#4F40A0,transparent 70%);
  top:15%;left:20%;
  animation:drift1 18s ease-in-out infinite alternate;
}
.blob-2{
  width:min(45vw,420px);height:min(45vw,420px);
  background:radial-gradient(circle,#238B90,transparent 70%);
  top:40%;right:15%;
  animation:drift2 22s ease-in-out infinite alternate;
}
.blob-3{
  width:min(35vw,340px);height:min(35vw,340px);
  background:radial-gradient(circle,#6A4FA0,transparent 70%);
  bottom:10%;left:35%;
  animation:drift3 20s ease-in-out infinite alternate;
}

@keyframes drift1{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(12vw,8vh) scale(1.2)}
}
@keyframes drift2{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(-10vw,-10vh) scale(1.15)}
}
@keyframes drift3{
  0%{transform:translate(0,0) scale(1)}
  100%{transform:translate(8vw,-6vh) scale(1.25)}
}

/* ── content ── */
main{
  position:relative;z-index:3;
  text-align:center;max-width:640px;
  display:flex;flex-direction:column;align-items:center;
}

.wordmark{
  font-family:var(--serif);font-weight:500;
  font-size:clamp(3.2rem,8vw,5.5rem);
  letter-spacing:.04em;color:var(--text-bright);
  line-height:1;animation:fadeUp .9s ease both;
}

.tagline{
  margin-top:.75rem;font-family:var(--sans);font-weight:300;
  font-size:clamp(.72rem,1.8vw,.88rem);
  letter-spacing:.28em;text-transform:uppercase;
  color:var(--accent);animation:fadeUp .9s .15s ease both;
}

.rule{
  width:48px;height:1px;
  background:rgba(212,168,67,.15);
  margin:2.4rem 0;animation:fadeUp .9s .3s ease both;
}

.pitch{
  font-family:var(--sans);font-weight:300;
  font-size:clamp(.95rem,2.2vw,1.18rem);
  line-height:1.7;color:var(--text-body);
  max-width:480px;animation:fadeUp .9s .4s ease both;
}
.pitch em{font-style:italic;color:var(--text-bright)}

.contact{margin-top:3rem;animation:fadeUp .9s .55s ease both}
.contact a{
  font-family:var(--sans);font-weight:400;font-size:.88rem;
  color:var(--text-dim);text-decoration:none;
  letter-spacing:.04em;padding:.6em 1.3em;
  border:1px solid rgba(212,168,67,.12);border-radius:2px;
  transition:color .3s,border-color .3s;
}
.contact a:hover{color:var(--accent);border-color:rgba(212,168,67,.4)}
.contact a:focus-visible{outline:2px solid var(--accent);outline-offset:3px}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

/* ── reduced motion ── */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:0s!important;
    animation-delay:0s!important;
    transition-duration:0s!important;
  }
}

/* ── skip link ── */
.sr-skip{
  position:absolute;left:-9999px;top:auto;
  width:1px;height:1px;overflow:hidden;
  font-family:var(--sans);font-size:.875rem;
  color:var(--bg);background:var(--accent);
  padding:.5em 1em;z-index:99;
}
.sr-skip:focus{position:fixed;left:1rem;top:1rem;width:auto;height:auto}
