@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --ink-soft: #4b4b55;
  --surface: #f4efe7;
  --surface-strong: #efe6d6;
  --accent: #e03a2f;
  --accent-dark: #b82820;
  --outline: rgba(27, 27, 31, 0.12);
  --shadow: 0 24px 40px rgba(27, 27, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #fff4dd 0%, transparent 60%),
    radial-gradient(circle at 20% 30%, #ffe0cc 0%, transparent 45%),
    linear-gradient(180deg, #fbf6ea 0%, #f1e8da 100%);
  min-height: 100vh;
}

.page {
  max-width: 1060px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.hero {
  padding: 32px;
  border-radius: 32px;
  background: linear-gradient(135deg, #fff5e1, #f9e1c7 65%, #f0c7b9 100%);
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.lede {
  margin: 0 0 20px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 520px;
}

.steps {
  display: grid;
  gap: 24px;
  margin: 36px 0 24px;
}

.step {
  padding: 24px;
  background: var(--surface);
  border-radius: 28px;
  border: 1px solid var(--outline);
  display: grid;
  gap: 18px;
  align-content: start;
  align-items: start;
  box-shadow: 0 12px 30px rgba(27, 27, 31, 0.08);
  animation: rise 0.6s ease forwards;
  opacity: 0;
  transform: translateY(16px);
  animation-delay: calc(var(--delay) * 120ms);
}

.step-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid var(--outline);
  font-weight: 700;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}

.step h2 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.3rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}

.step a {
  color: var(--accent-dark);
  font-weight: 600;
}

.media {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--outline);
  background: #fffaf2;
}

.media img {
  width: 100%;
  display: block;
}

.footer {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step {
    min-height: 420px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 32px 18px 48px;
  }

  .hero {
    padding: 24px;
  }

}


.feeds-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: 0 12px 30px rgba(27, 27, 31, 0.08);
  align-self: start;
}

.feeds-table thead {
  background: var(--surface-strong);
}

.feeds-table th,
.feeds-table td {
  text-align: left;
  padding: 18px 20px;
  border-bottom: 1px solid var(--outline);
  vertical-align: middle;
}

.feeds-table th {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

.feeds-table tbody tr:last-child td {
  border-bottom: none;
}


.action {
  text-align: right;
  white-space: nowrap;
}

button {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 18px rgba(224, 58, 47, 0.28);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(224, 58, 47, 0.32);
}

button[data-state="copied"] {
  background: #2c7a4b;
  box-shadow: 0 12px 18px rgba(44, 122, 75, 0.26);
}
