:root {
  --bg: #eef4fb;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --ink: #0f2240;
  --ink-soft: #627999;
  --border: #d9e4f2;
  --accent: #0f67e8;
  --accent-dark: #0c4eb2;
  --accent-soft: #e8f1ff;
  --shadow: 0 16px 40px rgba(11, 48, 99, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 32px 20px;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f8fbff, var(--bg));
}

body::before,
body::after {
  display: none;
}

.page {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #5aa1ff);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand p {
  margin-top: 2px;
  font-size: 0.92rem;
}

.topbar-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  gap: 22px;
  margin-top: 24px;
}

.hero-copy,
.hero-card,
.info-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  background:
    linear-gradient(180deg, rgba(232, 241, 255, 0.65), rgba(255, 255, 255, 1)),
    var(--surface);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(15, 103, 232, 0.12);
}

.lead {
  max-width: 60ch;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(15, 103, 232, 0.18);
}

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

.button-light {
  color: var(--accent-dark);
  background: var(--accent-soft);
  box-shadow: none;
}

.hero-card h2,
.info-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.hero-card .button,
.info-side .button {
  margin-top: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  margin-top: 22px;
}

.info-main {
  background: var(--surface);
}

.info-list {
  margin-top: 14px;
  border-top: 1px solid var(--border);
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-row span {
  color: var(--ink-soft);
}

.info-row strong {
  text-align: right;
  color: var(--ink);
}

.footer-note {
  margin-top: 20px;
  padding: 0 2px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
}

body.is-ready .topbar,
body.is-ready .hero-copy,
body.is-ready .hero-card,
body.is-ready .info-card,
body.is-ready .footer-note {
  animation: rise 0.75s ease-out both;
}

body.is-ready .hero-card {
  animation-delay: 0.08s;
}

body.is-ready .info-side {
  animation-delay: 0.12s;
}

body.is-ready .footer-note {
  animation-delay: 0.14s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  body {
    padding: 18px 14px;
  }

  .topbar,
  .info-row {
    align-items: flex-start;
  }

  .topbar,
  .hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  p {
    font-size: 1rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-card,
  .info-card {
    padding: 22px 18px;
  }

  .button,
  .button-light {
    width: 100%;
  }

  .info-row {
    flex-direction: column;
  }

  .info-row strong {
    text-align: left;
  }
}
