/* Garuda marketing — shared styles. Keep one file, reference from both sites. */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #1f2937; }
body { background: #fafafa; }

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

/* Header */
header { padding: 1.25rem 0; background: #fff; border-bottom: 1px solid #e5e7eb; }
header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; color: #111827; text-decoration: none; }
.logo span { font-weight: 400; color: #6b7280; }
nav a { color: #4b5563; text-decoration: none; margin-left: 1.5rem; font-size: 0.95rem; }
nav a:hover { color: #111827; }
.btn { display: inline-block; padding: 0.625rem 1.25rem; border-radius: 0.5rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: 0.15s; }
.btn-primary { background: var(--accent, #4f46e5); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost { color: var(--accent, #4f46e5); border: 1px solid var(--accent, #4f46e5); margin-right: 0.5rem; }
.btn-ghost:hover { background: var(--accent-soft, #eef2ff); }

/* Hero */
.hero { padding: 5rem 0 4rem; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1.25rem; color: #111827; }
.hero .accent { color: var(--accent, #4f46e5); }
.hero p.lede { font-size: 1.2rem; color: #4b5563; max-width: 640px; margin: 0 auto 2rem; }
.hero .cta { margin-top: 1.5rem; }

/* Features */
.features { padding: 4rem 0; background: #fff; }
.features .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 2.5rem; }
.feature h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: #111827; }
.feature p { color: #6b7280; font-size: 0.95rem; }
.feature .icon { width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; background: var(--accent-soft, #eef2ff); color: var(--accent, #4f46e5); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.section-title { text-align: center; }
.section-title h2 { font-size: 2rem; font-weight: 700; color: #111827; }
.section-title p { color: #6b7280; margin-top: 0.5rem; }

/* CTA strip */
.cta-strip { padding: 4rem 0; background: var(--accent, #4f46e5); color: #fff; text-align: center; }
.cta-strip h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.cta-strip p { opacity: 0.9; margin-bottom: 1.5rem; }
.cta-strip .btn-primary { background: #fff; color: var(--accent, #4f46e5); }

/* Footer */
footer { padding: 2.5rem 0; border-top: 1px solid #e5e7eb; background: #fff; color: #6b7280; font-size: 0.9rem; text-align: center; }
footer a { color: #4b5563; text-decoration: none; margin: 0 0.75rem; }
footer a:hover { color: #111827; }
.muted { color: #9ca3af; font-size: 0.85rem; margin-top: 0.5rem; }
