/* ==========================================================================
   CMO Honour Roll 2026 - Main Stylesheet
   ========================================================================== */

:root {
    --neon-green: #a3e635;
    --neon-green-glow: rgba(163, 230, 53, 0.4);
    --neon-green-hover: #bcfc4d;
    --dark-bg: #000000;
    --white: #ffffff;
    --gray-text: #a1a1aa;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar (Green Scroller) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0b0b0c;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-green);
    border-radius: 5px;
    border: 2px solid #0b0b0c;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green-hover);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2 {
    font-family: 'Hanken Grotesk', sans-serif;
}

h2 {
    font-size: 40px;
    font-weight: 300;
}

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

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px var(--neon-green-glow);
    transition: all 0.3s ease;
}

.navbar-logo img {
    height: 42px;
    object-fit: contain;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.navbar-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-green);
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: var(--neon-green);
}

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

.navbar-actions {
    display: flex;
    align-items: center;
}

.btn-express-interest {
    display: inline-block;
    text-align: center;
    background-color: var(--neon-green);
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--neon-green-glow);
    transition: all 0.3s ease;
}

.btn-express-interest:hover {
    background-color: var(--neon-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 230, 53, 0.6);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

.navbar.nav-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s ease;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.mobile-nav-logo img {
    height: 60px;
    object-fit: contain;
}

.mobile-close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-close-btn:hover {
    color: var(--neon-green);
}

.mobile-nav-body {
    display: flex;
    flex: 1;
    width: 100%;
    height: 100vh;
}

.mobile-nav-left-col {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.mobile-nav-right-col {
    width: 450px;
    background-color: #000000;
    border-left: 2px solid var(--neon-green);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
}

.mobile-nav-link {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--neon-green);
}

.mobile-drawer-btn {
    margin-top: 15px;
}



.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 998;
}

.mobile-overlay.show {
    display: block;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    width: 100%;
    background: #000000 url('../img/banner/banner-bg.png') no-repeat center bottom;
    background-size: 100% 100%;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(163, 230, 53, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
    z-index: 10;
}

.iamai-presenter {
    margin-bottom: 5px;
}

.iamai-logo {
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.presents-tag {
    font-size: 12px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--white);
    margin-top: 8px;
    font-weight: 400;
}

.cmo-hero-logo {
    margin-bottom: 5px;
    perspective: 1000px;
}

.cmo-badge {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(163, 230, 53, 0.25));
    transition: transform 0.5s ease;
}

.cmo-badge:hover {
    transform: scale(1.02) rotateX(5deg);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 5px;
    max-width: 720px;
}

.glow-green {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green-glow);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-text);
    max-width: 640px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(163, 230, 53, 0.1);
    border: 1px solid rgba(163, 230, 53, 0.3);
    color: var(--neon-green);
}

.event-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(16, 16, 18, 0.8);
    border: 1.5px solid var(--neon-green);
    border-radius: 50px;
    padding: 12px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 0 12px rgba(163, 230, 53, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.pill-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-green);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.pill-item i {
    font-size: 18px;
}

.pill-divider {
    width: 1px;
    height: 22px;
    background-color: rgba(163, 230, 53, 0.3);
    margin: 0 20px;
}

/* Express Interest Modal removed */

/* --------------------------------------------------------------------------
   Footer Styles (Image 2 style)
   -------------------------------------------------------------------------- */
.main-footer {
    background-color: #ffffff;
    color: #000000;
    padding: 80px 5% 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.footer-cards-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-card {
    background: linear-gradient(135deg, #e1fcc1 0%, #cbf29a 100%);
    border-radius: 16px;
    padding: 24px 35px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 110px;
}

.footer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(163, 230, 53, 0.25);
}

.footer-card p {
    font-size: 15px;
    color: #333333;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-card a {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    word-break: break-all;
    transition: color 0.3s ease;
}

.footer-card a:hover {
    color: #559c00;
}

.footer-bottom-bar {
    width: 100%;
    border-top: 1px solid #e5e7eb;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    font-size: 14px;
    color: #666666;
}

.footer-bottom-links a {
    margin-left: 15px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #000000;
}

.footer-neon-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.footer-neon-strip img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   About Section Styles
   ========================================================================== */
.about-section {
    background-color: var(--white);
    padding: 100px 5% 20px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    width: 100%;
    max-width: 1600px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-left {
    width: 100%;
}

.about-image-sequence {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(163, 230, 53, 0.2);
}

.about-img-wrapper.wrapper1 {
    grid-row: span 2;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-wrapper.wrapper1 .about-img {
    height: 520px;
}

.about-img-wrapper.wrapper2 .about-img,
.about-img-wrapper.wrapper3 .about-img {
    height: 250px;
}

.about-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title,
h2 {
    font-size: 40px;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 1px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-content p {
    color: #000000;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   Principles Section
   -------------------------------------------------------------------------- */
.principles-section {
    background-color: var(--white);
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.principles-container {
    width: 100%;
    max-width: 1600px;
    text-align: center;
}

.principles-intro {
    font-size: 1.25rem;
    font-weight: 750;
    color: #000000;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.principles-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.principle-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(132.71deg, #F3FFD9 -1.35%, #CBFA86 49.95%) padding-box,
        linear-gradient(147.68deg, rgba(255, 255, 255, 0.6) 13.84%, rgba(123, 215, 1, 0.6) 51.52%, rgba(255, 255, 255, 0.6) 82.7%) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 800;
    font-size: 1.15rem;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 10px 25px rgba(163, 230, 53, 0.15);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.principle-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(163, 230, 53, 0.3);
}

/* --------------------------------------------------------------------------
   Accent Highlight Section
   -------------------------------------------------------------------------- */
.accent-section {
    background-color: #0b0b0c;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.accent-square-decor {
    position: absolute;
    bottom: -45%;
    left: -10px;
    max-width: 350px;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0.85;
    animation: floatAndRotateSquare 12s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(163, 230, 53, 0.15));
}

@keyframes floatAndRotateSquare {
    0% {
        transform: translateY(0) rotate(150deg) scale(1);
    }

    50% {
        transform: translateY(-15px) rotate(158deg) scale(1.05);
    }

    100% {
        transform: translateY(0) rotate(150deg) scale(1);
    }
}

.accent-container {
    width: 100%;
    max-width: 1600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accent-title,
.accent-subtitle {
    font-size: 40px;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
    text-align: center;
}

.accent-title {
    color: var(--white);
}

.accent-subtitle {
    color: var(--white);
    font-weight: 700;
}

.highlight-wrap {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-wrap .vector-container {
    position: absolute;
    bottom: 0px;
    left: calc(55% - 0px);
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    z-index: -1;
    pointer-events: none;
}

.drawing-vector {
    width: 100%;
    height: auto;
    display: block;
}

.accent-section .highlight-wrap,
.different-section .highlight-wrap {
    font-weight: 700;
}

.accent-section .highlight-wrap .drawing-vector {
    animation: drawLoop 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.architecture-section .highlight-wrap .drawing-vector {
    animation: drawLoop 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.different-section .highlight-wrap .drawing-vector {
    animation: drawLoop 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

h2 strong {
    font-weight: 800;
}

@keyframes drawLoop {
    0% {
        clip-path: inset(0 100% 0 0);
    }

    70% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 0 0);
    }
}

/* --------------------------------------------------------------------------
   Recognition Architecture Section
   -------------------------------------------------------------------------- */
.architecture-section {
    background-color: #ffffff;
    padding: 90px 0% 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.architecture-section .architecture-container {
    width: 100%;
    max-width: 1600px;
    padding: 0 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.architecture-section .architecture-title {
    font-size: 40px;
    color: #000000;
    text-align: center;
    margin-bottom: 75px;
}

.architecture-section .architecture-grid {
    display: flex;
    width: 100%;
    border-top: 1px solid #111;
    background: #ffffff;
}

.architecture-section .architecture-card {
    flex: 1;
    padding: 35px 25px 70px;
    position: relative;
    border-right: 1px solid #111;
    display: flex;
    flex-direction: column;
}

.architecture-section .architecture-card:last-child {
    border-right: none;
}

.architecture-section .card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    min-height: 70px;
}

.architecture-section .card-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
}

.architecture-section .card-star {
    position: absolute;
    top: -80px;
    right: -10%;
    width: 220px;
    height: auto;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.architecture-section .architecture-card:hover .card-star {
    transform: rotate(12deg) scale(1.08);
}

.architecture-section .card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #000000;
    margin: 0 0 15px;
}

.architecture-section .card-content p strong {
    font-weight: 750;
    color: #000000;
}

.architecture-section .card-content p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Why the CMO Honor Roll Section
   -------------------------------------------------------------------------- */
.why-section {
    background-color: #000000;
    /* Black background as requested */
    padding: 100px 5% 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.why-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.why-left {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
}

.why-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: 40px;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 30px;
}

.why-title .thin-text {
    font-weight: 300;
    /* Hanken Grotesk Light */
}

.why-intro-p {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}

.why-body-p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #a1a1aa;
    /* Dim/gray text */
    margin-bottom: 30px;
    line-height: 1.7;
}

.why-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-bullet-list li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #a3e635;
    /* Neon green bullets text */
    position: relative;
    padding-left: 20px;
}

.why-bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #a3e635;
}

.why-right {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-right-intro {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.why-star-container {
    position: relative;
    width: 100%;
    max-width: 660px;
    height: 550px;
    margin: 0 auto;
}

.why-star-video {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: auto;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    /* Makes the video's black background transparent */
}

.why-point {
    position: absolute;
    width: 220px;
    z-index: 3;
}

.why-point h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    /* Strict 14px */
    font-weight: 700;
    color: #a3e635;
    /* Neon green */
    margin: 0 0 8px;
}

.why-point p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    /* Strict 13px (1 less than h3) */
    font-weight: 400;
    color: #a1a1aa;
    line-height: 1.5;
    margin: 0;
}

/* Position-specific layouts */
.why-point.pt-1 {
    top: 0%;
    left: 0%;
    text-align: center;
}

.why-point.pt-2 {
    top: 0%;
    right: 0%;
    text-align: center;
}

.why-point.pt-3 {
    top: 40%;
    left: -4%;
    text-align: center;
}

.why-point.pt-4 {
    top: 40%;
    right: -4%;
    text-align: center;
}

.why-point.pt-5 {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    text-align: center;
}

/* Decorative assets */
.why-square-decor {
    position: absolute;
    bottom: -16%;
    left: -15%;
    width: 400px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    animation: floatAndRotateSquare 12s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(163, 230, 53, 0.15));
}

.why-right-decor {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    height: 70%;
    width: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   What Makes it Different Section
   -------------------------------------------------------------------------- */
.different-section {
    background-color: #ffffff;
    padding: 100px 5% 160px;
    /* Generous bottom padding to prevent clipping of translated card */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.different-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.different-title {
    font-size: 40px;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}

.different-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4b5563;
    /* grey-text */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 75px;
}

.different-grid {
    display: flex;
    width: 100%;
    gap: 25px;
}

.different-card {
    flex: 1;
    min-height: 240px;
    padding: 40px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 1px solid rgba(227, 227, 227, 1);
    background: radial-gradient(135.67% 96.21% at 9.71% 3.79%, #FFFFFF 0%, #E2E2E2 100%);
}

/* Alternate 50% vertical offset layout */
.different-card:nth-child(even) {
    transform: translateY(50px);
}

.different-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Make sure hover state preserves the alternating translation offset */
.different-card:nth-child(even):hover {
    transform: translateY(50px) scale(1.03);
}

.different-card:nth-child(odd):hover {
    transform: scale(1.03);
}

/* Last Card Styling */
.different-card-last {
    border: 1px solid transparent;
    background: linear-gradient(132.71deg, #F3FFD9 -1.35%, #CBFA86 49.95%) padding-box,
        linear-gradient(147.68deg, rgba(255, 255, 255, 0.6) 13.84%, rgba(123, 215, 1, 0.6) 51.52%, rgba(255, 255, 255, 0.6) 82.7%) border-box;
    box-shadow: 0 15px 35px rgba(163, 230, 53, 0.25);
}

.different-card-last:hover {
    box-shadow: 0 20px 45px rgba(163, 230, 53, 0.4);
}

/* Icon wrap and size */
.different-icon-wrap {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.different-icon {
    width: 44px;
    height: 44px;
    display: block;
}

/* Card typography */
.different-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #4b5563;
    /* grey card text */
    margin: 0;
}

.different-card-last .different-card-text {
    color: #000000;
    /* Bold black for the positive card */
}

/* --------------------------------------------------------------------------
   Who Is This Recognition For? Section
   -------------------------------------------------------------------------- */
.recognition-for-section {
    background: linear-gradient(132.71deg, #F3FFD9 -1.35%, #CBFA86 49.95%, #F3FFD9 100%);
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.rec-square-decor {
    position: absolute;
    max-width: 500px;
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    filter: invert(1) brightness(1.5);
}

.rec-square-decor.decor-left {
    bottom: -15%;
    left: -18%;
    transform: rotate(15deg);
}

.rec-square-decor.decor-right {
    top: -15%;
    right: -18%;
    transform: rotate(-15deg);
}

.recognition-for-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.recognition-for-title {
    font-size: 40px;
    font-weight: 700 !important;
    /* Explicitly 700 weight */
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}

.recognition-for-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #1f2937;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.recognition-for-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
}

.recognition-for-container .highlight-wrap .vector-container {
    bottom: -10px;
    left: calc(50% - 0px);
}

.recognition-card {
    background: radial-gradient(96.71% 68.59% at 50% -9.95%, #656565 0%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 15px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.recognition-icon-wrap {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.recognition-icon {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.recognition-card-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
    color: #ffffff;
    margin: 0;
}

/* Unique Underline Draw Duration for Recognition For Section */
.recognition-for-section .highlight-wrap .drawing-vector {
    animation: drawLoop 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


/* --------------------------------------------------------------------------
   Evaluation (Nominate Now) Section
   -------------------------------------------------------------------------- */
.evaluation-section {
    background-color: #ffffff;
    padding: 100px 5% 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.evaluation-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.evaluation-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px;
}

.evaluation-title {
    font-size: 40px;
    font-weight: 300;
    /* Inherited/Base 300 weight */
    color: #000000;
    line-height: 1.3;
    margin: 0 0 15px;
    font-weight: 700;
}

.evaluation-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
    max-width: 750px;
    margin: 0 auto 35px;
}

.evaluation-btn-wrap {
    display: flex;
    justify-content: center;
}

.btn-nominate-now {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--neon-green);
    cursor: pointer;
    box-shadow: 0 4px 15px var(--neon-green-glow);
    transition: all 0.3s ease;
}

.btn-nominate-now:hover {
    background-color: #0d0d0d;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 22px rgba(163, 230, 53, 0.7);
}

/* Unique Underline Draw Duration for Evaluation Section */
.evaluation-section .highlight-wrap .drawing-vector {
    animation: drawLoop 3.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* --------------------------------------------------------------------------
   Scroll to Top Button
   -------------------------------------------------------------------------- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #000000;
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    color: var(--neon-green);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--neon-green-glow);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--neon-green);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(163, 230, 53, 0.6);
}