/* Clear Practise - Sovereign Brand Styles */
:root {
    --primary: #87CEEB;       /* Sky Blue */
    --primary-hover: #5bbce0;
    --dark: #2c3e50;          /* Navy */
    --light: #f8f9fa;
    --gray: #666;
    --border: #eee;
    --shadow: 0 2px 10px rgba(0,0,0,0.05);
    --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Typography */
h1 { color: var(--dark); font-size: 2.5rem; margin-bottom: 15px; font-weight: bold; }
h2 { color: var(--dark); font-size: 1.8rem; margin-bottom: 20px; text-align: center; }
h3 { color: var(--dark); font-size: 1.3rem; margin-bottom: 15px; }
p { margin-bottom: 15px; color: #555; }
.subtitle { font-size: 1.2rem; color: var(--gray); margin-bottom: 30px; text-align: center; }

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.cta-button:hover { background: var(--primary-hover); }

/* Cards */
.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
}

/* Offer Box (Specific to Landing Page) */
.offer-box {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}
.offer-box::before {
    content: "FOUNDING 15 OFFER";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.offer-title { color: var(--dark); font-size: 1.5rem; font-weight: bold; margin-bottom: 10px; }
.offer-price { font-size: 3rem; color: var(--dark); font-weight: bold; margin: 20px 0; }
.offer-price span { font-size: 1rem; color: var(--gray); font-weight: normal; }
.strike { text-decoration: line-through; color: var(--gray); font-size: 1.2rem; margin-right: 10px; }
.spots-left { background: #fff3cd; color: #856404; padding: 8px 12px; border-radius: 4px; display: inline-block; font-weight: 600; margin-bottom: 15px; }

/* Paths (Grid for Landing Page) */
.paths { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.path-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.2s;
}
.path-card:hover { transform: translateY(-5px); border-color: var(--primary); }

/* Forms */
.form-group { margin-bottom: 20px; }
label { display: block; margin-bottom: 8px; color: var(--dark); font-weight: 600; }
input[type="text"], input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}
input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.1); }

/* Results */
.result { margin-top: 20px; padding: 15px; border-radius: var(--radius); font-weight: 500; }
.available { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.taken { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Navigation Links */
.nav-link { color: var(--gray); text-decoration: none; font-size: 0.9rem; display: inline-block; margin-bottom: 20px; }
.nav-link:hover { color: var(--primary); text-decoration: underline; }

/* Footer */
footer { background: var(--dark); color: #fff; padding: 18px 0; text-align: center; margin-top: 60px; }
footer a { color: var(--primary); text-decoration: none; }
footer .tagline { color: var(--primary); font-style: italic; margin-top: 15px; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    h1 { font-size: 2rem; }
    .paths { flex-direction: column; }
    .offer-box { padding: 25px; }
}
