:root {
  --bg: #f6f8fb;
  --fg: #0f172a;
  --muted: #64748b;
  --card: #ffffff;
  --brand: #06b6d4;
  --brand-2: #38bdf8;
  --brand-fg: #ffffff;
  --hero-1: #0b1228;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-elegant: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 60px rgba(56, 189, 248, 0.35);
  --gradient-brand: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--hero-1);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
  background: radial-gradient(ellipse at top, #1a2547 0%, var(--hero-1) 60%, #06091a 100%);
  color: #fff;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--gradient-brand);
  filter: blur(110px);
  opacity: 0.28;
}
.blob-1 { top: -140px; left: -140px; }
.blob-2 { bottom: -160px; right: -140px; opacity: 0.2; }

.hero-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  min-height: 0;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #fff;
}

.logo-card {
  width: 100%;
  background: #fff;
  border-radius: 22px;
  padding: 18px 24px;
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.4);
}
.logo-card img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 22vh;
  object-fit: contain;
}

.tagline {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.contact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 4px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.25s ease, background 0.25s ease;
  text-align: left;
  min-width: 0;
}
.contact-card:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); }

.contact-card .icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--gradient-brand);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-card > div { min-width: 0; }
.contact-card .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2px;
}
.contact-card .value {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.social-btn {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.social-btn:hover { transform: translateY(-2px); background: var(--gradient-brand); }

.hero-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.hero-footer a { transition: color 0.2s; }
.hero-footer a:hover { color: #fff; }
.hero-footer .dot { opacity: 0.4; }

.float-anim { animation: float 5s ease-in-out infinite; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fade-up { animation: fadeUp 0.9s cubic-bezier(0.4,0,0.2,1) both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  html, body { overflow-y: auto; height: auto; }
  .hero { height: auto; min-height: 100vh; padding: 20px 14px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .logo-card img { max-height: 18vh; }
}
