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

:root {
  --bg: #f4f4f4;
  --bg-2: #ececec;
  --ink: #0a0a0a;
  --muted: #3f3f3f;
  --accent: #111111;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(800px 400px at 15% -10%, #ffffff, transparent),
    radial-gradient(700px 360px at 100% 0%, #e7e7e7, transparent),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0 2px, transparent 2px 6px),
    var(--bg);
}

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

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #111;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-weight: 500;
}

.hero {
  padding: 40px 0 20px;
  display: grid;
  gap: 28px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0;
  line-height: 1.05;
}

.hero p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}

.search {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
}

.search input {
  border: none;
  outline: none;
  font-size: 1rem;
  flex: 1;
  background: transparent;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid #e6e6e6;
}

.section {
  padding: 24px 0 40px;
}

.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin: 0 0 16px;
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  min-height: 160px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #efefef;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

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

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

.card .cta {
  margin-top: auto;
  font-weight: 600;
  color: #111;
}

.tool-shell {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.tool-shell h1 {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
}

.tool-grid {
  display: grid;
  gap: 14px;
}

.input, textarea, select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  font-size: 1rem;
  background: #fff;
}

textarea { min-height: 140px; resize: vertical; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid #e5e5e5;
}

.result {
  background: #f6f6f6;
  padding: 14px;
  border-radius: 12px;
  border: 1px dashed #d6d6d6;
  font-family: 'IBM Plex Sans', sans-serif;
}

.footer {
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 0.9rem;
}

.kicker {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid #e6e6e6;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.tool-ads {
  background: #fff;
  border: 2px dashed #d8d8d8;
  border-radius: 16px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.tile {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #efefef;
  display: grid;
  gap: 6px;
}

.tile strong { font-family: 'Space Grotesk', sans-serif; }

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

.step {
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #efefef;
  box-shadow: var(--shadow);
}

.step span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 6px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid #ededed;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding-top: 20px; }
}
