:root {
      --ink: #0a1526;
      --navy: #142a4e;
      --red: #c13a30;
      --gold: #e2a63c;
      --snow: #f3f0e8;
      --display: "Archivo", sans-serif;
      --body: "Public Sans", sans-serif;
      --mono: "IBM Plex Mono", monospace;
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
}
html,
body {
      height: 100%;
}
body {
      font-family: var(--body);
      background: var(--ink);
      color: var(--snow);
      overflow: hidden;
      -webkit-font-smoothing: antialiased;
}
a {
      color: inherit;
      text-decoration: none;
}

/* background layers */
.bg {
      position: fixed;
      inset: -8%;
      background: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?q=80&w=2200&auto=format&fit=crop")
            center/cover;
      will-change: transform;
      transform: scale(1.05);
}
.bg-veil {
      position: fixed;
      inset: 0;
      background: radial-gradient(
            ellipse at 50% 30%,
            rgba(10, 21, 38, 0.55) 0%,
            rgba(10, 21, 38, 0.92) 75%
      );
}
.grain {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.05;
      background-image: radial-gradient(
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
      );
      background-size: 3px 3px;
}
.flag-strip {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      z-index: 20;
      background: linear-gradient(
            90deg,
            #2e5fa3 0 20%,
            #fff 20% 40%,
            #c13a30 40% 60%,
            #2f7d4f 60% 80%,
            #e9b62f 80% 100%
      );
}

/* layout */
.stage {
      position: relative;
      z-index: 5;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 24px;
}
.badge {
      width: 128px;
      height: 128px;
      margin-bottom: 28px;
      object-fit: cover;
      border-radius: 50%;
      padding: 4px;
      background: rgba(20, 42, 78, 0.4);
      border: 2px solid var(--gold);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
}
.kicker {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.34em;
      text-transform: uppercase;
      color: var(--gold);
      min-height: 1.2em;
      margin-bottom: 22px;
}
h1 {
      font-family: var(--display);
      font-weight: 900;
      font-size: clamp(2.4rem, 7vw, 5.4rem);
      line-height: 0.96;
      text-transform: uppercase;
      letter-spacing: -0.015em;
      max-width: 14ch;
}
h1 .row {
      display: block;
      overflow: hidden;
      padding-bottom: 0.06em;
      margin-bottom: -0.06em;
}
h1 .row span {
      display: inline-block;
      transform: translateY(115%);
}
h1 .outline {
      color: transparent;
      -webkit-text-stroke: 1.8px rgba(243, 240, 232, 0.75);
}
.sub {
      margin: 22px 0 34px;
      max-width: 52ch;
      color: rgba(243, 240, 232, 0.8);
      font-size: 1rem;
      opacity: 0;
}

/* notify form */
.notify {
      display: flex;
      width: min(480px, 100%);
      opacity: 0;
}
.notify input {
      flex: 1;
      background: rgba(243, 240, 232, 0.06);
      border: 1px solid rgba(243, 240, 232, 0.3);
      border-right: none;
      color: #fff;
      font-family: var(--mono);
      font-size: 0.8rem;
      padding: 16px 18px;
      outline: none;
      min-width: 0;
}
.notify input::placeholder {
      color: rgba(243, 240, 232, 0.4);
}
.notify input:focus {
      border-color: var(--gold);
}
.notify button {
      background: var(--red);
      border: none;
      color: #fff;
      font-family: var(--display);
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0 26px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background 0.3s;
}
.notify button:hover {
      background: var(--gold);
      color: var(--ink);
}
.notify-note {
      margin-top: 14px;
      font-family: var(--mono);
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(243, 240, 232, 0.45);
      opacity: 0;
}

/* footer strip */
.foot {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 10;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 28px;
      font-family: var(--mono);
      font-size: 0.58rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(243, 240, 232, 0.55);
      flex-wrap: wrap;
}
.foot .soc {
      display: flex;
      gap: 18px;
}
.foot .soc a {
      transition: color 0.25s;
}
.foot .soc a:hover {
      color: var(--gold);
}
.foot .powered a {
      color: rgba(243, 240, 232, 0.7);
      transition: color 0.25s;
}
.foot .powered a:hover {
      color: var(--gold);
}
.top-contact {
      position: fixed;
      top: 24px;
      right: 28px;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 5px;
      text-align: right;
      font-family: var(--mono);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
}
.top-contact a {
      color: rgba(243, 240, 232, 0.7);
      transition: color 0.25s;
}
.top-contact a:first-child {
      color: var(--gold);
}
.top-contact a:hover {
      color: #fff;
}
.est {
      position: fixed;
      top: 26px;
      left: 28px;
      z-index: 10;
      font-family: var(--mono);
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(243, 240, 232, 0.5);
}
/* floating WhatsApp button */
.wa {
      position: fixed;
      right: 24px;
      bottom: 92px;
      z-index: 30;
      width: 56px;
      height: 56px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #25d366;
      color: #fff;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
      transition: transform 0.2s;
      animation: waPulse 2.6s ease-out infinite;
}
.wa:hover {
      transform: scale(1.08);
}
.wa svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
}
@keyframes waPulse {
      0% {
            box-shadow:
                  0 8px 22px rgba(0, 0, 0, 0.35),
                  0 0 0 0 rgba(37, 211, 102, 0.5);
      }
      70% {
            box-shadow:
                  0 8px 22px rgba(0, 0, 0, 0.35),
                  0 0 0 16px rgba(37, 211, 102, 0);
      }
      100% {
            box-shadow:
                  0 8px 22px rgba(0, 0, 0, 0.35),
                  0 0 0 0 rgba(37, 211, 102, 0);
      }
}

@media (max-width: 640px) {
      .top-contact,
      .est {
            display: none;
      }
      .foot {
            justify-content: center;
      }
      .wa {
            right: 16px;
            bottom: 84px;
      }
}
@media (prefers-reduced-motion: reduce) {
      * {
            animation: none !important;
            transition: none !important;
      }
}
