/* ===========================================================
   AL DANA CREATIVE COMMERCIAL — Coming Soon
   Palette: charcoal #0E0E0F / #141416, warm white #EDE7DA,
            muted metallic gold #C7A557 / #9C824A
   =========================================================== */

:root {
  --bg: #0c0c0d;
  --bg-2: #141416;
  --ink: #EDE7DA;
  --ink-dim: #9C978A;
  --gold: #C7A557;
  --gold-dim: #8A7440;
  --line: rgba(199, 165, 87, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --space-unit: 1vw;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(ellipse at 50% 20%, var(--bg-2) 0%, var(--bg) 70%);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: #0c0c0d;
  padding: 0.75rem 1.25rem;
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Visible focus states throughout */
a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

/* ---------- Background canvas ---------- */
#network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 35%, transparent 0%, rgba(12,12,13,0.35) 60%, rgba(12,12,13,0.92) 100%);
}

/* ---------- Layout ---------- */
.stage {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8vh 6vw 10vh;
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

/* ---------- Brand mark ---------- */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(0.5rem, 2vw, 1.25rem);
}

.brand__mark {
  width: clamp(38px, 4.5vw, 52px);
  height: auto;
  opacity: 0.95;
}

.brand__name {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  line-height: 1;
}

.brand__name-line {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.42em;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  color: var(--ink);
  text-indent: 0.42em; /* visually re-center the tracked text */
}

.brand__name-line--sub {
  font-weight: 300;
  letter-spacing: 0.32em;
  font-size: clamp(0.58rem, 1.1vw, 0.68rem);
  color: var(--gold);
  text-indent: 0.32em;
}

/* ---------- Headline ---------- */
.headline {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: 1.06;
  color: var(--ink);
  text-wrap: balance;
}

.headline br {
  display: block;
}

/* Gold-shimmer treatment kept extremely subtle — a soft highlight, not a gradient effect */
.headline {
  text-shadow: 0 0 60px rgba(199, 165, 87, 0.12);
}

/* ---------- Subtitle & services ---------- */
.subtitle {
  margin: 0;
  max-width: 34ch;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: var(--ink-dim);
  letter-spacing: 0.01em;
}

.services {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.services__dot {
  color: var(--gold-dim);
  font-size: 0.7em;
}

/* ---------- Status divider ---------- */
.status {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
  margin-top: clamp(0.5rem, 2vw, 1rem);
  width: 100%;
  max-width: 420px;
}

.status__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line));
}
.status__line:last-child {
  background: linear-gradient(to left, transparent, var(--line));
}

.status__label {
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

/* ---------- Domain link ---------- */
.domain {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.3em;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.domain:hover,
.domain:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- CTA button ---------- */
.cta {
  margin-top: clamp(0.5rem, 1.5vw, 0.75rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.6rem;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1.1vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: linear-gradient(180deg, #D8B968 0%, var(--gold) 55%, var(--gold-dim) 100%);
  border: 1px solid var(--gold);
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 30px -10px rgba(199, 165, 87, 0.45);
}

.cta:active {
  transform: translateY(0);
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6vw 4vh;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: rgba(156, 151, 138, 0.55);
}

.footer p {
  margin: 0;
}

/* ---------- Responsive tuning ---------- */
@media (max-width: 640px) {
  .stage {
    padding: 7vh 7vw 9vh;
    gap: 1.1rem;
  }

  .headline {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .services {
    gap: 0.5em;
    row-gap: 0.4em;
  }

  .status {
    max-width: 260px;
  }

  .cta {
    width: 100%;
    padding: 1.05rem 1.5rem;
  }
}

@media (max-width: 380px) {
  .brand__name-line {
    letter-spacing: 0.3em;
  }
}

/* Large monitors: cap width for comfortable line lengths */
@media (min-width: 1600px) {
  .stage {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  #network {
    display: none;
  }
  .cta,
  .domain {
    transition: none;
  }
}
