:root {
  --primary: #0a1b3d;
  --primary-900: #07142d;
  --primary-800: #0d2554;
  --primary-soft: rgba(10, 27, 61, 0.08);
  --accent: #2962ff;
  --accent-soft: rgba(41, 98, 255, 0.14);
  --text: #0a1b3d;
  --muted: #60708f;
  --line: rgba(10, 27, 61, 0.12);
  --surface: rgba(255, 255, 255, 0.82);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(10, 27, 61, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(41, 98, 255, 0.11), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(10, 27, 61, 0.13), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7f9fd 52%, #edf3ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: 0.28;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 48px 0;
}

.hero {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.brand-card,
.info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 27, 61, 0.1);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-card {
  padding: clamp(32px, 6vw, 72px);
}

.brand-card::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: var(--primary-soft);
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(420px, 86%);
  height: auto;
  margin-bottom: 44px;
}

.status-pill {
  position: relative;
  z-index: 1;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(10, 27, 61, 0.12);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 28px 0 18px;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(10, 27, 61, 0.22);
}

.btn-primary:hover {
  background: var(--primary-800);
}

.btn-secondary {
  color: var(--primary);
  border: 1px solid rgba(10, 27, 61, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.info-panel {
  padding: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 28% 18%, rgba(41, 98, 255, 0.26), transparent 32%),
    linear-gradient(145deg, var(--primary) 0%, var(--primary-900) 100%);
}

.info-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: #9eb9ff;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.info-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.info-panel p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.feature-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: rgba(41, 98, 255, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card strong,
.feature-card small {
  grid-column: 2;
}

.feature-card strong {
  margin-top: -2px;
}

.feature-card small {
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .logo {
    width: min(360px, 100%);
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding: 24px 0;
  }

  .brand-card,
  .info-panel {
    border-radius: 24px;
  }

  .brand-card,
  .info-panel {
    padding: 26px;
  }

  .actions,
  .btn {
    width: 100%;
  }
}
