Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --secondary: #7c3aed;
+ --dark: #1e293b;
+ --light: #f8fafc;
+ --gray: #64748b;
+ --success: #10b981;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
+ transform: rotate(30deg);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ letter-spacing: -0.5px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto 0;
+ padding: 0 1rem;
+ position: relative;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ max-width: 800px;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ max-width: 600px;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background: white;
+ color: var(--primary);
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.5rem;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 1rem;
+ }
+
+ section {
+ margin-bottom: 6rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ color: var(--dark);
+ position: relative;
+ display: inline-block;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -0.5rem;
+ left: 0;
+ width: 3rem;
+ height: 0.25rem;
+ background: var(--primary);
+ border-radius: 0.125rem;
+ }
+
+ .pattern-grid, .resource-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .pattern-card, .resource-card {
+ background: white;
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .pattern-card:hover, .resource-card:hover {
+ transform: translateY(-4px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .pattern-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .pattern-card h3, .resource-card h3 {
+ font-size: 1.25rem;
+ margin-bottom: 0.75rem;
+ }
+
+ .pattern-card p, .resource-card p {
+ color: var(--gray);
+ margin-bottom: 1.5rem;
+ }
+
+ .secondary-button {
+ display: inline-block;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ text-decoration: none;
+ font-weight: 500;
+ border: 1px solid var(--primary);
+ transition: background 0.2s, color 0.2s;
+ }
+
+ .secondary-button:hover {
+ background: var(--primary);
+ color: white;
+ }
+
+ .principles-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .principle {
+ background: white;
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .principle h3 {
+ font-size: 1.25rem;
+ margin-bottom: 0.75rem;
+ color: var(--primary);
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 4rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.2s;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.25rem;
+ }
+
+ .hero-content p {
+ font-size: 1.1rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .pattern-grid, .principles-container, .resource-cards {
+ grid-template-columns: 1fr;
+ }
+ }