/* ==========================================================================
   Artemus Digital — static "Coming Soon" page
   Rebuilt from the WordPress/Elementor original (artemusdigital.com)
   Design tokens extracted from the site's Elementor global kit.
   ========================================================================== */

/* --- Self-hosted variable fonts (Latin subset) ------------------------- */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/outfit.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter.woff2") format("woff2");
}

/* --- Design tokens (from the Elementor global kit #46) ------------------ */
:root {
  --bg: #011C27;                          /* --e-global-color-044b931 */
  --bg-deep: #011319;                     /* --e-global-color-638d055 */
  --header-bg: #0A0118;                   /* header bar color */
  --surface: rgba(1, 19, 25, 0.8);        /* card background #011319CC */
  --border: rgba(233, 254, 255, 0.23);    /* --e-global-color-accent #E9FEFF3B */
  --text-muted: #A6B7BA;                  /* --e-global-color-primary */
  --text-white: #FFFFFF;                  /* --e-global-color-secondary */
  --teal: #0F8D8F;                        /* --e-global-color-d49ac81 */
  --teal-dark: #04585A;                   /* --e-global-color-332724a */
  --coral: #FFB07B;                       /* button inset glow */

  --font-heading: "Manrope", sans-serif;
  --font-sans: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  --container-header: 1280px;             /* Elementor container max-width */
  --container-footer: 1140px;             /* Hello Elementor footer max-width */
}

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

html {
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
}

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text-muted);
  font-family: var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4em;
}

a {
  color: var(--text-muted);
  text-decoration: none;
}
a:hover {
  color: var(--teal-dark);
}

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

/* --- Accessibility ------------------------------------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #333;
  display: block;
  font-size: 1rem;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 12px 24px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 99;
  background-color: var(--header-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 10px;
}

.header-inner .logo img {
  height: 49px;
  width: auto;
  object-fit: contain;
  object-position: center center;
}

/* "Get Started" gradient pill button */
.button {
  display: inline-block;
  font-family: var(--font-sans), sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 2px;
  color: var(--text-white);
  background-color: transparent;
  background-image: linear-gradient(120deg, var(--teal) 20%, var(--teal-dark) 60%);
  box-shadow: -25px 0 20px -10px var(--coral) inset;
  border-radius: 30px;
  padding: 14px 24px;
  transition: background-image 0.3s, box-shadow 0.3s, color 0.3s;
}
.button:hover {
  color: var(--text-white);
  background-image: linear-gradient(120deg, var(--teal-dark) 0%, var(--teal) 100%);
  box-shadow: 0 5px 30px 0 rgba(255, 255, 255, 0.3);
}

/* Subtle 1px glow line under the header */
.header-divider {
  height: 1px;
  background-image: radial-gradient(
    ellipse at center,
    var(--border) 0%,
    var(--bg) 80%
  );
}

/* --- Hero / main --------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7em 0 0;
}

/* Self-hosted background video (muted, looping, full-bleed cover). */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background-color: var(--bg);
}

/* Radial vignette overlay — sits above the video, below the content. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(
    ellipse farthest-corner at center,
    rgba(10, 1, 24, 0.10) 0%,
    var(--bg) 65%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
  padding: 10em 1em;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4em;
}

.headline {
  margin: 0;
  color: var(--text-white);
  font-family: var(--font-heading), sans-serif;
  font-size: 63px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 4.4px;
}

.email {
  color: var(--text-white);
  font-family: var(--font-sans), sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1em;
}
.email:hover {
  color: var(--teal);
}

.tagline {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  padding: 1rem 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-footer);
  margin: 0 auto;
  padding: 0 10px;
}

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.footer-branding .footer-logo img {
  width: auto;
  height: auto;
}

.site-description {
  margin: 0;
  color: var(--text-muted);
  font-family: var(--font-body), sans-serif;
  font-size: 16px;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.copyright p {
  margin: 0;
  color: var(--text-muted);
}

/* --- Entry animations (mirrors the original fadeInDown / fadeInUp) ------ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.headline {
  animation: fadeInDown 0.6s ease both;
  animation-delay: 0.2s;
}
.email {
  animation: fadeInDown 0.6s ease both;
  animation-delay: 0.3s;
}
.tagline {
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .headline,
  .email,
  .tagline {
    animation: none;
  }
}

/* --- Responsive (mirrors original Elementor breakpoints) ----------------- */
@media (max-width: 1024px) {
  .hero {
    padding: 6em 0 0;
  }
  .hero-inner {
    padding: 5em 1em;
  }
  .card {
    padding: 3em;
  }
  .headline {
    font-size: 69px;
  }
}

@media (max-width: 767px) {
  .header-inner .logo img {
    height: 42px;
  }
  .hero {
    padding: 5em 0 0;
  }
  .hero-inner {
    padding: 3em 1em;
  }
  .card {
    padding: 2em;
    gap: 14px;
  }
  .headline {
    font-size: 49px;
  }
  .email {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .footer-inner .footer-branding,
  .footer-inner .copyright {
    width: 100%;
    max-width: none;
    text-align: center;
    justify-content: center;
  }
  .footer-branding {
    align-items: center;
  }
  .copyright {
    margin-top: 1rem;
  }
}
