:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0b0d10;
  color: #f4f1ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(245, 167, 76, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(46, 196, 182, 0.13), transparent 24%),
    #0b0d10;
}

a {
  color: inherit;
}

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.page-narrow {
  width: min(760px, calc(100% - 32px));
}

.hero,
.section {
  border: 1px solid rgba(244, 241, 234, 0.12);
  background: rgba(18, 21, 25, 0.82);
  border-radius: 18px;
  padding: clamp(24px, 5vw, 52px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  justify-items: start;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  border: 1px solid rgba(244, 241, 234, 0.16);
  margin-bottom: 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #f5a74c;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1;
}

h3 {
  font-size: 1.45rem;
}

p,
li {
  color: #cfc8bd;
  font-size: 1.05rem;
  line-height: 1.65;
}

.lede {
  max-width: 650px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(244, 241, 234, 0.16);
  background: rgba(244, 241, 234, 0.06);
  color: #f4f1ea;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: #f5a74c;
  border-color: #f5a74c;
  color: #17110a;
}

.section {
  margin-top: 18px;
}

.tool-card {
  max-width: 760px;
}

.tool-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
}

.tool-card li {
  padding: 12px;
  border-radius: 10px;
  background: rgba(244, 241, 234, 0.06);
  border: 1px solid rgba(244, 241, 234, 0.1);
}

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

.footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #8f887f;
}

.footer span {
  margin-right: auto;
}

.footer a {
  color: #cfc8bd;
  text-decoration: none;
}

@media (max-width: 720px) {
  .page {
    padding: 18px 0;
  }

  .hero {
    min-height: auto;
  }

  .tool-card ul,
  .split {
    grid-template-columns: 1fr;
  }
}
