/* Base Styles */
:root {
    --bg-color: #0B0B0B;
    --bg-dark: #050505;
    --card-bg: #111111;
    --primary: #F6D7A8;
    --primary-soft: rgba(246, 215, 168, 0.1);
    --text: #FFFFFF;
    --text-secondary: #A3A3A3;
    --border-color: #262626;
    --accent: #E6C089;
    --accent-soft: rgba(230, 192, 137, 0.1);
    --error: #F97373;
    --success: #4ADE80;
    --transition: all 0.25s ease;
    --border-radius: 16px;
    --nav-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Waves canvas – full screen behind content */
#aiWaves {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Typography */

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    color: var(--text);
    letter-spacing: 0.02em;
}

p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Links */

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
    opacity: 0.85;
}

/* Layout Utilities */

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 80px 0;
}

.bg-dark {
    background: radial-gradient(circle at top, rgba(246, 215, 168, 0.06), #050505 60%);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.brand-tagline {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent);
    margin-bottom: 0.7rem;
    display: inline-block;
    opacity: 0.9;
}

/* Header & Navigation */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.96),
            rgba(5, 5, 5, 0.92),
            rgba(5, 5, 5, 0.88),
            transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(246, 215, 168, 0.45);
    background: radial-gradient(circle at top left,
            rgba(246, 215, 168, 0.2),
            rgba(5, 5, 5, 0.98));
    box-shadow: 0 0 30px rgba(246, 215, 168, 0.25);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-links a {
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* CTA Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    transition: var(--transition);
}

.btn-large {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, #F6D7A8, #E6C089);
    color: #050505;
    box-shadow: 0 15px 40px rgba(246, 215, 168, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 24px 60px rgba(246, 215, 168, 0.5);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: rgba(246, 215, 168, 0.6);
    color: var(--primary);
    background: rgba(246, 215, 168, 0.05);
}

.btn-outline:hover {
    background: rgba(246, 215, 168, 0.13);
}

/* Mobile Menu Button */

.mobile-menu-btn {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* ===========================
   HERO – ACCENTURE STYLE
=========================== */

.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 140px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    z-index: 5;
    background: transparent;
}

.hero .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title,
.hero h1 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 4rem;
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    max-width: 900px;
}

.hero-subtitle,
.hero .subtitle {
    max-width: 800px;
    margin-top: 20px;
    font-size: 1.3rem;
    color: #cccccc;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Scroll Indicator */

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.scroll-indicator i {
    display: block;
    margin-top: 0.4rem;
    animation: bounce 1.4s infinite;
}

/* Features / What We Do */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.feature-card {
    background: radial-gradient(circle at top, rgba(246, 215, 168, 0.09), rgba(10, 10, 10, 0.98));
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(246, 215, 168, 0.25);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(246, 215, 168, 0.12);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(246, 215, 168, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Why SIS */

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.6rem 1.5rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.why-item i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.9rem;
}

/* Technology Grid */

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 2.2rem;
}

.tech-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 1.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
            rgba(246, 215, 168, 0.2),
            transparent 55%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

/* Careers Banner */

.careers-banner {
    position: relative;
    background: radial-gradient(circle at left, rgba(246, 215, 168, 0.2), #050505 55%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.careers-content {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.careers-content h2 {
    margin-bottom: 0.8rem;
}

.careers-content p {
    margin-bottom: 1.5rem;
}

/* Page Hero */

.page-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-dark) 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle at center, rgba(246, 215, 168, 0.18), transparent 70%);
    opacity: 0.8;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(to right, #ffffff, #f1d29b, #c18e3e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), transparent);
    opacity: 0.75;
}

/* Two Column Layout */

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

/* AI Illustration (used in About, Technologies, Products, Careers) */

.ai-illustration {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 22px;
    background: radial-gradient(circle at top left,
            rgba(246, 215, 168, 0.22),
            rgba(5, 5, 5, 1) 60%);
    border: 1px solid rgba(246, 215, 168, 0.22);
    overflow: hidden;
}

.ai-shape-1,
.ai-shape-2,
.ai-shape-3 {
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(135deg,
            rgba(246, 215, 168, 0.3),
            transparent 70%);
    filter: blur(1px);
    animation: float 10s ease-in-out infinite;
}

.ai-shape-1 {
    width: 180px;
    height: 180px;
    top: 50px;
    left: 40px;
    animation-delay: 0s;
}

.ai-shape-2 {
    width: 140px;
    height: 140px;
    bottom: 40px;
    right: 60px;
    animation-delay: 0.7s;
}

.ai-shape-3 {
    width: 110px;
    height: 110px;
    top: 150px;
    right: 20%;
    animation-delay: 1.3s;
}

/* Mission & Vision Cards (About Page) */

.mission-vision {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-vision .card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: rgba(246, 215, 168, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Values Grid */

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.7rem;
    margin-top: 2.2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 1.7rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.25s ease;
}

.value-card:hover::before {
    width: 100%;
}

.value-icon {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

/* Founder Message */

.founder-message {
    position: relative;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 1.5rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(246, 215, 168, 0.18);
    margin-bottom: 1.5rem;
}

blockquote {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
}

blockquote footer {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--primary);
}

/* Jobs / Careers */

.job-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 2.2rem;
}

.job-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.8rem 1.6rem;
}

.job-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.job-card p {
    margin-bottom: 0.8rem;
}

.job-card ul {
    margin: 0 0 1.1rem 1.1rem;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.job-card li {
    margin-bottom: 0.3rem;
}

/* Contact Info */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 1rem;
}

.contact-info .info-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.3rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info .info-block i {
    font-size: 1.2rem;
    margin-right: 0.6rem;
    color: var(--primary);
}

/* CTA Section */

.cta-section {
    background: radial-gradient(circle at top, rgba(246, 215, 168, 0.16), #050505 65%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

/* Footer */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050505;
    padding: 2.5rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.footer-brand p {
    margin-top: 0.4rem;
    max-width: 260px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.footer-column ul {
    list-style: none;
    font-size: 0.9rem;
}

.footer-column li {
    margin-bottom: 0.3rem;
}

.footer-column a {
    color: var(--text-secondary);
}

.footer-column a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.social-links a {
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.2rem;
}

/* Animations */

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */

@media (max-width: 1024px) {
    .hero-title,
    .hero h1 {
        font-size: 2.8rem;
    }

    .page-hero h1 {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .two-column-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        gap: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 1rem 1.5rem 1.4rem;
        background: rgba(5, 5, 5, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .hero-title,
    .hero h1 {
        font-size: 2.4rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .page-hero {
        padding: 120px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
    }

    .two-column-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title,
    .hero h1 {
        font-size: 2.05rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .container {
        padding: 0 1.2rem;
    }
}

/* ========================================
   Contact Page Layout & Form Styling
   ======================================== */

.two-column-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: flex-start;
}

/* Contact form container */
.contact-form {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
}

/* Form groups spacing */
.contact-form .form-group {
    margin-bottom: 1.6rem;
}

/* Labels */
.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.4rem;
}

/* Inputs / Select / Textarea */
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #050505;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
    box-sizing: border-box;
}

/* Placeholder color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(199, 199, 199, 0.7);
}

/* Focus state */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(246, 215, 168, 0.4);
}

/* Textarea height */
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* Contact info blocks (overrides base) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 0.5rem;
}

.contact-info .info-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info .info-block i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 0.2rem;
}

.contact-info .info-block h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: var(--text);
}

.contact-info .info-block p {
    margin: 0;
    font-size: 0.95rem;
}

/* Map placeholder styling */
.map-placeholder {
    margin-top: 2rem;
    border-radius: var(--border-radius);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 2.5rem 2rem;
    text-align: center;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.98rem;
}

/* Contact page responsive tweaks */
@media (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 0.95rem;
        padding: 0.8rem 0.9rem;
    }
}

/* ========================================
   Profile Page Layout
   ======================================== */

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.8fr);
    gap: 2.5rem;
    align-items: flex-start;
}

/* Sidebar card */

.profile-sidebar {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.profile-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: radial-gradient(circle at top, rgba(246, 215, 168, 0.2), #050505);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(246, 215, 168, 0.35);
    color: var(--primary);
    font-size: 1.5rem;
}

.profile-name {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
}

.profile-role,
.profile-location {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.meta-label {
    color: var(--text-secondary);
}

.meta-value {
    color: var(--text);
}

.meta-pill {
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.meta-pill-active {
    background: rgba(74, 222, 128, 0.12);
    color: #4ADE80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.profile-actions {
    margin-top: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.profile-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Main profile sections */

.profile-main {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.profile-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-section h2 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.profile-section-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.3rem;
}

/* Form grids */

.form-grid-1 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.4rem;
}

.profile-section .form-group {
    margin-bottom: 0.5rem;
}

.profile-section label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: var(--text);
}

.profile-section input,
.profile-section select,
.profile-section textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #050505;
    color: var(--text);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

.profile-section input::placeholder,
.profile-section textarea::placeholder {
    color: rgba(199, 199, 199, 0.7);
}

.profile-section input:focus,
.profile-section select:focus,
.profile-section textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(246, 215, 168, 0.35);
}

.profile-section textarea {
    resize: vertical;
}

/* Footer section inside profile */

.profile-section-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.profile-footer-text {
    max-width: 60%;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.profile-footer-actions {
    display: flex;
    gap: 0.8rem;
}

/* Responsive for profile page */

@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .profile-sidebar {
        position: static;
    }

    .profile-section-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-footer-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .form-grid-2,
    .form-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .profile-card {
        padding: 1.6rem 1.4rem;
    }

    .profile-section {
        padding: 1.6rem 1.4rem;
    }
}

.profile-subheading {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
    color: var(--text);
}

.profile-divider {
    margin: 1.6rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================
   AUTH PAGE (PROFILE-STYLE CARD)
   ============================ */

.auth-page-wrapper {
    max-width: 500px;
    margin: 70px auto 120px auto;
    text-align: center;
}

.auth-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 1rem;
    color: #bbbbbb;
    margin-bottom: 40px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    padding: 40px 35px;
    border-radius: 18px;
    text-align: left;
    margin: 0 auto;
}

.auth-card h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.6rem;
}

.auth-card label {
    font-size: 0.95rem;
    color: #e6e6e6;
    margin-bottom: 6px;
    display: block;
}

.auth-card input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
}

.auth-card input::placeholder {
    color: #aaa;
}

.auth-btn {
    width: 100%;
    padding: 15px 0;
    font-size: 1.07rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #f7d791, #caa762);
    cursor: pointer;
}

.auth-btn:hover {
    opacity: 0.92;
}

.auth-bottom-text {
    text-align: center;
    margin-top: 18px;
    font-size: 0.95rem;
}

.auth-bottom-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* Logo subtitle (SIS full form) */
.logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(246, 215, 168, 0.7);
    margin-top: 3px;
    font-weight: 500;
}

.hero-tagline {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(246, 215, 168, 0.75);
}

/* Brand Highlight Block in Hero */
.brand-block {
    margin-top: 18px;
    margin-bottom: 25px;
    text-align: center;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #E6C089;   /* premium gold */
    opacity: 0.95;
}

.brand-tagline {
    max-width: 700px;
    margin: 12px auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #d0d0d0;
}
