/* Import Apple's SF Pro font and fallbacks */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Apple Style */
.font-inter {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', sans-serif;
}

.font-space {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', sans-serif;
}

.font-bold {
    font-weight: 600;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-light {
    font-weight: 300;
}

/* Colors - Apple Style */
.bg-near-black {
    background-color: #000000;
}

.bg-dark-gray {
    background-color: #1d1d1f;
}

.bg-input-bg {
    background-color: #1d1d1f;
}

.text-zinc-100 {
    color: #ffffff;
}

.text-zinc-200 {
    color: #f5f5f7;
}

.text-zinc-300 {
    color: #e8e8ed;
}

.text-zinc-400 {
    color: #86868b;
}

.text-zinc-500 {
    color: #6e6e73;
}

.text-zinc-600 {
    color: #424245;
}

.text-zinc-700 {
    color: #2d2d30;
}

.text-zinc-800 {
    color: #1d1d1f;
}

.text-zinc-900 {
    color: #000000;
}

.text-cyan-400 {
    color: #22d3ee;
}

.text-cyan-500 {
    color: #06b6d4;
}

.text-blue-600 {
    color: #2563eb;
}

.text-white {
    color: #ffffff;
}

.text-green-300 {
    color: #30d158;
}

.text-green-400 {
    color: #30d158;
}

.text-green-500 {
    color: #30d158;
}

.text-green-600 {
    color: #30d158;
}

.text-green-900 {
    color: #14532d;
}

.text-red-300 {
    color: #ff453a;
}

.text-red-600 {
    color: #ff453a;
}

/* Backgrounds - Apple Style */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-cyan-500 {
    --tw-gradient-from: #06b6d4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(6, 182, 212, 0));
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.from-zinc-100 {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-zinc-300 {
    --tw-gradient-to: #e8e8ed;
}

.from-zinc-700 {
    --tw-gradient-from: #2d2d30;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 48, 0));
}

.to-zinc-900 {
    --tw-gradient-to: #000000;
}

.from-zinc-600 {
    --tw-gradient-from: #424245;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 66, 69, 0));
}

.to-zinc-800 {
    --tw-gradient-to: #1d1d1f;
}

/* Layout */
.max-w-5xl {
    max-width: 64rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.p-12 {
    padding: 3rem;
}

.p-10 {
    padding: 2.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-2 {
    padding: 0.5rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-4 {
    padding-top: 1rem;
}

/* Spacing */
.space-y-10 > * + * {
    margin-top: 1.5rem;
}

.space-y-6 > * + * {
    margin-top: 1rem;
}

.space-y-4 > * + * {
    margin-top: 0.75rem;
}

.space-y-3 > * + * {
    margin-top: 0.5rem;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.md\:col-span-2 {
    grid-column: span 2 / span 2;
}

.gap-8 {
    gap: 2rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-3 {
    gap: 0.75rem;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.sm\:flex-row {
    flex-direction: row;
}

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

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

.justify-between {
    justify-content: space-between;
}

/* Borders - Apple Style */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-dashed {
    border-style: dashed;
}

.border-zinc-700 {
    border-color: #2d2d30;
}

.border-zinc-800 {
    border-color: #1d1d1f;
}

.border-zinc-600 {
    border-color: #424245;
}

.border-cyan-500\/60 {
    border-color: rgba(255, 255, 255, 0.6);
}

.border-green-500\/60 {
    border-color: rgba(48, 209, 88, 0.6);
}

.border-green-600 {
    border-color: #30d158;
}

.border-red-600 {
    border-color: #ff453a;
}

/* Border Radius - Apple Style */
.rounded-2xl {
    border-radius: 1.25rem;
}

.rounded-xl {
    border-radius: 1rem;
}

.rounded-lg {
    border-radius: 0.75rem;
}

/* Backdrop and Effects */
.backdrop-blur {
    backdrop-filter: blur(20px);
}

/* Shadows - Apple Style */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transforms */
.transform {
    transform: translateZ(0);
}

.hover\:scale-105:hover {
    transform: scale(1.02);
}

/* Transitions - Apple Style */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.3s;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.3s;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.3s;
}

.duration-200 {
    transition-duration: 0.2s;
}

/* Text - Apple Style */
.text-center {
    text-align: center;
}

.text-5xl {
    font-size: 3.5rem;
    line-height: 1.07143;
    font-weight: 600;
    letter-spacing: -0.005em;
}

.text-4xl {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.0073529412em;
}

.text-3xl {
    font-size: 2rem;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.0073529412em;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.012em;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.22222;
    font-weight: 500;
    letter-spacing: 0.009em;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.28571;
    font-weight: 400;
    letter-spacing: 0.016em;
}

.tracking-tight {
    letter-spacing: -0.022em;
}

/* Background Clip */
.bg-clip-text {
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Opacity */
.opacity-75 {
    opacity: 0.75;
}

.opacity-0 {
    opacity: 0;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

.cursor-not-allowed {
    cursor: not-allowed;
}

/* Display */
.hidden {
    display: none;
}

.block {
    display: block;
}

/* Width and Height */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

/* Position */
.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

/* Z-index */
.z-50 {
    z-index: 50;
}

/* Transform utilities */
.left-1\/2 {
    left: 50%;
}

.top-4 {
    top: 1rem;
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

/* Focus states - Apple Style */
.focus\:ring-2:focus {
    box-shadow: 0 0 0 2px var(--tw-ring-color);
}

.focus\:ring-cyan-500\/40:focus {
    --tw-ring-color: rgba(255, 255, 255, 0.4);
}

.focus\:border-cyan-500\/60:focus {
    border-color: rgba(255, 255, 255, 0.6);
}

/* Hover states - Apple Style */
.hover\:border-cyan-500\/60:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.hover\:bg-zinc-700:hover {
    background-color: #2d2d30;
}

.hover\:bg-zinc-600:hover {
    background-color: #424245;
}

.hover\:from-zinc-600:hover {
    --tw-gradient-from: #424245;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(66, 66, 69, 0));
}

.hover\:to-zinc-800:hover {
    --tw-gradient-to: #1d1d1f;
}

/* Form elements - Apple Style */
input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    background-color: #1d1d1f;
    border: 1px solid #2d2d30;
    color: #ffffff;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Mobile touch optimizations */
@media (max-width: 639px) {
    input, select, textarea {
        min-height: 44px; /* Apple's recommended touch target size */
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Better mobile scrolling */
    .bg-dark-gray\/95 {
        -webkit-overflow-scrolling: touch;
    }
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
}

input::placeholder, textarea::placeholder {
    color: #86868b;
}

/* File upload styling */
.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 639px) {
    /* Mobile-first adjustments */
    .max-w-5xl {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .px-4 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .py-12 {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .py-10 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .p-12 {
        padding: 2rem;
    }
    
    .p-10 {
        padding: 1.5rem;
    }
    
    .p-8 {
        padding: 1.25rem;
    }
    
    .text-5xl {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .text-4xl {
        font-size: 2rem;
        line-height: 1.125;
    }
    
    .text-3xl {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .text-2xl {
        font-size: 1.375rem;
        line-height: 1.25;
    }
    
    .text-xl {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .logo-image {
        max-width: 80px;
        max-height: 80px;
    }
    
    .footer-logo-image {
        max-width: 32px;
        max-height: 32px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .space-y-10 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-6 > * + * {
        margin-top: 0.75rem;
    }
    
    .space-y-4 > * + * {
        margin-top: 0.5rem;
    }
    
    .space-y-3 > * + * {
        margin-top: 0.375rem;
    }
    
    .mb-16 {
        margin-bottom: 2rem;
    }
    
    .mb-10 {
        margin-bottom: 1.5rem;
    }
    
    .mb-8 {
        margin-bottom: 1.25rem;
    }
    
    .mb-6 {
        margin-bottom: 1rem;
    }
    
    .mb-4 {
        margin-bottom: 0.75rem;
    }
    
    .mb-3 {
        margin-bottom: 0.5rem;
    }
    
    .mb-2 {
        margin-bottom: 0.375rem;
    }
    
    .gap-8 {
        gap: 1.25rem;
    }
    
    .gap-6 {
        gap: 1rem;
    }
    
    .gap-4 {
        gap: 0.75rem;
    }
    
    .gap-3 {
        gap: 0.5rem;
    }
    
    /* Mobile form optimizations */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem;
    }
    
    /* Mobile grid adjustments */
    .grid-cols-1 {
        grid-template-columns: 1fr;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .md\:col-span-2 {
        grid-column: span 1 / span 1;
    }
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:col-span-2 {
        grid-column: span 2 / span 2;
    }
}

@media (min-width: 1024px) {
    .max-w-5xl {
        max-width: 64rem;
    }
    
    .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .p-12 {
        padding: 3rem;
    }
    
    .p-10 {
        padding: 2.5rem;
    }
    
    .p-8 {
        padding: 2rem;
    }
    
    .text-5xl {
        font-size: 3.5rem;
        line-height: 1.07143;
    }
    
    .text-4xl {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .text-3xl {
        font-size: 2rem;
        line-height: 1.125;
    }
    
    .text-2xl {
        font-size: 1.5rem;
        line-height: 1.16667;
    }
    
    .text-xl {
        font-size: 1.25rem;
        line-height: 1.2;
    }
    
    .logo-image {
        max-width: 120px;
        max-height: 120px;
    }
    
    .footer-logo-image {
        max-width: 40px;
        max-height: 40px;
    }
    
    .btn-submit {
        width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .space-y-10 > * + * {
        margin-top: 1.5rem;
    }
    
    .space-y-6 > * + * {
        margin-top: 1rem;
    }
    
    .space-y-4 > * + * {
        margin-top: 0.75rem;
    }
    
    .space-y-3 > * + * {
        margin-top: 0.5rem;
    }
    
    .mb-16 {
        margin-bottom: 4rem;
    }
    
    .mb-10 {
        margin-bottom: 2.5rem;
    }
    
    .mb-8 {
        margin-bottom: 2rem;
    }
    
    .mb-6 {
        margin-bottom: 1.5rem;
    }
    
    .mb-4 {
        margin-bottom: 1rem;
    }
    
    .mb-3 {
        margin-bottom: 0.75rem;
    }
    
    .mb-2 {
        margin-bottom: 0.5rem;
    }
    
    .gap-8 {
        gap: 2rem;
    }
    
    .gap-6 {
        gap: 1.5rem;
    }
    
    .gap-4 {
        gap: 1rem;
    }
    
    .gap-3 {
        gap: 0.75rem;
    }
}

/* Checkbox Styling */
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #3f3f46;
    border-radius: 4px;
    background-color: #18181b;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

input[type="checkbox"]:hover {
    border-color: #06b6d4;
    background-color: #1e1e1e;
}

input[type="checkbox"]:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

input[type="checkbox"]:checked {
    background-color: #06b6d4;
    border-color: #06b6d4;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 7px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Error state for checkbox */
input[type="checkbox"].border-red-500\/60 {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* Custom animations - Apple Style */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Glassmorphism effect - Apple Style */
.bg-dark-gray\/95 {
    background-color: rgba(29, 29, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Button hover effects - Apple Style */
.btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

/* Success and error message styling - Apple Style */
#successMessage {
    backdrop-filter: blur(20px);
    background-color: rgba(48, 209, 88, 0.1);
    border: 1px solid rgba(48, 209, 88, 0.3);
}

/* Success page specific styles */
#successMessage {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    z-index: 50;
    overflow-y: auto;
}

#successMessage .max-w-4xl {
    width: 100%;
    max-width: 64rem;
}

/* Success icon styling */
#successMessage .w-24 {
    width: 6rem;
    height: 6rem;
}

#successMessage .w-12 {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments for success page */
@media (max-width: 768px) {
    #successMessage .p-12 {
        padding: 2rem;
    }
    
    #successMessage .text-4xl {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    #successMessage .text-xl {
        font-size: 1.125rem;
    }
    
    #successMessage .grid-cols-1.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    #successMessage .space-x-4 {
        margin-left: 0;
        margin-right: 0;
    }
    
    #successMessage .flex.items-start.space-x-4 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #successMessage .w-8 {
        margin-bottom: 0.5rem;
    }
}

/* Footer styling - Apple Style */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-logo:hover .footer-logo-image {
    filter: grayscale(0%) brightness(1);
}

/* Additional utility classes */
.text-3xl {
    font-size: 2rem;
    line-height: 1.125;
    font-weight: 600;
    letter-spacing: 0.0073529412em;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.16667;
    font-weight: 600;
    letter-spacing: 0.009em;
}

/* Success page specific margins and paddings */
.max-w-3xl {
    max-width: 48rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.w-20 {
    width: 5rem;
}

.h-20 {
    height: 5rem;
}

.w-10 {
    height: 2.5rem;
    width: 2.5rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-start {
    align-items: flex-start;
}

.rounded-full {
    border-radius: 9999px;
}

.from-green-400 {
    --tw-gradient-from: #30d158;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(48, 209, 88, 0));
}

.to-emerald-400 {
    --tw-gradient-to: #34d399;
}

.inline-block {
    display: inline-block;
}

.hover\:from-cyan-600:hover {
    --tw-gradient-from: #0891b2;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(8, 145, 178, 0));
}

.hover\:to-blue-700:hover {
    --tw-gradient-to: #1d4ed8;
}

.hover\:shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-cyan-500\/25 {
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.25), 0 4px 6px -2px rgba(6, 182, 212, 0.05);
}

.hover\:text-cyan-300:hover {
    color: #67e8f9;
}

/* Ensure proper contrast and readability */
::placeholder {
    color: #86868b;
    opacity: 1;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar - Apple Style */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1d1d1f;
}

::-webkit-scrollbar-thumb {
    background: #424245;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6e6e73;
}

/* Success page specific styles */
.bg-green-500\/20 {
    background-color: rgba(48, 209, 88, 0.2);
}

.border-green-500\/40 {
    border-color: rgba(48, 209, 88, 0.4);
}

.text-green-400 {
    color: #30d158;
}

.bg-zinc-800\/50 {
    background-color: rgba(39, 39, 42, 0.5);
}

/* Remove text decorations */
.no-underline {
    text-decoration: none;
}

a.no-underline:hover {
    text-decoration: none;
}

/* Success page button link styling */
.btn-submit.inline-block {
    text-decoration: none;
    display: inline-block;
}

/* Apple-style button */
.btn-submit {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8ed 100%);
    color: #000000;
    border: none;
    border-radius: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.012em;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

/* Apple-style form sections */
.bg-dark-gray\/95 {
    background: rgba(29, 29, 31, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
}

/* Remove icon spacing */
.flex.items-center.gap-3 {
    gap: 0;
}

/* Logo styling */
.logo-container {
    background: transparent;
    border-radius: 1.25rem;
    padding: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-image {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-container:hover .logo-image {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}
