/* Minimal, clean aesthetic */
* { box-sizing: border-box; }
:root {
  --bg: #0b0d10;
  --surface: #111418;
  --text: #e6e8eb;
  --muted: #b3bac5;
  --accent: #6cf0d0;
  --accent-2: #64a8ff;
  --card: #151a20;
  --border: #1e242b;
  --shadow: 0 10px 30px rgba(0,0,0,.4);
}
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text); background: radial-gradient(1200px 600px at 10% -10%, #0f1420 0%, #0b0d10 40%), var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--text); text-decoration: none; }
.container { width: min(1100px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11,13,16,.6); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; padding: .9rem 0;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; letter-spacing: .2px; }
.brand img { width: 28px; height: 28px; }
.nav { display: flex; gap: 1rem; }
.nav a { opacity: .9; padding: .4rem .6rem; border-radius: 10px; transition: background .2s ease, opacity .2s ease; }
.nav a:hover { background: #0f1318; opacity: 1; }
.nav .cta { border: 1px solid var(--border); }

.hero {
  padding: 8rem 0 4rem;
  text-align: center;
  background-image:
    radial-gradient(600px 300px at 80% 10%, rgba(100,168,255,.15), transparent 60%),
    radial-gradient(600px 300px at 20% 0%, rgba(108,240,208,.15), transparent 60%);
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 4rem);
  line-height: 1.1; margin: 0 0 1rem;
}
.accent { background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { color: var(--muted); font-size: 1.15rem; max-width: 780px; margin: 0 auto 2rem; }
.actions { display: flex; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.btn { padding: .8rem 1.1rem; border-radius: 14px; border: 1px solid var(--border); display: inline-block; }
.btn.primary { background: linear-gradient(180deg, rgba(108,240,208,.15), rgba(108,240,208,.05)); border-color: #1d2a26; }
.btn.ghost { background: transparent; }
.badge-row { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.badge { font-size: .85rem; color: var(--muted); border: 1px solid var(--border); padding: .35rem .6rem; border-radius: 999px; }

.section { padding: 4rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)); }
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }
.card, .mini-case {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; box-shadow: var(--shadow);
}
.card h3 { margin-top: .2rem; }
.split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.6rem; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { margin: .6rem 0; padding-left: 1.8rem; position: relative; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent);
  background: rgba(108,240,208,.08); border: 1px solid #1e2a26; width: 1.2rem; height: 1.2rem; display: inline-grid; place-items: center; border-radius: 4px; font-size: .8rem;
}

.quote { background: linear-gradient(180deg, rgba(100,168,255,.1), rgba(108,240,208,.05)); border: 1px solid var(--border); padding: 1.2rem; border-radius: 16px; }

.contact .contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .contact .contact-cards { grid-template-columns: 1fr; } }
.card.link { text-align: center; font-weight: 600; transition: transform .15s ease, background .2s ease; }
.card.link:hover { transform: translateY(-2px); background: #0f1318; }

.site-footer { border-top: 1px solid var(--border); padding: 1.2rem 0; color: var(--muted); }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; }
.footer-nav { display: flex; gap: 1rem; }
.footer-nav a { color: var(--muted); }
