/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cta-color: #ff6b00;
    --cta-color-hover: #ff8533;
    --bg-dark: #0D0D0D;
    --text-primary: #F5F5F5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --success-green: #10b981;
    --error-red: #ef4444;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-ctv {
    background: var(--cta-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-ctv:hover {
    background: var(--cta-color-hover);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
}

.hero-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.hero-heading {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.hero-subheading {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.5;
    max-width: 700px;
}

.hero-ctv {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ctv-button {
    background: var(--cta-color);
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 500px;
}

.ctv-button:hover {
    background: var(--cta-color-hover);
}

.ctv-benefit {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
}

/* Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.mockup-image {
    width: 100%;
    max-width: 1080px;
    height: 45em;
    display: block;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.phone-mockup {
    width: 320px;
    height: 640px;
    background: #1A1A1A;
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    border-radius: 24px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mockup-fire-animation {
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.fire-flame {
    width: 12px;
    height: 24px;
    background: linear-gradient(180deg, #ff6b00, #ff8533);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1s infinite alternate;
}

.fire-flame:nth-child(2) {
    height: 32px;
    animation-delay: 0.2s;
}

.fire-flame:nth-child(3) {
    height: 28px;
    animation-delay: 0.4s;
}

@keyframes flicker {
    0%, 100% { transform: scaleY(1) scaleX(1); }
    50% { transform: scaleY(1.1) scaleX(0.95); }
}

.mockup-progress {
    color: var(--cta-color);
    font-weight: 600;
    font-size: 14px;
}

.mockup-fi-date {
    text-align: center;
    padding: 24px;
    background: #1A1A1A;
    border-radius: 12px;
}

.mockup-label {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 8px;
}

.mockup-date {
    color: var(--cta-color);
    font-size: 24px;
    font-weight: 700;
}

.mockup-transaction {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #1A1A1A;
    border-radius: 12px;
}

.transaction-icon {
    font-size: 32px;
}

.transaction-amount {
    color: var(--success-green);
    font-weight: 600;
    font-size: 18px;
}

.transaction-impact {
    color: var(--text-secondary);
    font-size: 12px;
}

/* PAS Section */
.pas-section {
    padding: 120px 0;
}

.pas-section .container {
    max-width: 900px;
}

.pas-box {
    margin-bottom: 80px;
    padding: 0 8px;
}

.pas-box:last-child {
    margin-bottom: 0;
}

.pas-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.pas-box p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
}

/* Features */
.features {
    padding: 120px 0;
}

.features .container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-primary);
    line-height: 1.3;
}

.features-hero {
    margin-bottom: 64px;
    text-align: center;
}

.features-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 0 auto;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    background: #1A1A1A;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    opacity: 0.6;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    line-height: 1.4;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
    text-align: left;
}

/* Solution Showcase */
.solution-showcase {
    padding: 120px 0;
}

.solution-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
    font-size: 16px;
}

.tab-button.active,
.tab-button:hover {
    background: var(--cta-color);
    color: #fff;
    border-color: var(--cta-color);
}

.solution-preview {
    display: flex;
    justify-content: center;
}

.preview-dashboard {
    width: 100%;
    max-width: 600px;
    background: #1A1A1A;
    border-radius: 12px;
    padding: 32px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.dashboard-fire {
    font-size: 32px;
}

.dashboard-progress {
    color: var(--cta-color);
    font-weight: 600;
}

.dashboard-fi-date {
    text-align: center;
    padding: 24px;
    background: var(--bg-dark);
    border-radius: 12px;
    margin-bottom: 24px;
}

.date-label {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 8px;
}

.date-value {
    color: var(--cta-color);
    font-size: 28px;
    font-weight: 700;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: transparent;
    border-radius: 8px;
}

.tx-icon {
    font-size: 24px;
}

.tx-amount {
    color: var(--success-green);
    font-weight: 600;
}

.tx-impact {
    color: var(--text-secondary);
    font-size: 12px;
    margin-left: auto;
}

/* Benefits */
.benefits {
    padding: 120px 0;
}

.benefits .container {
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.benefits-image-wrapper {
    position: sticky;
    top: 100px;
}

.benefits-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: block;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    padding: 0;
}

.benefit-icon {
    font-size: 40px;
    opacity: 0.6;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
    text-align: left;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
}

.how-it-works .container {
    max-width: 1100px;
    margin: 0 auto;
}

.steps-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.steps-image-wrapper {
    position: sticky;
    top: 100px;
}

.steps-hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    display: block;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    background: #1A1A1A;
    border-radius: 12px;
    border-left: 4px solid var(--cta-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.step:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.1);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--cta-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
    text-align: left;
}

.step-connector {
    display: none;
}

/* Founding Members Section */
.founding-members {
    padding: 120px 0;
    background: transparent;
}

.founding-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.founding-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.founding-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.founding-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.founding-benefit {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.founding-icon {
    font-size: 32px;
    opacity: 0.6;
    flex-shrink: 0;
}

.founding-benefit h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.founding-benefit p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 16px;
}

/* Testimonials - Removed */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Testimonials removed - styles kept for potential future use */
.testimonial-card {
    padding: 32px;
    background: transparent;
    border-radius: 16px;
    border: none;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 12px;
}

.testimonial-rating {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-result {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

/* FAQs */
.faqs {
    padding: 120px 0;
}

.faqs .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--text-secondary);
}

.faq-toggle {
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 16px 0 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: none;
}

/* Waitlist Section */
.waitlist-section {
    padding: 120px 0;
}

.waitlist-section .container {
    max-width: 700px;
    margin: 0 auto;
}

.waitlist-box {
    text-align: center;
}

.waitlist-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.waitlist-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.waitlist-form {
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;      /* Vertically centers items */
    justify-content: center;  /* <<< ADD THIS: Horizontally centers items */
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: border-color 0.2s;
}

.email-input:focus {
    outline: none;
    border-color: var(--cta-color);
}

.submit-button {
    /* --- NEW LINES --- */
    width: 100%;              /* Forces the button to fill the container */
    display: block;           /* Ensures it behaves as a block element */
    box-sizing: border-box;   /* Ensures padding doesn't make the button wider than 100% */
    text-align: center;       /* Centers the text inside the button */
    /* ---------------- */

    padding: 16px 32px;
    background: var(--cta-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.submit-button:hover {
    background: var(--cta-color-hover);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    color: var(--text-secondary);
    font-size: 14px;
    min-height: 20px;
}

.form-message.success {
    color: var(--success-green);
}

.form-message.error {
    color: var(--error-red);
}

.waitlist-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.waitlist-benefit {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section h4 {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-heading {
        font-size: 42px;
    }

    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .benefits-image-wrapper {
        position: static;
    }
    
    .steps-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps-image-wrapper {
        position: static;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pas-section .container {
        grid-template-columns: 1fr;
    }

    .founding-benefits {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-connector {
        width: 2px;
        height: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-heading {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .features,
    .benefits,
    .how-it-works,
    .faqs,
    .waitlist-section {
        padding: 80px 0;
    }

    .features .container,
    .benefits .container,
    .how-it-works .container,
    .faqs .container {
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--cta-color);
    }
    
    .step:hover {
        transform: translateY(-2px);
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .mockup-image {
        max-width: 100%;
        border-radius: 24px;
    }

    .waitlist-box {
        padding: 40px 20px;
    }

    .waitlist-title {
        font-size: 28px;
    }

    .pas-section {
        padding: 80px 0;
    }

    .pas-section .container {
        padding: 0 20px;
    }
}

/* Password Reset Section */
.reset-password-section {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile browsers */
    display: none !important; /* Hidden by default - will be shown via JavaScript when token is present */
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0D0D0D 0%, #101010 100%);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.reset-password-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.reset-password-card {
    background: #1A1A1A;
    border-radius: 24px;
    padding: 48px;
    border: 2px solid #ff6b00;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.1);
}

.reset-password-header {
    text-align: center;
    margin-bottom: 32px;
}

.reset-password-header .logo-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.reset-password-title {
    font-size: 32px;
    font-weight: 700;
    color: #F5F5F5;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.reset-password-subtitle {
    font-size: 16px;
    color: #9ca3af;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.reset-password-form {
    margin-top: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #F5F5F5;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.form-input {
    width: 100%;
    padding: 16px;
    background: #0D0D0D;
    border: 1px solid #1F1F1F;
    border-radius: 12px;
    color: #F5F5F5;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b00;
}

.form-input::placeholder {
    color: #9ca3af;
}

.reset-password-button {
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8533 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.reset-password-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.reset-password-button:active:not(:disabled) {
    transform: translateY(0);
}

.reset-password-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.success-message a {
    color: #ff6b00;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .reset-password-section {
        padding: 20px 16px;
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height - works in Chrome */
        min-height: -webkit-fill-available; /* iOS Safari fix */
        display: none !important; /* Hidden by default - JavaScript will override when token is present */
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        max-width: 100vw; /* Prevent horizontal overflow in Chrome */
        box-sizing: border-box;
        overflow-x: hidden; /* Prevent horizontal scroll in Chrome */
    }
    
    .reset-password-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
    }
    
    .reset-password-card {
        padding: 32px 24px;
        border-radius: 16px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .reset-password-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .reset-password-subtitle {
        font-size: 14px;
    }
    
    .reset-password-header .logo-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .form-input {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        -webkit-appearance: none; /* Removes iOS styling */
        appearance: none; /* Standard property */
        border-radius: 12px;
    }
    
    .reset-password-button {
        padding: 16px 24px;
        font-size: 16px;
        -webkit-tap-highlight-color: rgba(255, 107, 0, 0.3);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}

