/* ===================================================
   AWARDS PORTAL — GLOBAL DESIGN SYSTEM
   Theme: AGNI Light Theme (Blue/Orange/Green)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ─── CSS Custom Properties ──────────────────────── */
:root {
    /* Brand Colors */
    --clr-bg: #f4f6fb;
    --clr-bg-2: #ffffff;
    --clr-bg-3: #eef2f7;
    --clr-bg-card: #ffffff;
    --clr-border: #d1d5db;

    --clr-gold: #ff8c00;
    /* Re-used for Orange Accent */
    --clr-gold-light: #ffbd66;
    --clr-gold-dark: #e67e22;
    --clr-gold-glow: rgba(255, 140, 0, 0.25);

    --clr-blue: #1b4e7e;
    --clr-blue-dark: #123b63;

    --clr-text: #333333;
    --clr-text-muted: #555555;
    --clr-text-dim: #888888;

    --clr-success: #2ecc71;
    /* Green Accent */
    --clr-warning: #f39c12;
    --clr-danger: #e74c3c;
    --clr-info: #3498db;

    /* Typography */
    --font-sans: 'Open Sans', sans-serif;
    --font-serif: 'Roboto', sans-serif;
    /* Fallback for headings */

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 16px rgba(255, 140, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(27, 78, 126, 0.1);

    /* Transitions */
    --trans-fast: 0.15s ease;
    --trans-md: 0.3s ease;
    --trans-slow: 0.5s ease;

    /* Nav Height */
    --nav-h: 80px;
}

/* ─── Reset ──────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
}

/* ─── Typography ─────────────────────────────────── */
.serif {
    font-family: var(--font-serif);
}

h1,
.h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--clr-blue);
}

h2,
.h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--clr-blue);
}

h3,
.h3 {
    font-family: var(--font-sans);
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--clr-blue);
}

h4,
.h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-text);
}

p {
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.text-gold {
    color: var(--clr-gold);
}

.text-gradient {
    color: var(--clr-blue);
}

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

.text-muted {
    color: var(--clr-text-muted);
}

/* ─── Layout ─────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-xl);
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1440px;
}

.section {
    padding-block: var(--space-xl);
}

.section--sm {
    padding-block: var(--space-2xl);
}

.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.flex {
    display: flex;
}

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

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

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

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

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

/* ─── Navigation ─────────────────────────────────── */
.nav-wrapper {
    background: #fff;
    border-bottom: 2px solid var(--clr-gold);
}

.topbar {
    background: #fff;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--clr-border);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img {
    height: 50px;
}

.store-badges {
    display: flex;
    gap: 10px;
}

.store-badges img {
    height: 36px;
}

.nav {
    background: var(--clr-blue);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav__inner {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__links {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.nav__links li {
    display: flex;
}

.nav__links a {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    transition: background var(--trans-fast);
}

.nav__links a:hover,
.nav__links a.active {
    background: var(--clr-gold);
    color: #fff;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 0.5rem 0;
    position: relative;
}

.nav__actions>.btn {
    display: none;
}

.nav__actions--home>.nav-auth-btn {
    display: inline-flex;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    box-shadow: none;
}

.nav-auth-btn--login {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
}

.nav-auth-btn--login:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

.nav-auth-btn--register {
    color: #fff;
    background: var(--clr-gold);
    border: 1px solid var(--clr-gold);
}

.nav-auth-btn--register:hover {
    background: var(--clr-gold-dark);
    transform: none;
}

.user-dropdown {
    position: relative;
}

.user-dropdown__toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0;
    border-radius: var(--radius-full);
    transition: background var(--trans-fast);
}

.user-dropdown__toggle:hover,
.user-dropdown__toggle:focus-visible,
.user-dropdown.is-open .user-dropdown__toggle {
    background: rgba(255, 255, 255, 0.1);
}

.user-dropdown__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    position: relative;
}

.user-dropdown__icon::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

.user-dropdown__icon::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 16px;
    height: 8px;
    border-radius: 10px 10px 4px 4px;
    background: currentColor;
    transform: translateX(-50%);
}

.user-dropdown__menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    display: flex;
    flex-direction: column;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--trans-md);
}

.user-dropdown:hover .user-dropdown__menu,
.user-dropdown:focus-within .user-dropdown__menu,
.user-dropdown.is-open .user-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.user-dropdown__menu a {
    padding: 0.85rem 1.25rem;
    color: var(--clr-text);
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid var(--clr-bg);
    display: flex;
    align-items: center;
}

.user-dropdown__menu a:last-child {
    border-bottom: none;
}

.user-dropdown__menu a:hover {
    background: var(--clr-bg);
    color: var(--clr-blue);
}

.user-dropdown__menu a.danger {
    color: var(--clr-danger);
}

.user-dropdown__menu a.danger:hover {
    background: #ffebeb;
}

.nav__hamburger {
    display: none !important;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    color: #fff;
    background: var(--clr-gold);
    border-radius: 4px;
}

.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--trans-md);
    white-space: nowrap;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn--primary {
    background: var(--clr-success);
    /* Green for primary actions */
    color: #fff;
}

.btn--primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--clr-gold);
    color: #000;
}

.btn--outline:hover {
    background: var(--clr-gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn--ghost {
    background: var(--clr-gold);
    color: #fff;
    border: none;
}

.btn--ghost:hover {
    background: var(--clr-gold-dark);
    transform: translateY(-2px);
}

.btn--danger {
    background: var(--clr-danger);
    color: #fff;
}

.btn--danger:hover {
    background: #c0392b;
}

.btn--lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ─── Cards ──────────────────────────────────────── */
.card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--trans-md);
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card--gold {
    /* Keeps class name but changes styling */
    background: var(--clr-bg-card);
    border-left: 4px solid var(--clr-blue);
}

/* ─── Section Headers ────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-md);
}

.section-label::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--clr-gold);
}

.section-header {
    margin-bottom: var(--space-md);
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

.section-header p {
    margin-inline: auto;
    color: var(--clr-text-muted);
}

/* ─── Forms ──────────────────────────────────────── */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-text);
}

.form-label .required {
    color: var(--clr-danger);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    font-size: 0.95rem;
    transition: border-color var(--trans-fast);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--clr-text-dim);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--clr-blue);
}

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

.form-hint {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-top: 6px;
}

.form-error {
    font-size: 0.8rem;
    color: var(--clr-danger);
    margin-top: 6px;
    display: none;
}

.form-group.has-error .form-input {
    border-color: var(--clr-danger);
}

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

/* File Upload */
.file-upload {
    border: 2px dashed var(--clr-border);
    border-radius: var(--radius-sm);
    padding: var(--space-xl);
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: all var(--trans-md);
}

.file-upload:hover,
.file-upload.dragover {
    border-color: var(--clr-blue);
    background: rgba(27, 78, 126, 0.02);
}

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

.file-upload__icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    color: var(--clr-blue);
}

.file-upload__text {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.file-upload__text span {
    color: var(--clr-blue);
    font-weight: 600;
    cursor: pointer;
}

/* Checkbox & Radio */
.check-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.check-label input {
    display: none;
}

.check-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--clr-border);
    border-radius: 3px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans-fast);
    background: #fff;
}

.check-label input:checked+.check-box {
    background: var(--clr-blue);
    border-color: var(--clr-blue);
}

.check-label input:checked+.check-box::after {
    content: '✓';
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

/* OTP Input */
.otp-group {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.otp-input {
    width: 56px;
    height: 64px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: #fff;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    outline: none;
    transition: border-color var(--trans-fast);
}

.otp-input:focus {
    border-color: var(--clr-blue);
}

.otp-input.filled {
    border-color: var(--clr-blue);
}

/* ─── Badges / Status Pills ──────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
}

.badge--gold {
    background: rgba(255, 140, 0, 0.15);
    color: var(--clr-gold-dark);
    border: 1px solid var(--clr-gold);
}

.badge--green {
    background: rgba(46, 204, 130, 0.15);
    color: #27ae60;
    border: 1px solid var(--clr-success);
}

.badge--red {
    background: rgba(231, 76, 60, 0.15);
    color: var(--clr-danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.badge--blue {
    background: rgba(27, 78, 126, 0.1);
    color: var(--clr-blue);
    border: 1px solid rgba(27, 78, 126, 0.3);
}

.badge--muted {
    background: #eee;
    color: var(--clr-text-muted);
    border: 1px solid #ccc;
}

/* ─── Step Progress ──────────────────────────────── */
.steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--space-2xl);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.step:last-child {
    flex: 0;
}

.step__num {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    background: #fff;
    transition: all var(--trans-md);
}

.step__label {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    font-weight: 600;
    white-space: nowrap;
}

.step__line {
    flex: 1;
    height: 2px;
    background: var(--clr-border);
    margin-inline: var(--space-sm);
}

.step.active .step__num {
    border-color: var(--clr-blue);
    color: #fff;
    background: var(--clr-blue);
}

.step.active .step__label {
    color: var(--clr-blue);
}

.step.done .step__num {
    border-color: var(--clr-success);
    color: #fff;
    background: var(--clr-success);
}

.step.done .step__label {
    color: var(--clr-success);
}

.step.done .step__line {
    background: var(--clr-success);
}

/* ─── Dividers ───────────────────────────────────── */
.divider {
    border: none;
    border-top: 1px solid var(--clr-border);
    margin-block: var(--space-xl);
}

.divider--gold {
    border-color: var(--clr-gold);
    opacity: 0.3;
}

.or-divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--clr-text-dim);
    font-size: 0.9rem;
    margin-block: var(--space-lg);
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}

/* ─── Toast Notifications ────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 280px;
    padding: var(--space-md) var(--space-lg);
    background: #fff;
    border-left: 4px solid var(--clr-info);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    animation: slideIn 0.3s ease;
    color: var(--clr-text);
    font-weight: 500;
}

.toast--success {
    border-left-color: var(--clr-success);
}

.toast--error {
    border-left-color: var(--clr-danger);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* ─── Breadcrumb ─────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-lg);
}

.breadcrumb a {
    color: var(--clr-blue);
    font-weight: 500;
    transition: color var(--trans-fast);
}

.breadcrumb a:hover {
    color: var(--clr-gold-dark);
    text-decoration: underline;
}

.breadcrumb__sep {
    color: var(--clr-text-dim);
    font-size: 1.1rem;
}

.breadcrumb__current {
    color: var(--clr-text-muted);
}

/* ─── Auth Layout ────────────────────────────────── */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--clr-bg);
}

.auth-left {
    flex: 1;
    position: relative;
    background: var(--clr-blue);
    /* Match AGNI header blue */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl) var(--space-2xl);
    overflow: hidden;
    color: #fff;
}

.auth-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../../../assets/banner_home.jpg') no-repeat right bottom / cover;
    opacity: 0.15;
    pointer-events: none;
}

.auth-left h2,
.auth-left p,
.auth-left h4 {
    color: #fff;
}

.auth-right {
    width: 500px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    background: #fff;
    border-left: 1px solid var(--clr-border);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.05);
}

.auth-box {
    width: 100%;
    max-width: 400px;
}

.auth-box h2 {
    font-size: 28px;
    margin-bottom: var(--space-sm);
    color: var(--clr-blue);
}

.auth-box>p {
    margin-bottom: 10px;
}

/* ─── Dashboard Layout ───────────────────────────── */
.dash-layout {
    min-height: calc(100vh - 80px);
    /*padding: var(--space-xl) 0;*/
    background: var(--clr-bg);
}

.dash-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid var(--clr-border);
    padding: var(--space-xl) 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.dash-nav__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem var(--space-xl);
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 4px solid transparent;
    transition: all var(--trans-fast);
}

.dash-nav__item:hover {
    color: var(--clr-blue);
    background: var(--clr-bg);
}

.dash-nav__item.active {
    color: var(--clr-blue);
    background: var(--clr-bg);
    border-left-color: var(--clr-gold);
    font-weight: 600;
}

.dash-nav__icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.dash-main {
    flex: 1;
    padding: var(--space-2xl);
}

/* ─── Award Category Card ────────────────────────── */
.award-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: var(--space-xl);
    transition: all var(--trans-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--clr-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--trans-md);
}

.award-card:hover {
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.award-card__icon {
    width: 56px;
    height: 56px;
    background: var(--clr-bg);
    color: var(--clr-blue);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.award-card__fee {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-blue);
}

.award-card__fee small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--clr-text-muted);
}

/* ─── Page Hero (inner pages) ────────────────────── */
.page-hero {
    padding-block: var(--space-md);
    background: linear-gradient(135deg, #123055 0%, var(--clr-blue) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero h1,
.page-hero h2,
.page-hero p {
    color: #fff;
}

.page-hero .breadcrumb a {
    color: #fff;
}

.page-hero .breadcrumb__sep,
.page-hero .breadcrumb__current {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.page-hero .text-gradient {
    color: var(--clr-gold);
}

/* ─── CTA Band ───────────────────────────────────── */
.cta-band {
    background: linear-gradient(180deg, var(--clr-blue) 0%, var(--clr-blue-dark) 100%);
    color: #fff;
    text-align: center;
    padding-block: var(--space-3xl);
}

.cta-band__inner {
    max-width: 760px;
    margin-inline: auto;
}

.cta-band__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-xl);
    color: var(--clr-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cta-band__label::before,
.cta-band__label::after {
    content: '';
    width: 34px;
    height: 1px;
    background: rgba(255, 189, 102, 0.55);
}

.cta-band__label::before {
    width: 10px;
    height: 10px;
    background: var(--clr-gold-light);
    clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.cta-band h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: var(--space-lg);
}

.cta-band p {
    max-width: 620px;
    margin-inline: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

.cta-band__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

.cta-band__actions .btn {
    min-width: 240px;
    min-height: 56px;
    border-radius: var(--radius-full);
    box-shadow: none;
}

.cta-band__primary {
    background: var(--clr-gold);
    color: #fff;
    border: 1px solid var(--clr-gold);
}

.cta-band__primary:hover {
    background: var(--clr-gold-dark);
    border-color: var(--clr-gold-dark);
    color: #fff;
    transform: none;
}

.cta-band__secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-band__secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: none;
}

/* ─── Footer ─────────────────────────────────────── */
.footer {
    background: var(--clr-blue);
    color: #fff;
    padding-block: var(--space-lg);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ─── Utility ────────────────────────────────────── */
.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ─── Animations ─────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.anim-fade-up {
    animation: fadeUp 0.5s ease both;
}

.anim-fade-in {
    animation: fadeIn 0.4s ease both;
}

.anim-delay-1 {
    animation-delay: 0.1s;
}

.anim-delay-2 {
    animation-delay: 0.2s;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .auth-left {
        display: none;
    }

    .auth-right {
        width: 100%;
        border-left: none;
    }

    .dash-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 76px;
    }

    .container {
        padding-inline: var(--space-md);
    }

    .nav {
        padding: var(--space-sm) 0;
    }

    .nav__inner {
        flex-wrap: nowrap;
        align-items: center;
        position: relative;
    }

    .nav__inner>a:first-child span {
        font-size: 1.25rem !important;
    }

    .nav__actions {
        display: flex;
        position: relative;
        width: auto;
        margin-top: 0;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
        z-index: 500;
    }

    .nav__links {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        height: 64px;
        margin: 0 !important;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
        background: #fff;
        border-top: 1px solid var(--clr-border);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
        z-index: 450;
    }

    .nav__links li:nth-child(2),
    .nav__links li:nth-child(4) {}

    .nav__links li {
        min-width: 0;
    }

    .nav__links a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.4rem;
        border-radius: var(--radius-sm);
        color: var(--clr-blue);
        font-size: 0.78rem;
        line-height: 1.2;
        text-align: center;
        background: transparent;
        white-space: normal;
    }

    .nav__links a:hover,
    .nav__links a.active {
        background: rgba(255, 140, 0, 0.12);
        color: var(--clr-gold-dark);
    }

    .steps {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .otp-group {
        gap: var(--space-sm);
    }

    .otp-input {
        width: 44px;
        height: 54px;
        font-size: 1.2rem;
    }

    .topbar__inner {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .auth-right {
        padding: var(--space-xl) var(--space-md);
    }

    .dash-main {
        padding: var(--space-md);
    }

    .cta-band__actions .btn {
        width: 100%;
        min-width: 0;
    }
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 800px) {
    .review-layout {
        grid-template-columns: 1fr;
    }
}

/* Extracted from awards-list.html */
.filter-bar {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.filter-bar input {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    padding: .5rem 1.25rem;
    color: var(--clr-text);
    font-size: .9rem;
    outline: none;
    transition: border-color var(--trans-fast);
}

.filter-bar input:focus {
    border-color: var(--clr-gold);
}

.filter-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--trans-fast);
}

.chip:hover,
.chip.active {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.award-list-card {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--trans-md);
    display: flex;
    flex-direction: column;
}

.award-list-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.award-list-card__head {
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.03));
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.award-list-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.award-list-card__body {
    padding: var(--space-lg) var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.award-list-card__fee {
    font-weight: 700;
    color: var(--clr-gold);
    font-size: 1rem;
}

.award-list-card__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.award-list-card__tag {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-full);
    font-size: .72rem;
    color: var(--clr-text-muted);
}


/* ── Hero ───────────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--clr-bg-2);
    color: var(--clr-text);
    padding-block: var(--space-3xl);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://www.nicmaralumni.com/assets/banner_home.jpg') no-repeat center center / cover;
    opacity: 0.1;
    pointer-events: none;
}

.hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero__layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
        text-align: center;
    }

    .hero__ctas {
        justify-content: center;
    }

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

.hero__content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stat h3 {
    font-size: 2.2rem;
    color: var(--clr-gold);
    margin-bottom: 4px;
    line-height: 1;
    font-family: var(--font-serif);
}

.hero-stat p {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-card {
    background: #fff;
    padding: 0;
    border-radius: var(--radius-xl);
    border: 2px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    position: relative;
    text-align: center;
    transition: transform var(--trans-md);
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-lg);
}

.hero-card__icon {
    font-size: 4.5rem;
    margin-bottom: var(--space-md);
}

.hero-card__tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.hero-card__tag {
    padding: 6px 14px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    color: var(--clr-gold);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.hero-badge-top {
    position: absolute;
    top: -16px;
    right: 20px;
    background: #fff;
    border: 1px solid var(--clr-border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    color: var(--clr-text);
}

.hero-badge-top::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-success);
}

.hero-badge-bottom {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: var(--clr-blue);
    color: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-gold-dark);
    margin-bottom: var(--space-xl);
}

.hero__heading {
    margin-bottom: var(--space-md);
}

.hero__sub {
    font-size: 1.1rem;
    max-width: 520px;
    margin-bottom: var(--space-2xl);
    color: var(--clr-text-muted);
}

.hero__ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

/* ── Awards highlights ──────────────────────── */
.awards-section {
    background: var(--clr-bg);
    padding: 80px 0;
}

/* ── How it works ───────────────────────────── */
.how-section {
    background: var(--clr-bg-2);
    padding-bottom: 100px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-xl);
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 28px;
    right: calc(-1 * var(--space-lg));
    color: var(--clr-blue);
    font-size: 1.2rem;
}

.how-step__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--clr-blue);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
    .how-step:not(:last-child)::after {
        display: none;
    }
}


.detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: var(--space-2xl);
    align-items: start;
}

.detail-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.sidebar-card {
    background: var(--clr-bg-2);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.sidebar-card__fee {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-gold);
}

.sidebar-card__fee small {
    font-size: .85rem;
    font-weight: 400;
    color: var(--clr-text-muted);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .75rem 0;
    border-bottom: 1px solid var(--clr-border);
    font-size: .9rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row span:first-child {
    color: var(--clr-text-muted);
}

.criteria-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.criteria-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.criteria-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #0A0A0F;
    font-size: .78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.eligibility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-md);
}

.eligibility-tag {
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-full);
    font-size: .8rem;
    color: var(--clr-gold);
}

.detail-layout ul {
    margin: 10px 0 0 20px;
}

.detail-layout ul li {
    list-style-type: disc;
}

@media(max-width:900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.nomination-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.nom-card {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--trans-fast);
}

.nom-card.shortlisted {
    border-left: 4px solid var(--clr-success)
}

.nom-card.rejected {
    border-left: 4px solid var(--clr-warning)
}


.nom-card:hover {
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-md);
}

.nom-card__left h4 {
    color: var(--clr-blue);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.nom-card__meta {
    display: flex;
    gap: var(--space-md);
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    margin-bottom: var(--space-sm);
}

.nom-card__right {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

@media (max-width: 700px) {
    .dash-main {
        padding: var(--space-lg) 0 var(--space-2xl);
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }

    .dash-header h2 {
        font-size: 1.7rem;
    }

    .dash-header p {
        max-width: 32ch;
        font-size: 0.95rem !important;
        line-height: 1.7;
    }

    .dash-header .btn {
        width: 100%;
        min-height: 48px;
    }

    .nomination-list {
        gap: var(--space-md);
    }

    .nom-card {
        display: grid;
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: var(--space-md);
        padding: var(--space-md);
    }

    .nom-card__left {
        min-width: 0;
    }

    .nom-card__left h4 {
        font-size: 1.05rem;
        line-height: 1.35;
        margin-top: var(--space-sm);
    }

    .nom-card__meta {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
        line-height: 1.45;
        word-break: normal;
    }

    .nom-card__right {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .nom-card__right .btn {
        width: 100%;
        min-height: 44px;
        padding-inline: 0.75rem;
    }

    .nom-card[style*="border-left"] {
        border-left-width: 3px !important;
    }
}



.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.empty-state {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: var(--space-2xl);
    align-items: center;
}

.empty-state__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-md);
    color: var(--clr-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.empty-state__label::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-gold);
}

.empty-state h3 {
    color: var(--clr-blue);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.empty-state p {
    max-width: 52ch;
    margin-bottom: var(--space-xl);
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.empty-state__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.empty-state__actions .btn {
    min-height: 46px;
}

.empty-state__visual {
    background: linear-gradient(180deg, rgba(27, 78, 126, 0.08) 0%, rgba(27, 78, 126, 0.02) 100%);
    border: 1px solid rgba(27, 78, 126, 0.16);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    display: grid;
    gap: var(--space-md);
}

.empty-state__icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(27, 78, 126, 0.12);
    color: var(--clr-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
}

.empty-state__visual h4 {
    color: var(--clr-blue);
    font-size: 1.1rem;
}

.empty-state__steps {
    display: grid;
    gap: 10px;
}

.empty-state__step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(27, 78, 126, 0.1);
    border-radius: var(--radius-sm);
}

.empty-state__step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--clr-blue);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.empty-state__step strong {
    display: block;
    color: var(--clr-text);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.empty-state__step span {
    color: var(--clr-text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .dash-main {
        padding: var(--space-lg) 0 var(--space-2xl);
    }

    .dash-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
        margin-bottom: var(--space-xl);
    }

    .dash-header h2 {
        font-size: 1.7rem;
    }

    .dash-header p {
        max-width: 32ch;
        font-size: 0.95rem !important;
        line-height: 1.7;
    }

    .dash-header .btn {
        width: 100%;
        min-height: 48px;
    }

    .empty-state {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-lg);
    }

    .empty-state p {
        font-size: 0.95rem;
        margin-bottom: var(--space-lg);
    }

    .empty-state__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .empty-state__actions .btn {
        width: 100%;
        min-height: 44px;
    }
}


.form-section {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.form-section-title {
    font-size: 1.2rem;
    color: var(--clr-blue);
    margin-bottom: var(--space-lg);
    padding-bottom: .5rem;
    border-bottom: 2px solid var(--clr-bg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

@media(max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    overflow-x: auto;
    padding-bottom: 8px;
}

.tab-btn {
    padding: .5rem 1.25rem;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-full);
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--trans-fast);
}

.tab-btn.active {
    background: var(--clr-blue);
    color: #fff;
    border-color: var(--clr-blue);
}

/*
========================
  Page Loading 
========================
*/

.page_loading {
    margin: 0px auto;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000;
    top: 0px;
    /*
   background: rgba(95, 190, 170,0.5);
   background: rgba(255, 255, 255,0.7);
   background: rgba(168, 183, 199,0.7);
   background: rgba(0, 0, 0,0.7);*/
    background: rgba(46, 60, 84, 0.6);
    display: none;
}

.overlay {
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.loading_image {
    background: rgba(255, 255, 255, 1);
    width: 250px;
    height: 250px;
    position: fixed;
    top: 33%;
    left: 41%;
    z-index: 11;
    border-radius: 20px;
}

.load_img {
    text-align: center;
    margin-top: 0px;
    font-size: 16px;
}

.load_img img {
    width: auto;
    overflow: hidden;
    margin: 45px auto 0 auto;
}

.load_text {
    text-align: center;
    margin: 0px 0 18px 0;
    font-size: 18px;
    position: absolute;
    font-weight: bold;
    bottom: 10px;
    width: 100%;
}

@media (max-width: 748px) {
    .loading_image {
        background: #FFF;
        width: 180px;
        height: 180px;
        position: fixed;
        top: 33%;
        left: 27%;
        z-index: 11;
        border-radius: 10px;
    }

    .load_img img {
        width: 55%;
        overflow: hidden;
        margin: 25px auto 0 auto;
    }

    .load_text {
        text-align: center;
        margin-top: 0px;
        font-size: 14px;
        position: absolute;
        bottom: 0px;
        width: 100%;
    }
}

.form-group .error {
    color: red;
}



.review-section {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--clr-bg);
    padding-bottom: .5rem;
    margin-bottom: var(--space-md);
}

.review-title {
    font-size: 1.2rem;
    color: var(--clr-blue);
}

.edit-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-gold);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.review-item {
    margin-bottom: var(--space-md);
}

.review-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 2px;
}

.review-val {
    font-size: 0.95rem;
    color: var(--clr-text);
}

.checkout-box {
    background: #fff;
    border-left: 4px solid var(--clr-blue);
    border-radius: var(--radius-sm);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: var(--space-xl);
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--clr-border);
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clr-blue);
}


.whitepaper-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.whitepaper-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: var(--space-xl);
}

.whitepaper-submit .btn {
    margin-left: 20px;
}

@media (max-width: 700px) {
    .dash-layout {
        padding-top: var(--space-xl);
    }

    .dash-main {
        padding: var(--space-lg) 0 var(--space-2xl);
    }

    .whitepaper-head {
        align-items: flex-start;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .whitepaper-head .btn {
        flex: 0 0 auto;
        min-height: 44px;
    }

    .whitepaper-head h2 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .whitepaper-card {
        padding: var(--space-lg);
        border-radius: var(--radius-sm);
    }

    .whitepaper-card:hover {
        transform: none;
    }

    .whitepaper-card .badge {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        line-height: 1.35;
    }

    .whitepaper-card p {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .whitepaper-submit {
        justify-content: stretch;
    }

    .whitepaper-submit .btn {
        width: 100%;
    }
}


.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: var(--clr-bg-2);
    color: var(--clr-text);
    /*padding-block: clamp(4rem, 8vw, 7rem);*/
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    /*background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)), url('banner.jpeg') no-repeat center center / cover;*/
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    right: -12%;
    top: 12%;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    /*background: rgba(255, 140, 0, 0.12);*/
    filter: blur(24px);
    z-index: 0;
    pointer-events: none;
}

.hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 680px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.28);
    color: var(--clr-gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
}

.hero__eyebrow::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--clr-success);
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.16);
}

.hero__heading {
    font-size: clamp(2.45rem, 7vw, 5rem);
    line-height: 1.02;
    letter-spacing: 0;
    margin-bottom: var(--space-lg);
    color: var(--clr-blue);
}

.hero__heading span {
    display: block;
}

.hero__heading .hero__heading-muted {
    color: var(--clr-text-muted);
}

.hero__sub {
    max-width: 610px;
    margin-bottom: var(--space-xl);
    color: var(--clr-text-muted);
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.hero__sub strong {
    color: var(--clr-blue);
    font-weight: 700;
}

.hero__ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: var(--space-md);
    max-width: 620px;
}

.hero-stat {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hero-stat h3 {
    margin-bottom: 4px;
    color: var(--clr-gold);
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1;
}

.hero-stat p {
    margin: 0;
    color: var(--clr-text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.25;
    text-transform: uppercase;
}

.hero-card-wrap {
    position: relative;
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
}

.hero-card {
    position: relative;
    padding: var(--space-2xl);
    background: #fff;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--clr-gold);
}

.hero-card__icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(27, 78, 126, 0.08);
    color: var(--clr-blue);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.hero-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--clr-blue);
}

.proof-list {
    display: grid;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.proof-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--clr-text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.proof-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--clr-success);
}

.hero-badge-top,
.hero-badge-bottom {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
}

.hero-badge-top {
    top: -18px;
    right: 20px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid rgba(255, 140, 0, 0.35);
    color: var(--clr-gold-dark);
    font-size: 0.82rem;
}

.hero-badge-bottom {
    bottom: -18px;
    left: -8px;
    padding: 10px 18px;
    background: var(--clr-blue);
    color: #fff;
    font-size: 0.86rem;
}

.section-intro {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-intro h2 {
    margin-bottom: var(--space-md);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
}

.process-card {
    position: relative;
    min-height: 100%;
    padding: var(--space-xl);
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--trans-md), box-shadow var(--trans-md), border-color var(--trans-md);
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--clr-blue);
    box-shadow: var(--shadow-md);
}

.process-card--featured {
    border-color: rgba(255, 140, 0, 0.42);
    box-shadow: var(--shadow-gold);
}

.process-card__num {
    position: absolute;
    right: var(--space-lg);
    top: var(--space-md);
    color: rgba(27, 78, 126, 0.08);
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.process-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    border-radius: 50%;
    background: rgba(27, 78, 126, 0.08);
    color: var(--clr-blue);
    font-size: 1.45rem;
    font-weight: 800;
}

.process-card--featured .process-card__icon {
    background: var(--clr-gold);
    color: #fff;
}

.process-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--clr-blue);
}

.process-card__meta {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--clr-border);
    color: var(--clr-gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-xl);
}

.category-card {
    padding: var(--space-xl);
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--trans-md), box-shadow var(--trans-md), border-color var(--trans-md);
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 140, 0, 0.45);
    box-shadow: var(--shadow-gold);
}

.category-card__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(255, 140, 0, 0.1);
    color: var(--clr-gold-dark);
    font-weight: 800;
    font-size: 1.2rem;
}

.category-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--clr-text);
}

.category-card--featured {
    border-color: rgba(255, 140, 0, 0.45);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.09), #fff 62%);
}

.quote-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.quote-row>div:first-child {
    max-width: 650px;
}

.quote-row blockquote {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    font-style: italic;
}

.blue-section {
    background: linear-gradient(180deg, var(--clr-blue) 0%, var(--clr-blue-dark) 100%);
    color: #fff;
}

.blue-section h2,
.blue-section h3,
.blue-section h4,
.blue-section p {
    color: #fff;
}

.blue-section p,
.blue-section li {
    color: rgba(255, 255, 255, 0.78);
}

.blue-section .section-label {
    color: var(--clr-gold-light);
}

.accelerator-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.06);
}

.accelerator-panel::before {
    content: 'AGNI';
    position: absolute;
    right: -1rem;
    bottom: -3rem;
    color: rgba(255, 255, 255, 0.06);
    font-family: var(--font-serif);
    font-size: clamp(6rem, 18vw, 14rem);
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.value-list {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.value-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: var(--space-md);
    align-items: start;
}

.value-item__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 140, 0, 0.18);
    color: var(--clr-gold-light);
    font-weight: 800;
}

.value-item h4 {
    margin-bottom: 3px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.stat-tile {
    padding: var(--space-xl);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.stat-tile strong {
    display: block;
    margin-bottom: 6px;
    color: var(--clr-gold-light);
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1;
}

.stat-tile span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.venue-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    gap: var(--space-2xl);
    align-items: center;
}

.venue-media {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    background: var(--clr-bg-3);
}

.venue-media img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    left: var(--space-lg);
    right: var(--space-lg);
    bottom: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
}

.venue-badge h3 {
    margin-bottom: 4px;
    color: var(--clr-blue);
}

.venue-facts {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--clr-border);
    color: var(--clr-gold-dark);
    font-size: 0.82rem;
    font-weight: 700;
}

.venue-list {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.venue-list li {
    padding: var(--space-lg);
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.venue-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--clr-text);
}

.footer__details {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__details h4,
.footer__details p,
.footer__details a,
.footer__details span {
    color: rgba(255, 255, 255, 0.8);
}

.footer__details h4 {
    color: var(--clr-gold-light);
    margin-bottom: var(--space-md);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-md);
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
}

.footer__brand img {
    height: 40px;
    width: auto;
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 4px;
}

.footer__list {
    display: grid;
    gap: 8px;
    font-size: 0.88rem;
}


@media (max-width: 1024px) {

    .hero__layout,
    .split-grid,
    .venue-grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: none;
    }

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

    .quote-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-card-wrap {
        margin-top: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .hero {
        padding-block: var(--space-2xl);
    }

    .hero__layout {
        text-align: left;
    }

    .hero__ctas .btn {
        width: 100%;
    }

    .hero-stats,
    .process-grid,
    .category-grid,
    .stat-grid,
    .footer__details {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: var(--space-xl);
    }

    .hero-badge-top,
    .hero-badge-bottom {
        position: static;
        margin-bottom: var(--space-sm);
    }

    .hero-badge-bottom {
        margin-top: var(--space-sm);
        margin-bottom: 0;
    }

    .section {
        padding-block: var(--space-2xl);
    }

    .venue-media,
    .venue-media img {
        min-height: 360px;
    }

    .venue-badge {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero__heading {
        font-size: 2.35rem;
    }

    .process-card,
    .category-card,
    .accelerator-panel,
    .venue-list li {
        padding: var(--space-lg);
    }

    .venue-media,
    .venue-media img {
        min-height: 320px;
    }

    .venue-badge {
        position: static;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }
}


.participants-page {
      min-height: 100vh;
      background:
        radial-gradient(circle at top right, rgba(255,140,0,0.14), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, var(--clr-bg) 100%);
    }
    .participants-shell {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding-inline: clamp(14px, 2.4vw, 28px);
    }
    .participants-hero {
      padding: 1rem 0 0.85rem;
    }
    .participants-hero__copy h1 {
      color: var(--clr-blue);
      font-size: clamp(1.45rem, 4.8vw, 2.2rem);
      margin-bottom: 0.35rem;
    }
    .participants-hero__copy p {
      max-width: 640px;
      color: var(--clr-text-muted);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .participants-body {
      padding: 0.85rem 0 2rem;
    }
    .participants-alert {
      margin-bottom: 0.9rem;
      padding: 0.85rem 0.95rem;
      border-radius: 14px;
      background: rgba(255,140,0,0.08);
      border: 1px solid rgba(255,140,0,0.18);
      color: var(--clr-text);
      font-size: 0.84rem;
      line-height: 1.55;
    }
    .participants-alert strong {
      color: var(--clr-gold-dark);
    }
    .participants-grid {
      display: grid;
      gap: 0.85rem;
    }
    .participant-directory-card {
      background: #fff;
      border: 1px solid var(--clr-border);
      border-radius: 16px;
      box-shadow: var(--shadow-sm);
      padding: 0.95rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: border-color var(--trans-md), transform var(--trans-md), box-shadow var(--trans-md);
    }
    .participant-directory-card:hover {
      border-color: rgba(27,78,126,0.25);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }
    .participant-directory-card__info {
      min-width: 0;
    }
    .participant-directory-card__info h3 {
      font-size: 1rem;
      line-height: 1.35;
      margin-bottom: 0.18rem;
    }
    .participant-directory-card__info p {
      font-size: 0.84rem;
      line-height: 1.45;
      color: var(--clr-text-dim);
    }
    .connect-btn {
      min-width: 98px;
      padding-inline: 1rem;
    }
    .connect-modal {
      position: fixed;
      inset: 0;
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(18,59,99,0.42);
      backdrop-filter: blur(6px);
    }
    .connect-modal.is-open {
      display: flex;
    }
    .connect-modal__dialog {
      width: min(100%, 420px);
      background: #fff;
      border: 1px solid var(--clr-border);
      border-radius: 20px;
      box-shadow: 0 24px 60px rgba(18,59,99,0.22);
      padding: 1.25rem 1.1rem 1.1rem;
    }
    .connect-modal__head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }
    .connect-modal__head h2 {
      font-size: 1.2rem;
      margin-bottom: 0.2rem;
    }
    .connect-modal__head p {
      font-size: 0.84rem;
      color: var(--clr-text-muted);
      line-height: 1.55;
    }
    .connect-modal__close {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid var(--clr-border);
      background: #fff;
      color: var(--clr-text-muted);
      font-size: 1rem;
      flex-shrink: 0;
    }
    .connect-modal__actions {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    @media (min-width: 1024px) {
      .participants-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }
    @media (min-width: 700px) and (max-width: 1023px) {
      .participants-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 640px) {
      .participant-directory-card {
        padding: 0.85rem 0.9rem;
      }
      .connect-btn {
        min-width: 84px;
        padding-inline: 0.8rem;
      }
      .connect-modal__actions {
        grid-template-columns: 1fr;
      }
    }