:root {
  --primary: #1f3c88;
  --background: #f7f9fc;
  --text: #1f1f1f;
  --accent: #f2a541;
}

* {
  box-sizing: border-box;
}

.landing {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.landing__container {
  width: min(960px, 92vw);
  margin: 0 auto;
  padding: 2rem 0;
}

.landing__hero {
  background: linear-gradient(135deg, var(--primary), #27408b);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.landing__hero-title {
  margin: 0 0 0.5rem;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
}

.landing__hero-subtitle {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
}

.landing__hero-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #1f1f1f;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing__hero-cta:hover,
.landing__hero-cta:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.landing__main {
  margin: 0;
}

.landing__section + .landing__section {
  margin-top: 2rem;
}

.landing__section-title {
  margin: 0 0 0.5rem;
}

.landing__section-body {
  margin: 0;
}

.landing__feature-list {
  margin: 0;
  padding-left: 1.25rem;
}

.landing__feature-item + .landing__feature-item {
  margin-top: 0.5rem;
}

.landing__footer {
  background: #111b2e;
  color: #c9d3f0;
}

.landing__footer-container {
  padding: 1.5rem 1rem;
  text-align: center;
}

.landing__footer-brand {
  display: block;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.landing__footer-items {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.landing__footer-item {
  position: relative;
  padding-left: 1.2rem;
}

.landing__footer-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #6276a8;
}

.landing__footer-item:first-child {
  padding-left: 0.5rem;
}

.landing__footer-item:first-child::before {
  display: none;
}

.landing__footer-note {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
