/* Almighty Innovations Inc. Core Styling */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@200;300;400;500&display=swap');

:root {
    --black: #0A0A0A;
    --white: #FFFFFF;
    --soft-white: #F5F5F5;
    --grey: #BFBFBF;
    --light-grey: #E5E5EA;
    --dark-grey: #1C1C1E;
    --gold: #C8A96A;
    --gold-dim: #8F7645;
    --gold-hover: #E5C384;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition-slow: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-medium: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Reset & Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: radial-gradient(circle at 50% 40%, #1a0f30 0%, #0d071a 50%, #050408 100%);
    background-attachment: fixed;
    color: var(--white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Custom Sleek Scrollbar for Luxury Aesthetic */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-grey);
    border-radius: 3px;
    transition: var(--transition-fast);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dim);
}

/* Firefox Support */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--dark-grey) var(--black);
}

body {
    background: transparent;
    color: var(--soft-white);
    overflow-x: hidden;
    line-height: 1.8;
    font-weight: 300;
}

/* Hide default cursor on desktop for custom interactive luxury cursor */
@media (min-width: 992px) {
    body, a, button, .trigger-link, .node-circle {
        cursor: none !important;
    }
}

/* Custom Mouse Cursor Elements */
.custom-cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    display: none;
}

.custom-cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(200, 169, 106, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    display: none;
}

/* Show custom cursor only when mouse moves */
body.cursor-active .custom-cursor-dot,
body.cursor-active .custom-cursor-ring {
    display: block;
}

body.cursor-hover .custom-cursor-ring {
    width: 55px;
    height: 55px;
    border-color: var(--gold);
    background-color: rgba(200, 169, 106, 0.05);
}

body.cursor-hover .custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--white);
}

/* Luxury Multi-layered Ambient Background Canvas */
#ambient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    z-index: -1;
    pointer-events: none;
    opacity: 0.85;
}

/* Subtle Film Grain Noise Overlay for Premium Matte Look */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.015;
    z-index: 9998;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 400;
    letter-spacing: 4px;
}

a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Header Navigation Styling */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 100%);
    backdrop-filter: blur(8px);
}

.logo {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 6px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 30px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(200, 169, 106, 0.45));
}

.logo span {
    color: var(--gold);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Full Screen Sections */
section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 60px;
    position: relative;
}

/* Deluxe Scroll Reveal Animations */
.scroll-reveal h1,
.scroll-reveal h2,
.scroll-reveal .reveal-first {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scroll-reveal p,
.scroll-reveal .reveal-second,
.scroll-reveal .process-diagram-container,
.scroll-reveal .founder-img-wrapper {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.25s;
}

.scroll-reveal .cta-btn,
.scroll-reveal .statement-triggers,
.scroll-reveal .reveal-third,
.scroll-reveal .founder-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.45s;
}

.scroll-reveal.active h1,
.scroll-reveal.active h2,
.scroll-reveal.active .reveal-first,
.scroll-reveal.active p,
.scroll-reveal.active .reveal-second,
.scroll-reveal.active .process-diagram-container,
.scroll-reveal.active .founder-img-wrapper,
.scroll-reveal.active .cta-btn,
.scroll-reveal.active .statement-triggers,
.scroll-reveal.active .reveal-third,
.scroll-reveal.active .founder-content {
    opacity: 1;
    transform: translateY(0);
}

/* 1. Hero Section */
.hero-sec {
    text-align: center;
    padding-top: 140px;
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    max-width: 130px;
    width: 100%;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(200, 169, 106, 0.45));
    animation: floatLogo 6s infinite ease-in-out;
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-sec h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    line-height: 1.15;
    font-weight: 400;
    background: linear-gradient(135deg, #FFFFFF 30%, #E5C384 75%, #C8A96A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(200, 169, 106, 0.15);
}

.hero-sec p {
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 50px;
    max-width: 600px;
    letter-spacing: 1px;
}

/* Scroll indicator animation */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 2s forwards 1s;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(200, 169, 106, 0) 100%);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--white);
    animation: scrollDot 2.2s infinite cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes scrollDot {
    0% { transform: translateY(-15px); }
    80%, 100% { transform: translateY(50px); }
}

@keyframes fadeIn {
    to { opacity: 0.6; }
}

/* Premium Gold Link Buttons */
.cta-btn {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.cta-btn::after {
    content: '';
    display: block;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin-top: 8px;
}

.cta-btn:hover {
    color: var(--gold-hover);
}

.cta-btn:hover::after {
    width: 100%;
}

/* 2. Identity Section */
.identity-sec {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.identity-sec h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.35;
}

.identity-sec p {
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 50px;
    max-width: 750px;
    line-height: 1.8;
}

.statement-triggers {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.trigger-link {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold);
    cursor: pointer;
    position: relative;
    padding-bottom: 6px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.trigger-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
}

.trigger-link:hover {
    color: var(--gold-hover);
}

.trigger-link:hover::after {
    width: 100%;
}

/* 3. Process Section */
.process-sec {
    text-align: center;
}

.process-sec h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.process-sec p.subtext {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 70px;
    max-width: 600px;
}

.process-diagram-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.process-svg {
    width: 100%;
    height: auto;
}

/* Glowing Pulsing SVG Nodes */
.process-svg .node-circle {
    fill: var(--black);
    stroke: rgba(200, 169, 106, 0.25);
    stroke-width: 2px;
    transition: var(--transition-medium);
    cursor: pointer;
}

.process-svg .node-circle:hover {
    stroke: var(--gold);
    fill: rgba(200, 169, 106, 0.05);
}

.process-svg .node-circle.active {
    stroke: var(--gold);
    fill: rgba(200, 169, 106, 0.15);
    filter: drop-shadow(0 0 8px rgba(200, 169, 106, 0.4));
}

.process-svg .node-text {
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 3px;
    fill: var(--grey);
    text-anchor: middle;
    pointer-events: none;
    text-transform: uppercase;
    transition: var(--transition-medium);
}

.process-svg .node-circle.active + .node-text,
.process-svg .node-circle:hover + .node-text {
    fill: var(--gold-hover);
}

.process-svg .connection-line {
    stroke: var(--dark-grey);
    stroke-width: 1px;
    stroke-dasharray: 4,4;
    transition: var(--transition-medium);
}

.process-svg .connection-line.active {
    stroke: var(--gold-dim);
    stroke-width: 1.5px;
    stroke-dasharray: none;
}

.process-details {
    margin-top: 50px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.detail-slide {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: var(--transition-medium);
}

.detail-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.detail-slide h3 {
    font-size: 13px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.detail-slide p {
    font-size: 14px;
    color: var(--light-grey);
    line-height: 1.7;
}

/* 4. Access Section (Sequential Scroll Reveal Tiers) */
.access-section {
    position: relative;
    width: 100%;
    padding: 0;
}

.access-label {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--grey);
    z-index: 90;
    text-transform: uppercase;
    opacity: 0;
    transition: var(--transition-medium);
    pointer-events: none;
}

.access-label.visible {
    opacity: 0.6;
}

.access-tiers {
    width: 100%;
}

.tier {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
    padding: 0 40px;
}

.tier.active {
    opacity: 1;
    transform: translateY(0);
}

.tier.exit {
    opacity: 0.15;
    transform: translateY(-60px);
}

.tier h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tier p {
    font-size: 1.05rem;
    color: var(--grey);
    margin-bottom: 45px;
    max-width: 550px;
}

/* Vertical pagination dots indicator in access section */
.access-pagination {
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 90;
    opacity: 0;
    transition: var(--transition-medium);
}

.access-pagination.visible {
    opacity: 0.5;
}

.pagination-dot {
    width: 4px;
    height: 4px;
    background-color: var(--grey);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.pagination-dot.active {
    background-color: var(--gold);
    transform: scale(2);
}

/* 5. Philosophy Section */
.philosophy-sec {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.philosophy-sec p {
    font-size: 1.5rem;
    line-height: 2.2;
    color: var(--grey);
}

.philosophy-sec p strong {
    color: var(--white);
    font-weight: 300;
}

/* 6. Founder Section */
.founder-sec {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-img-wrapper {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.founder-img-wrapper::after {
    content: '';
    position: absolute;
    top: 25px;
    left: -25px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--dark-grey);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-slow);
}

.founder-img-wrapper:hover::after {
    border-color: var(--gold-dim);
    transform: translate(8px, -8px);
}

.founder-img {
    width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(1.15);
    position: relative;
    z-index: 2;
    transition: var(--transition-slow);
}

.founder-img-wrapper:hover .founder-img {
    transform: scale(1.02);
}

.founder-content {
    flex: 1.2;
}

.founder-content h3 {
    font-size: 2.4rem;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 30px;
}

.founder-content p {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 40px;
}

.founder-links {
    display: flex;
    gap: 50px;
}

/* 7. Final Closing Section */
.closing-sec {
    text-align: center;
}

.closing-sec h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.closing-sec p {
    font-size: 1.15rem;
    color: var(--grey);
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Luxury Modal Overlay */
.luxury-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 45%, rgba(26, 15, 48, 0.9) 0%, rgba(13, 7, 26, 0.95) 50%, rgba(5, 4, 8, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), visibility 0.8s;
    padding: 40px;
}

.luxury-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: fixed;
    top: 40px;
    right: 60px;
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--grey);
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-fast);
    z-index: 1100;
}

.modal-close:hover {
    color: var(--gold);
}

/* Fade out header nav-items when modal is open to avoid visual overlap */
body.modal-active .header-nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.modal-content {
    max-width: 750px;
    width: 100%;
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.9s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.luxury-modal.active .modal-content {
    transform: translateY(0);
}

.modal-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 30px;
}

.modal-title {
    font-size: 2.4rem;
    margin-bottom: 40px;
    line-height: 1.35;
}

.modal-body {
    font-size: 1.25rem;
    color: var(--light-grey);
    line-height: 1.9;
    letter-spacing: 0.5px;
}

/* Form Styles for Intake & Admin */
.form-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey);
    margin-bottom: 12px;
}

.form-control {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--dark-grey);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 0;
    transition: var(--transition-fast);
    outline: none;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--gold);
}

textarea.form-control {
    min-height: 90px;
    resize: none;
}

.btn-submit {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 16px 45px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-block;
    width: auto;
    border-radius: 0;
}

.btn-submit:hover {
    background-color: var(--gold);
    color: var(--black);
}

/* Custom Interactive Calendar CSS */
.calendar-container {
    width: 100%;
    max-width: 650px;
    background-color: transparent;
    margin-top: 40px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--dark-grey);
    padding-bottom: 15px;
}

.calendar-header h3 {
    font-size: 18px;
    letter-spacing: 3px;
}

.calendar-nav-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 15px;
    transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
    color: var(--gold-hover);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.calendar-day-label {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--grey);
    letter-spacing: 1px;
    padding: 10px 0;
    text-transform: uppercase;
}

.calendar-cell {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--grey);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.calendar-cell.empty {
    cursor: default;
}

.calendar-cell.disabled {
    color: #333333;
    cursor: not-allowed;
    pointer-events: none;
}

.calendar-cell:not(.empty):not(.disabled):hover {
    color: var(--white);
    border-color: var(--gold);
}

.calendar-cell.selected {
    background-color: var(--gold);
    color: var(--black) !important;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.time-slot {
    border: 1px solid var(--dark-grey);
    padding: 12px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    color: var(--grey);
    transition: var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--gold);
    color: var(--white);
}

.time-slot.selected {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Admin Dashboard Table & UI */
.admin-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--dark-grey);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.admin-header h1 {
    font-size: 24px;
}

.admin-logout {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--grey);
}

.admin-logout:hover {
    color: var(--gold);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 60px;
}

.admin-table th {
    text-align: left;
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--grey);
    text-transform: uppercase;
    padding: 15px 20px;
    border-bottom: 2px solid var(--dark-grey);
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid var(--dark-grey);
    font-size: 14px;
    color: var(--soft-white);
    vertical-align: top;
}

.admin-table tr:hover td {
    background-color: #0F0F0F;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

.status-pending { color: var(--grey); border-color: var(--dark-grey); }
.status-strong { color: var(--gold); border-color: var(--gold-dim); }
.status-average { color: #8FA4C8; border-color: #405780; }
.status-notfit { color: #C87A7A; border-color: #804040; }

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

.action-btn {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--dark-grey);
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    background: none;
    color: var(--grey);
}

.action-btn:hover {
    border-color: var(--gold);
    color: var(--white);
}

.action-btn.btn-strong:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Simulated email display styling */
.simulated-email {
    margin-top: 40px;
    border: 1px solid #1C1C1C;
    background: #0E0E0E;
    padding: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.simulated-email-header {
    border-bottom: 1px solid #1C1C1C;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 12px;
    color: var(--grey);
    line-height: 1.8;
}

.simulated-email-body {
    font-size: 14px;
    line-height: 1.8;
    color: var(--grey);
    white-space: pre-line;
}

/* Responsive Adaptations */
@media (max-width: 900px) {
    .header-nav {
        padding: 30px 40px;
    }
    
    .hero-sec h1 {
        font-size: 2.8rem;
    }
    
    .founder-sec {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .founder-img-wrapper {
        max-width: 320px;
    }
    
    .founder-links {
        justify-content: center;
    }
    
    .tier h2 {
        font-size: 28px;
    }
    
    .tier p {
        font-size: 14px;
    }
    
    .access-label {
        font-size: 10px;
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        z-index: 1000;
        margin: 0;
        padding: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 20px;
        letter-spacing: 4px;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 600px) {
    .header-nav {
        padding: 20px;
    }
    .logo {
        font-size: 13px;
        letter-spacing: 4px;
    }
    .nav-links {
        gap: 15px;
    }
    .hero-sec h1 {
        font-size: 2.2rem;
    }
    .statement-triggers {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-height: 800px) {
    section {
        padding: 60px 40px;
        min-height: 90vh; /* Allow slightly shorter sections for better text visibility */
    }
    .hero-sec h1 {
        font-size: 2.8rem;
        margin-bottom: 16px;
    }
    .hero-sec p {
        margin-bottom: 30px;
        font-size: 1rem;
    }
    .identity-sec h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .identity-sec p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .statement-triggers {
        gap: 30px;
    }
    .process-sec h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .process-sec p.subtext {
        margin-bottom: 40px;
    }
    .tier h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    .tier p {
        margin-bottom: 30px;
    }
    .philosophy-sec p {
        font-size: 1.2rem;
        line-height: 1.8;
    }
    .founder-sec {
        gap: 40px;
    }
    .founder-content h3 {
        font-size: 1.8rem;
    }
    .founder-title {
        margin-bottom: 15px;
    }
    .founder-content p {
        margin-bottom: 20px;
        font-size: 0.95rem;
    }
    .closing-sec h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .closing-sec p {
        margin-bottom: 30px;
    }
}
