:root { --font: Inter, system-ui, sans-serif; --theme: #6366f1; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); -webkit-font-smoothing: antialiased; }
img { display: block; }
a { text-decoration: none; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding-inline: 24px; }
.section { padding: 64px 0; }

/* Navbar */
.navbar { position: sticky; top: 0; z-index: 10; padding: 16px 0; }
.nav-inner { display: flex; align-items: center; gap: 24px; }
.nav-brand { font-weight: 700; font-size: 20px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; flex-wrap: wrap; }
.nav-link { color: inherit; opacity: .8; font-size: 15px; }
.nav-link:hover { opacity: 1; }
.nav-cta { padding: 8px 16px; border-radius: 8px; background: var(--theme); color: #fff; font-size: 14px; font-weight: 600; }

/* Hero */
.hero-inner { display: flex; flex-direction: column; gap: 20px; align-items: var(--align, center); max-width: 760px; margin: 0 auto; }
.hero-eyebrow { font-size: 14px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.hero-title { font-size: clamp(36px, 6vw, 64px); line-height: 1.05; margin: 0; font-weight: 800; letter-spacing: -.02em; }
.hero-subtitle { font-size: 19px; line-height: 1.6; margin: 0; opacity: .85; }
.hero-cta { display: inline-block; margin-top: 8px; padding: 14px 28px; border-radius: 10px; color: #fff; font-weight: 600; font-size: 16px; }

/* Generic section title */
.section-title { font-size: 32px; font-weight: 700; text-align: center; margin: 0 0 40px; letter-spacing: -.01em; }

/* Buttons */
.btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 16px; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px; border-radius: 16px; }
.feature-title { margin: 0 0 8px; font-size: 20px; font-weight: 700; }
.feature-body { margin: 0; line-height: 1.6; opacity: .8; }

/* Gallery */
.gallery-grid { display: grid; gap: 16px; }
.gallery-img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; }

/* CTA */
.cta { padding: 80px 0; text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: 38px; font-weight: 800; margin: 0; letter-spacing: -.02em; }
.cta-subtitle { font-size: 18px; margin: 0; opacity: .9; line-height: 1.6; }

/* Footer */
.footer { padding: 40px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
.footer-brand { font-weight: 700; font-size: 18px; }
.footer-links { display: flex; gap: 20px; }
.footer-link { color: inherit; opacity: .8; font-size: 14px; }
.footer-link:hover { opacity: 1; }
.footer-copy { font-size: 14px; opacity: .7; }

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }
  .nav-links { display: none; }
}