:root{
    --bg: #000000;
    --panel: #0f0f0f;
    --muted-gray: rgba(210,210,210,0.9);
    --orange: #ff8a00; /* primary accent */
    --orange-dark: #cc6a00;
    --sepia: #6f3f1a; /* subtle earth-tone */
    --section-panel: rgba(26,26,26,0.95);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
    background: var(--bg);
    color:#eee;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;
    /* Reserve space for the fixed header so content (catchy header, hero, etc.) sits below it */
    padding-top: 72px;
}

/* Header (floating / sticky, semi-transparent) */
.sticky-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
    gap:20px;
    z-index:9999;

    background: linear-gradient(180deg, rgba(70,70,70,0.55), rgba(10,10,10,0.5));
    border-bottom: 1px solid rgba(255,255,255,0.03);
    backdrop-filter: blur(6px) saturate(120%);
}

/* Logo area left */
.logo-container{display:flex;align-items:center}
.logo-link{display:inline-block}
#logo{
    height:48px;
    width:auto;
    object-fit:contain;
    border-radius:6px;
    background:transparent;
    cursor:pointer;
    /* leave blank src in html; place image in public and set src */
}

/* Nav */
.main-nav{
    display:flex;
    align-items:center;
    gap:18px;
}

.main-nav .nav-link,
.main-nav {
    color:var(--muted-gray);
    text-decoration:none;
    font-weight:600;
    padding:8px 12px;
    border-radius:8px;
    transition: all 180ms ease;
    display:inline-block;
}

.login-btn{
    color:var(--white);
    text-decoration:none;
    font-weight:600;
    padding:8px 12px;
    border-radius:8px;
    transition: all 180ms ease;
    display:inline-block;
}

/* Hover effects for links */
.main-nav .nav-link:hover{
    color:var(--orange);
    transform:translateY(-2px);
}

/* Active / highlighted nav (JS toggles .active) */
.main-nav .nav-link.active{
    color:#ffd9a3;
    box-shadow: 0 6px 18px rgba(255,138,0,0.08), inset 0 -3px 0 rgba(255,138,0,0.12);
}

/* Login button styling */
.login-btn{
    background:var(--orange-dark);
    color:#0b0b0b;
    padding:8px 14px;
    border-radius:18px;
    box-shadow: 0 3px 10px rgba(255,138,0,0.12);
}
.login-btn:hover{
    background:var(--orange-dark);
    color:#ffffff;
    transform:translateY(-2px);
}
.login-btn:active{
    transform:translateY(0);
    box-shadow:none;
}

/* Hero */
.hero{
    min-height: calc(100vh - 72px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:80px 20px 60px; /* reduced top padding for a tighter layout */
    gap:18px;
}

/* Catchy header styles */
.catchy-header-section{
    width:100%;
    background: linear-gradient(90deg, #ff9800 0%, #ff8a00 100%);
    color: #fff;
    padding: 12px 0;
    box-shadow: 0 6px 22px rgba(0,0,0,0.18);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.catchy-header-inner{
    max-width:1100px;
    margin:0 auto;
    padding:6px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    justify-content:center;
}
.catchy-icon{font-size:20px; display:inline-block; transform:translateY(1px)}
.catchy-header-content{
    font-size:1.06rem;
    font-weight:700;
    letter-spacing:0.2px;
    color:#fff;
    text-shadow:0 2px 10px rgba(0,0,0,0.12);
    margin:0;
}

@media (max-width:820px){
    .catchy-header-inner{padding:8px 14px}
    .catchy-header-content{font-size:0.98rem}
}

.hero-text{
    color:var(--orange);
    font-size: clamp(28px, 5vw, 56px);
    font-weight:800;
    letter-spacing:0.6px;
    line-height:1.05;
    margin-bottom:6px;
}

/* signup prompt under hero */
.signup-prompt{display:flex;flex-direction:column;align-items:center;gap:10px}
.signup-line{color:#fff;font-weight:500}
.signup-line .muted{color:rgba(255,255,255,0.75)}
.signup-btn{
    background:var(--orange);
    color:#0b0b0b;
    padding:10px 20px;
    border-radius:20px;
    text-decoration:none;
    font-weight:700;
    transition:all 160ms ease;
    display:inline-block;
}
.signup-btn:hover{background:var(--orange-dark); color:#fff; transform:translateY(-2px)}
.signup-btn:active{transform:translateY(0); box-shadow:none}

/* Sections */
.content-section{
    padding:80px 20px;
    min-height: 60vh;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
    opacity:0;
    transform:translateY(26px);
    transition:opacity 520ms ease, transform 520ms ease;
}

/* becomes visible by JS observer */
.content-section.visible{
    opacity:1;
    transform:translateY(0);
}

/* Section title with orange color and double lines beneath */
.section-title{
    color:var(--orange);
    font-size: clamp(20px, 3.2vw, 30px);
    font-weight:800;
    text-align:center;
    margin-bottom:8px;
    position:relative;
    padding-bottom:26px;
}

/* decorative lines: white then black */
.section-title::after,
.section-title::before{
    content:"";
    display:block;
    height:4px;
    width:90px;
    margin:6px auto 0;
    border-radius:4px;
}
.section-title::after{
    background: rgba(255,255,255,0.95); /* white line above */
    transform: translateY(6px);
}
.section-title::before{
    background: rgba(0,0,0,0.9); /* black line below */
    transform: translateY(10px);
}

/* content box (rounded rectangle, inner orange accent) */
.content-box{
    background: var(--section-panel);
    border-radius:16px;
    padding:28px;
    max-width:1000px;
    width:100%;
    margin: 0 auto;
    color:#ddd;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    border-left: 6px solid rgba(255,138,0,0.12); /* subtle inside orange accent */
    text-align:center; /* center content */
}

/* Footer */
.site-footer{
    margin-top:60px;
    background:linear-gradient(180deg, rgba(12,12,12,0.95), rgba(6,6,6,0.95));
    color:#ddd;
    padding:36px 20px 48px;
}
.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:20px;
    max-width:1100px;
    margin:0 auto 12px;
}
.footer-section h3{color:var(--orange); margin-bottom:8px}
.footer-section a{color:#ddd; text-decoration:none; display:block; margin-bottom:6px}
.footer-bottom{max-width:1100px;margin:0 auto;text-align:center;padding-top:12px;border-top:1px solid rgba(255,255,255,0.03)}
.founder-link{color:rgba(255,255,255,0.04); font-size:0.85rem; text-decoration:none; margin-left:12px}

/* small screens adjustments */
@media (max-width:820px){
    .main-nav{gap:8px}
    .hero-text{font-size:32px}
    .sticky-header{padding:0 12px;height:64px}
    body{padding-top:64px}
    #logo{height:40px}
    .content-box{padding:20px}
}

/* Add these media queries at the end of your CSS file */

@media screen and (max-width: 768px) {
    /* Header mobile adjustments */
    .sticky-header {
        padding: 0 10px;
        height: 60px;
    }
    body{padding-top:60px}

    .main-nav {
        gap: 8px;
    }

    .nav-link {
        font-size: 14px;
        padding: 6px 8px;
    }

    .login-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    /* Logo size for mobile */
    #logo {
        height: 36px;
    }

    /* Hero section mobile */
    .hero-text {
        font-size: 28px;
        padding: 0 15px;
    }

    .signup-prompt {
        font-size: 15px;
    }

    /* Section adjustments */
    .content-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .content-box {
        padding: 20px 15px;
        font-size: 15px;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section {
        padding: 0 15px;
    }

    .footer-section h3 {
        font-size: 18px;
    }
}

/* Extra small devices */
@media screen and (max-width: 480px) {
    /* Hide less important nav items on very small screens */
    .main-nav .nav-link:not(:last-child) {
        display: none;
    }

    /* Show menu button for mobile navigation */
    .sticky-header {
        justify-content: space-between;
    }

    /* Further reduce hero text */
    .hero-text {
        font-size: 24px;
    }

    /* Adjust section spacing */
    .content-section {
        padding: 40px 10px;
    }

    .content-box {
        padding: 15px 12px;
    }
}

/* For landscape orientation */
@media screen and (max-height: 480px) and (orientation: landscape) {
    .hero {
        padding: 90px 20px 40px;
    }

    .hero-text {
        font-size: 22px;
    }
}

/* ...existing code... */

/* ...existing code... */

/* Hero refinements - SOFT, HAPPY, BOLD FEEL */
.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 28px;
}

.hero-text {
    color: var(--orange);
    font-size: clamp(32px, 5.5vw, 58px);
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.15;
    margin-bottom: 16px;
    text-align: center;
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    font-style: italic;
}

/* -------------------- Hero Section -------------------- */
.hero-accent {
    display: block;
    font-weight: 800;
    color: #fff;
    margin-top: 12px;
    font-size: clamp(22px, 3.2vw, 32px);
    font-style: italic;
    letter-spacing: 0.3px;
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 840px;
    margin: 12px auto 24px;
    font-size: 18px;
    text-align: center;
    line-height: 1.65;
    font-weight: 500;
}

/* Content sections - BIGGER TYPOGRAPHY */
.content-section {
    padding: 50px 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.4px;
}

.content-box {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.012));
    border-radius: 12px;
    border: 1px solid rgba(255, 138, 0, 0.12);
}

/* Vision box */

.vision-heading {
    color: var(--orange);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    text-align: center;
}

.vision-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
}

.highlight-bold {
    color: var(--orange);
    font-weight: 800;
    font-style: italic;
}

/* About box */
.about-box {
    display: grid;
    gap: 16px;
}

.about-heading {
    color: var(--orange);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.about-intro {
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.75;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 18px;
    font-weight: 500;
}

/* Features */
.features {
    margin-top: 16px;
    background: rgba(60, 60, 60, 0.35);
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
}

.features-title {
    color: var(--orange);
    font-weight: 800;
    margin-bottom: 14px;
    font-size: 18px;
}

.features-list {
    list-style: none;
    display: grid;
    gap: 14px;
    padding-left: 0;
    color: rgba(255, 255, 255, 0.82);
}

.features-list li {
    padding-left: 0;
    line-height: 1.75;
    font-size: 16px;
    font-weight: 500;
}

.feature-label {
    color: #fff;
    font-weight: 800;
    display: inline;
}

.hidden { display: none !important; }

/* Goals */
.goals-box {
    display: block;
}

.goals-intro {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 16px;
    text-align: center;
    font-size: 17px;
    font-weight: 500;
}

.goals-list {
    margin-left: 24px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 920px;
    margin: 0 auto;
    font-size: 16px;
}

.goals-list li {
    margin-bottom: 14px;
    font-weight: 500;
}

.goal-label {
    color: #fff;
    font-weight: 800;
}

/* Contact - side by side cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.contact-card {
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.2), rgba(60, 60, 60, 0.15));
    padding: 24px;
    border-radius: 12px;
    text-align: left;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 138, 0, 0.15);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
}

.contact-card h4 {
    color: var(--orange);
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 800;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-email {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.2s;
}

.contact-email:hover {
    text-decoration: underline;
    color: #ffb84d;
}

/* Footer */
.site-footer {
    background: rgba(30, 30, 30, 0.8);
    border-top: 1px solid rgba(255, 138, 0, 0.1);
    padding: 32px 28px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.footer-section h3 {
    color: var(--orange);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-section a,
.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;
    display: block;
}

.footer-section a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 138, 0, 0.1);
}

/* Responsive */
@media (max-width: 820px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-text {
        font-size: clamp(24px, 4vw, 36px);
    }

    .hero-accent {
        font-size: clamp(18px, 2.5vw, 24px);
    }

    .section-title {
        font-size: 26px;
    }

    .vision-heading,
    .about-heading {
        font-size: 22px;
    }
}


/* ============================================================
  GENERAL UTILITY & COMPONENT STYLES
  ============================================================ */

/* Signup Prompt */
.signup-prompt { 
    margin-top: 18px; 
    display: flex; 
    gap: 12px; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
}
.signup-btn { 
    padding: 12px 26px; 
    font-size: 15px; 
}

/* Vision Box */
.vision-box { 
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); 
}
.vision-heading { 
    color: #fff; 
    font-size: 20px; 
    margin-bottom: 8px; 
}
.vision-text { 
    color: var(--muted-gray); 
    font-size: 15px; 
    line-height: 1.6; 
    max-width: 920px; 
    margin: 0 auto; 
    text-align: center; 
}

/* About Box */
.about-box { 
    display: grid; 
    gap: 12px; 
}
.about-heading { 
    color: #fff; 
    font-size: 20px; 
    margin-bottom: 6px; 
    text-align: center; 
}
.about-text { 
    color: var(--muted-gray); 
    line-height: 1.6; 
    text-align: center; 
    max-width: 900px; 
    margin: 0 auto; 
}

.philosophy { 
    margin-top: 8px; 
    background: rgba(255,255,255,0.015); 
    padding: 14px; 
    border-radius: 10px; 
}
.philosophy-title { 
    color: var(--orange); 
    font-weight: 800; 
    margin-bottom: 8px; 
}
.philosophy-list { 
    list-style: none; 
    display: grid; 
    gap: 8px; 
    padding-left: 0; 
    color: var(--muted-gray); 
}
.philosophy-list li { 
    padding-left: 6px; 
    line-height: 1.55; 
}
.about-note { 
    margin-top: 8px; 
    color: rgba(255,255,255,0.75); 
    font-style: italic; 
    text-align: center; 
}

/* Goals */
.goals-box { 
    display: block; 
}
.goals-intro { 
    color: var(--muted-gray); 
    margin-bottom: 10px; 
    text-align: center; 
}
.goals-list { 
    margin-left: 18px; /* Original indent preserved */
    color: var(--muted-gray); 
    line-height: 1.6; 
    max-width: 920px; 
    margin: 0 auto; 
}

/* CTA Link - Use the detailed one and remove the duplicate basic one */
.cta-link {
    display: inline-block;
    color: #ff9800;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    margin-top: 12px;
    box-shadow: 0 2px 8px rgba(255,152,0,0.08);
}
.cta-link:hover {
    color: #f2c97d;
    text-decoration: underline;
}

/* Update CSS for the new plain text blocks */

/* Override old list properties for the converted <p> tags */
.installation-guide-content .install-steps {
    /* Reset list indentation */
    padding-left: 0; 
    margin: 0;
    /* Ensure color and spacing remains consistent */
    color: #ddd; 
    font-size: 14px;
    line-height: 1.6;
}

/* Ensure the benefits text doesn't flow weirdly */
.installation-guide-content .benefits-list {
    /* Reset list indentation */
    padding-left: 0; 
    margin: 0;
    /* Ensure text wraps correctly */
    text-align: center;
    line-height: 1.6;
    font-size: 13px;
    color: #ddd;
}
