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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #ffffff;
}

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

/* Header - White background like intunestuff.com */
header {
    background: #ffffff;
    color: #333;
    padding: 1.2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 50px;
    width: auto;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

nav a:hover {
    color: #C9A961;
}

.btn-contact {
    background: #C9A961;
    color: white;
    padding: 10px 24px;
    border-radius: 3px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.btn-contact:hover {
    background: #B8984D;
    color: white !important;
}

/* Hero Section - Dark teal background matching intunestuff.com */
.hero {
    background: linear-gradient(135deg, #0a2128 0%, #0d2d35 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #C9A961;
    color: white;
}

.btn-primary:hover {
    background: #B8984D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.8);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.version-info {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.version-badge {
    background: rgba(201, 169, 97, 0.9);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: white;
    font-size: 0.85rem;
}

.platform {
    opacity: 0.85;
    font-weight: 300;
}

.screenshot-placeholder {
    background: transparent;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: none;
}

.screenshot-placeholder img {
    max-width: 100%;
    height: auto;
    opacity: 0.95;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #C9A961;
    margin: 1.5rem auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.feature-card p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
}

.feature-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.feature-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: #ffffff;
}

.screenshots-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}

.screenshot-item {
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-item h4 {
    color: #333;
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.screenshot-item p {
    color: #666;
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: #f8f9fa;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.download-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.download-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.download-desc {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-download {
    background: #C9A961;
    color: white;
    padding: 14px 32px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background: #B8984D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.35);
}

.file-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.download-note {
    background: #fff8e6;
    border-left: 4px solid #C9A961;
    padding: 1.5rem;
    border-radius: 5px;
    max-width: 900px;
    margin: 3rem auto 0;
    line-height: 1.6;
}

.download-note code {
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #C9A961;
    font-size: 0.9rem;
}

/* Quick Start Section */
.quickstart {
    padding: 6rem 0;
    background: #ffffff;
}

.steps {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-number {
    background: #C9A961;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 400;
    font-size: 1.3rem;
}

.step-content p {
    line-height: 1.7;
    color: #666;
}

.step-content ul {
    margin-top: 0.5rem;
    line-height: 1.7;
}

.step-content em {
    color: #666;
    font-size: 0.95rem;
}

.step-content ol {
    margin-top: 0.5rem;
    line-height: 1.8;
    margin-left: 1.5rem;
}

.step-content ol li {
    margin-bottom: 0.5rem;
}

.vscode-download {
    margin: 1.5rem 0;
    text-align: center;
}

.btn-vscode {
    display: inline-block;
    background: #007ACC;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 122, 204, 0.3);
}

.btn-vscode:hover {
    background: #005A9E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 122, 204, 0.4);
}

.note-info {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 1rem;
    border-radius: 3px;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #333;
}

.code-block {
    background: #0a2128;
    border-radius: 5px;
    padding: 1.5rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.code-block code {
    font-family: 'Courier New', monospace;
    color: #C9A961;
    font-size: 0.9rem;
}

/* Modules & Dependencies Section */
.modules {
    padding: 6rem 0;
    background: #ffffff;
}

.modules-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.module-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s, box-shadow 0.3s;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.module-card h4 {
    color: #0a2128;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    word-break: break-word;
    overflow-wrap: break-word;
}

.module-purpose {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.module-card ul {
    list-style: none;
    margin: 1rem 0;
}

.module-card ul li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}

.module-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: bold;
}

.module-card ul li code {
    background: #ffffff;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #C9A961;
    border: 1px solid #e8e8e8;
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

.module-source {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888;
}

.module-source a {
    color: #C9A961;
    text-decoration: none;
    font-weight: 500;
}

.module-source a:hover {
    text-decoration: underline;
}

.installation-details {
    background: #f0f4f8;
    border-radius: 5px;
    padding: 2.5rem;
    margin-top: 3rem;
    border: 1px solid #d0dce6;
}

.installation-details h3 {
    color: #0a2128;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 400;
}

.install-info p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #555;
}

.install-info strong {
    color: #333;
    font-weight: 600;
}

.transparency-note {
    background: #fff3cd;
    border-left: 4px solid #C9A961;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 2rem;
    line-height: 1.6;
}

.transparency-note strong {
    color: #333;
}

/* Permissions Section */
.permissions {
    padding: 6rem 0;
    background: #f8f9fa;
}

.permissions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.permission-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.permission-card h4 {
    color: #333;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.permission-card ul {
    list-style: none;
}

.permission-card ul li {
    padding: 0.6rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.consent-note {
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 1.5rem;
    border-radius: 5px;
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: center;
    line-height: 1.6;
}

/* Feedback Section */
.feedback {
    padding: 6rem 0;
    background: #ffffff;
}

.feedback-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.feedback-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 3rem;
}

.feedback-form-wrapper {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.feedback-form .form-group {
    margin-bottom: 1.8rem;
}

.feedback-form label {
    display: block;
    margin-bottom: 0.6rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: #C9A961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 130px;
}

.feedback-form select {
    cursor: pointer;
}

.btn-submit {
    background: #C9A961;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #B8984D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.35);
}

.form-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.form-note a {
    color: #C9A961;
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

.feedback-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
}

.info-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
}

.info-card p {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.7;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.info-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #C9A961;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.info-card ul li strong {
    color: #333;
    font-weight: 500;
}

/* Footer */
footer {
    background: #0a2128;
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: #C9A961;
    font-weight: 400;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.disclaimer {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .feedback-content {
        grid-template-columns: 1fr;
    }
    
    .feedback-form-wrapper {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
