/* CSS Variables for Theming */
:root {
    /* Dark Mode (default) */
    --bg-primary: #000000;
    --bg-secondary: rgba(255, 255, 255, 0.03);
    --bg-tertiary: rgba(255, 255, 255, 0.02);
    --bg-nav: rgba(0, 0, 0, 0.95);
    --bg-nav-mobile: rgba(0, 0, 0, 0.98);
    --bg-input: rgba(255, 255, 255, 0.05);
    --bg-input-focus: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #666;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-light: rgba(255, 255, 255, 0.08);
    --border-color-mobile: rgba(255, 255, 255, 0.05);
    /* Solid surfaces (modals) — not the nearly-transparent --bg-secondary */
    --auth-modal-surface: #141414;
    --auth-modal-input-bg: #1e1e1e;
    --auth-modal-backdrop: rgba(0, 0, 0, 0.72);
    --hero-gradient-start: rgba(0, 0, 0, 0.8);
    --hero-gradient-end: rgba(0, 0, 0, 1);
    --logo-filter: none;
}

/* Light Mode */
@media (prefers-color-scheme: light) {
    :root {
        --bg-primary: #f5f5f5;
        --bg-secondary: rgba(0, 0, 0, 0.03);
        --bg-tertiary: rgba(0, 0, 0, 0.02);
        --bg-nav: rgba(245, 245, 245, 0.95);
        --bg-nav-mobile: rgba(245, 245, 245, 0.98);
        --bg-input: rgba(0, 0, 0, 0.05);
        --bg-input-focus: rgba(0, 0, 0, 0.08);
        --text-primary: #1a1a1a;
        --text-secondary: #4a4a4a;
        --text-tertiary: #666;
        --border-color: rgba(0, 0, 0, 0.1);
        --border-color-light: rgba(0, 0, 0, 0.08);
        --border-color-mobile: rgba(0, 0, 0, 0.05);
        --auth-modal-surface: #ffffff;
        --auth-modal-input-bg: #f0f0f0;
        --auth-modal-backdrop: rgba(15, 15, 20, 0.55);
        --hero-gradient-start: rgba(245, 245, 245, 0.8);
        --hero-gradient-end: rgba(245, 245, 245, 1);
        --logo-filter: none;
    }
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

/* Body background - black in dark mode */
body {
    background: var(--bg-primary);
}

/* Ensure body has minimal background overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

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

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

@media (prefers-color-scheme: light) {
    nav {
        background: rgba(245, 245, 245, 0.85);
    }
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

nav .container.nav-bar {
    justify-content: flex-start;
    row-gap: 0.75rem;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 0;
}

/* Logo left; tabs + account controls grouped on the right (avoids space-between / nav-end both splitting the bar). */
nav .container.nav-bar .nav-links {
    margin-left: auto;
    flex: 0 1 auto;
    min-width: 0;
    flex-shrink: 1;
}

nav .container.nav-bar .nav-end {
    margin-left: 0;
    flex-shrink: 0;
}

nav .nav-end {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-credits-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 107, 74, 0.4);
    background: rgba(255, 107, 74, 0.08);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s, border-color 0.2s;
}

.nav-credits-pill:hover {
    background: rgba(255, 107, 74, 0.16);
    border-color: rgba(255, 107, 74, 0.6);
}

.nav-credits-pill-icon {
    color: #ff6b4a;
    font-size: 0.7rem;
}

.nav-credits-pill-value {
    color: var(--text-primary);
}

.nav-credits-pill-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.78rem;
}

@media (max-width: 540px) {
    .nav-credits-pill-label {
        display: none;
    }
}

nav .nav-auth {
    position: relative;
    display: flex;
    align-items: center;
}

nav .nav-account-wrap {
    position: relative;
}

nav .nav-auth-btn {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 40px;
    transition: border-color 0.2s, background 0.2s;
}

nav .nav-auth-btn:hover,
nav .nav-auth-btn:focus-visible {
    border-color: #ff6b4a;
    outline: none;
}

nav .nav-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.4rem);
    min-width: 12rem;
    background: var(--bg-nav-mobile);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.35rem;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    z-index: 1001;
}

nav .nav-dropdown a,
nav .nav-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.6rem 0.85rem;
    border: none;
    background: none;
    color: var(--text-primary);
    font: inherit;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    border-radius: 8px;
}

nav .nav-dropdown a:hover,
nav .nav-dropdown button:hover {
    background: var(--bg-input);
}

#nav-login {
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8c6a 100%);
    color: #fff;
    border-color: rgba(255, 107, 74, 0.4);
}

.logo img {
    height: 40px;
    display: block;
    transition: opacity 0.3s ease;
    filter: var(--logo-filter);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff6b4a;
}

@media (min-width: 769px) and (max-width: 1100px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.88rem;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    z-index: 10;
    overflow: visible;
    background: transparent;
}

/* Hero section overlay - lighter so animation is more prominent */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to bottom, var(--hero-gradient-start), var(--hero-gradient-end)), 
                      url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.3s ease;
}

@media (prefers-color-scheme: light) {
    .hero-bg {
        opacity: 0.4;
    }
}

.lines-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #ff6b4a, transparent);
    opacity: 0.3;
    animation: moveLine 15s linear infinite;
}

.line:nth-child(1) {
    width: 200%;
    height: 2px;
    top: 20%;
    left: -100%;
    animation-delay: 0s;
}

.line:nth-child(2) {
    width: 200%;
    height: 2px;
    top: 40%;
    left: -100%;
    animation-delay: 3s;
}

.line:nth-child(3) {
    width: 200%;
    height: 2px;
    top: 60%;
    left: -100%;
    animation-delay: 6s;
}

.line:nth-child(4) {
    width: 200%;
    height: 2px;
    top: 80%;
    left: -100%;
    animation-delay: 9s;
}

.diagonal-line {
    position: absolute;
    width: 2px;
    height: 150%;
    background: linear-gradient(180deg, transparent, #ff6b4a, transparent);
    opacity: 0.2;
    transform: rotate(45deg);
    animation: moveDiagonal 20s linear infinite;
}

.diagonal-line:nth-child(1) {
    left: -10%;
    animation-delay: 0s;
}

.diagonal-line:nth-child(2) {
    left: 30%;
    animation-delay: 5s;
}

.diagonal-line:nth-child(3) {
    left: 70%;
    animation-delay: 10s;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b4a;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: #ff8c6a;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-delay: 1s; }
.particle:nth-child(3) { left: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 55%; animation-delay: 3s; }
.particle:nth-child(5) { left: 70%; animation-delay: 4s; }
.particle:nth-child(6) { left: 85%; animation-delay: 5s; }

@keyframes moveLine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes moveDiagonal {
    0% {
        top: -50%;
    }
    100% {
        top: 100%;
    }
}

@keyframes floatParticle {
    0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    10% {
        opacity: 0.6;
        transform: translateX(20px) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateX(-20px) scale(1);
    }
    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8c6a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px;
    min-width: 120px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 74, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    align-items: center;
}

section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: transparent;
}

/* Add subtle overlay for text readability while keeping animation visible */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    opacity: 0.75;
    z-index: -1;
    pointer-events: none;
}

/* Ensure sections have proper layering */
section#services,
section#about,
section#contact {
    position: relative;
    z-index: 10;
}

/* Hero section - less opacity overlay so animation is more visible */
.hero::before {
    opacity: 0.5;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 74, 0.5);
    background: var(--bg-tertiary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 74, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 74, 0.2);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: #ff6b4a;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

a.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

a.service-card:focus-visible {
    outline: 2px solid #ff6b4a;
    outline-offset: 3px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.stat-item h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8c6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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

footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 10;
}

/* Footer overlay for readability */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    opacity: 0.9;
    z-index: -1;
    pointer-events: none;
}

footer p {
    color: var(--text-tertiary);
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, background 0.3s;
    min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b4a;
    background: var(--bg-input-focus);
}

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

.form-group .error-message {
    color: #ff6b4a;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff6b4a;
}

.form-group.error .error-message {
    display: block;
}

.form-success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4caf50;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
}

.form-success.show {
    display: block;
}

.form-error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: none;
}

.form-error.show {
    display: block;
}

.newsletter-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    min-height: 44px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff6b4a;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff6b4a 0%, #ff8c6a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 44px;
    min-width: 120px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 74, 0.3);
}

.newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-secondary {
    color: var(--text-secondary);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Fixed full-screen menu: don't reserve space for the "push" pattern; keep auth + toggle on the right. */
    nav .container.nav-bar {
        flex-wrap: wrap;
    }

    nav .container.nav-bar .nav-links {
        margin-left: 0;
    }

    nav .container.nav-bar .nav-end {
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-nav-mobile);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease, background-color 0.3s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color-mobile);
    }

    .nav-links a {
        padding: 1rem 0;
        width: 100%;
        font-size: 1rem;
    }

    .hero {
        padding: 100px 1rem 50px;
    }

    section {
        padding: 3rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    nav .container {
        padding: 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }
}

/* Auth modal (shared) — solid panel so it stays readable on blurred page */
.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    isolation: isolate;
}

.auth-modal[aria-hidden="true"] {
    display: none;
}

.auth-modal-backdrop {
    position: absolute;
    inset: 0;
    background: var(--auth-modal-backdrop);
    backdrop-filter: blur(6px);
}

.auth-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 28rem);
    max-height: min(90vh, 640px);
    overflow: auto;
    background: var(--auth-modal-surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.6rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12), 0 32px 80px rgba(0, 0, 0, 0.45);
}

.auth-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.auth-modal-header h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: left;
}

#auth-status-text {
    line-height: 1.5;
    margin: 0 0 0.6rem;
}

.auth-modal-close {
    border: none;
    background: var(--bg-input);
    color: var(--text-primary);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.auth-modal .form-group {
    margin-bottom: 0.9rem;
}

.auth-modal .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

.auth-modal .form-group input {
    width: 100%;
    padding: 0.8rem 0.85rem;
    background: var(--auth-modal-input-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.35;
}

.auth-modal .form-group input::placeholder {
    color: var(--text-tertiary);
    opacity: 0.9;
}

.auth-modal .form-group input:focus {
    outline: none;
    border-color: #ff6b4a;
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.2);
}

.auth-modal-panel .auth-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0 0.75rem;
}

.auth-modal-panel .auth-button-row .cta-button {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.auth-modal-panel #auth-login-google {
    width: 100%;
    margin-top: 0.25rem;
}

.auth-forgot-wrap {
    margin: -0.15rem 0 0.65rem;
    text-align: right;
}

.auth-link-button {
    background: none;
    border: none;
    padding: 0;
    color: #ff6b4a;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: inherit;
}

.auth-link-button:hover {
    color: #ff8c6a;
}

.auth-modal-status {
    min-height: 0;
    margin: 0 0 0.5rem;
    color: #ff6b4a;
    font-size: 0.9rem;
    display: none;
}

.auth-modal-status--visible {
    display: block;
}

