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

:root {
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --brand: #2563eb;
  --brand-strong: #3b82f6;
  --accent: #f97316;
  --accent-soft: #fde68a;
  --panel: #f8fafc;
  --line: #e2e8f0;
  --danger: #dc2626;
  --success: #15803d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Merriweather", serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #2563eb, #60a5fa, #93c5fd);
  color: white;
  padding: 32px 24px;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  padding: 4px;
  background: white;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px;
}

.hero {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.12);
}

.hero-visual {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  padding: 10px;
  margin-top: 16px;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

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

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
}

.card-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: #f8fafc;
}

.card-media img {
  width: 100%;
  height: auto;
  display: block;
}

.card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--accent-soft);
  color: #7c2d12;
  font-family: "Space Grotesk", sans-serif;
}

form {
  display: grid;
  gap: 14px;
}

input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: "Space Grotesk", sans-serif;
}

label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
}

.alert {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fee2e2;
  color: var(--danger);
  border: 1px solid #fecaca;
  display: none;
}

.alert.show {
  display: block;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 20px 24px;
  font-size: 14px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
}

.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  background: #f1f5f9;
}
