/* TradePiks Coming Soon Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

    /* Light Mode Default Theme */
    --background: #ecf0f3;
    --foreground: #0f172a;
    --foreground-light: #334155;
    --card: #ffffff;
    --primary: #5958ec;
    --primary-foreground: #ffffff;
    --muted: #e2e8f0;
    --muted-foreground: #475569;
    --border: rgba(255, 255, 255, 0.4);
    --input: rgba(255, 255, 255, 0.4);
    --ring: #3b82f6;

    /* Semantic Colors */
    --success: #005b4a;
    --success-bg: rgba(0, 91, 74, 0.08);
    --success-border: rgba(0, 91, 74, 0.15);
    --destructive: #88000e;
    --destructive-bg: rgba(136, 0, 14, 0.08);
    --destructive-border: rgba(136, 0, 14, 0.15);

    /* Neomorphic Shadows (Light Mode) */
    --shadow-raised: -4px -4px 10px #ffffff, 4px 4px 10px #d1d9e6;
    --shadow-sunken: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
    --shadow-sunken-sm: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #ffffff;
    --shadow-btn: 4px 4px 10px #d1d9e6, -4px -4px 10px #ffffff;
    --shadow-btn-hover: 6px 6px 15px #d1d9e6, -6px -6px 15px #ffffff;
    --shadow-btn-active: inset 4px 4px 8px #d1d9e6, inset -4px -4px 8px #ffffff;
    --shadow-input: inset 3px 3px 6px #d1d9e6, inset -3px -3px 6px #ffffff;
    --shadow-input-focus: inset 4px 4px 10px #d1d9e6, inset -4px -4px 10px #ffffff;
    --shadow-badge: 2px 2px 5px rgba(0, 0, 0, 0.05), -2px -2px 5px #ffffff;
}

@media (prefers-color-scheme: light) {
    :root {
        /* Dark Mode Theme overrides */
        --background: #1e2024;
        --foreground: #f1f5f9;
        --foreground-light: #cbd5e1;
        --card: #25282c;
        --primary: #828dff;
        --primary-foreground: #1e293b;
        --muted: #1e293b;
        --muted-foreground: #94a3b8;
        --border: rgba(255, 255, 255, 0.03);
        --input: rgba(255, 255, 255, 0.03);
        --ring: #6366f1;

        --success: #4ade80;
        --success-bg: rgba(74, 222, 128, 0.08);
        --success-border: rgba(74, 222, 128, 0.15);
        --destructive: #fda4af;
        --destructive-bg: rgba(253, 164, 175, 0.08);
        --destructive-border: rgba(253, 164, 175, 0.15);

        /* Neomorphic Shadows (Dark Mode) */
        --shadow-raised: -4px -4px 10px rgba(255, 255, 255, 0.03), 6px 6px 12px rgba(0, 0, 0, 0.35);
        --shadow-sunken: inset 4px 4px 8px rgba(0, 0, 0, 0.35), inset -4px -4px 8px rgba(255, 255, 255, 0.03);
        --shadow-sunken-sm: inset 2px 2px 4px rgba(0, 0, 0, 0.35), inset -1px -1px 3px rgba(255, 255, 255, 0.03);
        --shadow-btn: 4px 4px 10px rgba(0, 0, 0, 0.35), -4px -4px 10px rgba(255, 255, 255, 0.03);
        --shadow-btn-hover: 6px 6px 15px rgba(0, 0, 0, 0.4), -6px -6px 15px rgba(255, 255, 255, 0.05);
        --shadow-btn-active: inset 4px 4px 8px rgba(0, 0, 0, 0.35), inset -4px -4px 8px rgba(255, 255, 255, 0.03);
        --shadow-input: inset 4px 4px 8px rgba(0, 0, 0, 0.35), inset -3px -3px 6px rgba(255, 255, 255, 0.03);
        --shadow-input-focus: inset 6px 6px 12px rgba(0, 0, 0, 0.4), inset -4px -4px 10px rgba(255, 255, 255, 0.04);
        --shadow-badge: 2px 2px 5px rgba(0, 0, 0, 0.3), -2px -2px 5px rgba(255, 255, 255, 0.02);
    }
}

/* =========================================
   BASE STYLES
   ========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    transition: background-color 0.30s ease, color 0.30s ease, border-color 0.30s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body {
    background-color: var(--background);
    color: var(--foreground);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: auto;
    -webkit-font-smoothing: antialiased;
    max-width: 1216px;
    margin: 0 auto;
    word-break: break-all;
    /* Prevents overflow layout shifts at narrow widths */
    padding: 0;
    /* Progressively overridden by media queries below */
}

/* Responsive body padding & word break rules from original Laravel layout */
@media (min-width: 160px) {

    /* 3xs */
    body {
        padding: 0 4px;
        word-break: normal;
    }
}

@media (min-width: 320px) {

    /* 2xs */
    body {
        padding: 0 8px;
    }
}

@media (min-width: 480px) {

    /* xs */
    body {
        padding: 0 16px;
    }
}

@media (min-width: 640px) {

    /* sm */
    body {
        padding: 0 24px;
    }
}

/* =========================================
   LAYOUT & CONTAINER
   ========================================= */

/* The body now serves as the page container itself. */

header {
    margin-top: 16px;
    height: 80px;
    width: 100%;
    overflow-x: auto;
}

nav {
    display: flex;
    width: 100%;
    min-width: 32px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    background-color: var(--card);
    padding: 14px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-raised);
}

main {
    flex-grow: 1;
    padding-top: 16px;
}

footer {
    margin-top: 96px;
    border-top: 1px solid var(--border);
    background-color: var(--card);
    box-shadow: var(--shadow-raised);
    padding: 48px 0;
}

/* =========================================
   GRID UTILITIES
   ========================================= */

.grid {
    display: grid;
    gap: 32px;
}

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

@media (min-width: 1024px) {
    .lg\:grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .lg\:col-span-6 {
        grid-column: span 6 / span 6;
    }

    .lg\:col-span-7 {
        grid-column: span 7 / span 7;
    }

    .lg\:col-span-5 {
        grid-column: span 5 / span 5;
    }
}

.gap-12 {
    gap: 48px;
}

.gap-8 {
    gap: 32px;
}

.gap-6 {
    gap: 24px;
}

.gap-4 {
    gap: 16px;
}

/* =========================================
   FLEX UTILITIES
   ========================================= */

.flex {
    display: flex;
}

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

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

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

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

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

.flex-wrap {
    flex-wrap: wrap;
}

.grow {
    flex-grow: 1;
}

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

/* =========================================
   COMPONENTS & UI ELEMENTS
   ========================================= */

/* Brand & Logo */
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

.brand-icon {
    display: flex;
    height: 26px;
    width: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: var(--shadow-raised);
}

.brand-icon svg {
    height: 14px;
    width: 14px;
    color: white;
}

.brand-name span {
    color: var(--primary);
}

/* Text Colors */

.text-black {
    color: black;
}

.text-red {
    color: red;
}

/* Margins and Padding */

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.ps-4 {
    padding-left: 1rem;
}

.line-height {
    line-height: 1.5;
}

ul.disc-none {
    list-style: none;
    padding-left: 1rem;
}

/* Links */
.nav-link {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    transform: scale(1.05);
}

/* Badges */
.badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: rgba(89, 88, 236, 0.1);
    color: var(--primary);
    border: 1px solid rgba(89, 88, 236, 0.15);
    box-shadow: var(--shadow-badge);
}

.badge-status {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--success);
}

/* Cards */
.card-raised {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-raised);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* .card-raised:hover {
    tr1ansform: translateY(-2px);
} */

.card-sunken {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-sunken);
    padding: 32px;
}

.card-border-green {
    border-left: 4px solid var(--success);
}

.card-border-red {
    margin-top: 32px;
    margin-bottom: 32px;
    border-left: 4px solid var(--destructive);
}

/* Neomorphic Buttons */
button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 16px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--foreground);
    box-shadow: var(--shadow-btn);
    transition: all 0.2s ease-in-out;
    outline: none;
    white-space: normal;
    /* Allows text wrap on narrow viewport */
    text-align: center;
    word-break: break-word;
}

button:hover,
.btn:hover {
    box-shadow: var(--shadow-btn-hover);
    transform: scale(1.02);
}

button:active,
.btn:active {
    box-shadow: var(--shadow-btn-active);
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 4px 6px 12px rgba(89, 88, 236, 0.25);
}

.btn-primary:hover {
    box-shadow: 6px 8px 18px rgba(89, 88, 236, 0.35);
}

/* Form Inputs */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

input[type="email"],
input[type="text"],
select,
textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: var(--background);
    color: var(--foreground);
    padding: 14px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-input);
    outline: none;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: var(--shadow-input-focus);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted-foreground);
    opacity: 0.65;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%2364748b' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

textarea {
    resize: none;
}

/* Waitlist Form Component */
.waitlist-form-container {
    width: 100%;
    max-width: 450px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

@media (min-width: 480px) {
    .waitlist-form {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .waitlist-form input {
        flex: 1 1 200px;
        min-width: 0;
        /* Allows input to shrink below default width */
    }

    .waitlist-form button {
        flex: 0 0 auto;
    }
}

.error-message {
    font-size: 11px;
    font-weight: 600;
    color: var(--destructive);
    margin-left: 8px;
    margin-top: 4px;
}

.success-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid var(--success-border);
    background-color: var(--success-bg);
    padding: 24px;
    text-align: center;
    animation: fadeIn 0.30s ease-out forwards;
}

.success-icon {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: var(--success-bg);
    color: var(--success);
    font-size: 1.25rem;
    font-weight: 800;
    border: 1.5px solid var(--success);
}

.success-title {
    font-size: 0.875rem;
    font-weight: 700;
}

.success-desc {
    font-size: 0.75rem;
    color: var(--foreground-light);
    max-width: 320px;
}

/* =========================================
   SECTIONS
   ========================================= */

/* Hero Section */
.hero-section {
    padding: 48px 0;
}

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

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-tagline-container {
    align-self: flex-start;
}

h1.hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

@media (min-width: 640px) {
    h1.hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    h1.hero-title {
        font-size: 3.5rem;
    }
}

.title-accent {
    display: inline-block;
    color: var(--primary);
    font-style: italic;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground-light);
    max-width: 560px;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

.hero-right {
    position: relative;
    background-color: var(--card);
    border-radius: 24px;
}

.zoom-image-trigger {
    display: block;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-raised);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zoom-image-trigger:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-btn-hover);
}

.zoom-figure {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.zoom-image {
    width: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.zoom-image-trigger:hover .zoom-image {
    transform: scale(1.02);
}

.zoom-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-image-trigger:hover .zoom-overlay {
    opacity: 1;
}

.zoom-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.zoom-image-trigger:hover .zoom-badge {
    transform: scale(1);
}

/* Bento Marketing Section */
.bento-section {
    border-top: 1px solid var(--border);
    padding: 80px 0;
}

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

.bento-header h2 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .bento-header h2 {
        font-size: 2.25rem;
    }
}

.bento-header p {
    font-size: 1rem;
    color: var(--foreground-light);
    max-width: 576px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .bento-header p {
        font-size: 1.125rem;
    }
}

/* Features Styling */
.feature-block {
    padding: 48px 0;
}

.feature-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.feature-title-accent {
    font-size: 1.25rem;
    display: inline-block;
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground-light);
    max-width: 560px;
}

/* Grading Selectors */
.grade-selectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
    /* Automatically wrap button layout */
    gap: 8px;
    padding: 24px 0;
}

@media (min-width: 640px) {
    .grade-selectors-grid {
        gap: 16px;
    }
}

.grade-btn {
    flex-direction: column;
    padding: 10px;
    border-radius: 12px;
    min-width: 0;
    box-shadow: var(--shadow-raised);
}

@media (min-width: 640px) {
    .grade-btn {
        border-radius: 16px;
    }
}

.grade-btn-letter {
    font-size: 1.125rem;
    font-weight: 900;
}

@media (min-width: 640px) {
    .grade-btn-letter {
        font-size: 1.25rem;
    }
}

.grade-btn-label {
    margin-top: 4px;
    font-size: 9px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    display: none;
}

@media (min-width: 640px) {
    .grade-btn-label {
        display: inline;
    }
}

.grade-btn.active {
    background-color: var(--background);
    box-shadow: var(--shadow-sunken-sm);
}

.grade-btn.active .grade-btn-letter {
    transform: scale(0.95);
}

/* Custom Grade Accent Classes for Card */
.grade-card {
    min-height: 220px;
    height: auto;
    /* Allow growth when text wraps on mobile */
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sunken-sm);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.quote-text {
    font-size: 0.875rem;
    font-weight: 800;
    font-style: italic;
    line-height: 1.4;
}

.desc-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground-light);
    line-height: 1.6;
}

/* Grade A Colors */
.grade-A {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.grade-card-A {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.2);
}

.grade-card-A .quote-text {
    color: #10b981;
}

/* Grade B Colors */
.grade-B {
    background-color: rgba(89, 88, 236, 0.08);
    border-color: rgba(89, 88, 236, 0.2);
    color: var(--primary);
}

.grade-card-B {
    background-color: rgba(89, 88, 236, 0.08);
    border-color: rgba(89, 88, 236, 0.2);
}

.grade-card-B .quote-text {
    color: var(--primary);
}

/* Grade C Colors */
.grade-C {
    background-color: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.grade-card-C {
    background-color: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
}

.grade-card-C .quote-text {
    color: #f97316;
}

/* Grade D Colors */
.grade-D {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.grade-card-D {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.grade-card-D .quote-text {
    color: #ef4444;
}

/* Grade F Colors */
.grade-F {
    background-color: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
    color: #a855f7;
}

.grade-card-F {
    background-color: rgba(168, 85, 247, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

.grade-card-F .quote-text {
    color: #a855f7;
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-box {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    border-radius: 40px;
    border: 1px solid var(--border);
    background-color: var(--card);
    padding: 40px;
    box-shadow: var(--shadow-raised);
    transition: transform 0.5s ease;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-box {
        padding: 64px;
    }
}

@media (min-width: 1024px) {
    .cta-box {
        padding: 80px;
    }
}

.cta-box:hover {
    transform: scale(1.005);
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    max-width: 768px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-title-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--primary);
    box-shadow: var(--shadow-badge);
}

.cta-description {
    font-size: 1rem;
    color: var(--foreground-light);
    max-width: 672px;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.125rem;
    }
}

.glow-ambient {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -10;
    height: 256px;
    width: 100%;
    max-width: 768px;
    transform: translate(-50%, -50%);
    border-radius: 9999px;
    background-color: rgba(89, 88, 236, 0.08);
    filter: blur(100px);
}

/* =========================================
   FOOTER
   ========================================= */

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-brand-col {
        grid-column: span 1 / span 1;
    }
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.copyright {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.risk-warning {
    border-left: 2px solid var(--destructive);
    padding-left: 8px;
    font-size: 11px;
    font-style: italic;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col-title {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    text-decoration: none;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
}

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

/* =========================================
   LIGHTBOX & MODALS
   ========================================= */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 16px;
    backdrop-filter: blur(8px);
    cursor: zoom-out;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 55;
    cursor: pointer;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-close svg {
    height: 24px;
    width: 24px;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1024px;
    padding: 8px;
    cursor: default;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 16px;
    display: inline-block;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

.pulse-dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: var(--success);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   RESPONSIVE HEADER FACADE ADAPTATIONS
   ========================================= */

.contact-link-mobile,
.home-link-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 36px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background-color: var(--card);
    color: var(--foreground);
    box-shadow: var(--shadow-btn);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.contact-link-mobile svg,
.home-link-mobile svg {
    height: 18px;
    width: 18px;
    color: var(--foreground);
}

.contact-link-mobile:hover,
.home-link-mobile:hover {
    box-shadow: var(--shadow-btn-hover);
    transform: scale(1.02);
}

.contact-link-mobile:active,
.home-link-mobile:active {
    box-shadow: var(--shadow-btn-active);
    transform: scale(0.98);
}

@media (max-width: 320px) {
    .brand-icon {
        display: none !important;
    }

    .contact-link-desktop,
    .home-link-desktop {
        display: none !important;
    }

    .contact-link-mobile,
    .home-link-mobile {
        display: inline-flex !important;
    }
}