:root {
    --ig-orange: #f09433;
    --ig-magenta: #dc2743;
    --ig-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-main: #111111;
    --text-muted: #666666;
    --border-color: #e0e0e0;
    --line-color: #000000;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background: var(--bg-white); color: var(--text-main); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Minimalist Nav */
.nav { border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; }
.nav-brand { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text-muted); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 1px; background: var(--line-color); transition: 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-btn { border: 1px solid var(--text-main); padding: 8px 20px; border-radius: 4px; font-weight: 600; color: var(--text-main) !important; }
.nav-btn::after { display: none; }
.nav-btn:hover { background: var(--text-main); color: white !important; }

/* Hero */
.hero { padding: 100px 20px 60px; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-icon { width: 60px; height: 60px; margin: 0 auto 30px; border: 2px solid var(--text-main); border-radius: 16px; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-icon::before { content: ''; width: 24px; height: 24px; border: 2px solid var(--text-main); border-radius: 50%; }
.hero-icon::after { content: ''; position: absolute; top: 10px; right: 10px; width: 4px; height: 4px; background: var(--text-main); border-radius: 50%; }
.hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }
.btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn { padding: 15px 35px; font-size: 16px; font-weight: 600; cursor: pointer; transition: 0.3s; border: 1px solid var(--text-main); display: inline-flex; align-items: center; gap: 10px; }
.btn-primary { background: var(--text-main); color: white; }
.btn-primary:hover { background: transparent; color: var(--text-main); }
.btn-secondary { background: transparent; color: var(--text-main); }
.btn-secondary:hover { background: var(--text-main); color: white; }

/* Linear Stats */
.stats { display: flex; justify-content: center; gap: 60px; padding: 40px 20px; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); flex-wrap: wrap; }
.stat-box { text-align: center; }
.stat-box h3 { font-size: 32px; font-weight: 300; margin-bottom: 5px; }
.stat-box p { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Container */
.container { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.section-title { font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 60px; }

/* Clean About */
.about-box { border: 1px solid var(--border-color); padding: 50px; margin-bottom: 80px; text-align: center; background: var(--bg-light); }
.about-box p { font-size: 16px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.about-box p:last-child { margin-bottom: 0; }

/* Linear Icon Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px; }
.card { border: 1px solid var(--border-color); padding: 40px 30px; transition: 0.3s; background: white; }
.card:hover { border-color: var(--text-main); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card-icon { margin-bottom: 20px; }
.icon-svg { stroke: var(--text-main); stroke-width: 1.5; fill: none; width: 32px; height: 32px; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 20px; font-weight: 600; margin-bottom: 15px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Images */
.showcase-img { width: 100%; border: 1px solid var(--border-color); margin-bottom: 80px; display: block; }

/* List */
.list-wrapper { max-width: 700px; margin: 0 auto 80px; }
.list-item { display: flex; gap: 20px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--border-color); }
.list-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.list-num { font-size: 24px; font-weight: 300; color: var(--text-muted); font-family: serif; }
.list-text h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.list-text p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* Footer */
.footer { border-top: 1px solid var(--border-color); padding: 50px 20px; text-align: center; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--text-main); font-size: 13px; font-weight: 500; }
.footer-links a:hover { color: var(--ig-magenta); }
.footer p { color: var(--text-muted); font-size: 12px; }