/* ===== HOMEPAGE SPECIFIC STYLES ===== */
/* Styles specific to index.html */

/* ===== MAIN CONTENT ===== */
#main-content {
    padding-top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

#main-content.visible {
    opacity: 1;
}

#main-content.show-immediately {
    opacity: 1;
}

/* ===== HERO SECTION ===== */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed from center to flex-start */
    height: calc(100vh - 1.5rem); /* Fixed height to show nav-spacer peek */
    max-height: calc(100vh - 1.5rem); /* Prevent hero from extending beyond */
    width: 100%;
    overflow: hidden;
    /* Responsive padding that scales across all screen sizes */
    /* Mobile: 6.5rem (104px headers), Large: 12.5rem (headers + breathing room) */
    padding-top: clamp(6.5rem, 10vh + 4rem, 12.5rem);
    padding-left: clamp(1rem, 3vw, 3rem);
    padding-right: clamp(1rem, 3vw, 3rem);
    padding-bottom: 2rem;
    z-index: 1;
}

/* Ensure body-container is positioned correctly for index page */
.body-container {
    margin-top: calc(100vh - 1.5rem) !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    /* padding-top is handled by body.css responsive rules with #hero .hero-content */
    /* height: 100vh; */ /* REMOVED - let content flow naturally */
    box-sizing: border-box;
}

/* ===== VIDEO BACKGROUND ===== */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: black; /* Black background behind video */
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--video-overlay);
    z-index: 0;
    pointer-events: none;
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background-color: var(--background-gradient-start);
    transition: opacity 1.2s ease-out;
    /* opacity controlled by JavaScript for fade transitions */
}

/* ===== HERO TYPOGRAPHY ===== */
.main-title {
    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 8vw, 6rem); /* Responsive size that scales with viewport */
    line-height: 1.1;
    width: 100%;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
}

/* Default span styling - will be overridden by responsive styles */

.small-title {
    margin-top: 1rem !important; /* 1rem space above unlock elite line */
    font-size: clamp(2.5rem, 7vw, 4.2rem) !important; /* Increased font size */
}

.powered-by {
    font-family: proxima-nova, sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: -0.2rem 0 0.5rem 0;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-title {
    font-family: proxima-nova, sans-serif;
    font-size: clamp(2.25rem, 5.6vw, 3.75rem);
    color: rgba(255, 255, 255, 0.98);
    font-weight: bold;
    text-transform: capitalize;
    text-align: center;
    margin: 1rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.mobile-break {
    display: inline;
}

.skin-line {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.26rem, 2.88vw, 1.584rem); /* Increased by 20% from previous 10% increase */
    color: rgba(255, 255, 255, 0.9);
    font-weight: normal; /* Removed bold */
    text-decoration: underline;
    text-align: center;
    margin: 1.2rem 0 0.3rem 0; /* Brought much closer to world line */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.features {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 5.5rem 0 0.8rem 0 !important; /* UPDATED: Force override any conflicting rules */
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: clamp(1rem, 3vw, 1.8rem);
    text-align: center;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1rem;
}

/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem; /* Pushed further down */
    margin-bottom: 1rem;
    width: auto;
}

.btn {
    display: inline-block;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
    border: none;
    max-width: 100%;
    min-height: 2.75rem; /* Minimum touch target */
}

#hero .primary-btn,
.hero-content .primary-btn {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent)) !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2) !important;
    transform: translateY(0) !important;
    transition: all 0.3s ease !important;
    padding: 0.77rem 1.8rem !important; /* Reduced by 10% */
    border-radius: 50px !important;
    font-weight: 500 !important;
    font-size: 0.99rem !important; /* Reduced by 10% */
    width: auto !important;
    min-width: min(162px, 80vw) !important; /* Reduced by 10% */
    display: inline-block !important;
    text-decoration: none !important;
    cursor: pointer !important;
    font-family: 'Montserrat', sans-serif !important;
    text-align: center !important;
    border: none !important;
    max-width: 100% !important;
    min-height: 2.75rem !important; /* Minimum touch target */
}

#hero .primary-btn:hover, 
#hero .primary-btn:focus,
.hero-content .primary-btn:hover, 
.hero-content .primary-btn:focus {
    background: linear-gradient(135deg, #00D1E8, #00E07A) !important;
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.3) !important;
    transform: translateY(-2px) !important;
}


/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.8s ease-out;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-gradient-start);
    z-index: 2000;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.dark-overlay.fading {
    opacity: 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2001;
}

.intro-logo {
    max-width: 50%;
    height: auto;
    opacity: 1;
    z-index: 2002;
    transition: opacity 0.4s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Ultra-wide screens (1920px+) */
@media screen and (min-width: 1920px) {
    .hero {
        padding-top: 12.5rem; /* Maximum spacing on large screens */
    }

    .main-title {
        max-width: 70%;
        font-size: clamp(4rem, 5vw, 6rem);
    }
}

/* Large screens (desktops 1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
    .hero {
        padding-top: clamp(10rem, 12vh, 12rem);
    }

    .main-title {
        max-width: 75%;
    }
}

/* Standard desktops (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
    .hero {
        padding-top: clamp(9rem, 11vh, 11rem);
    }

    .main-title {
        max-width: 80%;
    }
}

/* Small laptops (MacBook Pro 13", 1024px - 1199px) */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .hero {
        padding-top: clamp(8rem, 10vh, 10rem);
    }

    .logo img {
        height: 2.4rem;
    }

    .main-title {
        font-size: clamp(2.8rem, 7vw, 4.2rem);
    }
}

/* Tablets (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hero {
        padding-top: clamp(7rem, 9vh, 9rem);
    }

    .logo img {
        height: 2.4rem;
    }

    .main-title {
        font-size: clamp(2.8rem, 7vw, 4.2rem);
    }
}

/* Desktop title behavior */
@media (min-width: 768px) {
  .main-title {
    white-space: nowrap;
    word-break: normal;
    hyphens: none;
    max-width: 100vw;
    overflow: visible;
    margin-top: 1rem;
  }
  .main-title span {
    display: inline-block;
    margin: 0 0.6rem;
  }
  .tagline {
    margin-top: 1.2rem;
  }
  .features {
    margin-top: 1.5rem; /* Updated to match main rule */
  }
}

/* Mobile styles - Base font scaling and layout */
@media screen and (max-width: 767px) {
    .hero {
        padding-top: 6.5rem; /* Just clear headers on mobile */
    }

    html {
        font-size: 15px; /* Slightly smaller base for phones */
    }

    #hero .hero-content h1.main-title.small-title {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        white-space: normal !important;
        word-break: break-all !important;
        hyphens: auto !important;
        text-align: center !important;
        line-height: 1.1 !important;
        word-spacing: normal !important;
        font-size: calc(clamp(2.5rem, 8vw, 6rem) * 1.18) !important;
    }
    
    .main-title span {
        display: block;
        text-align: center;
        margin-bottom: 1.2rem;
    }
    
    .main-title span:last-child {
        margin-bottom: 0;
    }
    
    .mobile-break {
        display: block;
    }
    
    .small-title {
        /* Removed margin-top - let body.css handle spacing */
    }
    
    /* Removed .hero-content padding overrides - let body.css handle responsive spacing */
}

/* Small phones (iPhone SE, small Androids - 375px to 480px) */
@media screen and (min-width: 375px) and (max-width: 480px) {
    .hero {
        padding-top: 6.5rem;
    }

    html {
        font-size: 14.5px;
    }

    /* Let body.css handle hero-content padding */

    .features {
        white-space: normal;
        word-spacing: normal;
    }

    #hero .primary-btn,
    .hero-content .primary-btn {
        padding: 0.77rem 1.8rem !important;
        font-size: 0.99rem !important;
        min-width: min(162px, 80vw) !important;
    }
}

/* Very small phones (iPhone SE 1st gen, small devices - 320px to 374px) */
@media screen and (max-width: 374px) {
    .hero {
        padding-top: 6rem; /* Slightly less padding for tiny screens */
    }

    html {
        font-size: 13.5px; /* Smaller base for very small phones */
    }

    /* Let body.css handle hero-content padding */

    .main-title {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }

    .features {
        white-space: normal;
        word-spacing: normal;
        font-size: 0.85rem;
    }

    #hero .primary-btn,
    .hero-content .primary-btn {
        padding: 0.7rem 1.5rem !important;
        font-size: 0.9rem !important;
        min-width: min(150px, 85vw) !important;
    }
}

/* Extra small screens */
@media screen and (max-width: 320px) {
    /* Removed .hero-content padding overrides - let body.css handle responsive spacing */
}

/* ===== PAST VS FUTURE SECTION (1.25) - INDEX PAGE ONLY ===== */
/* Side-by-side text and image layout */
/* ===== SECTION 1.25: PROBLEM STATEMENT - THE OLD WAY ===== */
.index-past-future-section {
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 1000px;
    padding: 6rem calc((100vw - min(85vw, 1400px)) / 2) 6rem calc((100vw - min(85vw, 1400px)) / 2);
    margin-top: 0; /* Changed from 4rem to 0 - no gap between green and cyan boxes */
    background: #FFFFFF; /* Changed to white */
}

/* Row container - each row is a flex container */
.row-container {
    display: flex;
    width: 100%;
    height: 50%;
    min-height: 500px;
    gap: 2rem;
}

/* Add margin between rows */
.top-row {
    margin-bottom: 6rem;
}

/* TOP ROW: Image (3/5) | Text (2/5) */
.image-section-left {
    flex: 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.text-section-right {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 3rem 3rem 2rem;
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif;
}

/* Main heading - Bold & Large - Increased by 25% */
.text-section-right .main-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.25rem, 3.75vw, 3.125rem);
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.2;
    color: #000000 !important;
}

/* Pain points list */
.text-section-right .pain-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.text-section-right .pain-points li {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 500;
    margin: 0.7rem 0;
    line-height: 1.5;
    color: #000000 !important;
    position: relative;
    padding-left: 1.5rem;
}

.text-section-right .pain-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000 !important;
    font-size: 1.2em;
}

/* BOTTOM ROW: Text (2/5) | Image (3/5) - Has heading, bullets, and impact line */
.text-section-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem 3rem 3rem;
    color: #000000 !important;
    font-family: 'Montserrat', sans-serif;
}

/* Struggle heading in bottom row */
.text-section-left .struggle-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    color: #000000 !important;
}

/* Pain points list in bottom row */
.text-section-left .pain-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.text-section-left .pain-points li {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 500;
    margin: 0.7rem 0;
    line-height: 1.5;
    color: #000000 !important;
    position: relative;
    padding-left: 1.5rem;
}

.text-section-left .pain-points li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000 !important;
    font-size: 1.2em;
}

/* Impact line - "Until now..." */
.text-section-left .impact-line {
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    font-weight: 700;
    margin-top: 3.5rem;
    color: #000000 !important;
}

.text-section-left .impact-line.gradient-text {
    color: #000000 !important;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #000000 !important;
    background-clip: unset;
    font-weight: 700;
}

.image-section-right {
    flex: 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-section-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    opacity: 1;
}

/* Specific rule for bottom row image - higher specificity */
.index-past-future-section .bottom-row .image-section-right {
    opacity: 1;
}

.index-past-future-section .bottom-row .image-section-right img {
    opacity: 1;
    filter: none;
}

/* Mobile: Stack all elements vertically */
@media (max-width: 768px) {
    .index-past-future-section {
        min-height: auto;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-top: 0; /* Changed from 2rem to 0 - cyan box touches green box on mobile */
        padding: 2rem 0 2rem 0;
    }

    .row-container {
        flex-direction: column;
        min-height: auto;
        height: auto;
        gap: 0;
    }

    /* Top Row Mobile: Text first, then image */
    .top-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .top-row .text-section-right {
        order: 1;
        padding: 2rem 1.5rem;
        align-items: center;
    }

    .top-row .image-section-left {
        order: 2;
        padding: 0 1.5rem;
    }

    .top-row .image-section-left img {
        opacity: 1;
        width: 100%;
        height: auto;
        display: block;
    }

    .text-section-right .main-heading {
        font-size: clamp(1.875rem, 6.25vw, 2.5rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .text-section-right .pain-points li {
        font-size: clamp(0.9rem, 3.2vw, 1.1rem);
        margin: 0.6rem 0;
    }

    /* Bottom Row Mobile: Split text elements to reorder with image */
    .bottom-row {
        display: flex;
        flex-direction: column;
    }

    .bottom-row .text-section-left {
        display: contents;
    }

    .bottom-row .text-section-left .struggle-heading {
        order: 1;
        padding: 2rem 1.5rem 0 1.5rem;
    }

    .bottom-row .text-section-left .pain-points {
        order: 2;
        padding: 0 1.5rem;
        margin-bottom: 2rem;
    }

    .bottom-row .image-section-right {
        order: 3;
        padding: 0 1.5rem;
    }

    .bottom-row .text-section-left .impact-line {
        order: 4;
        padding: 2rem 1.5rem 0 1.5rem;
        margin-bottom: 0;
        text-align: center;
    }

    .bottom-row .image-section-right img {
        opacity: 1;
        width: 100%;
        height: auto;
        display: block;
        filter: none;
    }

    .text-section-left .struggle-heading {
        font-size: clamp(1.875rem, 6.25vw, 2.5rem);
        margin-bottom: 1.2rem;
    }

    .text-section-left .pain-points {
        margin-bottom: 1.5rem;
    }

    .text-section-left .pain-points li {
        font-size: clamp(0.9rem, 3.2vw, 1.1rem);
    }

    .text-section-left .impact-line {
        font-size: clamp(1.95rem, 7.5vw, 2.7rem);
        margin-top: 2.5rem;
    }

    .text-section-left .impact-line.gradient-text {
        font-size: clamp(1.95rem, 7.5vw, 2.7rem);
    }
}

/* ===== SECTION 1.15: NEEDLE-FREE TRANSITION ===== */
.transition-section.needle-free-transition {
    background: #000000 !important;
}

.transition-section.needle-free-transition .transition-main {
    font-size: clamp(2.2rem, 6vw, 3.5rem); /* Mobile size - applies to all screens by default */
    text-shadow: none;
    line-height: 1.2;
    color: #FFFFFF !important;
}

.transition-section.needle-free-transition .transition-main div {
    margin: 0;
}

.transition-section.needle-free-transition .gradient-text {
    color: #FFFFFF !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

/* Tablet/Laptop/Desktop: 20% smaller than original desktop size */
@media (min-width: 769px) {
    .transition-section.needle-free-transition .transition-main {
        font-size: clamp(2.4rem, 5.6vw, 4.4rem); /* 20% reduction: was clamp(3rem, 7vw, 5.5rem) */
    }
}

/* ===== SELECTED PARTNERS SECTION ===== */
.selected-partners-section {
    padding: 6rem 0;
    background: #f3f3f3;
    text-align: center;
}

.selected-partners-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 4rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.partners-grid.row-2 {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .selected-partners-section {
        padding: 4rem 0;
    }

    .selected-partners-section h2 {
        margin-bottom: 3rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .partners-grid.row-2 {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }

    .partners-grid.row-2 .partner-logo:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* ==========================================
   FEATURE: SECTION 1.15 REVEAL EFFECT (TASK 2)
   Purpose: Section 1.1 always visible with WHITE background, hide CHILDREN until reveal
   To disable: Comment out or delete this section (lines 892-922)
   ========================================== */

/* Section 1.1 ALWAYS visible with BLACK BACKGROUND - Higher specificity to override body.css */
#product-section.product-intro {
    background: #000000 !important;
    background-color: black !important;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 4rem calc((100vw - min(85vw, 1400px)) / 2) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    color: #FFFFFF !important;
}

/* Force white text color for all children of section 1.1 */
#product-section.product-intro * {
    color: #FFFFFF !important;
}

/* Preserve gradient text styling */
#product-section.product-intro .gradient-text {
    background: linear-gradient(135deg, var(--primary-accent) 0%, var(--secondary-accent) 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* Hide CHILDREN of section 1.1 initially */
#product-section .awaiting-reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    /* NO transition here - we add it when revealing to avoid conflicts */
}

/* Reveal CHILDREN with faster fade - 1 second smooth transition */
#product-section .revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 1s cubic-bezier(0.33, 0, 0.2, 1), transform 1s cubic-bezier(0.33, 0, 0.2, 1) !important;
    transition-delay: 0s !important;
}

/* ========== END SECTION 1.15 REVEAL STYLES ========== */