:root {
  --bg: #f7f4ef;
  --bg-accent: #eef4fb;
  --card: rgba(255, 255, 255, 0.78);
  --card-strong: #ffffff;
  --text: #24324a;
  --muted: #60708a;
  --primary: #7aa7d9;
  --primary-dark: #5c8fc8;
  --secondary: #d7e7f8;
  --line: #dfe8f1;
  --shadow: 0 24px 70px rgba(87, 108, 137, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(circle at top left, #f2efe8 0, #f7f4ef 28%, transparent 50%),
    linear-gradient(180deg, #f8f4ee 0%, var(--bg-accent) 100%);
  color: var(--text);
  min-height: 100%;
}

body {
  min-height: 100vh;
}

.page-shell {
  width: 100%;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: center;
  padding-top: 32px;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand-logo {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.brand-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #4f6786;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-mark {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}
.brand-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-section {
  padding: 24px;
}

.hero-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(240, 246, 253, 0.92), rgba(247, 244, 239, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 54px 28px 34px;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
}

.hero-card::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -90px;
  background: #d9ebff;
}

.hero-card::after {
  width: 230px;
  height: 230px;
  bottom: -110px;
  left: -70px;
  background: #f7e7db;
}

.hero-badge,
.hero-card h1,
.hero-text,
.steps-card {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(122, 167, 217, 0.2);
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-card h1 {
  margin: 20px 0 14px;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  max-width: 760px;
}

.hero-text {
  margin: 0 auto 30px;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
}

.steps-card {
  margin-top: 28px;
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 34px 28px 26px;
}

.steps-card h2 {
  margin: 0 0 22px;
  font-size: 1.7rem;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.steps-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  border: 1px solid #c4daf3;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-top: 4px;
}

.steps-list h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 16px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 18px 32px rgba(92, 143, 200, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(92, 143, 200, 0.3);
}

.note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .topbar {
    padding: 20px 18px 8px;
  }

  .hero-section {
    padding: 16px;
  }

  .hero-card {
    padding: 30px 18px 20px;
    border-radius: 24px;
  }

  .steps-card {
    padding: 24px 18px 20px;
    border-radius: 22px;
  }

  .steps-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .cta-button {
    width: 100%;
    min-width: 0;
  }
}
