		:root {
	--primary: #F2C629;
	--primary-dark: #D4A91E;
	--dark: #2C2C2C;
	--darker: #1A1A1A;
	--text: #444;
	--text-light: #777;
	--bg: #FAFAFA;
	--white: #FFF;
	--radius: 12px;
	--shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Hero */
.hero { background: var(--darker); color: var(--white); padding: 60px 0 50px; text-align: center; }
.hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 8px; }
.hero .version { color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.hero .compat { color: #aaa; margin-bottom: 24px; }
.hero .brand { color: var(--primary-dark); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 30px; }
.tagline { color: #ddd; font-style: italic; max-width: 700px; margin: 0 auto; padding: 20px 30px; border-top: 2px solid var(--primary); border-bottom: 2px solid var(--primary); }

/* Problem / Solution */
.problem-solution { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.problem-solution .box { padding: 28px; border-radius: var(--radius); }
.box.problem { background: #FFF5F5; border-left: 4px solid #E53E3E; }
.box.solution { background: #F0FFF4; border-left: 4px solid #38A169; }
.box h2 { }
.box.problem h2 { color: #E53E3E; }
.box.solution h2 { color: #38A169; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 20px; }
.step { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); }
.step-number { width: 48px; height: 48px; background: var(--primary); color: var(--darker); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 14px; }
.step h3 { margin-bottom: 8px; color: var(--dark); }
.step p { color: var(--text-light); margin-bottom: 0; }

/* Features grid */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 16px; }
.feature-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.feature-card h3 { color: var(--dark); margin: 0 0 10px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.feature-card ul { list-style: none; padding: 0; }
.feature-card ul li { padding: 4px 0 4px 20px; position: relative; }
.feature-card ul li::before { content: "\2022"; color: var(--primary-dark); font-weight: 700; position: absolute; left: 0; }
.feature-card p { margin-bottom: 0; }

/* Directories */
.dirs-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 16px; }
.dir-item { background: var(--white); border-radius: 8px; padding: 14px 18px; font-weight: 600; color: var(--dark); box-shadow: var(--shadow); border-left: 3px solid var(--primary); }
.dir-item span { color: var(--text-light); font-weight: 400; }

/* Compat table */
.compat-table { width: 100%; border-collapse: collapse; margin-top: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.compat-table th { background: var(--darker); color: var(--primary); text-align: left; padding: 12px 18px; font-weight: 700; }
.compat-table td { padding: 11px 18px; border-bottom: 1px solid #eee; }
.compat-table tr:nth-child(even) td { background: #f8f8f8; }
.compat-table td:first-child { font-weight: 600; color: var(--dark); width: 35%; }

/* Install steps */
.install-steps { counter-reset: install; margin-top: 16px; }
.install-step { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.install-step::before { counter-increment: install; content: counter(install); min-width: 36px; height: 36px; background: var(--primary); color: var(--darker); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.install-step p { margin: 0; padding-top: 6px; }

/* Color swatches */
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; justify-content: center; }
.swatch { width: 40px; height: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.12); }

@media (max-width: 768px) {
	.problem-solution, .steps, .features-grid { grid-template-columns: 1fr; }
}
