/* CSS Variables & Reset */
:root {
    --primary-gradient: linear-gradient(135deg, #FF3131 0%, #FF914D 70%);
    --hero-bg-gradient: linear-gradient(180deg, #FF3131 0%, #FF914D 70%);
    /* Vibrant Red -> Orange at 70% */
    --accent-color: #FF6B6B;
    --text-main: #1D1D1F;
    --text-secondary: #86868B;
    --bg-color: #FFFFFF;
    --bg-secondary: #F5F5F7;
    --nav-height: 60px;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-btn: 999px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 50px rgba(0, 0, 0, 0.12);
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

ul {
    list-style: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    border: none;
    outline: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: #FF6B6B;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    transform: translateY(-1px);
}

/* Hero Button Variation */
.hero .btn-primary {
    background: white;
    color: #FF5E62;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-nav {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(5px);
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Intro Loader */
.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    /* Smoother fade out */
    pointer-events: all;
}

.intro-loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    /* Space between logo and text */
}

.loader-svg {
    overflow: visible;
    width: 180px;
    /* Bigger logo */
    height: 180px;
}

.loader-text {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
    font-size: 2.5rem;
    /* Larger to compensate for thinness */
    font-weight: 300;
    /* Thinner weight */
    color: #000;
    opacity: 0;
    margin: 0;
    letter-spacing: -0.04em;
    /* Tight, premium tracking */
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

/* Animation Setup */
#ring {
    stroke-dasharray: 200;
    /* Approximate path length */
    stroke-dashoffset: 200;
    /* Very smooth 'Apple-like' ease-out */
    animation: drawStroke 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#hands path {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawStroke 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.ticks {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
    animation-delay: 1.0s;
}

/* Keyframes */
@keyframes drawStroke {
    0% {
        stroke-dashoffset: 200;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .intro-loader {
        display: none !important;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background 0.3s, backdrop-filter 0.3s, border-bottom 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    color: white;
    /* Default white on transparent */
}

/* Modifier for pages with light backgrounds (Contact) */
.navbar.nav-light {
    color: var(--text-main);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    /* Switch to dark text */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: inherit;
    /* Inherits from navbar color */
    text-decoration: none;
}

.logo img {
    height: 48px;
    /* Bigger logo as requested */
    width: auto;
}

/* Update nav button for scrolled state */
.navbar.scrolled .btn-nav {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

.navbar.scrolled .btn-nav:hover {
    background: rgba(0, 0, 0, 0.1);
}

.navbar-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    /* Pushes Logo to left, Button to right */
    align-items: center;
}



.logo {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    /* More space for navbar */
    text-align: center;
    /* overflow: hidden removed to allow image overlap */
    background: var(--hero-bg-gradient);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    padding-bottom: 0;
}

.hero-content {
    z-index: 10;
    margin-bottom: 60px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 4rem;
    /* Larger */
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    /* Remove text clips for white text on gradient */
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-text-fill-color: initial;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    margin-bottom: 40px;
    /* Increased spacing */
    max-width: 580px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.05rem;
        /* ~16-17px for mobile */
        max-width: 90%;
    }
}


/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    text-align: center;
    background: #fff;
    /* Optional: Ensure text container has perspective for 3D feel if desired, but simple is better */
}

/* Text Reveal Animation */
.reveal-text {
    display: block;
    /* Breaks lines naturally */
    opacity: 0;
    transform: translateY(12px);
    /* 12px as requested */
    filter: blur(6px);
    /* 6px blur */
    margin-bottom: 4px;
    /* Maintain line spacing */

    /* Animation definition */
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.problem-section.visible .reveal-text {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger Delays (80-120ms) */
.problem-section.visible .reveal-text:nth-child(1) {
    transition-delay: 0.1s;
    /* 100ms */
}

.problem-section.visible .reveal-text:nth-child(2) {
    transition-delay: 0.2s;
    /* +100ms */
}

.problem-section.visible .reveal-text:nth-child(3) {
    transition-delay: 0.3s;
    /* +100ms */
    color: #1D1D1F;
    /* Ensure final line is crisp/dark */
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-text {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
}

/* Mobile Eyebrow - Hidden on Desktop */
.mobile-eyebrow {
    display: none;
}

.section-text {
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

@media (max-width: 480px) {
    .section-text-wrapper {
        text-align: left;
        max-width: 22rem;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-eyebrow {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-secondary);
        font-weight: 600;
        margin-bottom: 8px;
    }

    .section-text {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .story-line-1 {
        font-size: 30px;
        line-height: 1.15;
        font-weight: 700;
        display: block;
        color: var(--text-main);
    }

    .story-line-2,
    .story-line-3 {
        font-size: 17px;
        line-height: 1.55;
        font-weight: 400;
        color: var(--text-main);
        display: block;
    }

    .highlight-text {
        color: var(--accent-color);
        font-weight: 600;
    }
}

/* Feature Highlight (Two Column) */
.feature-highlight {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.highlight-text h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.highlight-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Image Cluster for Features */
.feature-cluster {
    position: relative;
    height: 500px;
    width: 100%;
}

.cluster-img {
    position: absolute;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.c-img-1 {
    width: 240px;
    left: 10%;
    top: 50px;
    z-index: 2;
    transform: rotate(-10deg);
}

.c-img-2 {
    width: 240px;
    right: 10%;
    top: 0;
    z-index: 1;
    transform: rotate(5deg);
}

.c-img-3 {
    width: 260px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 3;
}

/* Feature List Style (Replacing Cards with List) */
.features-list-section {
    padding: 120px 0;
    background: #fff;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.features-content h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item .icon-box {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #FFF0F0;
    color: #FF6B6B;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Right side image for features list */
.features-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-visual img {
    max-width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}

.section-text {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.5;
}

/* Feature Highlight */
.feature-highlight {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: block;
    margin: 0 auto;
}

.highlight-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.highlight-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Core Features */
.features {
    padding: 100px 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    transition: transform 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}


.feature-card .icon-box {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover .icon-box {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
    color: #FF5E62;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Feature Showcase Section */
.showcase-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
    /* Generous spacing */
    margin-bottom: 120px;
    /* Space between sections */
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-text {
    flex: 1;
    min-width: 300px;
}

.showcase-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.showcase-media {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.showcase-img {
    width: 100%;
    max-width: 350px;
    /* Optimized for iPhone screenshot size */
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.showcase-img:hover {
    transform: translateY(-5px);
}

/* Desktop Layout Variants */
.desktop-row-reverse {
    flex-direction: row-reverse;
    /* Image Left, Text Right */
}

.desktop-row-normal {
    flex-direction: row;
    /* Text Left, Image Right */
}

/* Responsive Stacking */
@media (max-width: 900px) {
    .showcase-row {
        flex-direction: column !important;
        /* Stack vertically */
        text-align: center;
        gap: 40px;
        margin-bottom: 80px;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .showcase-text p {
        font-size: 1.1rem;
    }

    /* Ensure text is above image on mobile (HTML order is Text, Image) */
    /* No change needed as HTML default order is Text first */
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #F5F5F7;
    /* Modern light grey */
}

.faq-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1D1D1F;
    /* Apple dark */
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #86868B;
    max-width: 600px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 1080px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 24px;
    /* Smooth corners */
    padding: 24px 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    /* Very subtle base shadow */
    border: 1px solid rgba(0, 0, 0, 0.0);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* React-like springy feel */
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.faq-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1D1D1F;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #86868B;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #1D1D1F;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-body {
    max-height: 200px;
    /* Adjust if content is very long */
    margin-top: 16px;
    opacity: 1;
}

.faq-body p {
    color: #424245;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Specific adjustment for + icon to look more refined */
.faq-icon::before {
    /* content: '+'; already text content */
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* 
font-size: 1rem;
color: var(--text-secondary);
line-height: 1.6;
margin: 0;
} 
*/

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px 24px;
    }
}



.waitlist-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.glass-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 480px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px;
    border-radius: 999px;
    /* Pill shape */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.glass-input-wrapper:hover,
.glass-input-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.waitlist-form input {
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    outline: none;
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-pill {
    flex-shrink: 0;
    background: #FFFFFF;
    color: #000000;
    border: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.btn-pill:hover {
    background: #F0F0F0;
    transform: scale(1.05);
}

.btn-pill:active {
    transform: scale(0.95);
}

.success-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2F9E44;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: var(--radius-btn);
    display: inline-block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.site-footer {
    padding: 100px 0 80px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    /* Very subtle divider */
    font-size: 0.9rem;
    color: var(--text-main);
}

.footer-content-wrapper {
    max-width: 1100px;
    /* Keep it tight for premium feel */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Tip Row */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* Reduced from 16px to 8px for tighter stacking */
    max-width: 450px;
}

.footer-logo {
    width: 180px;
    /* Much bigger as requested */
    height: auto;
    display: block;
    opacity: 1;
    /* Full opacity for visibility */
    margin: 0 0 16px 0;
    /* Left align, bottom spacing */
}

.footer-slogan-minimal {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-top: 8px;
}

.slogan-soft {
    opacity: 0.7;
    /* Soften the last word */
    font-weight: 500;
}

.footer-nav-group {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 8px;
    /* Optical alignment with slogan top */
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    text-decoration: none;
    color: #111;
    opacity: 0.6;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-social-icon {
    color: #111;
    opacity: 0.6;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.footer-social-icon:hover {
    opacity: 1;
}

/* Bottom Row */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
}

.copyright-text {
    font-size: 0.85rem;
    color: #111;
    opacity: 0.4;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    /* Stack bottom row on mobile */
    .footer-bottom {
        flex-direction: column-reverse;
        /* Links above copyright usually looks better, or stack naturally */
        align-items: flex-start;
        gap: 32px;
    }

    .footer-nav-group {
        width: 100%;
        justify-content: space-between;
        padding-top: 0;
    }

    .footer-slogan-minimal {
        font-size: 1.75rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .screen-1,
    .screen-2 {
        display: none;
        /* Simplify on smaller screens or stack them differently if needed. For now, hiding side phones to keep it clean on tablet/mobile as requested "stack cleanly" usually implies vertical, but for overlapping overlap might be messy. Let's just keep main one or adjust transform. */
        /* Actually user asked: "Hero images stack cleanly on mobile". Let's enable stacking in next media query. */
    }

    .screen-main {
        transform: translateX(-50%);
        width: 250px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-images {
        height: auto;
        min-height: 400px;
    }

    /* Hero Mobile Adjustments */
    .hero {
        min-height: auto;
        padding-bottom: 0;
        border-bottom-left-radius: 55px;
        /* Reduced curve */
        border-bottom-right-radius: 55px;
        position: relative;
        /* Requested */
        overflow: hidden;
        /* Clip the image to the curve */
    }

    .hero-images {
        margin: 0;
        width: 100%;
        display: block;
    }

    .hero-images .app-screen {
        position: relative;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        transform: translateX(45px) !important;
        /* Move right a bit */
        display: block;
        margin: 30px auto 0 auto !important;
        /* Added 30px top margin to push lower */
        margin-bottom: -20% !important;
        /* Crop bottom 20% */
        width: 100% !important;
        max-width: none !important;
        /* Full width */
        height: auto !important;
        object-fit: cover;
        object-position: center top;
        border-radius: 0;
        /* Let container clip it */
    }
}

/* Contact Page */
.contact-page-section {
    padding-top: 140px;
    /* Space for fixed navbar */
    padding-bottom: 100px;
    min-height: 80vh;
    background: #FFFCF8;
    /* Warm off-white background matching reference feel or keep site standard. Let's use site standard or subtle cream. Keeping it close to white/light grey */
    background: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Top align for split */
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Side Info */
.contact-info-side {
    padding-top: 20px;
}

.contact-info-side .page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    text-align: left;
    letter-spacing: -1px;
}

.contact-info-side .page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: left;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-main);
    font-weight: 500;
}

.detail-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    /* Orange/Red Brand Color */
}

/* Right Side Form Card */
.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
    /* Softer label color */
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    background: #FFFFFF;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.2s;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #CCC;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 126, 95, 0.1);
    /* Subtle orange glow */
}

.btn-dark-block {
    background: #000;
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 999px;
    /* Pill */
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    margin-top: 10px;
}

.btn-dark-block:hover {
    background: #222;
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-side {
        text-align: center;
        padding-top: 0;
    }

    .contact-info-side .page-title,
    .contact-info-side .page-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-details {
        align-items: center;
    }
}


/* Solid Navbar for subpages */
.navbar.solid-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.solid-nav .logo,
.navbar.solid-nav .nav-links a {
    color: var(--text-main);
}

/* About Page Styles */
.about-header {
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-main);
    line-height: 1.1;
}

.about-cta {
    font-size: 1rem;
    padding: 12px 32px;
}

.meet-team-section {
    padding: 80px 0 120px;
}

.team-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.team-text {
    max-width: 500px;
}

.team-headline {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1;
    color: var(--text-main);
}

.team-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
}

.team-media {
    display: flex;
    justify-content: flex-end;
}

.team-photo {
    width: 100%;
    max-width: 100%;
    border-radius: 40px;
    /* Large rounded rectangle */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    /* Subtle shadow */
    display: block;
    object-fit: cover;
}

.btn-pill-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #FF6B6B;
    background: linear-gradient(90deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    border: none;
    text-decoration: none;
}

.btn-pill-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
    transform: translateY(-2px);
}

/* Navbar Links */
.nav-links {
    display: flex;
    gap: 32px;
    margin-right: auto;
    margin-left: 60px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: inherit;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* Responsive About */
@media (max-width: 900px) {
    .team-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .team-text {
        margin: 0 auto;
    }

    .team-media {
        justify-content: center;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .team-headline {
        font-size: 2.5rem;
    }
}

/* About Page Hierarchy & Spacing Updates */
.about-header {
    padding-bottom: 40px;
    /* Reduced bottom padding */
}

/* 1) Top Header Hierarchy */
.about-title {
    font-size: 3rem;
    /* Reduced from 3.5rem */
    line-height: 1.1;
    font-weight: 700;
    /* Slightly lighter if previously 800 implicit, or just explict */
    margin-bottom: 12px;
}

.about-subtitle {
    font-size: 1.25rem;
    /* Increased size */
    color: var(--text-main);
    opacity: 0.85;
    /* Darker/Stronger contrast */
    margin-bottom: 48px;
    /* High spacing below */
    font-weight: 500;
}


/* 2) Two-column Section Hierarchy */
.meet-team-section {
    padding-top: 72px;
    /* Increased from 40px (+32px) */
}

.team-headline {
    font-size: 2.25rem;
    /* ~65% of 3.5rem */
    margin-bottom: 24px;
}

.team-description {
    font-size: 1.15rem;
    line-height: 1.75;
    /* Increased for readability */
    color: var(--text-secondary);
}

/* Ensure mobile overrides still apply if needed, so placing basic responsive tweaks here */
@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }

    .team-headline {
        font-size: 1.8rem;
    }

    .meet-team-section {
        padding-top: 20px;
    }
}

/* Team Detailed Section */
.team-detailed-section {
    padding: 100px 0;
    padding-bottom: 140px;
    /* Extra space before footer */
}

/* Header with statement */
.team-header-row {
    display: flex;
    justify-content: flex-end;
    /* Align right as requested */
    align-items: center;
    margin-bottom: 80px;
}

/* Removed Avatar Group Styles */

.team-statement {
    font-size: 2.5rem;
    /* Slightly larger as it's the main focus */
    font-weight: 600;
    line-height: 1.2;
    max-width: 800px;
    /* More width allowed */
    letter-spacing: -0.02em;
    text-align: right;
    /* Restore right align */
}

/* Color Wave Animation */
.team-statement span {
    display: inline-block;
    animation: colorWave 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    /* Slower, smoother easing */
    animation-delay: calc(var(--i) * 0.08s);
    /* Wider wave */
}

@keyframes colorWave {

    0%,
    100% {
        color: var(--text-main);
    }

    50% {
        color: #FF6B6B;
        /* Brand Accent */
        /* Removed transform and shadow for a cleaner, calmer look */
    }
}

/* People Grid */
.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.person-card {
    /* Minimal card style */
    padding-right: 20px;
    padding: 24px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Smooth 'Apple-like' ease */
    background: transparent;
    /* Default transparent */
}

.person-card:hover {
    background: #FFFFFF;
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    /* Soft, diffused shadow */
}

/* New Person Image */
.person-img {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    /* Soft square/rounded */
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.person-name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-main);
}

.person-role {
    font-size: 0.95rem;
    color: var(--accent-color);
    /* Brand color */
    margin-bottom: 16px;
    font-weight: 600;
    /* Slightly bolder for the color to stand out */
}

.person-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #424245;
    /* Darker than muted for readability */
}

/* Responsive Team Section */
@media (max-width: 900px) {
    .team-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 60px;
    }

    .team-statement {
        text-align: left;
        font-size: 1.75rem;
    }

    .people-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 48px;
    }
}