/* ==========================================================================
   Cmd+Ctrl AI - Main Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Font Imports
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@600&display=swap');

/* --------------------------------------------------------------------------
   CSS Custom Properties (Variables)
   -------------------------------------------------------------------------- */
:root {
    --color-primary: #F6921E;
    --color-primary-light: #FFB347;
    --color-bg-dark: #2D3748;
    --color-bg-light: #4A5568;
    --color-text: white;
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Courier New', monospace;
    --font-brand: 'JetBrains Mono', monospace;
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, var(--color-bg-dark) 100%);
    color: var(--color-text);
    line-height: 1.7;
}

a {
    color: var(--color-primary);
}

a:hover {
    color: var(--color-primary-light);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

header img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: block;
}

header a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
    transition: opacity 0.2s;
}

header a:hover {
    color: var(--color-text);
    opacity: 1;
}

.brand-name {
    font-family: var(--font-brand);
}

/* --------------------------------------------------------------------------
   Main Content
   -------------------------------------------------------------------------- */
main {
    padding: 2rem 2rem 4rem;
    max-width: 800px;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.9em;
}

.effective-date {
    opacity: 0.7;
    margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
footer {
    padding: 2rem;
    font-size: 0.875rem;
    opacity: 0.6;
}

footer a {
    color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Page-Specific: Home
   -------------------------------------------------------------------------- */
body.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    line-height: normal;
}

.home .container {
    text-align: center;
    max-width: 600px;
}

.home .logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
}

.home .logo img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.home h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.home .tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.home .tagline-sub {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-top: 1rem;
    margin-bottom: 4rem;
}

.home .coming-soon {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 1rem;
}

.home .badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.home .badge {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.home .badge:hover {
    opacity: 0.7;
}

.home footer {
    position: fixed;
    bottom: 2rem;
}

.home footer a {
    text-decoration: none;
}

.home footer a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   Page-Specific: Contact
   -------------------------------------------------------------------------- */
body.contact main {
    padding: 3rem 2rem;
    max-width: 600px;
}

body.contact h1 {
    margin-bottom: 1.5rem;
}

body.contact .email {
    font-size: 1.1rem;
    line-height: 1.8;
}

body.contact .email a {
    text-decoration: none;
}

body.contact footer {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
}

/* --------------------------------------------------------------------------
   Page-Specific: FAQ
   -------------------------------------------------------------------------- */
.faq-item {
    margin-bottom: 2rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.faq-answer {
    margin-bottom: 1rem;
}
