
html {
    scroll-behavior: smooth;
}

/* --- Global Variables & Reset --- */
:root {
    --brand-orange: #FF4500;
    --brand-navy: #001529;
    --light-bg: #e1e1e1;
    --text-dark: #1D1D1F;
    --border-light: #e1e1e1;
    --brand-beige: #d08e75;
	}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
	}

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
	}

h1 {
	font-size: 4.4rem;
    letter-spacing: -0.02em; 
    line-height: 1.1;
	}

h2 {
    letter-spacing: -0.02em;
    line-height: 1.1;
	}

p {
    letter-spacing: 0.01em;
	}

/* --- Navigation --- */
.topnav {
    background: var(--brand-navy);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
	}

.topnav .brand-logo {
    color: white;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: 1px;
	}

.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--brand-navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    padding-left: 2.6rem;
    transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
	}

.topnav.responsive .nav-links {
    right: 0;
	}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.2rem 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: color 0.3s;
	}

.nav-links a:hover { 
	color: var(--brand-orange); 
	font-weight: bold;
	}

.icon {
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1100;
	}

.nav-icon {
    height: 45px;
    width: auto;
    display: block;
    margin: 0 auto; 
	}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px; 
	}

/* --- Content Sections --- */
section {
	padding: 4rem 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	}

.hero {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    padding: 2rem;
    padding-bottom: 3rem;
    position: relative;
    overflow: hidden;
    color: white;
	}

/* The Slideshow Container */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Sits behind the text */
	}

/* Base Slide Style */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 25s infinite; /* 5 slides * 5 seconds each */
	}

.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 21, 41, 0.2); /* Subtle dark overlay */
	}

/* Animation Timing for 5 Images */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }

@keyframes heroFade {
    0% { opacity: 0; }
    5% { opacity: 1; }  /* Fade in */
    20% { opacity: 1; } /* Stay visible */
    25% { opacity: 0; } /* Fade out */
    100% { opacity: 0; }
	}

.hero-card, .hero-action {
    position: relative;
    z-index: 10;
	}
        
.hero-card {
    background-color: var(--brand-orange);
    margin: 0 1rem;
    padding: 1.5rem 1.5rem;
    border-radius: 40px;
    color: white;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
    width: 100%;
    margin-bottom: 3rem;
	}

.hero h1 {
    font-size: 2.3rem;
    color: white !important;
    line-height: 1;
    margin-bottom: 0.5rem;
	}

.hero .tagline {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    line-height: 1.2;
	}

.hero p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    font-weight: 400;
	}

.btn-primary-alt {
    background: white;
    color: var(--brand-orange);
    padding: 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
	}

.btn-primary {
    background: white;
    color: var(--brand-orange);
    padding: 0.5rem;
    border-radius: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1.2rem;
	}

/* --- Quickstart Card Layout --- */
.guide-container {
    padding: 4rem 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
	}

.guide-header {
    margin-bottom: 3rem;
    border-left: 5px solid var(--brand-orange);
    padding-left: 1.5rem;
	}

.guide-header h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
	}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
	}

.guide-card {
    background: var(--brand-orange);
    padding: 2.0rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
	}

.card-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 2px;
	}

.guide-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
	}
	
.guide-card h4 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    text-transform: uppercase;
	}

/* --- Troubleshooting App-Card Style --- */
.faq-section {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
	}

.faq-guide-card {
    background-color: var(--brand-orange);
    padding: 2.0rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
	}

.faq-card-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-navy);
    letter-spacing: 2px;
	}

.faq-card {
    background-color: var(--brand-orange);
    margin-bottom: 1.5rem;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	}

.faq-question {
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
	}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: rgba(255, 255, 255, 0.1); 
    padding: 0 2rem;
	}

.faq-card.active .faq-answer {
    max-height: 500px; 
    padding-bottom: 2rem;
    padding-top: 1rem;
	}

.faq-answer p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.5;
	}

/* The toggle icon (+) */
.faq-icon::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s ease;
	}

.faq-card.active .faq-icon::after {
    content: '−';
	}

.info-section {
    padding: 0.5rem auto;
	}

.pricing-card {
    padding: 0rem 2rem 0rem 2rem;    
    text-align: left;
    }

.card-tag {
    background: var(--brand-navy);
    color: var(--brand-orange);
    padding: 1.5rem 1.5rem;
    border-radius: 40px;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
	}

.price-point {
    font-size: 4rem;
    font-weight: 900;
    color: var(--brand-navy);
    line-height: 1;
    margin: 1rem 0;
	}

.price-point .currency { 
	font-size: 1.5rem; 
	vertical-align: top; 
	line-height: 1.7; 
	}
	
.price-point .period { 
	font-size: 1rem;
	}


.mission-card { 
    color: var(--brand-navy);
    padding: 0rem 0rem 2rem 0rem;
    border-radius: 40px;
    position: relative;
	}

.mission-card h3 {
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
	}

.mission-highlight {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    font-size: 1.3rem;
	}

/* --- Horizontal Carousel Styling --- */
.carousel-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 1.6rem  1rem 2rem;
    scrollbar-width: none;
	}

.carousel-container::-webkit-scrollbar {
    display: none; /* Hides scrollbar on Chrome/Safari */
	}

.step-card {
    flex: 0 0 85%; /* Shows a peek of the next card */
    scroll-snap-align: center;
    border-radius: 40px;
    padding: 2.5rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
	}

/* Color blocks matching your new direction */
.navy-card { background: var(--brand-navy); color: white; }
.orange-card { background: var(--brand-orange); color: white; }
.terracotta-card { background: #D28E75; color: white; }

.step-number {
    font-size: 5rem;
    font-weight: 900;
    opacity: 0.2;
    position: absolute;
    top: 6px;
    right: 20px;
	}

.card-text h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
	}

.app-mockup {
    width: 80%;
    align-self: left;
    margin-top: 1.5rem;
    border-radius: 30px;
	}

.download-card-content {
  display: flex;
  flex-direction: column; /* Stacks items vertically */
  align-items: center;    /* Centers items horizontally */
  gap: 20px;              /* Adds consistent space between image and button */
  margin-top: 16px;
}
	
.download-image {
    width: 60%;
    height: auto;
    margin-top: 0.2rem;
    border-style: solid;
    border-radius: 30px;
    border-width: 3px;
    border-color: white;
	}
	
.width-match {
  display: block;        /* Essential for links to respect width */
  width: 60%;            /* Your chosen width from earlier */
  margin: 0 auto;        /* Extra insurance for centering */
  text-decoration: none; /* Removes any weird link underlines */
}

.width-match img {
  width: 100%;           /* Makes the image fill the 60% link wrapper */
  display: block;
}

/* -------- Commitment Section -------- */
.commitment-section {
    background-color: var(--brand-navy);
    color: white;
    padding: 2rem 2.5rem;
    text-align: center;
	}

.commitment-container {
    max-width: 900px;
    margin: 0 auto;
	}

.commitment-section h2 {
    font-size: 2rem;
    margin: 1.5rem 0;
    letter-spacing: 1px;
	}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
    text-align: center;
	}

.promise h4 {
    color: var(--brand-orange);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
	}

.promise p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
	}

 /* ------ Footer Section ------ */   
    .download-footer {
    background: var(--brand-orange);
    color: white;
    padding: 3rem 1.5rem;
    text-align: center;
    border-top: 5px solid white;
	}

.download-container h2 {
    font-size: 2.0rem;
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    margin-bottom: 0.1rem;
	}

.download-sub {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 1.2rem;
	}

.download-reasons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
	}

.footer-hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 1rem auto;
	}

.reason-pill {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;    
    border: 1px solid rgba(255, 255, 255, 1.0);
    color: var(--brand-navy);
	}

.reason-pill i {
    color: white;
    margin-right: 6px;
    margin-top: -0.125em
	}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
	}

.store-link img {
    height: 50px;
    transition: transform 0.2s;
	}

.store-link:hover img {
    transform: scale(1.05);
	}

.trial-reminder {
    font-size: 1.2rem;
    letter-spacing: 1.1px;
    color: var(--brand-navy);
	}

.site-bottom {
    background: #000a12;
    padding: 2rem;
    text-align: center;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
	}

@media (max-width: 480px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    	}
    .store-link img {
        height: 45px;
    	}
}

/* -------- Legal Section -------- */
.legal-precis-card {
    background-color: var(--brand-navy);
    color: white;
    padding: 2.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
	}

.precis-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
	}

.precis-item h4 {
    color: var(--brand-orange);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    letter-spacing: 1px;
	}
	
.short-legal-scroll {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 2rem;
    max-height: 450px;
    overflow-y: scroll;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
	}

.full-legal-scroll {
    background: white;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 2rem;
    max-height: 600px;
    overflow-y: scroll;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
	}

.full-legal-scroll h5 {
    margin-top: 1.5rem;
    color: var(--brand-navy);
    text-transform: uppercase;
	}

/* --- Tablets and Small Desktops --- */
@media (min-width: 768px) {
    .precis-grid { 
        grid-template-columns: repeat(3, 1fr); 
    	}
    .commitment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    	}
}
    

/* --- Large Desktops --- */
@media (min-width: 992px) {
    .nav-links {
        position: static;
        height: auto;
        width: auto;
        flex-direction: row;
        background: transparent;
        padding-left: 0;
    	}
    .nav-links a {
        font-size: 0.9rem;
        margin: 0 0 0 1.5rem;
        letter-spacing: 1px;
   		}
    .icon { 
    	display: none;
    	}
    
    .nav-icon {
        height: 35px;
    	}

    #details .card-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr; 
        gap: 1.5rem;
        align-items: stretch;
        margin: 0 auto;
    	}

    #subscription-faq .card-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 1.5rem;
        align-items: stretch;
    	}
    .guide-card {
        height: 100%;
    	}
    
    #details .guide-card {
        height: 100%;
        min-height: 550px;
    	}
    
    .carousel-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    	}
    .step-card { 
    	flex: none;
    	}
}