:root {
  --text: #111;
  --muted: #555;
  --bg: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 100%;
}

h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
h2 {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
}
h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

ul {
  list-style-position: inside;
  list-style-type: disc;
}

/* Navigation */
header.nav {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
  padding-inline: 0;
  border-bottom: 1px solid #eee;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

header.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.nav .logo {
  font-weight: 700;
  font-size: 1.2rem;
}

header.nav nav a {
  margin-left: 1.5rem;
  line-height: 100%;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* Hero */
.hero {
  padding: 6rem 0;
  padding-bottom: 2rem;
  background: #fff;
  text-align: left;
}

.hero-text h1 {
  /* font-family: "New York", "Times New Roman", serif; */
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-text h2 {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
  /* max-width: 500px; */
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
  /* max-width: 500px; */
}

/* Features */
.features {
  padding-bottom: 4rem;
}

.features .subtitle {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.125rem;
  color: #555;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feature-image {
  /* flex: 0 0 200px; */
  /* aspect-ratio: 1/1; */
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

.feature-text {
  flex: 1;
  min-width: 240px;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .feature-image {
    margin-bottom: 1rem;
  }
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }
}

.section {
  margin-top: 32px;
  margin-bottom: 32px;
}

.footer-grid {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding-bottom: 2rem;
}
