﻿@import url("global.css");

.hero__inner h1 {
  margin: 8px 0 10px 0;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.02em;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 40px rgba(79, 70, 229, 0.18);
}

.step-card h3 {
  margin: 0 0 8px 0;
  color: var(--primary);
}

.step-card p { margin: 0; color: var(--muted); }

.section__head h2 {
  margin: 6px 0 0 0;
  letter-spacing: -0.02em;
}

.table {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.table__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 12px 14px;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.table__row:last-child { border-bottom: none; }

.table__head {
  background: #f3f4f6;
  font-weight: 700;
}

.code-block {
  padding: 16px;
  background: #0f172a;
  color: #e5e7eb;
  border: 1px solid #1f2330;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.code-block pre {
  margin: 0;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
}

.footer {
  padding: 20px 0 32px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
}

.footer__inner {
  display: flex;
  justify-content: center;
}
