/* =============================================================================
   Arvanta Media — Temporary "Coming Soon" notice
   Self-contained: this folder depends on no files outside temporary/.

   Styling mirrors the main site's design system (deep navy + electric blue,
   Sora headings / Inter body), but the accent is taken straight from the
   brand logo (#0069FF).

   1. Design tokens
   2. Reset & base
   3. Page layout (full-screen, centred)
   4. Content (logo, eyebrow, heading, message, CTA)
   5. Footer
   6. Entrance animation + reduced-motion fallback
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --navy-900: #0a1626;  /* darkest */
  --navy-800: #0e2038;  /* primary brand navy */
  --accent:       #0069ff; /* electric blue — sampled from the logo */
  --accent-hover: #0057d8;
  --accent-light: #6fa5ff; /* lighter tint for text on dark backgrounds */

  --text:       #ffffff;
  --text-muted: #aebbd1;
  --text-faint: #6f809b;

  /* Typography (system fallbacks keep it readable if Google Fonts is blocked) */
  --font-heading: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing + shape */
  --radius-full: 999px;
  --shadow-accent: 0 14px 30px -10px rgba(0, 105, 255, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -----------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent-light); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: #ffffff; }

/* Visible keyboard focus (accessibility) */
:focus-visible {
  outline: 3px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -----------------------------------------------------------------------------
   3. PAGE LAYOUT — full screen, content dead-centre
   -------------------------------------------------------------------------- */
.page {
  min-height: 100vh;
  min-height: 100dvh;            /* accounts for mobile browser chrome */
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  text-align: center;
  /* Electric-blue glow over a navy gradient — echoes the main site's dark sections */
  background:
    radial-gradient(900px 500px at 50% -5%, rgba(0, 105, 255, 0.22), transparent 70%),
    linear-gradient(160deg, var(--navy-900), #10233f);
}

/* -----------------------------------------------------------------------------
   4. CONTENT
   -------------------------------------------------------------------------- */
.content { max-width: 620px; }

.logo {
  width: clamp(210px, 42vw, 290px);
  margin: 0 auto 2.75rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.9rem, 1.3rem + 2.8vw, 3rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;            /* nicer line breaks where supported */
}

.message {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.15rem);
  color: var(--text-muted);
}

/* Email call-to-action pill */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.25rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  color: #ffffff;
  background: var(--accent);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-accent);
  transition: transform 200ms var(--ease), background-color 200ms var(--ease);
}
.cta:hover { background: var(--accent-hover); color: #ffffff; transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta svg { width: 18px; height: 18px; flex: none; }

/* -----------------------------------------------------------------------------
   5. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  margin-top: 3.25rem;
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* -----------------------------------------------------------------------------
   6. ENTRANCE ANIMATION
   Gentle fade + rise, staggered. Disabled for reduced-motion users.
   -------------------------------------------------------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.fade {
  opacity: 0;
  animation: rise 700ms var(--ease) forwards;
}
.fade:nth-child(1) { animation-delay: 40ms; }
.fade:nth-child(2) { animation-delay: 160ms; }
.fade:nth-child(3) { animation-delay: 260ms; }
.fade:nth-child(4) { animation-delay: 360ms; }
.fade:nth-child(5) { animation-delay: 460ms; }
.fade:nth-child(6) { animation-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; animation: none; }
  * { transition-duration: 0.001ms !important; }
}
