/* ==========================================================================
   ARKA Diagnostic and Scanning Centre — "Launching soon" page
   --------------------------------------------------------------------------
   BRAND TOKENS sampled from the official ARKA logo
   (blue -> purple -> magenta gradient). Edit here to fine-tune.
   ========================================================================== */
:root {
  --brand-blue:    #0088E1;
  --brand-indigo:  #533A9D;
  --brand-purple:  #8A3098;
  --brand-magenta: #C2008D;
  --brand-grad:    linear-gradient(100deg, #0088E1 0%, #6A2E9E 52%, #C2008D 100%);

  --ink:    #211C2A;   /* headings / strong text */
  --slate:  #6A6577;   /* body / muted text      */
  --line:   #E7E2EE;   /* hairlines              */
  --surface:#FFFFFF;
  --tint:   #F7F4FB;   /* soft panel wash        */

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;

  --radius: 22px;
  --shadow: 0 30px 70px -34px rgba(83, 58, 157, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 60;
  background: var(--brand-purple); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ============ AMBIENT BACKGROUND ============ */
.aura {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(720px 480px at 12% -8%,  rgba(0,136,225,.14), transparent 60%),
    radial-gradient(760px 520px at 92% 108%, rgba(194,0,141,.14), transparent 60%),
    radial-gradient(680px 520px at 88% -6%,  rgba(138,48,152,.10), transparent 60%);
}
/* orbiting dot-ring that echoes the logo's dotted circle */
.orbit {
  position: fixed; top: 50%; left: 50%; z-index: -1; pointer-events: none;
  width: 118vmin; height: 118vmin; margin: -59vmin 0 0 -59vmin;
  border-radius: 50%;
  animation: spin 60s linear infinite;
  opacity: .5;
}
.orbit span {
  position: absolute; top: 50%; left: 50%; width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-grad);
}
.orbit span:nth-child(1){ transform: rotate(0deg)   translateX(59vmin); }
.orbit span:nth-child(2){ transform: rotate(45deg)  translateX(59vmin); width:9px;height:9px; }
.orbit span:nth-child(3){ transform: rotate(90deg)  translateX(59vmin); width:18px;height:18px; }
.orbit span:nth-child(4){ transform: rotate(135deg) translateX(59vmin); width:8px;height:8px; }
.orbit span:nth-child(5){ transform: rotate(180deg) translateX(59vmin); width:12px;height:12px; }
.orbit span:nth-child(6){ transform: rotate(225deg) translateX(59vmin); width:16px;height:16px; }
.orbit span:nth-child(7){ transform: rotate(270deg) translateX(59vmin); width:9px;height:9px; }
.orbit span:nth-child(8){ transform: rotate(315deg) translateX(59vmin); width:13px;height:13px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ STAGE / PANEL ============ */
.stage {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 48px 20px 28px;
  text-align: center;
}
.panel {
  width: 100%; max-width: 720px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 40px 40px;
  position: relative;
  overflow: hidden;
}
.panel::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 6px;
  background: var(--brand-grad);
}
.logo { width: min(340px, 78%); height: auto; margin: 6px auto 26px; display: block; }

/* status pill */
.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-purple);
  background: var(--tint);
  border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
}
.status-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--brand-magenta);
  box-shadow: 0 0 0 0 rgba(194,0,141,.5); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(194,0,141,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(194,0,141,0); }
  100% { box-shadow: 0 0 0 0 rgba(194,0,141,0); }
}

.headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 5.4vw, 3rem); line-height: 1.08; letter-spacing: -.02em;
  margin: 0 0 16px;
}
.grad {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { font-size: 1.08rem; color: var(--slate); max-width: 34rem; margin: 0 auto 30px; }
.lede strong { color: var(--ink); font-weight: 600; }

/* buttons */
.btn { font-weight: 600; border-radius: 999px; padding: .78rem 1.6rem; transition: .18s ease; border: 1.5px solid transparent; }
.cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 34px; }
.btn-brand { background: var(--brand-grad); color: #fff; }
.btn-brand:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(138,48,152,.7); }
.btn-brand-outline { color: var(--brand-purple); border-color: var(--brand-purple); background: transparent; }
.btn-brand-outline:hover { background: var(--brand-purple); color: #fff; transform: translateY(-2px); }
.btn-ghost { color: var(--ink); border-color: var(--line); background: transparent; }
.btn-ghost:hover { border-color: var(--brand-magenta); color: var(--brand-magenta); }

/* quick contact list */
.quick { list-style: none; padding: 22px 0; margin: 0 0 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 10px; }
.quick li { font-size: .98rem; color: var(--slate); }
.quick a { color: var(--brand-indigo); font-weight: 500; }
.quick a:hover { color: var(--brand-magenta); }
.q-key {
  font-family: var(--font-mono); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--slate); display: inline-block; min-width: 62px; text-align: left; margin-right: 6px;
}

/* tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.tags span {
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand-purple); background: var(--tint); border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
}

.foot { margin-top: 26px; font-size: .82rem; color: var(--slate); }

/* floating actions */
.floaters { position: fixed; right: 18px; bottom: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 40; }
.floater {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; font-size: 1.35rem; box-shadow: 0 14px 30px -12px rgba(0,0,0,.35); transition: .18s ease;
}
.floater:hover { transform: scale(1.08); color: #fff; }
.floater--wa { background: #25D366; }
.floater--call { background: var(--brand-grad); }

/* ============ RESPONSIVE ============ */
@media (max-width: 575.98px) {
  .panel { padding: 36px 22px 30px; }
  .q-key { display: block; margin-bottom: 2px; }
  .quick li { text-align: left; }
}

/* ============ ACCESSIBILITY ============ */
:focus-visible { outline: 3px solid var(--brand-magenta); outline-offset: 3px; border-radius: 8px; }
@media (prefers-reduced-motion: reduce) {
  .orbit, .status-dot { animation: none !important; }
  * { transition: none !important; scroll-behavior: auto !important; }
}
