
a {
  color: var(--accent-dark);
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.site-nav a {
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
}
.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(40px, 7vw, 68px);
  max-width: 12ch;
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
}
h3 {
  font-size: 22px;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
}
.actions,
.tag-row,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.actions {
  margin-top: 24px;
}
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}
.panel {
  padding: 28px;
}
.panel dl {
  margin: 0;
  display: grid;
  gap: 14px;
}
.panel dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 800;
}
.panel dd {
  margin: 0;
  font-size: 16px;
}
.card {
  border-radius: 18px;
  padding: 22px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card-hover,
.card:hover {
  transform: translateY(-6px);
}
.metric-card {
  padding: 20px;
  border-radius: 20px;
}
.metric-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}
.media-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card--tall {
  min-height: 100%;
}
.media-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(180deg, rgba(15,23,42,0.05), rgba(15,23,42,0.74));
}
.list-checks {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.list-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.list-checks li::before {
  content: "•";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.timeline__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.timeline__step {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-weight: 800;
}
.showcase-quote {
  padding: 28px;
  border-radius: 24px;
}
.faq-item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 0;
}
.tag-row {
  margin-top: 18px;
}
.tag-row--footer {
  margin-top: 0;
}
.tag {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.cta-banner {
  margin: 32px 0 12px;
  border-radius: 26px;
  padding: 28px;
}
.muted {
  color: var(--muted);
}
#cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(420px, calc(100% - 32px));
  z-index: 20;
}
.cookie-card {
  border-radius: 20px;
  padding: 18px;
}
.cookie-actions button {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
