﻿:root {
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #5a5a5a;
  --line: #e9e9e9;
  --accent: #d10012;
  --soft: #f6f6f6;
  --max: 1120px;
  --r: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.lead {
  line-height: 1.7;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

p {
  letter-spacing: 0.01em;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

section {
  padding: 84px 0;
}

[id] {
  scroll-margin-top: 88px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 750;
  font-size: 15px;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 14px 40px rgba(209, 0, 18, .18);
}

.btn--full {
  width: 100%;
}

.btn:active {
  transform: translateY(1px);
}

.head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.head h2 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -.5px;
}

.head p {
  margin: 0;
  color: var(--muted);
  max-width: 84ch;
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--accent);
}

.card h3 {
  margin: 14px 0 8px;
  font-size: 18px;
  letter-spacing: -.2px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.alt {
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}


.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    transition: none;
    transform: none;
  }
}

