:root {
    --contest-navy-950: #031e34;
    --contest-navy-900: #043452;
    --contest-navy-800: #064b70;
    --contest-navy-700: #096a91;
    --contest-blue-100: #dff3f8;
    --contest-blue-50: #f2fbfd;
    --contest-yellow: #ee6f33;
    --contest-yellow-soft: #ffea85;
    --contest-ink: #112536;
    --contest-muted: #526778;
    --contest-line: #d4e5ea;
    --contest-white: #ffffff;
    --contest-shadow: 0 22px 70px rgba(3, 52, 82, 0.13);
    --v2-night: #05030e;
    --v2-navy: #090b20;
    --v2-navy-2: #101738;
    --v2-ink: #12162a;
    --v2-copy: #555e75;
    --v2-cyan: #08bce5;
    --v2-cyan-soft: #dff9ff;
    --v2-orange: #ff6d31;
    --v2-orange-dark: #e95017;
    --v2-purple: #8b3bc0;
    --v2-gold: #f5bd4d;
    --v2-gold-soft: #fff0c6;
    --v2-white: #fff;
    --v2-cream: #f5ece8;
    --v2-line: #e5e6ed;
    --v2-shadow: 0 28px 75px rgba(11, 12, 33, .14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--v2-white);
    color: var(--v2-ink);
    font-family: "Geist";
    line-height: 1.65;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.v2-skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 15px; transform: translateY(-150%); border-radius: 6px; background: #fff; color: #000; font-weight: 700; }
.v2-skip-link:focus { transform: translateY(0); }

.contest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contest-btn:hover,
.contest-btn:focus-visible {
    transform: translateY(-2px);
}

.contest-btn-primary {
    background: var(--contest-yellow);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 210, 28, 0.26);
}

.contest-btn-primary:hover, .contest-btn-primary:focus-visible {
	background: #22ace3;
	color: #fff;
	box-shadow: 0 16px 34px rgba(255, 210, 28, 0.35);
}

.contest-btn-dark {
    background: var(--contest-navy-950);
    color: var(--contest-white);
    box-shadow: 0 16px 38px rgba(3, 30, 52, 0.22);
}

.contest-btn-dark:hover,
.contest-btn-dark:focus-visible {
    background: var(--contest-navy-800);
    color: var(--contest-white);
}

.contest-btn-large {
    min-height: 56px;
    padding: 15px 28px;
}

.contest-about-copy {
	margin-bottom: 80px;
	border-top: 2px solid var(--contest-line);
	border-bottom: 2px solid var(--contest-line);
	background: radial-gradient(circle at 90% 0,rgb(239, 233, 232, 0.9),transparent 35%),linear-gradient(135deg,#fdf9f6ec,#fbfaf8e3);
	border-radius: 30px;
	box-shadow: 2px 2px 10px 0px #ccc;
}

.contest-about-copy > div + div { border-left: 1px solid var(--contest-line); }

.contest-about-copy p {
	height: 100%;
	margin: 0;
	padding: 30px 30px;
	color: #555e75;
	font-weight: 600;
}

.contest-about-copy strong { color: var(--v2-cyan); }
/* Header */
.v2-header { position: fixed; inset: 0 0 auto; z-index: 1030; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(5,3,14,.9); box-shadow: 0 12px 42px rgba(0,0,0,.22); backdrop-filter: blur(16px); }
.v2-header .navbar { min-height: 80px; padding: 0; }
.v2-header .nav-link { position: relative; padding: 29px 14px !important; color: #cbd2e4; font-size: .82rem; font-weight: 700; }
.v2-header .nav-link::after { content: ""; position: absolute; right: 50%; bottom: 20px; left: 50%; height: 2px; background: linear-gradient(90deg,var(--v2-orange),var(--v2-cyan)); transition: .22s ease; }
.v2-header .nav-link:hover, .v2-header .nav-link:focus { color: #fff; }
.v2-header .nav-link:hover::after, .v2-header .nav-link:focus::after { right: 14px; left: 14px; }
.v2-header .navbar-toggler { border-color: rgba(255,255,255,.3); box-shadow: none; }
.v2-brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.v2-brand:hover { color: #fff; }
.v2-brand > span:last-child { font-size: 1.45rem; font-weight: 300; letter-spacing: .05em; line-height: 1; }
.v2-brand strong { font-weight: 200; }
.v2-brand-mark { position: relative; width: 32px; height: 32px; transform: rotate(45deg); }
.v2-brand-mark i { position: absolute; width: 13px; height: 13px; border-radius: 2px; }
.v2-brand-mark i:nth-child(1) { top: 0; left: 0; background: var(--v2-orange); }
.v2-brand-mark i:nth-child(2) { top: 0; right: 0; background: #fff; }
.v2-brand-mark i:nth-child(3) { bottom: 0; left: 0; background: var(--v2-cyan); }
.v2-brand-mark i:nth-child(4) { right: 0; bottom: 0; background: #7e8aa6; }

/* Shared */
.v2-section { position: relative; padding: 30px 0; }
.v2-section-heading { max-width: 760px; margin-bottom: 30px; }
.v2-section-heading h2, .v2-sticky-heading h2, .v2-platform-title, .v2-awards-title, .v2-final-cta h2, .v2-participant-band h2 {
    margin: 0;
    font-size: clamp(2.35rem, 4.5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}
.v2-section-heading > p { margin: 16px auto 0; color: var(--v2-copy); font-size: 1.03rem; }
.v2-kicker { display: inline-block; margin-bottom: 15px; color: var(--v2-orange); font-size: 1rem; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.v2-btn { display: inline-flex; min-height: 60px; align-items: center; justify-content: center; gap: 10px; padding: 15px 30px; border: 0; border-radius: 50px; font-size: .86rem; font-weight: 800; letter-spacing: .02em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.v2-btn:hover, .v2-btn:focus-visible { transform: translateY(-3px); }
.v2-btn-orange { background: linear-gradient(135deg,var(--v2-orange),#ff9149); color: #fff; box-shadow: 0 17px 38px rgba(255,109,49,.3); }
.v2-btn-orange:hover { color: #fff; box-shadow: 0 20px 45px rgba(255,109,49,.4); }
.v2-btn-dark { background: linear-gradient(135deg,var(--v2-night),#1d1c49); color: #fff; box-shadow: 0 16px 38px rgba(5,3,14,.2); }
.v2-btn-dark:hover { background: linear-gradient(135deg,#17173c,#361a58); color: #fff; }
.v2-btn-small { min-height: 43px; padding: 10px 18px; }
.v2-btn-large { min-height: 60px; padding: 17px 31px; }

/* Hero */
.v2-hero {min-height: 960px; position: relative; display: flex; align-items: center; padding: 150px 0 50px; overflow: hidden; isolation: isolate; background: url("../img/landing/coding-contest.jpg") 58% center / cover no-repeat; color: #fff; }
.v2-hero.audit { position: relative; display: flex; align-items: center; padding: 150px 0 50px; overflow: hidden; isolation: isolate; background: linear-gradient(90deg,rgba(5,3,14,.99) 0%,rgba(5,3,14,.96) 34%,rgba(5,3,14,.78) 48%,rgba(5,3,14,.08) 68%,rgba(5,3,14,.02) 100%),url("../img/landing/coding-audit.png") 58% center / cover no-repeat; color: #fff; }
.v2-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .22; background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,.24) 1px,transparent 0); background-size: 34px 34px; mask-image: linear-gradient(90deg,#000,transparent 55%); }
.v2-hero::after { content: ""; position: absolute; z-index: -1; top: 3%; right: -20%; width: 930px; height: 930px; border: 1px solid rgba(8,188,229,.13); border-radius: 50%; box-shadow: 0 0 0 65px rgba(8,188,229,.012),0 0 0 130px rgba(139,59,192,.012),0 0 0 195px rgba(255,109,49,.01); }
.v2-hero-grid { position: absolute; right: 0; bottom: 55px; left: 0; height: 330px; z-index: -1; opacity: .14; background-image: linear-gradient(rgba(8,188,229,.5) 1px,transparent 1px),linear-gradient(90deg,rgba(8,188,229,.5) 1px,transparent 1px); background-size: 64px 34px; transform: perspective(500px) rotateX(65deg); transform-origin: bottom; }
.v2-hero-copy { position: relative; z-index: 3; }
.v2-anniversary-chip { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 22px; color: #c8d1e4; font-size: 1.25rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.v2-anniversary-chip span { padding: 7px 11px; border: 1px solid rgba(245,189,77,.55); border-radius: 5px; background: rgba(245,189,77,.08); color: var(--v2-gold); }
.v2-hero h1 { margin: 0; font-size: clamp(3rem,5.5vw,4rem); font-weight: 800; letter-spacing: 0; line-height: 1.05; color:#000; }
.v2-hero h1 span { color: var(--v2-orange); }
.v2-powered { margin: 15px 0; color: #555e75; font-size: 1.75rem; font-style: italic; font-weight: 600;}
.v2-powered strong { color: var(--v2-orange); }
.v2-hero-intro { margin: 0 0 23px; color: #555e75; font-size: 1.25rem; }
.v2-hero-lines { margin: 0 0 23px; padding-left: 18px; border-left: 3px solid transparent; border-image: linear-gradient(var(--v2-orange),var(--v2-cyan)) 1; }
.v2-hero-lines p { margin: 0; color: #555e75; font-size: clamp(1.05rem,1.55vw,1.45rem); line-height: 1.75;font-weight: 800; }
.v2-hero-lines em { color: var(--v2-cyan); font-style: normal; }
.v2-hero-legacy { margin: 0; color: #555e75; font-size: 1.25rem; }
.v2-hero-link { color: #000; font-size: 1.25rem; font-weight: 700; }
.v2-hero-link i { margin-left: 10px; color: #000; }
.v2-hero-art { display: none; position: relative; min-height: 650px; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 260px 260px 30px 30px; background: #080b20; box-shadow: 0 45px 110px rgba(0,0,0,.5); }
.v2-hero-art::before { content: ""; position: absolute; inset: 12px; z-index: 2; pointer-events: none; border: 1px solid rgba(245,189,77,.35); border-radius: 248px 248px 22px 22px; }
.v2-hero-art img { width: 100%; height: 650px; object-fit: cover; object-position: 69% center; transform: none; }
.v2-division-bar { position: absolute; right: 0; bottom: 0; left: 0; z-index: 4; }
.v2-division-bar span { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 12px; color: #fff; font-size: .9rem; font-weight: 800; }
.v2-division-bar .col-md-4:nth-child(1) span { background: linear-gradient(90deg,#008eb2,#08bce5); }
.v2-division-bar .col-md-4:nth-child(2) span { background: linear-gradient(90deg,#f05722,#ff8144); }
.v2-division-bar .col-md-4:nth-child(3) span { background: linear-gradient(90deg,#552175,#923fc3); }

/* About */
.v2-about { background: linear-gradient(180deg,#fff,var(--v2-cream)); }
.v2-sticky-heading { position: sticky; top: 120px; }
.v2-sticky-heading h2 span { color: var(--v2-purple); }
.v2-sticky-heading > p { margin: 26px 0; color: var(--v2-copy); }
.v2-decade-badge { display: flex; align-items: center; gap: 15px; padding-top: 24px; border-top: 1px solid var(--v2-line); }
.v2-decade-badge strong { color: var(--v2-orange); font-size: 4rem; font-weight: 900; letter-spacing: 0; line-height: 1; }
.v2-decade-badge span { color: var(--v2-ink); font-size: .76rem; font-weight: 900; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
.v2-about-stack { display: grid; gap: 20px; }
.v2-story-card { display: grid; grid-template-columns: 78px 1fr; gap: 25px; padding: 32px; border: 1px solid var(--v2-line); border-radius: 18px; background: #fff; box-shadow: 0 14px 38px rgba(18,22,42,.06); transition: .25s ease; }
.v2-story-card:hover { transform: translateX(8px); box-shadow: var(--v2-shadow); }
.v2-story-card-featured { border-color: rgba(8,188,229,.3); background: linear-gradient(135deg,#f2fbff,#fff8f4); }
.v2-story-number { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--v2-night); color: var(--v2-gold); font-size: .75rem; font-weight: 900; }
.v2-story-card small { color: var(--v2-orange); font-size: .65rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.v2-story-card h3 { margin: 5px 0 10px; font-size: 1.3rem; font-weight: 800; }
.v2-story-card p { margin: 0; color: var(--v2-copy); font-size: .94rem; }
.v2-story-card strong { color: var(--v2-purple); }

/* Why / bento */
.v2-why { overflow: hidden; background: #f5ece8; }
.v2-bento-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; }
.v2-benefit-card {
	position: relative;
	/* min-height: 270px; */
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--v2-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 15px 42px rgba(18,22,42,.06);
}
.v2-benefit-card::after { content: ""; position: absolute; right: -75px; bottom: -75px; width: 175px; height: 175px; border-radius: 50%; background: radial-gradient(circle,rgba(8,188,229,.14),transparent 68%); }
.v2-benefit-1,.v2-benefit-2 { grid-column: span 6; }
.v2-benefit-3,.v2-benefit-4,.v2-benefit-5 { grid-column: span 4; }
.v2-benefit-1 { background: linear-gradient(145deg,#0a0a20,#171944); color: #fff; }
.v2-benefit-1 p { color: #bfc8dc; }
.v2-benefit-5 { background: linear-gradient(145deg,#fff8e9,#fff); }
.v2-benefit-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.v2-benefit-top > span { width: 55px; height: 55px; display: grid; place-items: center; border-radius: 14px; background: linear-gradient(135deg,var(--v2-orange),#ff9452); color: #fff; font-size: 1.3rem; box-shadow: 0 12px 30px rgba(255,109,49,.24); }
.v2-benefit-top small { color: #d9dce5; font-size: 2.35rem; font-weight: 900; }
.v2-benefit-card h3 { margin: 0px 0 20px; font-size: 1.25rem; font-weight: 800; }
.v2-benefit-card p { margin: 0; color: var(--v2-copy); font-size: 1rem; }
.v2-benefit-1 .v2-benefit-top small { color: rgba(255,255,255,.11); }
.v2-participant-band { margin-top: 50px; padding: 50px; overflow: hidden; border-radius: 24px; background: radial-gradient(circle at 90% 0,rgba(8,188,229,.18),transparent 35%),linear-gradient(135deg,#08091d,#1a1537); color: #fff; box-shadow: 0 30px 75px rgba(5,3,14,.23); }
.v2-participant-band h2 { color: #fff; font-size: clamp(2rem,3.5vw,3.1rem); }
.v2-participant-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.v2-participant-grid span { min-height: 62px; display: flex; align-items: center; gap: 12px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.11); border-radius: 10px; background: rgba(255,255,255,.065); color: #e7ebf4; font-size: 1rem; font-weight: 700; }
.v2-participant-grid i { color: var(--v2-cyan); }

/* Categories */
.v2-categories { overflow: hidden; isolation: isolate; background: linear-gradient(145deg,#05030e,#101537 58%,#2c1247); color: #fff; }
.v2-categories::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .18; background-image: radial-gradient(circle at 1px 1px,#fff 1px,transparent 0); background-size: 32px 32px; mask-image: linear-gradient(100deg,#000,transparent 65%); }
.v2-ring { position: absolute; z-index: -1; border-radius: 50%; }
.v2-ring-one { top: -240px; right: -180px; width: 630px; height: 630px; border: 1px solid rgba(8,188,229,.2); box-shadow: 0 0 0 70px rgba(8,188,229,.025),0 0 0 140px rgba(255,109,49,.02); }
.v2-ring-two { bottom: -290px; left: -270px; width: 580px; height: 580px; border: 1px solid rgba(139,59,192,.24); }
.v2-heading-light h2 { color: #fff; }
.v2-heading-light > p { color: var(--v2-gold); }
.v2-heading-light .v2-kicker { color: var(--v2-orange); }
/* =====================================================
   REAL GLASS EFFECT FOR CONTEST CATEGORY BOXES
   Add this CSS after your existing category-card CSS
===================================================== */

.v2-category-card {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border: 6px solid transparent !important;
	border-radius: 20px !important;
	background: linear-gradient( 145deg, rgba(252, 250, 248, 0.91), rgba(238, 238, 238, 0.82) ) padding-box, linear-gradient( 135deg, rgba(255, 255, 255, 1) 0%, rgba(204, 238, 255, 0.95) 12%, rgba(255, 255, 255, 0.25) 30%, rgba(181, 169, 161, 0.30) 46%, rgba(255, 255, 255, 1) 65%, rgba(33, 169, 223, 0.55) 82%, rgba(255, 255, 255, 0.95) 100% ) border-box !important;
	backdrop-filter: blur(22px) saturate(150%);
	-webkit-backdrop-filter: blur(22px) saturate(150%);
	box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25), 0 8px 18px rgba(33, 169, 223, 0.12), inset 5px 5px 8px rgba(255, 255, 255, 1), inset -5px -5px 9px rgba(78, 77, 105, 0.17), inset 0 0 18px rgba(255, 255, 255, 0.55) !important;
	padding: 30px;
}

.v2-category-card::after {
    content: "";
    position: absolute;
    inset: 7px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow:
        inset 2px 2px 4px rgba(255, 255, 255, 0.95),
        inset -2px -2px 5px rgba(78, 77, 105, 0.10);
    pointer-events: none;
}
.v2-category-card::before {
    content: "";
    position: absolute;
    top: -85%;
    left: -55%;
    z-index: 2;
    width: 28%;
    height: 280%;
    transform: rotate(24deg);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 255, 255, 0.70) 43%,
        rgba(255, 255, 255, 1) 49%,
        rgba(201, 239, 255, 1) 53%,
        rgba(255, 255, 255, 0.65) 59%,
        transparent 100%
    );
    filter:
        blur(1px)
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.75));
    pointer-events: none;
}

/* Coding box: orange and blue glass refraction */
.v2-category-coding {
    background:
        linear-gradient(
            145deg,
            rgba(252, 250, 248, 0.91),
            rgba(238, 238, 238, 0.82)
        ) padding-box,
        linear-gradient(
            135deg,
            #ffffff 0%,
            rgba(238, 111, 51, 0.75) 16%,
            rgba(255, 255, 255, 0.30) 35%,
            #ffffff 58%,
            rgba(33, 169, 223, 0.65) 84%,
            #ffffff 100%
        ) border-box !important;
}

/* Audit box: cyan and white glass refraction */
.v2-category-audit {
    background:
        linear-gradient(
            145deg,
            rgba(252, 250, 248, 0.91),
            rgba(238, 238, 238, 0.82)
        ) padding-box,
        linear-gradient(
            135deg,
            #ffffff 0%,
            rgba(33, 169, 223, 0.80) 17%,
            rgba(255, 255, 255, 0.28) 36%,
            #ffffff 60%,
            rgba(78, 77, 105, 0.46) 84%,
            #ffffff 100%
        ) border-box !important;
}

.v2-category-coding::before { background: linear-gradient(90deg,var(--v2-cyan),#55d8f3); }
.v2-category-audit::before { background: linear-gradient(90deg,var(--v2-purple),var(--v2-orange)); }
.v2-category-header { position: relative; display: flex; align-items: center; gap: 18px; margin-bottom: 29px; padding-bottom: 27px; border-bottom: 1px solid var(--v2-line); }
.v2-category-header > strong { position: absolute; right: -8px; color: #ddd; font-size: 2.8rem; font-weight: 900; letter-spacing: -.06em; }
.v2-category-header > div { position: relative; z-index: 1; }
.v2-category-icon { position: relative; z-index: 1; flex: 0 0 64px; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 15px; background: var(--v2-night); color: #ee6f33; font-size: 2rem; }
.v2-category-header small { color: var(--v2-orange); font-size: .64rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.v2-category-header h3 { margin: 4px 0 0; font-size: 1.35rem; font-weight: 800; color: #000;}
.v2-category-card > p { color: var(--v2-copy); }
.v2-checklist { margin: 20px 0 0; padding: 0; list-style: none; }
.v2-checklist li { display: flex; align-items: center; gap: 20px; padding: 10px 0; border-bottom: 1px solid var(--v2-line); color: #3f485e; font-size: 1rem; font-weight: 600; }
.v2-checklist li > span {
	flex: 0 0 25px;
	width: 25px;
	height: 25px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--v2-night),#1d1c49);
	color: #fff;
	font-size: 1rem;
}

/* Platform */
.v2-platform { overflow: hidden; background: #fff; }
.v2-platform-title span { color: var(--v2-purple); }
.v2-platform-copy { margin: 23px 0 10px; color: var(--v2-copy); }
.v2-dashboard {
	position: relative;
	border: 9px solid #fff;
	border-radius: 23px;
	background: #f5ece8;
	box-shadow: 0 10px 30px rgba(5,3,14,.27);
	transform: perspective(1200px) rotateY(10deg);
}
.v2-dashboard.right {
	transform: perspective(1200px) rotateY(-10deg);
}
.v2-dashboard-top { min-height: 53px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 17px; color: #000; }
.v2-dashboard-top > div { display: flex; gap: 7px; }
.v2-dashboard-top i { width: 9px; height: 9px; border-radius: 50%; background: var(--v2-orange); }
.v2-dashboard-top i:nth-child(2) { background: var(--v2-gold); }
.v2-dashboard-top i:nth-child(3) { background: var(--v2-cyan); }
.v2-dashboard-top strong { font-size: .75rem; }
.v2-dashboard-top > span { justify-self: end; color: var(--v2-cyan); font-size: .58rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.v2-dashboard-body { min-height: 400px; display: grid; grid-template-columns: 68px 1fr; overflow: hidden; border-radius: 0 0 13px 13px; background: #f5f7fb; }
.v2-dashboard-body aside { display: flex; flex-direction: column; align-items: center; gap: 26px; padding: 30px 10px; background: #f5ece8; color: #8994af; }
.v2-dashboard-body aside i:first-child { color: var(--v2-cyan); }
.v2-dashboard-main { padding: 28px; }
.v2-dashboard-title { display: flex; flex-direction: column; margin-bottom: 20px; }
.v2-dashboard-title small { color: #8a92a4; font-size: .65rem; }
.v2-dashboard-title strong { font-size: 1rem; }
.v2-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.v2-metrics > span { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 2px 9px; padding: 12px; border: 1px solid #e2e5ed; border-radius: 9px; background: #fff; }
.v2-metrics i { grid-row: span 2; color: var(--v2-orange); }
.v2-metrics b { font-size: .9rem; }
.v2-metrics small { color: #8a92a4; font-size: .55rem; }
.v2-chart { height: 142px; margin: 18px 0; padding: 21px 18px 0; display: flex; align-items: flex-end; gap: 10px; border: 1px solid #e2e5ed; border-radius: 10px; background: #fff; }
.v2-chart i { flex: 1; height: 45%; border-radius: 4px 4px 0 0; background: var(--v2-cyan); }
.v2-chart i:nth-child(2) { height: 64%; background: var(--v2-purple); }
.v2-chart i:nth-child(3) { height: 53%; }
.v2-chart i:nth-child(4) { height: 82%; background: var(--v2-orange); }
.v2-chart i:nth-child(5) { height: 69%; }
.v2-chart i:nth-child(6) { height: 92%; background: var(--v2-gold); }
.v2-chart i:nth-child(7) { height: 75%; background: var(--v2-purple); }
.v2-dashboard-lines span { display: block; width: 90%; height: 7px; margin-top: 8px; border-radius: 8px; background: #dfe3eb; }
.v2-dashboard-lines span:nth-child(2) { width: 68%; }
.v2-dashboard-lines span:nth-child(3) { width: 48%; }
.v2-dashboard-badge { position: absolute; right: -24px; bottom: -22px; padding: 14px 20px; border-radius: 9px; background: linear-gradient(135deg,var(--v2-orange),#ff9149); color: #fff; font-size: .76rem; font-weight: 800; box-shadow: 0 16px 36px rgba(255,109,49,.27); }

/* Journey */
.v2-journey { background: var(--v2-cream); }
.v2-timeline { position: relative; display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 14px; margin: 0; padding: 0; list-style: none; }
.v2-timeline::before { content: ""; position: absolute; top: 31px; right: calc(100% / 12); left: calc(100% / 12); height: 4px; border-radius: 4px; background: linear-gradient(90deg,var(--v2-cyan) 0 31%,var(--v2-orange) 48% 68%,var(--v2-purple) 86% 100%); box-shadow: 0 5px 18px rgba(18,22,42,.1); }
.v2-timeline::after { content: ""; position: absolute; top: 25px; right: calc(100% / 12 - 7px); width: 15px; height: 15px; transform: rotate(45deg); border-top: 4px solid var(--v2-purple); border-right: 4px solid var(--v2-purple); }
.v2-timeline li { position: relative; z-index: 1; min-width: 0; text-align: center; }
.v2-timeline-number { display: inline-flex; width: 66px; height: 66px; align-items: center; justify-content: center; border: 6px solid var(--v2-cream); border-radius: 50%; background: var(--v2-night); box-shadow: 0 0 0 2px var(--v2-cyan),0 12px 30px rgba(5,3,14,.18); color: var(--v2-gold); font-size: .78rem; font-weight: 900; }
.v2-timeline li:nth-child(3) .v2-timeline-number,
.v2-timeline li:nth-child(4) .v2-timeline-number { box-shadow: 0 0 0 2px var(--v2-orange),0 12px 30px rgba(5,3,14,.18); }
.v2-timeline li:nth-child(5) .v2-timeline-number,
.v2-timeline li:nth-child(6) .v2-timeline-number { box-shadow: 0 0 0 2px var(--v2-purple),0 12px 30px rgba(5,3,14,.18); }
.v2-timeline article { position: relative; min-height: 140px; margin-top: 23px; padding: 25px 17px; border: 1px solid var(--v2-line); border-radius: 15px; background: #fff; box-shadow: 0 15px 42px rgba(18,22,42,.07); transition: transform .22s ease,box-shadow .22s ease; }
.v2-timeline article::before { content: ""; position: absolute; top: -7px; left: 50%; width: 13px; height: 13px; transform: translateX(-50%) rotate(45deg); border-top: 1px solid var(--v2-line); border-left: 1px solid var(--v2-line); background: #fff; }
.v2-timeline article:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(18,22,42,.12); }
.v2-timeline article small { color: var(--v2-orange); font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.v2-timeline article h3 {
	margin: 5px 0 10px;
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--v2-purple);
}
.v2-timeline article p { margin: 0; color: #222; font-size: 1rem; line-height: 1.5; }

/* Awards */
.v2-awards { overflow: hidden; isolation: isolate; background: radial-gradient(circle at 15% 12%,rgba(8,188,229,.12),transparent 28%),linear-gradient(145deg,#05030e,#121538 57%,#32134c); color: #fff; }
.v2-awards::after { content: "10"; position: absolute; right: -120px; bottom: -175px; z-index: -1; color: rgba(255,255,255,.022); font-size: 38rem; font-weight: 900; letter-spacing: -.15em; line-height: 1; }
.v2-awards .v2-kicker { color: var(--v2-orange); }
.v2-awards-title { color: #fff; }
.v2-awards-title span { color: var(--v2-orange); }
.v2-award-card { padding: 30px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.035)); backdrop-filter: blur(8px); }
.v2-medal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.v2-medal i { width: 53px; height: 53px; display: grid; place-items: center; border: 1px solid rgba(245,189,77,.55); border-radius: 50%; background: rgba(245,189,77,.08); color: var(--v2-gold); }
.v2-medal span { color: rgba(255,255,255,.14); font-size: 2.5rem; font-weight: 900; }
.v2-award-card > small { color: var(--v2-cyan); font-size: .9rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.v2-award-card h3 { margin: 7px 0 0; color: #fff; font-size: 1.4rem; font-weight: 800; line-height: 1.45; }
.v2-award-note {margin: 25px 0 0;color: #ccc;font-size: 1.25rem;}
.v2-award-note i { margin-right: 8px; color: var(--v2-gold); }
.v2-dates-card { height: 100%; padding: 38px; border-radius: 22px; background: #fff; color: var(--v2-ink); box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.v2-dates-card .v2-kicker { color: var(--v2-orange); }
.v2-dates-card h2 { margin: 0 0 25px; font-size: 2.45rem; font-weight: 800; letter-spacing: -.045em; }
.v2-dates-card ul { margin: 0; padding: 0; list-style: none; }
.v2-dates-card li { display: grid; grid-template-columns: 45px 1fr; gap: 14px; align-items: start; padding: 18px 0; border-top: 1px solid var(--v2-line); }
.v2-dates-card li > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 8px; background: var(--v2-night); color: var(--v2-gold); font-size: .62rem; font-weight: 900; }
.v2-dates-card li div { display: flex; flex-direction: column; }
.v2-dates-card li small { color: var(--v2-orange); font-size: .9rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.v2-dates-card li strong { color: #394158; font-size: .84rem; }

/* Award new section */
        .award-row {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 15px;
            align-items: end;
            margin-top: 50px;
        }
        .award-item {
            position: relative;
            width: 100%;
            max-width: 275px;
            margin: 0 auto;
            filter:
                drop-shadow(0 21px 20px rgba(0, 0, 0, 0.34))
                drop-shadow(0 0 8px rgba(186, 220, 255, 0.10));
            transition: transform 0.3s ease, filter 0.3s ease;
        }
        .award-item:hover {
            transform: translateY(-7px);
            filter:
                drop-shadow(0 27px 24px rgba(0, 0, 0, 0.42))
                drop-shadow(0 0 12px rgba(186, 220, 255, 0.20));
        }
        .award-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        .award-name {
            position: absolute;
            top: 60%;
            right: 15%;
            left: 15%;
            z-index: 2;
            transform: translateY(-50%);
            color: #fff;
            font-size: clamp(12px, 1vw, 16px);
            font-weight: 800;
            line-height: 1.35;
            letter-spacing: 0;
            text-align: center;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.85), 0 0 8px rgba(255, 255, 255, 0.08);
        }
        .award-name small {
            display: block;
            margin-top: 5px;
            color: #d9e6f6;
            font-size: 0.85em;
            font-weight: 700;
        }

        @media (max-width: 1199.98px) {
            .award-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 20px;
            }
            .award-name {
                font-size: 12px;
            }
        }

        @media (max-width: 575.98px) {
            .award-row {
                gap: 10px;
            }
            .award-name {
                right: 12%;
                left: 12%;
                font-size: 9px;
            }
        }

/* CTA and footer */
.v2-final-cta { position: relative; overflow: visible; padding: 50px 0; background: url("../img/landing/contest-cta-bg.jpg") 58% center / cover no-repeat;; }
.v2-final-ring {
	position: absolute;
	top: 30px;
	right: -120px;
	width: 300px;
	height: 300px;
	border: 1px solid rgba(5,3,14,.18);
	border-radius: 50%;
	box-shadow: 0 0 0 65px rgba(5,3,14,.035),0 0 0 130px rgba(5,3,14,.025);
}

.v2-final-cta p { margin: 30px 0 0; color: #3f210d; font-size: 1.75rem; font-style: italic; font-weight: 800; }
.v2-final-cta h2 { margin: 10px 0 30px; letter-spacing: 0; }
.v2-footer { padding: 62px 0 25px; background: #04020b; color: #9ca6bc; }
.v2-footer p { max-width: 320px; margin: 18px 0 0; font-size: .76rem; }
.v2-footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.v2-footer-nav a { color: #cbd2df; font-size: .79rem; font-weight: 700; }
.v2-footer-nav a:hover { color: var(--v2-cyan); }
.v2-footer-link { padding: 0; border: 0; background: transparent; color: var(--v2-orange); font-size: .8rem; font-weight: 800; }
.v2-footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); font-size: .68rem; }
.nova-img {
	width: 100%;
	transform: scale(1.65);
	transform-origin: 100% 80%;
	position: relative;
	z-index: 1;
}

/* Bootstrap modal with unchanged form in iframe */
.v2-registration-modal { --bs-modal-width: 1480px; }
.v2-registration-modal .modal-content { overflow: hidden; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; box-shadow: 0 40px 120px rgba(0,0,0,.58); }
.v2-registration-modal .modal-header { min-height: 84px; border: 0; padding: 17px 24px; background: linear-gradient(100deg,var(--v2-night),#18183f 64%,#3b185e); color: #fff; }
.v2-registration-modal .modal-header span { color: var(--v2-gold); font-size: .61rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.v2-registration-modal .modal-title { margin-top: 3px; font-size: 1.15rem; font-weight: 800; }
.v2-registration-modal .modal-body { background: #fff; }
.v2-form-frame { display: block; width: 100%; height: min(78vh,790px); border: 0; background: #fff; }

/* Glass Background */
.shining-glass-box {
    position: relative;
    width: 100%;
    min-height: 300px;
    padding: 10px;
    isolation: isolate;
    border-radius: 18px;
    /* Transparent glass body */
    background: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 25px 40px rgba(30, 31, 45, 0.22),
        inset 4px 4px 7px rgba(255, 255, 255, 0.90),
        inset -4px -4px 8px rgba(78, 77, 105, 0.22);
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
}

/* Static glass border and moving light */
.shining-glass-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 7px;
    border-radius: inherit;
    background:
        linear-gradient(
            115deg,
            transparent 25%,
            rgba(255, 255, 255, 0.35) 38%,
            rgba(255, 255, 255, 1) 48%,
            rgba(130, 210, 255, 0.95) 52%,
            transparent 66%
        ) -130% 0 / 250% 100% no-repeat,
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.25) 20%,
            rgba(181, 169, 161, 0.30) 43%,
            rgba(255, 255, 255, 0.95) 68%,
            rgba(33, 169, 223, 0.38) 82%,
            rgba(255, 255, 255, 0.90) 100%
        );

    /* Show only the border area */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
    animation: glass-border-shine 4.5s linear infinite;
}

/* Inner highlight around the front surface */
.shining-glass-box::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.90);
    border-radius: 11px;
    box-shadow:
        inset 3px 3px 5px rgba(255, 255, 255, 0.85),
        inset -3px -3px 5px rgba(78, 77, 105, 0.12);
    pointer-events: none;
}

@keyframes glass-border-shine {
    0% {
        background-position:
            -130% 0,
            0 0;
    }
    100% {
        background-position:
            170% 0,
            0 0;
    }
}

.glass-content {
    position: relative;
    z-index: 1;
    min-height: 280px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;

    /* Requested #eee front surface */
    background:
        radial-gradient(
            circle at 20% 5%,
            rgba(255, 255, 255, 0.95),
            transparent 40%
        ),
        #eee;
    border-radius: 10px;
}

/* Soft diagonal reflection */
.glass-content::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -80%;
    width: 95%;
    height: 210%;
    transform: rotate(20deg);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.50),
        transparent
    );
    pointer-events: none;
}

.glass-sparkle {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 8;
    width: 50px;
    height: 50px;
    background:
        linear-gradient(
            transparent 46%,
            rgba(255, 255, 255, 1) 49%,
            rgba(255, 255, 255, 1) 51%,
            transparent 54%
        ),
        linear-gradient(
            90deg,
            transparent 46%,
            rgba(255, 255, 255, 1) 49%,
            rgba(255, 255, 255, 1) 51%,
            transparent 54%
        );
    filter: drop-shadow(0 0 5px #d1d1d1);
    /* animation: sparkle-pulse 1.8s ease-in-out infinite; */
}

.glass-sparkle::before {
    content: "";
    position: absolute;
    inset: 8px;
    transform: rotate(45deg);
    background:
        linear-gradient(
            transparent 46%,
            rgba(255, 255, 255, 0.95) 49%,
            rgba(255, 255, 255, 0.95) 51%,
            transparent 54%
        ),
        linear-gradient(
            90deg,
            transparent 46%,
            rgba(255, 255, 255, 0.95) 49%,
            rgba(255, 255, 255, 0.95) 51%,
            transparent 54%
        );
}

@keyframes sparkle-pulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.75);
    }
    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.glass-icon {
	position: relative;
	z-index: 2;
	width: 90px;
	height: 90px;
	margin-bottom: 23px;
	display: grid;
	place-items: center;
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	background: #f1f1f1;
	color: #ee6f33;
	font-size: 32px;
	box-shadow: 0 9px 20px rgba(78, 77, 105, 0.15), inset 3px 3px 5px #fff, inset -3px -3px 5px rgba(181, 169, 161, 0.5);
}

/* Glass Border Shine */

.glass-frame {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    /* Thickness of glass border */
    padding: 10px;

    border-radius: 24px;

    /* Thick transparent glass frame */
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(206, 235, 250, 0.72) 12%,
        rgba(255, 255, 255, 0.25) 28%,
        rgba(181, 169, 161, 0.32) 45%,
        rgba(255, 255, 255, 0.90) 63%,
        rgba(192, 229, 247, 0.65) 82%,
        rgba(255, 255, 255, 1) 100%
    );

    border:
        1px solid
        rgba(255, 255, 255, 0.95);

    box-shadow:
        0 22px 45px rgba(78, 77, 105, 0.18),
        0 5px 12px rgba(181, 169, 161, 0.18),

        /* Glass thickness */
        inset 4px 4px 6px rgba(255, 255, 255, 1),
        inset -4px -4px 7px rgba(78, 77, 105, 0.20),
        inset 0 0 12px rgba(33, 169, 223, 0.14);

    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

/* Inner glass line */
.glass-frame::after {
    content: "";
    position: absolute;
    inset: 7px;
    z-index: 4;

    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 17px;

    box-shadow:
        inset 2px 2px 3px rgba(255, 255, 255, 0.85),
        inset -2px -2px 4px rgba(78, 77, 105, 0.12);

    pointer-events: none;
}


/* Frosty Background */

.frosted-section {
    padding: 70px 0;
    background: #ffffff;
}

.cream-frosted-glass {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #f5ece8;
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    box-shadow:
        0 18px 38px rgba(78, 77, 105, 0.10),
        7px 9px 15px rgba(181, 169, 161, 0.10),
        inset 3px 3px 6px rgba(255, 255, 255, 1),
        inset -3px -3px 6px rgba(181, 169, 161, 0.13);
}

/* Subtle bottom glass edge */
.cream-frosted-glass::after {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 7px;
    left: 10px;
    height: 5px;
    border-radius: 50%;
    background: #f5ece8;
    filter: blur(1px);
    pointer-events: none;
}


/* Responsive */
@media (max-width: 1199.98px) {
    .v2-hero { min-height: 900px; }
    .v2-hero-art { min-height: 570px; }
    .v2-hero-art img { height: 570px; }
    .v2-category-card { min-height: 620px; }
}

@media (max-width: 991.98px) {
    html { scroll-padding-top: 72px; }
    .v2-header .navbar { min-height: 72px; }
    .v2-header .navbar-collapse { margin: 0 -12px; padding: 12px 18px 20px; border-top: 1px solid rgba(255,255,255,.1); background: rgba(5,3,14,.98); }
    .v2-header .nav-link { padding: 10px 5px !important; }
    .v2-header .nav-link::after { display: none; }
    .v2-hero { min-height: auto; padding: 130px 0 30px; background:#f5ece8; }
    .v2-hero-art { display: block; min-height: 520px; max-width: 760px; margin: 15px auto 0; border-radius: 24px; }
    .v2-hero-lines p {font-size: clamp(1.75rem,1.55vw,1.45rem);}
    .contest-section {padding: 30px 0;}
    .v2-benefit-card {min-height: 330px;}
    .v2-participant-band {margin-top: 50px;}
    .v2-hero-art::before { border-radius: 16px; }
    .v2-hero-art img { height: 520px; object-position: 90% center; }
    .v2-sticky-heading { position: relative; top: auto; }
    .v2-benefit-3,.v2-benefit-4 { grid-column: span 6; }
    .v2-benefit-5 { grid-column: 4 / span 6; }
    .v2-category-card { min-height: auto; }
    .v2-dashboard { max-width: 690px; margin: 0 auto 25px; transform: none; }
    .v2-timeline { grid-template-columns: 1fr; gap: 18px; }
    .v2-timeline::before { top: 33px; right: auto; bottom: 33px; left: 31px; width: 4px; height: auto; background: linear-gradient(180deg,var(--v2-cyan),var(--v2-orange),var(--v2-purple)); }
    .v2-timeline::after { display: none; }
    .v2-timeline li { display: grid; grid-template-columns: 66px minmax(0,1fr); gap: 20px; align-items: center; text-align: left; }
    .v2-timeline article { min-height: 0; margin: 0; padding: 23px 24px; }
    .v2-timeline article::before { top: 50%; left: -7px; transform: translateY(-50%) rotate(-45deg); }
    .v2-timeline article:hover { transform: translateX(5px); }
    .v2-footer-nav { justify-content: flex-start; }
    .v2-category-coding::before, .v2-category-audit::before, .shine::before {display: none;}
    .cream-frosted-glass {padding: 0;}
    .nova-img {transform: scale(0.40);transform-origin: 100%;position: absolute;right: -50px;top: -90%;}
}

@media (max-width: 767.98px) {
    .nova-img {transform: scale(1.1);transform-origin: 100% 100%;position: relative;right: auto;top: auto;}
    .v2-benefit-card {min-height: 0;}
    .v2-section { padding: 30px 0; }
    .v2-hero { padding-bottom: 0; }
    .v2-hero h1 {font-size: clamp(2rem,8vw,2.5rem);line-height: 1.05;}
    .v2-powered {font-size: 1.25rem;}
    .v2-hero-lines p {font-size: clamp(1.5rem,2vw,2rem);}
    .v2-hero-legacy, .v2-hero-intro {font-size: 1rem;}
    .v2-hero-art { min-height: 420px; border-radius: 20px; }
    .v2-hero-art img { height: 420px; }
    .v2-division-bar { position: relative; margin: 55px -12px 0; }
    .v2-division-bar span { min-height: 50px; }
    .v2-story-card { grid-template-columns: 60px 1fr; gap: 17px; padding: 25px 22px; }
    .v2-story-number { width: 52px; height: 52px; }
    .v2-benefit-card, .v2-benefit-1,.v2-benefit-2,.v2-benefit-3,.v2-benefit-4,.v2-benefit-5 { grid-column: 1 / -1; min-height: auto; }
    .v2-participant-band { margin-top: 60px; padding: 35px 24px; }
    .v2-participant-grid { grid-template-columns: 1fr; }
    .v2-category-card { padding: 32px 24px; }
    .v2-dashboard-body { min-height: auto; grid-template-columns: 54px 1fr; }
    .v2-dashboard-body aside { padding: 24px 7px; }
    .v2-dashboard-main { padding: 0px; }
    .v2-metrics > span { grid-template-columns: 1fr; gap: 1px; }
    .v2-metrics i { display: none; }
    .v2-dashboard-badge { right: 12px; }
    .v2-final-cta .v2-btn { width: 100%; }
    .v2-footer-bottom { flex-direction: column; gap: 7px; }
    .v2-registration-modal .modal-dialog { margin: 8px; }
    .v2-registration-modal .modal-content { border-radius: 13px; }
    .v2-registration-modal .modal-header { min-height: 72px; padding: 13px 16px; }
    .v2-registration-modal .modal-title { font-size: .98rem; }
    .v2-form-frame { height: calc(100vh - 93px); }
    .v2-final-ring {display: none;}
}

@media (max-width: 575.98px) {
    .v2-brand-mark { width: 28px; height: 28px; }
    .v2-brand-mark i { width: 11px; height: 11px; }
    .v2-brand > span:last-child { font-size: 1.25rem; }
    .v2-anniversary-chip { font-size: .66rem; }
    .v2-hero-art { min-height: 350px; border-radius: 18px; }
    .v2-hero-art img { height: 350px; object-position: 90% center; }
    .v2-section-heading h2, .v2-sticky-heading h2, .v2-platform-title, .v2-awards-title, .v2-final-cta h2, .v2-participant-band h2 { font-size: 2.25rem; }
    .v2-story-card { grid-template-columns: 1fr; }
    .v2-story-card:hover { transform: translateY(-4px); }
    .v2-category-header { align-items: flex-start; gap: 14px; }
    .v2-category-header > strong { display: none; }
    .v2-category-icon { flex-basis: 52px; width: 52px; height: 52px; }
    .v2-category-header h3 { font-size: 1.1rem; }
    .v2-dashboard { border-width: 6px; border-radius: 16px; }
    .v2-chart { height: 105px; }
    .v2-dashboard .bi.bi-journal-code {display: none;}
    .v2-dashboard-badge { position: relative; right: auto; bottom: auto; display: block; border-radius: 0 0 8px 8px; text-align: center; }
    .v2-timeline li { grid-template-columns: 58px minmax(0,1fr); gap: 13px; }
    .v2-timeline::before { top: 29px; bottom: 29px; left: 28px; }
    .v2-timeline-number { width: 58px; height: 58px; border-width: 5px; }
    .v2-timeline article { padding: 22px 18px; }
    .v2-dates-card { padding: 30px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}


/* New section design */

.v2-categories {
    position: relative;
    overflow: hidden;
    background:radial-gradient(circle at 90% 0,rgba(8,188,229,.18),transparent 35%),linear-gradient(135deg,#08091d,#1a1537);
}

.v2-audit-intro {
    max-width: 760px;
    margin-bottom: 42px;
    color: #fff;
}

.v2-audit-main-icon {
    display: inline-grid;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: linear-gradient(145deg, #ee6f33, #ff935e);
    box-shadow: 0 14px 34px rgba(238, 111, 51, 0.3);
    color: #fff;
    font-size: 32px;
    transform: rotate(-4deg);
}

.v2-audit-main-icon i {
    transform: rotate(4deg);
}

.v2-audit-label {
    display: block;
    margin-bottom: 8px;
    color: #73d8ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.v2-audit-intro h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 800;
}

.v2-audit-intro p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

/* Tile grid */

.v2-audit-tile-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.v2-audit-tile {
    --tile-accent: #ee6f33;
    --tile-rgb: 238, 111, 51;

    position: relative;
    min-height: 245px;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.045)
        );
    box-shadow: 0 18px 45px rgba(1, 11, 27, 0.2);
    color: #fff;
    backdrop-filter: blur(12px);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.v2-audit-tile::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--tile-accent);
    content: "";
}

.v2-audit-tile::after {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(var(--tile-rgb), 0.14);
    content: "";
    transition: transform 0.35s ease;
}

.v2-audit-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--tile-rgb), 0.55);
    box-shadow: 0 26px 55px rgba(1, 11, 27, 0.32);
}

.v2-audit-tile:hover::after {
    transform: scale(1.2);
}

.v2-tile-number {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.v2-tile-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    place-items: center;
    border: 1px solid rgba(var(--tile-rgb), 0.32);
    border-radius: 16px;
    background: rgba(var(--tile-rgb), 0.16);
    color: var(--tile-accent);
    font-size: 25px;
}

.v2-audit-tile h4 {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.35;
}

.v2-audit-tile p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.65;
}

/* Pena4 accent colours */

.v2-tile-orange {
    --tile-accent: #ee6f33;
    --tile-rgb: 238, 111, 51;
}

.v2-tile-blue {
    --tile-accent: #21a9df;
    --tile-rgb: 33, 169, 223;
}

.v2-tile-purple {
    --tile-accent: #a894ff;
    --tile-rgb: 168, 148, 255;
}

.v2-tile-green {
    --tile-accent: #9bc91b;
    --tile-rgb: 155, 201, 27;
}

.v2-tile-red {
    --tile-accent: #ff6b6b;
    --tile-rgb: 255, 107, 107;
}

/* Make the final important tile wider */

.v2-audit-tile:last-child {
    grid-column: span 2;
}

.v2-category-cta {
    min-width: 255px;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .v2-audit-tile-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .v2-audit-tile:last-child {
        grid-column: 2;
    }
}

@media (max-width: 767.98px) {
    .v2-audit-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .v2-audit-tile:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 575.98px) {
    .v2-audit-intro {
        margin-bottom: 30px;
    }

    .v2-audit-tile-grid {
        grid-template-columns: 1fr;
    }

    .v2-audit-tile,
    .v2-audit-tile:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .v2-category-cta {
        width: 100%;
        min-width: 0;
    }
}

.v2-coding-intro .v2-audit-main-icon {
    background: linear-gradient(145deg, #21a9df, #157eaf);
    box-shadow: 0 14px 34px rgba(33, 169, 223, 0.32);
}

.v2-coding-intro .v2-audit-label {
    color: #ff9b6c;
}




/* Dark mode */

.dark-mode .v2-categories {background: radial-gradient(circle at 90% 0, rgba(8, 188, 229, 0.18), transparent 35%), linear-gradient(135deg, #08091d, #1a1537);}
.dark-mode .v2-why h2 { color: #000; }
.dark-mode .glass-content {background: radial-gradient(circle at 15% 12%,rgba(8,188,229,.12),transparent 28%),linear-gradient(145deg,#05030e,#121538 57%,#32134c);}
.shining-glass-box {background: rgba(0, 0, 0, 0.18);box-shadow: 0 25px 40px rgba(30, 31, 45, 0.22), inset 4px 4px 7px rgba(0, 0, 0, 0.90), inset -4px -4px 8px rgba(78, 77, 105, 0.22);}
.dark-mode .v2-benefit-card p {color: #fff;}
.dark-mode .v2-participant-band {background: linear-gradient(135deg, #08091d, #1a1537);}
.dark-mode .v2-participant-band h2 {color: #fff;}
.dark-mode .v2-platform h2 {color: #000;}
.dark-mode .power-by-auditor h2 {color: #fff;}
.dark-mode .power-by-auditor, .dark-mode #about {background:radial-gradient(circle at 15% 12%,rgba(8,188,229,.12),transparent 28%),linear-gradient(145deg,#05030e,#121538 57%,#32134c);}
.dark-mode .power-by-auditor .v2-platform-copy {color: #fff;}
.dark-mode .power-by-auditor .v2-checklist li {color: #eee;}
.dark-mode .v2-journey h2 {color: #000;}
.dark-mode .v2-final-cta h2 {color: #222;}

/* =========================
    BUTTON WRAPPER
========================== */

.glow-button {
	position: relative;
	width: 280px;
	height: 75px;
	padding: 5px;
	border-radius: 50px;
	cursor: pointer;
	isolation: isolate;
	filter: drop-shadow(0 0 10px rgba(0, 200, 255, 0.35)) drop-shadow(0 0 25px rgba(180, 0, 255, 0.25));
	transition: transform 0.35s ease;
	overflow: hidden;
	border: 0px;
}
    /* =========================
       ROTATING NEON BORDER
    ========================== */

    .glow-button::before {

      content: "";

      position: absolute;

      inset: -5px;

      border-radius: inherit;

      background:

        conic-gradient(

          from 0deg,

          transparent 0deg,

          transparent 40deg,

          #00eaff 70deg,

          #008cff 100deg,

          transparent 130deg,

          transparent 180deg,

          #8c00ff 220deg,

          #ff00d9 270deg,

          transparent 310deg,

          transparent 360deg

        );

      animation: rotateGlow 3s linear infinite;

      z-index: -2;

    }


    /* =========================

       EXTRA BLURRED GLOW

    ========================== */

    .glow-button::after {

      content: "";

      position: absolute;

      inset: -15px;

      border-radius: inherit;

      background:

        conic-gradient(

          from 0deg,

          transparent,

          rgba(0, 234, 255, 0.7),

          transparent 30%,

          transparent 55%,

          rgba(255, 0, 220, 0.7),

          transparent 80%

        );

      filter: blur(20px);

      opacity: 0.65;

      animation: rotateGlow 3s linear infinite;

      z-index: -3;

    }


    /* =========================

       GLASS BUTTON

    ========================== */

    .button-inner {

      position: relative;

      width: 100%;

      height: 100%;

      display: flex;

      align-items: center;

      justify-content: center;

      gap: 25px;

      border-radius: 50px;

      background:

        linear-gradient(

          135deg,

          rgba(255, 255, 255, 0.16),

          rgba(255, 255, 255, 0.035)

        );

      backdrop-filter: blur(18px);

      -webkit-backdrop-filter: blur(20px);

      border: 1px solid rgba(255, 255, 255, 0.18);

      box-shadow:

        inset 0 1px 1px rgba(255, 255, 255, 0.35),

        inset 0 -10px 25px rgba(0, 0, 0, 0.25),

        0 15px 35px rgba(0, 0, 0, 0.35);

      overflow: hidden;

      color: white;

      transition: all 0.35s ease;

    }


    /* =========================

       GLASS REFLECTION

    ========================== */

    .button-inner::before {

      content: "";

      position: absolute;

      top: 5px;

      left: 8%;

      width: 84%;

      height: 35%;

      border-radius: 50%;

      background: linear-gradient(

        to bottom,

        rgba(255, 255, 255, 0.28),

        transparent

      );

      filter: blur(5px);

      pointer-events: none;

    }

    /* =========================
       TEXT
    ========================== */

    .button-inner .text {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5), 0 0 20px rgba(0, 200, 255, 0.25);
        color: #000;
        font-family: "Geist", sans-serif;
    }

    /* =========================
       ARROW
    ========================== */

    .arrow {
      font-size: 30px;
      font-weight: 600;
      line-height: 1;
      text-shadow:
        0 0 10px white,
        0 0 20px #00d9ff;
      transition: 0.35s ease;
      color: #000;
    }

    /* =========================
       HOVER
    ========================== */

    .glow-button:hover {
      transform:
        perspective(800px)
        rotateX(3deg)
        scale(1.05);
      filter:
        drop-shadow(0 0 15px rgba(0, 220, 255, 0.55))
        drop-shadow(0 0 40px rgba(200, 0, 255, 0.4));
    }


    .glow-button:hover .button-inner {
      background:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.20),
          rgba(255, 255, 255, 0.055)
        );
      box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -10px 25px rgba(0, 0, 0, 0.2),
        0 20px 45px rgba(0, 0, 0, 0.4);
    }

    .glow-button:hover .arrow {
      transform: translateX(7px);
      text-shadow:
        0 0 12px white,
        0 0 30px #00eaff;
        color: #fff;
    }
    .glow-button:hover .text {color: #fff;}

    /* =========================
       CLICK EFFECT
    ========================== */

    .glow-button:active {
      transform:
        perspective(800px)
        rotateX(8deg)
        scale(0.97);
    }

    /* =========================
       ROTATION
    ========================== */

    @keyframes rotateGlow {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    /* =========================
       MOBILE
    ========================== */

    @media (max-width: 500px) {
      .glow-button {
            width: 100%;
            height: 65px;
        }

      .text {
        font-size: 18px;
      }

      .arrow {
        font-size: 28px;
      }

    }

    :root {
    --p4-orange: #ee6f33;
    --p4-stone: #b5a9a1;
    --p4-blue: #21a9df;
    --p4-slate: #4e4d69;
    --p4-green: #9bc91b;
    --p4-dark: #222;
}

/* Pena4 rotating border */
.glow-button::before {
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 35deg,
        var(--p4-blue) 70deg,
        var(--p4-slate) 110deg,
        transparent 145deg,
        transparent 180deg,
        var(--p4-green) 220deg,
        var(--p4-orange) 270deg,
        transparent 315deg,
        transparent 360deg
    );
}

/* Pena4 outer glow */
.glow-button::after {
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(33, 169, 223, 0.8),
        transparent 30%,
        transparent 52%,
        rgba(155, 201, 27, 0.65),
        rgba(238, 111, 51, 0.8),
        transparent 82%
    );
}

/* Moving Pena4 background */
.button-inner {
    background: #ffffffc4;
    background-size: 300% 300%;
    animation: pena4GradientMove 7s ease-in-out infinite;
}

/* Stronger Pena4 colors on hover */
.glow-button:hover .button-inner {
    background: #000000b0;
    background-size: 300% 300%;
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.5),
        inset 0 -10px 25px rgba(0, 0, 0, 0.2),
        0 20px 45px rgba(0, 0, 0, 0.4);
}

/* Animate the gradient */
@keyframes pena4GradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Updated outer drop shadows */
.glow-button {
    filter:
        drop-shadow(0 0 10px rgba(33, 169, 223, 0.40))
        drop-shadow(0 0 25px rgba(238, 111, 51, 0.28));
}

.glow-button:hover {
    filter:
        drop-shadow(0 0 15px rgba(33, 169, 223, 0.58))
        drop-shadow(0 0 40px rgba(238, 111, 51, 0.42));
}


.registration-alert {
    position: fixed;
    inset: 0;
    z-index: 50000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(5, 13, 27, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.registration-alert.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.registration-alert-box {
    position: relative;
    width: min(100%, 510px);
    padding: 42px 38px 34px;

    overflow: hidden;
    text-align: center;

    border: 1px solid rgba(33, 169, 223, 0.42);
    border-radius: 24px;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(33, 169, 223, 0.22),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(238, 111, 51, 0.20),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            #0c2340,
            #111b31 55%,
            #222
        );

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.48),
        0 0 35px rgba(33, 169, 223, 0.16);

    color: #fff;

    transform: translateY(25px) scale(0.94);

    transition: transform 0.35s ease;
}

.registration-alert.is-open .registration-alert-box {
    transform: translateY(0) scale(1);
}

.registration-alert-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 3px;

    background: linear-gradient(
        90deg,
        transparent,
        #21a9df,
        #9bc91b,
        #ee6f33,
        transparent
    );
}

.registration-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 66px;
    height: 66px;
    margin: 0 auto 20px;

    border: 2px solid rgba(238, 111, 51, 0.75);
    border-radius: 50%;

    background: rgba(238, 111, 51, 0.13);
    box-shadow:
        0 0 0 9px rgba(238, 111, 51, 0.07),
        0 0 28px rgba(238, 111, 51, 0.28);

    color: #ee6f33;
    font-size: 34px;
    font-weight: 800;
}

.registration-alert-box h2 {
    margin: 0 0 14px;

    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 800;
}

.registration-alert-box p {
    max-width: 420px;
    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.7;
}

.registration-alert-button {
    min-width: 170px;
    padding: 13px 26px;

    border: 0;
    border-radius: 30px;

    background: linear-gradient(
        135deg,
        #ee6f33,
        #ff8d55
    );

    box-shadow: 0 12px 28px rgba(238, 111, 51, 0.3);

    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.registration-alert-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(238, 111, 51, 0.4);
}

.registration-alert-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 38px;
    height: 38px;

    border: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);
    color: #fff;

    cursor: pointer;
    font-size: 25px;
    line-height: 1;

    transition: background 0.2s ease;
}

.registration-alert-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

body.registration-alert-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .registration-alert-box {
        padding: 38px 22px 28px;
        border-radius: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .registration-alert,
    .registration-alert-box,
    .registration-alert-button {
        transition: none;
    }
}