@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #FF7300;
    --primary-hover: #E56700;
    --primary-light: #FF9E4F;
    --primary-tint: #FFF4EC;
    --primary-rgb: 255, 115, 0;
    --bg-light: #FAF9F6;
    --bg-white: #FFFFFF;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --border-glass: rgba(255, 115, 0, 0.1);
    --border-glass-hover: rgba(255, 115, 0, 0.3);
    --text-dark: #0F1115;
    --text-body: #2D3139;
    --text-gray: #5C626E;
    --text-muted: #9CA3AF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
    --shadow-orange: 0 12px 30px rgba(255, 115, 0, 0.15);
    --shadow-orange-hover: 0 16px 35px rgba(255, 115, 0, 0.25);
    --shadow-card-hover: 0 20px 50px rgba(255, 115, 0, 0.07), 0 2px 10px rgba(0, 0, 0, 0.02);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-light);
    color: var(--text-body);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    position: relative;
    min-height: 100vh;
}

/* Ambient warm orange/peach background glows */
.ambient-glow-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 115, 0, 0.045) 0%, rgba(255, 115, 0, 0) 70%);
    top: -200px;
    right: -100px;
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.ambient-glow-2 {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 115, 0, 0.03) 0%, rgba(255, 115, 0, 0) 75%);
    top: 40%;
    left: -200px;
    z-index: -1;
    pointer-events: none;
    filter: blur(80px);
}

.ambient-glow-3 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 115, 0, 0.04) 0%, rgba(255, 115, 0, 0) 70%);
    bottom: -100px;
    right: -50px;
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

/* Scrollbar styling for Light Theme */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #E4E4E7;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
}

p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-dark) 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-fast);
}

header.scrolled {
    background-color: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 115, 0, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-fast);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo-img {
    height: 142px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.02);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 115, 0, 0.06);
    border: 1px solid rgba(255, 115, 0, 0.15);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: pulse 2.5s infinite alternate;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(255, 115, 0, 0.03);
        border-color: rgba(255, 115, 0, 0.15);
    }
    100% {
        box-shadow: 0 0 25px rgba(255, 115, 0, 0.15);
        border-color: rgba(255, 115, 0, 0.35);
    }
}

.hero-title {
    font-size: 4rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--text-gray);
}

/* Waitlist Form */
.waitlist-form-container {
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.waitlist-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 115, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.01);
}

.waitlist-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.waitlist-input::placeholder {
    color: var(--text-muted);
}

.waitlist-form .btn {
    white-space: nowrap;
    padding: 0.75rem 1.75rem;
}

/* Success Message Container */
.form-success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    background: var(--primary-tint);
    border: 1px solid rgba(255, 115, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    animation: fadeIn 0.5s ease forwards;
}

.success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 115, 0, 0.1);
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 115, 0, 0.2);
}

/* About Us Section */
.about {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
}

/* Grid layout for features */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Light Glassmorphism Cards */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-soft);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 115, 0, 0.02) 0%, rgba(255, 115, 0, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-card-hover);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 1;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-tint);
    border: 1px solid rgba(255, 115, 0, 0.15);
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    transition: var(--transition-fast);
}

.glass-card:hover .card-icon {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 0 20px rgba(255, 115, 0, 0.3);
    border-color: var(--primary);
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-card {
    border-color: rgba(255, 115, 0, 0.25);
    box-shadow: 0 15px 40px rgba(255, 115, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.01);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 115, 0, 0.01) 100%);
}

/* Contact Us Section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.contact-info p {
    margin-bottom: 2.5rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--primary-tint);
    border: 1px solid rgba(255, 115, 0, 0.1);
    color: var(--primary);
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.contact-form-card {
    padding: 3rem;
    background: var(--bg-white);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-select option {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 115, 0, 0.12);
    background: var(--bg-white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-card .btn {
    width: 100%;
    padding: 0.9rem;
    margin-top: 1rem;
    font-size: 1rem;
}

/* Footer Section */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 4rem 0 2rem;
    background-color: #F3F4F6;
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-gray);
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 115, 0, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 2rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.25rem;
    }
    .about-grid {
        gap: 1.5rem;
    }
    .contact-layout {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 115, 0, 0.1);
        flex-direction: column;
        padding: 6rem 2rem 3rem;
        gap: 2rem;
        align-items: flex-start;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        z-index: 99;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.03);
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* When navigation menu is open, adjust header background to blend */
    header.scrolled .nav-container {
        height: 70px;
    }
    
    .nav-btn {
        width: 100%;
        margin-top: 1rem;
    }
    .nav-btn .btn {
        width: 100%;
    }
    .hero {
        padding-top: 140px;
        padding-bottom: 70px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    .waitlist-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
        box-shadow: none;
    }
    .waitlist-input {
        background: var(--bg-white);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        padding: 1rem;
        box-shadow: var(--shadow-soft);
    }
    .waitlist-form .btn {
        width: 100%;
        padding: 1rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 2.25rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
        align-items: flex-start;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    .glass-card {
        padding: 2rem 1.25rem;
    }
    .contact-form-card {
        padding: 1.75rem 1.25rem;
    }
    .nav-menu {
        max-width: 100%;
    }
}
