/* static/style.css */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

body {
    background-color: #1A1A1A; /* Background Black */
    color: #FFFFFF; /* Accent White */
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
}

.header {
    text-align: center;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.header p {
    font-size: 16px;
    color: #FFFFFF;
    opacity: 0.8;
    font-weight: 400;
}

.header nav a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.header nav a:hover {
    color: #FF4B47;
}

.upload-section {
    background: #F5F5F5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #FF4B47;
    transition: border-color 0.3s ease;
}

.upload-section:hover {
    border-color: #FF8EB2;
}

.upload-section h3 {
    margin-top: 0;
    color: #FF4B47;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.upload-section p {
    margin: 10px 0;
    color: #1A1A1A;
    font-weight: 400;
}

.upload-section .upload-options {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.upload-section input[type="file"] {
    display: none;
}

.upload-section label {
    border: 1px solid #FF8EB2;
    color: #1A1A1A;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease, border-color 0.3s ease;
    display: inline-block;
    background: transparent;
}

.upload-section label:hover {
    color: #FF4B47;
    border-color: #FF4B47;
}

/* Success Message */
.success-message {
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    color: #FFFFFF;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.success-message p {
    margin: 0;
}

.success-message button {
    background: #FFFFFF;
    color: #1A1A1A;
    border: 1px solid #FF8EB2;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.success-message button:hover {
    color: #FF4B47;
    border-color: #FF4B47;
}

.options-section {
    background: #F5F5F5;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 30px;
}

.options-section h3 {
    margin-top: 0;
    color: #FF4B47;
    font-size: 20px;
    font-weight: 700;
}

.options-section label {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 400;
    transition: color 0.3s ease;
}

.options-section label:hover {
    color: #FF4B47;
}

.options-section input[type="text"],
.options-section input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #FF8EB2;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.options-section input[type="text"]:focus,
.options-section input[type="number"]:focus {
    border-color: #FF4B47;
    outline: none;
}

/* Custom Radio Buttons */
.options-section .radio-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #FF8EB2;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    vertical-align: middle;
}

.options-section .radio-group input[type="radio"]:checked {
    border-color: #FF4B47;
    background-color: #FF4B47;
}

.options-section .radio-group input[type="radio"]:checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Custom Range Sliders */
.options-section input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #D1D5DB;
    border-radius: 5px;
    outline: none;
    --value: 0%;
}

.options-section input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    background: #D1D5DB;
    border-radius: 5px;
    background: linear-gradient(to right, #FF8EB2 var(--value), #D1D5DB var(--value));
}

.options-section input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #FF4B47;
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.options-section input[type="range"]::-moz-range-track {
    height: 8px;
    background: #D1D5DB;
    border-radius: 5px;
}

.options-section input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #FF4B47;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.options-section input[type="range"]::-moz-range-progress {
    background: #FF4B47;
    height: 8px;
    border-radius: 5px;
}

.options-section input[type="range"]:focus {
    outline: none;
}

.options-section .radio-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.options-section button {
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
}

.options-section button:hover {
    background: #FF4B47;
    transform: scale(1.05);
}

.hidden {
    display: none;
}

.footer {
    text-align: center;
    margin-top: 10px;
    color: #FFFFFF;
    font-size: 12px;
    padding-bottom: 20px;
}

.footer .powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.footer .powered-by img {
    max-height: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header h1 {
        font-size: 24px;
    }

    .upload-section {
        padding: 20px;
    }

    .upload-section .upload-options {
        flex-direction: column;
        gap: 10px;
    }

    .options-section h3 {
        font-size: 16px;
    }

    .options-section {
        padding: 20px;
    }
}
        /* Additional styles specific to the requirements document */
        .req-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .req-section {
            margin-bottom: 40px;
        }

        .req-section h2 {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(90deg, #FF4B47, #FF8EB2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }

        .req-section h3 {
            font-size: 20px;
            font-weight: 700;
            color: #FF4B47;
            margin-bottom: 10px;
        }

        .req-section p {
            font-size: 16px;
            color: #FFFFFF;
            opacity: 0.8;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .req-section ul {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 15px;
        }

        .req-section ul li {
            font-size: 16px;
            color: #FFFFFF;
            opacity: 0.8;
            font-weight: 400;
            margin-bottom: 10px;
        }

        .req-section table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 15px;
        }

        .req-section table th,
        .req-section table td {
            border: 1px solid #FF8EB2;
            padding: 10px;
            text-align: left;
            font-size: 14px;
            color: #FFFFFF;
        }

        .req-section table th {
            background: linear-gradient(90deg, #FF4B47, #FF8EB2);
            font-weight: 700;
        }

        .req-section table td {
            background: #2A2A2A;
            opacity: 0.8;
        }
.countdown-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
}

.form-group {
    margin: 15px 0;
}

.duration-inputs input {
    width: 100px;
    margin-right: 10px;
}

#timer-display {
    margin-top: 20px;
    text-align: center;
}

#countdown {
    font-size: 2em;
    font-family: monospace;
    white-space: nowrap;
}

.error {
    color: #FF4B47; /* Use Primary Coral for errors */
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    background: #1A1A1A; /* Background Black */
    border: 1px solid #FFFFFF; /* Accent White */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Urbanist', sans-serif;
    color: #FFFFFF; /* Accent White */
    width: 280px; /* Match the width in the screenshot */
}

.flatpickr-month {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.flatpickr-current-month {
    font-size: 1.2em;
    font-weight: bold;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flatpickr-monthDropdown-months,
.flatpickr-year {
    color: #FFFFFF;
    background: #1A1A1A;
    border: none;
    font-family: 'Urbanist', sans-serif;
    font-size: 1.2em;
    padding: 5px;
    margin: 0 5px;
}

.flatpickr-monthDropdown-months:hover,
.flatpickr-year:hover {
    background: #FF4B47; /* Primary Coral on hover */
}

.flatpickr-prev-month,
.flatpickr-next-month {
    color: #FFFFFF;
    position: absolute;
    top: 10px;
}

.flatpickr-prev-month {
    left: 10px;
}

.flatpickr-next-month {
    right: 10px;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    color: #FF4B47; /* Primary Coral on hover */
}

.flatpickr-weekdays {
    background: #1A1A1A;
    padding: 5px 0;
    display: flex;
    justify-content: space-around;
}

.flatpickr-weekday {
    color: #FF4B47; /* Primary Coral for day names */
    font-weight: bold;
    font-size: 0.9em;
    flex: 1;
    text-align: center;
}

.flatpickr-days {
    background: #1A1A1A;
}

.flatpickr-day {
    color: #FFFFFF;
    background: transparent;
    border: none;
    font-size: 0.9em;
    height: 36px;
    line-height: 36px;
}

.flatpickr-day:hover {
    background: #FF8EB2; /* Secondary Pink on hover */
    border: none;
}

.flatpickr-day.today {
    border: 1px solid #FF4B47; /* Primary Coral */
    background: transparent;
    color: #FFFFFF;
}

.flatpickr-day.selected {
    background: #FF4B47 !important; /* Primary Coral */
    color: #FFFFFF !important;
    border: none !important;
    border-radius: 50%;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #FFFFFF;
    opacity: 0.7;
}

.flatpickr-day.weekend {
    color: #FF8EB2; /* Secondary Pink for weekends */
}

.flatpickr-time {
    border-top: 1px solid #FFFFFF; /* Accent White */
    padding: 10px;
    background: #FFFFFF; /* White background for time selector */
    display: block !important; /* Ensure visibility */
    text-align: center;
    visibility: visible !important; /* Force visibility */
}

.flatpickr-time-label {
    color: #000000; /* Black text to contrast with white background */
    font-size: 14px;
    margin-bottom: 5px;
}

.flatpickr-time .flatpickr-hour,
.flatpickr-time .flatpickr-minute,
.flatpickr-time .flatpickr-second {
    width: 40px; /* Smaller width to match the inspiration */
    text-align: center;
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 3px;
    background: #FFFFFF; /* White background */
    color: #000000; /* Black text */
    font-family: 'Urbanist', sans-serif;
    margin: 0 2px; /* Tighter spacing */
    display: inline-block !important; /* Force visibility */
    visibility: visible !important; /* Force visibility */
}

.flatpickr-time .flatpickr-hour:hover,
.flatpickr-time .flatpickr-minute:hover,
.flatpickr-time .flatpickr-second:hover,
.flatpickr-time .flatpickr-hour:focus,
.flatpickr-time .flatpickr-minute:focus,
.flatpickr-time .flatpickr-second:focus {
    border-color: #FF4B47; /* Primary Coral */
}

.flatpickr-time .flatpickr-time-separator {
    margin: 0 2px;
    color: #000000; /* Black colons */
    display: inline-block !important; /* Force visibility */
    visibility: visible !important; /* Force visibility */
}

.flatpickr-time .flatpickr-second {
    position: relative;
}

.flatpickr-time .flatpickr-second::after {
    content: '▼';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #000000;
    font-size: 10px;
    pointer-events: none;
}

.flatpickr-time .flatpickr-am-pm {
    display: none !important; /* Using 24-hour format */
}

/* Buttons at the bottom */
.flatpickr-buttons {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #FFFFFF;
    background: #1A1A1A;
}

.flatpickr-button {
    background: none;
    border: none;
    color: #FF4B47; /* Primary Coral */
    cursor: pointer;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
}

.flatpickr-button:hover {
    color: #FF8EB2; /* Secondary Pink on hover */
}

.flatpickr-button.ok {
    font-weight: bold;
}
/* ── Suite nav ─────────────────────────────────────────────────────────────── */
.suite-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 2rem;
    background: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.suite-nav-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.suite-nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.suite-nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.suite-nav-links a:hover {
    color: #FF4B47;
}

/* ── Gradient text utility ─────────────────────────────────────────────────── */
.grad {
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    gap: 1.75rem;
    min-height: 80vh;
}

.hero-logo {
    width: clamp(220px, 45vw, 480px);
    height: auto;
    opacity: 0;
    animation: heroRise 0.9s 0.1s ease forwards;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    max-width: 460px;
    opacity: 0;
    animation: heroRise 0.8s 0.35s ease forwards;
}

.hero-cta {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: 5px;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    opacity: 0;
    animation: heroRise 0.8s 0.5s ease forwards;
}

.hero-cta:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(255, 75, 71, 0.3);
}

.hero-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    border-radius: 2px;
    opacity: 0;
    animation: heroRise 0.8s 0.65s ease forwards;
}

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

/* ── Tools section ─────────────────────────────────────────────────────────── */
.tools-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
}

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

.tools-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #FF4B47;
    margin-bottom: 0.75rem;
}

.tools-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

/* ── Tool cards ────────────────────────────────────────────────────────────── */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

/* Explicit reset for <a> cards — kills browser blue */
a.tool-card,
a.tool-card:visited,
a.tool-card:hover,
a.tool-card:focus {
    color: #FFFFFF;
    text-decoration: none;
}

.tool-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF4B47, #FF8EB2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.tool-card:hover::before { transform: scaleX(1); }

.tool-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 75, 71, 0.3);
    transform: translateY(-3px);
}

.tool-card--disabled {
    opacity: 0.4;
    pointer-events: none;
}

.tool-card--faint { opacity: 0.18; }

.tool-num {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.tool-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

.tool-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.tool-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    font-weight: 400;
}

.tool-status {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tool-status .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tool-status.live { color: #FF4B47; }
.tool-status.live .dot {
    background: #FF4B47;
    box-shadow: 0 0 6px #FF4B47;
    animation: dotBlink 2.2s ease-in-out infinite;
}

.tool-status.soon { color: rgba(255, 255, 255, 0.35); }
.tool-status.soon .dot { background: rgba(255, 255, 255, 0.35); }

.tool-arrow {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 1rem;
    color: #FF4B47;
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity 0.2s, transform 0.2s;
}

.tool-card:hover .tool-arrow { opacity: 1; transform: translate(0, 0); }

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* ── Scroll reveal ─────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .hero { padding: 4rem 1rem 3rem; min-height: 60vh; }
    .hero-logo { width: clamp(160px, 70vw, 320px); }
    .tools-section { padding: 2rem 0 4rem; }
}
