/*
Theme Name: Bluebenz Academy
Theme URI: https://bluebenz.com
Author: Bluebenz Academy
Author URI: https://bluebenz.com
Description: AI-First Finishing School - Official WordPress Theme for Bluebenz Academy
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bluebenz-academy
Tags: education, technology, one-page, responsive, custom-colors
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --navy: #0b2447;
    --navy-2: #0a1f3d;
    --navy-deep: #071a36;
    --orange: #ff6a13;
    --orange-2: #ff8434;
    --blue: #1f6bff;
    --blue-2: #3b82f6;
    --blue-soft: #e8f0ff;
    --blue-mist: #eef4ff;
    --ink: #0c1a33;
    --slate: #3d4a63;
    --muted: #6b7691;
    --line: #e4e9f2;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 1px 2px rgba(15, 30, 60, .05), 0 2px 8px rgba(15, 30, 60, .04);
    --shadow: 0 6px 18px -6px rgba(15, 30, 60, .08), 0 12px 36px -12px rgba(15, 30, 60, .10);
    --shadow-lg: 0 20px 60px -20px rgba(11, 36, 71, .20);
    --ease: cubic-bezier(.22, .61, .36, 1);
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.18;
    letter-spacing: -.01em;
    color: var(--ink);
    font-weight: 700;
}

p {
    margin: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1.5px solid transparent;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: .01em;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 22px -8px rgba(255, 106, 19, .55);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(255, 106, 19, .65);
    background: var(--orange-2);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: #fff;
    color: var(--orange);
    border-color: var(--orange);
}

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

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .35) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .7s var(--ease);
}

.btn:hover::after {
    transform: translateX(120%);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 42px;
    width: auto;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--slate);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    display: none;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
}

.menu-btn span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
    display: block;
}

.menu-btn span::before,
.menu-btn span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--ink);
    transition: transform .35s var(--ease), top .35s var(--ease);
}

.menu-btn span::before {
    top: -6px;
}

.menu-btn span::after {
    top: 6px;
}

.menu-btn.open span {
    background: transparent;
}

.menu-btn.open span::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-btn.open span::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-panel {
    position: fixed;
    inset: 72px 0 0 0;
    background: #fff;
    padding: 24px;
    z-index: 40;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s;
    border-top: 1px solid var(--line);
    overflow: auto;
}

.mobile-panel.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-panel a {
    display: block;
    padding: 16px 6px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.mobile-panel .btn {
    margin-top: 20px;
    width: 100%;
}

@media (min-width: 960px) {
    .menu-btn {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .mobile-panel {
        display: none;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(31, 107, 255, .35), transparent 60%),
        radial-gradient(700px 400px at -10% 110%, rgba(255, 106, 19, .18), transparent 60%),
        linear-gradient(180deg, #0b2447, #07193a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    pointer-events: none;
}

.hero-section .container {
    padding-top: 36px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    gap: 36px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    letter-spacing: .02em;
}

.pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    position: relative;
    box-shadow: 0 0 0 0 rgba(255, 106, 19, .55);
    animation: beacon 1.8s ease-out infinite;
}

.pill .dot::before,
.pill .dot::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 106, 19, .6);
    animation: beaconRing 2.4s ease-out infinite;
}

.pill .dot::after {
    animation-delay: -1.2s;
}

@keyframes beacon {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 106, 19, .55);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(255, 106, 19, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 106, 19, 0);
    }
}

@keyframes beaconRing {
    0% {
        transform: scale(.6);
        opacity: .9;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.hero-section h1 {
    font-size: clamp(30px, 7.5vw, 58px);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    margin: 14px 0 12px;
    line-height: 1.08;
}

.hero-section h1 .accent {
    color: var(--orange);
}

.hero-section .lead {
    color: #cdd6e8;
    max-width: 560px;
    font-size: 15.5px;
}

.hero-section .body-text {
    color: #aab4ca;
    font-size: 14px;
    max-width: 540px;
    margin-top: 12px;
    border-left: 3px solid var(--orange);
    padding-left: 12px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-photos {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
}

.photo {
    position: relative;
    border-radius: 140px;
    overflow: hidden;
    aspect-ratio: 5/7;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .45);
    animation: floaty 7s ease-in-out infinite;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo.p1 {
    transform: translateY(0);
}

.photo.p2 {
    transform: translateY(20px);
    animation-delay: -2s;
}

.photo.p3 {
    grid-column: 1/3;
    margin: -26px auto 0;
    width: 52%;
    transform: translateY(-8px);
    animation-delay: -4s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.photo.p2 {
    animation-name: floaty2;
}

@keyframes floaty2 {

    0%,
    100% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(10px);
    }
}

.photo.p3 {
    animation-name: floaty3;
}

@keyframes floaty3 {

    0%,
    100% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (min-width: 880px) {
    .hero-photos {
        max-width: 520px;
        gap: 14px;
    }

    .photo {
        border-radius: 160px;
    }

    .photo.p3 {
        width: 55%;
    }
}

/* Hero animated background */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-bg svg {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-bg .orb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .5;
    mix-blend-mode: screen;
}

.hero-bg .orb-blob.b1 {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, #1f6bff, transparent 70%);
    top: -80px;
    right: -80px;
    animation: drift 14s ease-in-out infinite;
}

.hero-bg .orb-blob.b2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #ff6a13, transparent 70%);
    bottom: -60px;
    left: -60px;
    animation: drift 16s ease-in-out infinite reverse;
    opacity: .35;
}

.hero-bg .orb-blob.b3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #7aa6ff, transparent 70%);
    top: 40%;
    left: 30%;
    animation: drift 20s ease-in-out infinite;
    opacity: .25;
}

@keyframes drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(.95);
    }
}

.hero-bg .float-icon {
    position: absolute;
    color: rgba(255, 255, 255, .12);
    font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
    font-size: 13px;
    font-weight: 600;
    animation: floatUp 14s linear infinite;
    white-space: nowrap;
}

@keyframes floatUp {
    0% {
        transform: translateY(120%);
        opacity: 0;
    }

    10% {
        opacity: .7;
    }

    90% {
        opacity: .7;
    }

    100% {
        transform: translateY(-120%);
        opacity: 0;
    }
}

.hero-bg .float-icon.i1 {
    left: 8%;
    animation-delay: -2s;
    font-size: 14px;
}

.hero-bg .float-icon.i2 {
    left: 22%;
    animation-delay: -7s;
    font-size: 11px;
    color: rgba(255, 106, 19, .25);
}

.hero-bg .float-icon.i3 {
    right: 14%;
    animation-delay: -4s;
    font-size: 15px;
}

.hero-bg .float-icon.i4 {
    right: 32%;
    animation-delay: -9s;
    font-size: 12px;
    color: rgba(122, 166, 255, .3);
}

.hero-bg .float-icon.i5 {
    left: 48%;
    animation-delay: -11s;
    font-size: 13px;
}

.hero-bg .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 6px #fff;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: .2;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.4);
    }
}

@media (min-width: 880px) {
    .hero-section .container {
        padding-top: 72px;
        padding-bottom: 80px;
    }

    .hero-grid {
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 48px;
    }

    .hero-photos {
        margin: 0 0 0 auto;
    }
}

.hero-grid>* {
    position: relative;
    z-index: 2;
}

/* ============================================================
   SECTION FRAME
   ============================================================ */
section {
    padding: 44px 0;
}

@media (min-width: 640px) {
    section {
        padding: 60px 0;
    }
}

@media (min-width: 880px) {
    section {
        padding: 96px 0;
    }
}

.eyebrow {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -.02em;
    margin-top: 6px;
}

.section-sub {
    text-align: center;
    color: var(--muted);
    max-width: 680px;
    margin: 14px auto 0;
    font-size: 15.5px;
}

/* ============================================================
   FUTURE-READY SECTION
   ============================================================ */
.future-section .title-row {
    margin-bottom: 32px;
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 720px) {
    .future-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

.fcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .25s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .fcard {
        padding: 24px;
    }
}

.fcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.fcard .ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    transition: transform .4s var(--ease);
}

.fcard:hover .ic {
    transform: rotate(-6deg) scale(1.06);
}

.fcard h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.fcard p {
    color: var(--muted);
    font-size: 14.5px;
}

.fcard.solid {
    background: var(--blue);
    color: #fff;
    border-color: transparent;
}

.fcard.solid h3,
.fcard.solid p {
    color: #fff;
}

.fcard.solid .ic {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.fcard.solid p {
    color: rgba(255, 255, 255, .85);
}

.future-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 14px;
}

@media (min-width: 720px) {
    .future-row-2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 18px;
        gap: 18px;
    }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, #091e3f, #0b2447 60%, #0a2150);
    color: #fff;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(135deg, #091e3f, #0b2447 60%, #0a2150);
    background-size: 20px 20px, auto;
}

@media (min-width: 640px) {
    .cta-banner {
        padding: 38px 24px;
        border-radius: 24px;
    }
}

.cta-banner h3 {
    color: #fff;
    font-size: clamp(20px, 3.4vw, 28px);
    font-weight: 700;
}

.cta-banner h3 span {
    color: #fff;
}

.cta-banner .btn {
    margin-top: 22px;
}

/* ============================================================
   TRANSFORM SECTION
   ============================================================ */
.transform-section {
    background: #fff;
}

.tgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

@media (min-width: 880px) {
    .tgrid {
        grid-template-columns: 1.1fr .9fr;
        gap: 42px;
        align-items: center;
    }
}

.transform-block {
    background: linear-gradient(160deg, #0b2447, #091f3f);
    color: #fff;
    border-radius: 20px;
    padding: 22px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .transform-block {
        padding: 30px;
        border-radius: 22px;
    }
}

.transform-block h2 {
    color: #fff;
    font-size: clamp(24px, 3.4vw, 32px);
    font-weight: 700;
}

.transform-block h2 .alt {
    color: var(--orange);
}

.transform-block .ksub {
    margin-top: 6px;
    color: #cdd7eb;
    font-weight: 600;
}

.clist {
    margin-top: 20px;
    display: grid;
    gap: 12px;
}

.crow {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #dde4f2;
    font-size: 14.5px;
}

.crow .x {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 106, 19, .18);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 13px;
}

.transform-photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #eef2f8;
    box-shadow: var(--shadow);
    position: relative;
}

.transform-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.more-than {
    margin-top: 32px;
}

@media (min-width: 640px) {
    .more-than {
        margin-top: 46px;
    }
}

.more-than h4 {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 22px;
}

.checkgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .checkgrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .checkgrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.citem {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    font-size: 13.5px;
    font-weight: 600;
    transition: transform .3s var(--ease), border-color .25s, box-shadow .3s;
}

.citem:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    box-shadow: var(--shadow-sm);
}

.citem .tk {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}

.strip {
    margin-top: 32px;
    background: #0e2a55;
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    font-size: 14.5px;
}

.strip b {
    color: var(--orange);
}

/* ============================================================
   360 STUDENT DEVELOPMENT
   ============================================================ */
.student-section {
    background: linear-gradient(180deg, #fff, #f3f6fc);
}

.sgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 36px;
    position: relative;
}

@media (min-width: 980px) {
    .sgrid {
        grid-template-columns: 1fr .7fr 1fr;
        gap: 22px;
    }
}

.scol {
    display: grid;
    gap: 18px;
}

.scard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
    position: relative;
    z-index: 2;
}

.scard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #cfd9ee;
}

.scard .ic {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.scard h4 {
    font-size: 15.5px;
    margin-bottom: 6px;
}

.scard p {
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
}

.center-orb {
    display: grid;
    place-items: center;
    position: relative;
    min-height: 340px;
    z-index: 2;
}

.orb {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--blue);
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
    box-shadow: 0 30px 60px -20px rgba(31, 107, 255, .4);
    position: relative;
    z-index: 5;
    animation: orbBreathe 5s ease-in-out infinite;
}

@keyframes orbBreathe {

    0%,
    100% {
        box-shadow: 0 30px 60px -20px rgba(31, 107, 255, .4), 0 0 0 0 rgba(31, 107, 255, .25);
    }

    50% {
        box-shadow: 0 30px 60px -20px rgba(31, 107, 255, .5), 0 0 0 14px rgba(31, 107, 255, 0);
    }
}

.orb img {
    width: 118px;
    height: auto;
    margin-bottom: 6px;
}

.orb .grow {
    color: var(--blue);
    font-weight: 700;
    font-size: 15px;
    margin-top: 6px;
    letter-spacing: -.01em;
}

.orb::before {
    content: "360°";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    font-weight: 800;
    font-size: 13px;
    padding: 4px 14px;
    z-index: 6;
}

.pulse,
.pulse-3 {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.pulse {
    width: 250px;
    height: 250px;
    border: 1px dashed rgba(31, 107, 255, .35);
    animation: spinRing 30s linear infinite;
    z-index: 3;
}

.pulse-3 {
    width: 190px;
    height: 190px;
    border: 2px solid rgba(255, 106, 19, .35);
    animation: ringPulse 3.4s ease-out infinite;
    z-index: 3;
}

@keyframes spinRing {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(.85);
        opacity: .9;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.55);
        opacity: 0;
    }
}

.orb-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    background: conic-gradient(from 0deg,
            rgba(31, 107, 255, 0) 0deg,
            rgba(31, 107, 255, .35) 60deg,
            rgba(31, 107, 255, 0) 110deg,
            rgba(255, 106, 19, 0) 200deg,
            rgba(255, 106, 19, .22) 260deg,
            rgba(255, 106, 19, 0) 310deg);
    filter: blur(14px);
    opacity: .85;
    animation: radar 9s linear infinite;
}

@keyframes radar {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.connector-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    display: none;
}

@media (min-width: 980px) {
    .connector-svg {
        display: block;
    }
}

.connector-svg .conn {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 5 7;
    animation: dashFlow 5s linear infinite;
}

.connector-svg .conn.blue {
    stroke: rgba(31, 107, 255, .38);
}

.connector-svg .conn.orange {
    stroke: rgba(255, 106, 19, .45);
    animation-direction: reverse;
}

@keyframes dashFlow {
    to {
        stroke-dashoffset: -96;
    }
}

.connector-svg .packet {
    filter: drop-shadow(0 0 6px rgba(31, 107, 255, .85));
}

.connector-svg .packet.orange {
    filter: drop-shadow(0 0 6px rgba(255, 106, 19, .85));
}

.strip2 {
    margin-top: 34px;
    background: #0e2a55;
    color: #fff;
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    font-size: 14.5px;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.programs-section {
    background: #fff;
}

.pgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
}

@media (min-width: 680px) {
    .pgrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 980px) {
    .pgrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    box-shadow: var(--shadow-sm);
}

.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.pcard .ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    transition: transform .4s var(--ease);
}

.pcard:hover .ic {
    transform: rotate(-8deg);
}

.pcard h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: .02em;
    text-transform: uppercase;
}

.pcard p {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 8px;
    line-height: 1.65;
}

.ptags {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    color: var(--blue);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.7;
}

/* ============================================================
   LIVE PROJECTS
   ============================================================ */
.live-section {
    background: #e9f0ff;
}

.live-section .lgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 34px;
}

@media (min-width: 880px) {
    .live-section .lgrid {
        grid-template-columns: 1.05fr .95fr;
        gap: 42px;
    }
}

.lpoints {
    display: grid;
    gap: 14px;
}

.lp {
    display: flex;
    gap: 14px;
    align-items: center;
    background: transparent;
    padding: 8px 0;
    font-weight: 600;
    color: #0b1c3a;
}

.lp .check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    flex: none;
    box-shadow: 0 6px 14px -4px rgba(31, 107, 255, .45);
}

.live-photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.live-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
    background: #fff;
}

.how-intro {
    max-width: 680px;
    margin: 14px auto 36px;
    text-align: center;
    color: var(--muted);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}

@media (min-width: 760px) {
    .steps {
        grid-template-columns: 1fr 1fr;
    }
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: transform .35s var(--ease), box-shadow .3s var(--ease), border-color .25s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: #cfd9ee;
}

.step .num {
    flex: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 20px;
}

.step h4 {
    font-size: 15.5px;
    color: var(--ink);
    margin-bottom: 4px;
}

.step p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   PLACEMENT SECTION
   ============================================================ */
.placement-section {
    background: linear-gradient(180deg, #091f3f, #0b2447);
    color: #fff;
}

.placement-section .section-title {
    color: #fff;
}

.placement-section .eyebrow {
    color: #9bb3ff;
}

.place-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
}

@media (min-width: 640px) {
    .place-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 980px) {
    .place-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pl {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #0f2c58;
    border: 1px solid #16407d;
    border-radius: 14px;
    padding: 16px 18px;
    transition: transform .3s var(--ease), background .25s, border-color .25s;
    color: #e7eefb;
    font-weight: 600;
    font-size: 14px;
}

.pl:hover {
    transform: translateY(-3px);
    background: #143569;
    border-color: var(--orange);
}

.pl .ic {
    flex: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: grid;
    place-items: center;
    color: #fff;
}

.pl.last {
    grid-column: 1/-1;
    background: transparent;
    border: none;
    color: #aab9d9;
    font-weight: 500;
    justify-content: flex-start;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 34px;
}

@media (min-width: 880px) {
    .faq-grid {
        grid-template-columns: .95fr 1.05fr;
        gap: 36px;
    }
}

.advisor {
    background: linear-gradient(160deg, #0b2447, #0a1f3d);
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advisor .photo-wrap {
    position: absolute;
    inset: 0;
    opacity: .32;
}

.advisor .photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advisor::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 36, 71, .45), rgba(11, 36, 71, .85));
}

.advisor .inner {
    position: relative;
    z-index: 1;
    padding: 28px;
}

.advisor h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.advisor p {
    color: #cdd6e8;
    font-size: 14px;
    max-width: 280px;
}

.contact-card {
    position: relative;
    z-index: 1;
    margin: 0 24px 24px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 14px 16px;
    display: grid;
    gap: 6px;
    font-size: 13.5px;
}

.contact-card .row {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #dfe7f5;
}

.book-btn {
    margin-bottom: 18px;
}

.faqs h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--ink);
}

.acc-list {
    display: grid;
    gap: 10px;
}

.acc {
    background: #0b2447;
    color: #fff;
    border-radius: 12px;
    transition: background .3s;
    overflow: hidden;
}

.acc[open] {
    background: #0e2c59;
}

.acc summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    font-weight: 600;
    font-size: 14.5px;
    color: #fff;
}

.acc summary::-webkit-details-marker {
    display: none;
}

.acc .plus {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    transition: transform .35s var(--ease), background .25s;
    color: #fff;
    font-weight: 300;
    font-size: 18px;
    line-height: 1;
}

.acc[open] .plus {
    transform: rotate(45deg);
    background: var(--orange);
}

.acc .ans {
    padding: 0 18px 18px;
    color: #bcc8e1;
    font-size: 13.5px;
    line-height: 1.65;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-section {
    background: #fff;
    padding-top: 0;
}

.final-cta {
    background: linear-gradient(135deg, #0a1f3d, #0b2447);
    color: #fff;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(135deg, #0a1f3d, #0b2447);
    background-size: 22px 22px, auto;
}

.fc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
}

@media (min-width: 840px) {
    .fc-grid {
        grid-template-columns: 1.1fr .9fr;
        gap: 32px;
    }
}

.final-cta h3 {
    color: #fff;
    font-size: clamp(22px, 3vw, 28px);
    margin-bottom: 14px;
}

.final-cta h3 .alt {
    color: var(--orange);
}

.final-cta ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: #dfe7f5;
    font-size: 14px;
}

.final-cta ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.final-cta ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.seats {
    text-align: left;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 22px;
}

.seats .num {
    font-size: 34px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.seats h4 {
    color: #fff;
    font-size: 16px;
    margin: 6px 0 8px;
}

.seats p {
    color: #cdd6e8;
    font-size: 13.5px;
}

.seats .btn {
    margin-top: 14px;
    width: 100%;
}

/* ============================================================
   CLOSING SECTION
   ============================================================ */
.closing-section {
    text-align: center;
    padding: 56px 0;
    background: #fff;
}

@media (min-width: 640px) {
    .closing-section {
        padding: 72px 0;
    }
}

.closing-section .kicker {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.closing-section h2 {
    font-size: clamp(24px, 3.6vw, 36px);
    margin-bottom: 14px;
}

.closing-section p {
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 22px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #071a36;
    color: #cdd6e8;
    padding: 56px 0 24px;
}

.fgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 760px) {
    .fgrid {
        grid-template-columns: 1.2fr .9fr .9fr .9fr;
    }
}

.site-footer h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.site-footer .blurb {
    font-size: 13.5px;
    color: #9eaccc;
    max-width: 280px;
    margin-top: 14px;
}

.site-footer .links {
    display: grid;
    gap: 8px;
    font-size: 14px;
}

.site-footer .links a {
    color: #bcc8e1;
    transition: color .2s;
}

.site-footer .links a:hover {
    color: #fff;
}

.contact-line {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: #bcc8e1;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0e2a55;
    color: #fff;
    display: grid;
    place-items: center;
    transition: background .25s, transform .25s;
}

.socials a:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.legal {
    border-top: 1px solid #112d59;
    margin-top: 36px;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: #7e8db1;
}

@media (min-width: 640px) {
    .legal {
        flex-direction: row;
    }
}

.legal a {
    color: #9eaccc;
}

.legal a:hover {
    color: #fff;
}

.footer-logo {
    display: inline-flex;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
}

.footer-logo img {
    height: 42px;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.d1 {
    transition-delay: .08s;
}

.reveal.d2 {
    transition-delay: .16s;
}

.reveal.d3 {
    transition-delay: .24s;
}

.reveal.d4 {
    transition-delay: .32s;
}

/* ============================================================
   ICON UTILITIES
   ============================================================ */
.ic svg {
    width: 24px;
    height: 24px;
}

.check svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   MODAL / FORM
   ============================================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(7, 19, 45, .55);
    backdrop-filter: blur(6px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
}

.modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow: auto;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px) scale(.97);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .3s var(--ease);
    position: relative;
}

.modal-backdrop.open .modal {
    transform: none;
    opacity: 1;
}

.modal-head {
    padding: 24px 24px 14px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #0b2447, #0a1f3d);
    color: #fff;
    border-radius: 22px 22px 0 0;
    position: relative;
    overflow: hidden;
}

.modal-head::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255, 106, 19, .25), transparent 55%);
}

.modal-head .eyebrow {
    text-align: left;
    color: #9bb3ff;
    letter-spacing: .18em;
    font-size: 11.5px;
    position: relative;
}

.modal-head h3 {
    color: #fff;
    font-size: 22px;
    margin-top: 6px;
    font-weight: 800;
    position: relative;
}

.modal-head p {
    color: #cdd6e8;
    font-size: 13.5px;
    margin-top: 4px;
    max-width: 380px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background .25s, transform .25s;
    z-index: 2;
}

.modal-close:hover {
    background: rgba(255, 255, 255, .25);
    transform: rotate(90deg);
}

.modal form {
    padding: 20px 24px 24px;
    display: grid;
    gap: 14px;
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .02em;
}

.field input,
.field select,
.field textarea {
    font: inherit;
    padding: 12px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    transition: border-color .2s, box-shadow .2s;
    width: 100%;
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(31, 107, 255, .12);
}

.field.row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 520px) {
    .field.row2 {
        grid-template-columns: 1fr 1fr;
    }
}

.modal .submit {
    margin-top: 6px;
    width: 100%;
    padding: 14px;
}

.modal .note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 4px;
}

.status {
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 10px;
    display: none;
}

.status.ok {
    display: block;
    background: #e7f9ee;
    color: #0a7d3b;
    border: 1px solid #bde9cd;
}

.status.err {
    display: block;
    background: #fef0ee;
    color: #c0341d;
    border: 1px solid #f4c7c0;
}

.modal-success {
    padding: 36px 24px;
    text-align: center;
    display: none;
}

.modal-success.show {
    display: block;
}

.modal-success .check-ic {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e7f9ee;
    color: #0a7d3b;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    animation: popIn .4s var(--ease);
}

@keyframes popIn {
    from {
        transform: scale(.4);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-success h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.modal-success p {
    color: var(--muted);
    font-size: 14px;
    max-width: 340px;
    margin: 0 auto;
}

body.modal-open {
    overflow: hidden;
}

/* ============================================================
   WORDPRESS ADMIN BAR OFFSET
   ============================================================ */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}
