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

body {
    background-color: #000000; /* Pure black body */
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styling */
.site-header {
    background-color: #1f1f1f;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 70px;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    position: relative; /* Context for absolute positioning layouts */
}
/* Logo Sizing */
/* Logo Setup inside the Button Container */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 115; /* Keeps text logo layered on top of the menu graphic */
    
    /* Nudge properties */
    position: relative;
    top: 23%; /* Increase or decrease this pixel value to nudge it further down */
}

.header-logo {
    height: 50px; /* Adjust height based on your asset's aspect ratio */
    width: auto;
    display: block;
}

/* Master Interactive Trigger Layout */
.nav-trigger {
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0;
    outline: none;
}

/* Home Landing Stage Configurations */
.home-hero-stage {
    height: calc(100vh - 70px); /* Lock the height exactly to the visible window minus the header */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    padding: 2rem;
    box-sizing: border-box;
    
    /* Center correction */
    position: relative;
    margin-bottom: 0; 
}

.hero-logo-frame {
    max-width: 500px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Fine-tune nudge */
    position: relative;
    top: -20px; /* Counter-balances the visual weight of the sticky header above it */
}

.brand-hero-logo {
    width: 100%;
    height: auto;
    display: block;
    max-height: 50vh; /* Keeps it perfectly proportioned on shorter laptop screens */
    object-fit: contain;
}


/* Intersecting Overlapping Menu Graphic */
.trigger-graphic {
    position: absolute;
    bottom: 0; /* Anchors the graphic's frame box to the baseline */
    left: 50%;
    transform: translate(-50%, 50%); /* Centers horizontally, splits vertical boundary 50/50 */
    z-index: 110; /* Lower z-index than logo-wrapper so it overlays cleanly behind the text logo */
    height: auto;
    width: 60px; /* Adjust size as needed for asset scale */
    display: block;
}

/* 400px Drawer Panels Layout */
.rollout-nav {
    position: absolute;
    top: 70px; /* Snaps flush below the 100px header mark */
    left: 0;
    width: 100%;
    height: 0; /* Closed default */
    background-color: #1f1f1f;
    overflow: hidden;
    transition: height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 105;
    border-bottom: 1px solid #2a2a2a;
}

.rollout-nav.open {
    height: 225px; /* Target deployment size */
}

/* Interior Content Configurations */
.nav-drawer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Tightened gap for a more cohesive, intentional layout */
    height: 100%;
}

/* Tagline Styling */
.nav-tagline {
    color: #ffffff;
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: 0.15em; /* Elegant, spaced-out typography */
    margin-top: 0.5rem; /* Nudges it down just right from the menu graphic edge */
    text-align: center;
    opacity: 0.85;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: #ffffff;
}

.nav-app-store .app-store-btn img {
    height: 35px;
    width: auto;
}

/* Main Content Layout */
.policy-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.policy-meta {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 2rem;
}

.lead-text {
    font-size: 1.1rem;
    color: #ffffff;
}

.separator {
    border: 0;
    height: 1px;
    background: #1f1f1f;
    margin: 2.5rem 0;
}

section {
    margin-bottom: 2.5rem;
}

h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #b3b3b3;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.75rem;
    color: #b3b3b3;
}

.email-link {
    color: #ffffff;
    text-decoration: underline;
}

/* Permanent Footer Architecture */
.site-footer {
    background-color: #1f1f1f;
    border-top: 1px solid #2a2a2a;
    padding: 5rem 2rem 0rem 2rem; /* Clean, stable frame padding */
    margin-top: 8rem;
    position: relative; /* This is the parent anchor the graphic calculates against */
    width: 100%;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Overlapping Footer Accent Graphic Setup */
.footer-menu-accent {
    position: absolute;
    top: 0; /* Snaps the graphic's center point exactly onto the border line */
    left: 50%;
    transform: translate(-50%, -50%); /* Shifts exactly 50% of its height up, splitting the asset in half */
    z-index: 10;
}

.footer-accent-graphic {
    height: auto;
    width: 60px; /* Locked design scale */
    display: block;
}

/* Master Vertical Stack Content Framework */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem; 
    text-align: center;
}

/* Your Custom Positioned Logo Wrapper */
.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -70px; /* Pulls your branding cleanly up over the graphic's bottom half */
    position: relative;
    z-index: 25; /* Higher depth layer keeps it floating cleanly on top */
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
}
/* Tagline Styling */
.footer-tagline {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    opacity: 0.85;
    margin-top: -0.5rem; /* Keeps a crisp spacing distance right below your shifted logo */
}
/* Horizontal Link Menu */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem; /* Mirrors header alignment width spacing */
    flex-wrap: wrap;
    margin-bottom: .5rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Badge Control Box */
.footer-app-store .app-store-btn img {
    height: 35px;
    width: auto;
}

/* Social Icon Container Elements */
.footer-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* Clean space between platform paths */
}

.social-icon {
    height: 38px; /* Classic, clean size layout metric for interface designs */
    width: auto;
    opacity: 0.6;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Copyright Baseline Footer block */
.footer-bottom {
    margin-top: 1rem;
    font-size: 0.65rem;
    color: #666666;
    border-top: 1px solid #2a2a2a;
    width: 100%;
    padding-top: .5rem;
}
/* Support Page Master Framework */
.support-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.support-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Custom Component Layout Troubleshooting Blocks */
.support-section {
    margin-bottom: 3.5rem;
}

.support-section h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    border-left: 3px solid #1f1f1f;
    padding-left: 15px;
}

/* Clean Info Module Cards */
.trouble-card {
    background-color: #0d0d0d;
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.trouble-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.trouble-card p {
    color: #b3b3b3;
    margin-bottom: 1rem;
}

/* Specific Content Box Callouts */
.nested-note {
    background-color: #1f1f1f;
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.nested-note p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Communication Panel */
.contact-panel {
    background-color: #1f1f1f;
    border-radius: 8px;
    padding: 2.5rem;
    border: 1px solid #2a2a2a;
}

.support-email {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
}

.email-details-box {
    margin-top: 1.5rem;
    background-color: #000000;
    padding: 1.5rem;
    border-radius: 6px;
}

.email-details-box h4 {
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* Outro Framework */
.support-footnote {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-footnote p {
    font-size: 1rem;
    color: #818181;
    line-height: 1.6;
}

.policy-container h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}