:root {
  --navy-deep:  #0A1A34;
  --navy:       #14317E;
  --navy-light: #1F3864;
  --gold:       #C8901A;
  --white:      #F5F7FA;
  --muted:      #9FB0CC;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--white);
  background: radial-gradient(circle at 50% 15%, var(--navy) 0%, var(--navy-deep) 65%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

/* subtle scanline / surveillance-grid texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  padding: 48px 32px;
  text-align: center;
}

.owl {
  width: 118px;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 24px rgba(200, 144, 26, 0.25));
  animation: blink 6s ease-in-out infinite;
}

@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.86); }
}

.wordmark {
  font-size: clamp(1.9rem, 6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
}

.wordmark span {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--muted);
  margin-top: 6px;
}

.divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 28px auto;
}

.headline {
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.lede {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 32px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.services span {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--white);
  padding: 7px 14px;
  border-radius: 999px;
  opacity: 0.92;
}

.contact {
  font-size: 0.95rem;
}

.contact a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 144, 26, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact a:hover {
  color: var(--white);
  border-color: var(--white);
}

.social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 0;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(245, 247, 250, 0.06);
  border: 1px solid rgba(200, 144, 26, 0.25);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.social a:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(200, 144, 26, 0.12);
}

.social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.vcard-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 36px auto 0;
  padding: 18px;
  max-width: 420px;
  background: rgba(245, 247, 250, 0.06);
  border: 1px solid rgba(200, 144, 26, 0.25);
  border-radius: 14px;
  text-align: left;
}

.vcard-qr {
  flex: 0 0 auto;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  background: var(--white);
  padding: 6px;
}

.vcard-info {
  flex: 1 1 auto;
}

.vcard-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.vcard-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.vcard-download {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 144, 26, 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.vcard-download:hover {
  color: var(--white);
  border-color: var(--white);
}

@media (max-width: 480px) {
  .vcard-card {
    flex-direction: column;
    text-align: center;
  }
}

footer {
  position: relative;
  z-index: 1;
  padding: 0 20px 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

@media (max-width: 600px), (max-height: 500px) {
  body {
    justify-content: flex-start;
  }
  .wrap { padding: 56px 20px 32px; }
  .owl { width: 96px; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .wrap { padding: 32px 20px 24px; }
  .owl { width: 72px; margin-bottom: 12px; }
  .lede { margin-bottom: 20px; }
  .services { margin-bottom: 24px; }
}
