/* ============================================================
   VEXA STUDIO — style.css
   Coming soon page styles
   ============================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --black:     #080808;
  --white:     #f5f5f5;
  --purple:        #b84fa0;
  --purple-hover:  #cc6eb6;
  --accent:    #d4a0b0;
  --chrome-hi: #f0f0f0;
  --chrome-md: #a8a8a8;
  --chrome-lo: #686868;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  min-height: 100dvh;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  z-index: 0;
}

/* ── ACCESSIBILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── DECORATIVE BACKGROUND GLOW ── */
.bg-glow {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,176,0.05) 0%, transparent 65%);
  top: -150px;
  right: -250px;
  pointer-events: none;
  z-index: 0;
}

/* ── PAGE LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* ── HEADER ── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  letter-spacing: 0.28em;
  background: linear-gradient(
    140deg,
    var(--chrome-hi) 0%,
    var(--chrome-md) 30%,
    var(--chrome-hi) 50%,
    var(--chrome-lo) 65%,
    var(--chrome-md) 80%,
    var(--chrome-hi) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: filter 0.3s ease;
}

.logo-wordmark:hover {
  filter: brightness(1.25);
}

.header-location {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ── MAIN ── */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

/* ── CHROME LOGO MARK ── */
.logo-mark {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.1s forwards;
}

.logo-mark-text {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 20vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.015em;
  display: block;
  background: linear-gradient(
    155deg,
    #ffffff 0%,
    #c0c0c0 10%,
    #f2f2f2 20%,
    #808080 32%,
    #e4e4e4 44%,
    #a8a8a8 55%,
    #f8f8f8 62%,
    #707070 72%,
    #d0d0d0 82%,
    #989898 90%,
    #f0f0f0 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter:
    drop-shadow(0 3px 0 rgba(255,255,255,0.12))
    drop-shadow(0 8px 24px rgba(0,0,0,0.85))
    drop-shadow(0 1px 3px rgba(180,180,180,0.25));
}

/* ── TAGLINE ── */
.tagline-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.tagline-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5.5vw, 3.6rem);
  letter-spacing: 0.07em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.62s forwards;
}

.tagline-heading em {
  font-style: normal;
  background: linear-gradient(90deg, var(--purple), var(--purple-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline-body {
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  color: rgba(255,255,255,0.85);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.74s forwards;
}

/* ── EMAIL FORM ── */
.notify-wrapper {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.88s forwards;
}

.form-eyebrow {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.6rem;
}

.notify-form {
  max-width: 400px;
}

.form-row {
  display: flex;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
  transition: border-color 0.3s ease;
}

.form-row:focus-within {
  border-color: rgba(139,91,168,0.5);
}

.form-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  min-width: 0;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.58);
  font-style: italic;
}

.form-submit {
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.form-submit:hover {
  background: rgba(139,91,168,0.08);
  color: var(--purple-hover);
}

.form-success {
  display: none;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em;
  margin-top: 0.5rem;
}

.form-success.visible {
  display: block;
}

/* ── DETAILS STRIP ── */
.details-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.02s forwards;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.detail-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  font-style: normal;
}

.detail-value a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.detail-value a:hover {
  color: var(--purple-hover);
}

/* ── FOOTER ── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.08em;
}

.footer-ig {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-ig:hover {
  color: var(--purple-hover);
}

.ig-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 560px) {
  .header-location { display: none; }
  .details-strip { gap: 1.4rem; }
  footer { flex-direction: column; align-items: flex-start; }
}