:root {
  --bg: #f7f3ea;
  --text: #181818;
  --muted: #66615a;
  --card: #ffffff;
  --accent: #ff6b35;
  --accent-dark: #d84f20;
  --border: #e6ded2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.navbar {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 22px;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

nav a:hover {
  color: var(--text);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 96px 0 72px;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 14px;
}

h1 {
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  margin: 20px 0;
}

.subtitle {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: var(--accent);
  color: white;
}

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.card,
.deploy-box,
.contact-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(24, 24, 24, 0.06);
}

.card h2,
.deploy-box h2,
.contact-box h2 {
  margin-top: 0;
  letter-spacing: -0.04em;
}

.card p,
.deploy-box p,
.contact-box p {
  color: var(--muted);
  line-height: 1.6;
}

.deploy-box,
.contact-box {
  margin: 16px 0;
}

.code-block {
  background: #181818;
  color: #fff;
  border-radius: 18px;
  padding: 18px;
  margin: 18px 0;
}

.code-block p {
  color: #f7f3ea;
  margin: 8px 0;
}

button {
  border: 0;
  background: var(--text);
  color: white;
  border-radius: 12px;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  opacity: 0.88;
}

.demo-text {
  min-height: 24px;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .navbar {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 56px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
