:root {
  --text: #524c83;
  --muted: #7e78a3;
  --accent: #7964c9;
  --gold: #d7aa64;
  --border: rgba(121, 100, 201, 0.14);
  --panel: rgba(255, 255, 255, 0.78);
  --shadow: 0 22px 60px rgba(121, 100, 201, 0.18);
  --radius-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210, 198, 255, 0.6), transparent 28%),
    radial-gradient(circle at top center, rgba(255, 225, 187, 0.26), transparent 20%),
    radial-gradient(circle at bottom right, rgba(196, 255, 239, 0.34), transparent 24%),
    linear-gradient(180deg, #fffcfa 0%, #fff6ef 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  padding: 22px clamp(24px, 4vw, 48px) 40px;
}

.maintenance-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(121, 100, 201, 0.1);
  border: 1px solid var(--border);
  color: #6f5bc0;
  font-size: 0.95rem;
  text-align: center;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto 48px;
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta,
.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
  line-height: 1.03;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  font-weight: 700;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #9278dc);
  box-shadow: 0 16px 34px rgba(121, 100, 201, 0.28);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-card {
  width: min(100%, 510px);
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .nav-cta,
  .button {
    width: 100%;
  }
}
