body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Inter, sans-serif;
    color: #334155;
    background-color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth
}

h1,
h2,
h3,
h4 {
    font-family: Montserrat, sans-serif
}

.brand-font,
.font-orbitron {
    font-family: Orbitron, sans-serif
}

:root {
    --ocean-dark: #0F172A;
    --ocean-primary: #0284C7;
    --ocean-teal: #0D9488;
    --ocean-light: #F0F9FF;
    --ocean-accent: #38BDF8
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px)
}

.navbar-inner {
    display: flex;
    height: 5rem;
    align-items: center;
    justify-content: space-between;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem
}

.logo-area {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    flex-shrink: 0
}

.logo {
    max-height: 2.5rem;
    width: 2.5rem;
    border-radius: .75rem;
    object-fit: contain
}

.logo-title {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -.025em;
    color: #0e7490;
    font-family: Orbitron, sans-serif
}

.logo-subtitle {
    font-size: .75rem;
    color: #64748b;
    font-family: Inter, sans-serif
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: .875rem;
    font-weight: 500;
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

@media (min-width:768px) {
    .desktop-nav {
        display: flex
    }
}

.nav-link {
    color: #334155;
    text-decoration: none;
    transition: color .2s;
    font-family: Orbitron, sans-serif;
    font-size: .8rem
}

.nav-link:hover {
    color: #0e7490
}

.dropdown {
    position: relative;
    display: inline-block;
    padding: 1.4rem 0
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    z-index: 1000;
    border-radius: .75rem;
    border: 1px solid #e2e8f0;
    padding: .5rem;
    overflow: hidden
}

.dropdown-content a {
    color: #334155;
    padding: .5rem .75rem;
    text-decoration: none;
    display: block;
    font-family: Inter, sans-serif;
    font-size: .875rem;
    border-radius: .5rem;
    transition: background .2s
}

.dropdown-content a:hover {
    background-color: #f5f5f4;
    color: #0e7490
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: .2s ease-in-out dropdownFadeIn
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -6px)
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0)
    }
}

.btn-outline-nav {
    border-radius: 9999px;
    border: 1px solid #cbd5e1;
    padding: .5rem 1rem;
    color: #334155;
    transition: .2s;
    font-family: Orbitron, sans-serif;
    font-size: .75rem;
    text-decoration: none;
    cursor: pointer;
    background: 0 0
}

.btn-outline-nav:hover {
    border-color: #0891b2;
    color: #0e7490
}

.btn-teal-nav {
    border-radius: 9999px;
    background-color: #0d9488;
    padding: .5rem 1rem;
    font-weight: 600;
    color: #fff;
    transition: background .2s;
    font-family: Inter, sans-serif;
    font-size: .875rem;
    text-decoration: none
}

.btn-teal-nav:hover {
    background-color: #0f766e
}

@media (max-width:767px) {

    .btn-outline-nav,
    .btn-teal-nav {
        display: none !important
    }
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: .5rem;
    color: #334155;
    cursor: pointer;
    background: 0 0;
    transition: background .2s
}

.mobile-nav-toggle:hover {
    background: rgba(0, 0, 0, .05)
}

@media (min-width:768px) {
    .mobile-nav-toggle {
        display: none
    }
}

.mobile-menu {
    position: fixed;
    right: -280px;
    width: 280px;
    flex-direction: column;
    padding-top: 12px;
    transition: right .3s ease-in-out;
    z-index: 2000;
    display: flex;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, .08)
}

.mobile-menu.active {
    right: 0
}

.menu-item {
    background: 0 0;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: .9rem;
    font-family: Orbitron, sans-serif;
    cursor: pointer;
    width: 100%;
    display: block;
    transition: color .2s
}

.menu-item:hover {
    color: #0e7490
}

.mobile-dropdown-content {
    display: none;
    background-color: #f8fafc
}

.mobile-dropdown-content.active {
    display: block
}

.mobile-sub-item {
    padding: 12px 20px 12px 36px;
    color: #64748b;
    font-size: .875rem;
    border-bottom: 1px solid #f1f5f9;
    display: block;
    text-decoration: none;
    font-family: Inter, sans-serif;
    transition: .2s
}

.mobile-sub-item.active-sub,
.mobile-sub-item:hover {
    color: #0e7490;
    background-color: #ecfeff
}

.container {
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem
}

.section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
}

.border-bottom {
    border-bottom: 1px solid #e2e8f0
}

.border-y {
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0
}

.border-top {
    border-top: 1px solid #e2e8f0
}

.bg-white {
    background-color: #fff
}

.bg-dark {
    background-color: #0f172a
}

.bg-stone {
    background-color: #f5f5f4
}

.hidden {
    display: none !important
}

.eyebrow {
    font-size: .875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .025em;
    color: #0e7490
}

h1 {
    margin-top: .75rem;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.025em;
    max-width: 42rem
}

@media (min-width:768px) {
    .section {
        padding-top: 5rem;
        padding-bottom: 5rem
    }

    h1 {
        font-size: 3rem
    }
}

.hero-description {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    color: #334155;
    max-width: 36rem
}

h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.025em
}

.hero-grid {
    display: grid;
    gap: 2.5rem
}

.pillars-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem
}

.split-grid {
    display: grid;
    gap: 2.5rem
}

.features-grid {
    display: grid;
    gap: 2rem
}

@media (min-width:768px) {
    h2 {
        font-size: 1.875rem
    }

    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .split-grid {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start
    }

    .features-grid {
        grid-template-columns: 1fr 1fr
    }
}

.btn-primary {
    font-size: .875rem
}

.btn-secondary {
    border-radius: .375rem;
    border: 1px solid #cbd5e1;
    padding: .75rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    color: #1e293b;
    transition: background .2s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    background: 0 0;
    font-family: Inter, sans-serif
}

.btn-secondary:hover {
    background-color: #f5f5f4
}

.btn-cyan {
    border-radius: .375rem;
    background-color: #06b6d4;
    padding: .75rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    color: #0f172a;
    transition: background .2s;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-family: Inter, sans-serif
}

.btn-cyan:hover {
    background-color: #22d3ee
}

.btn-dark-outline {
    border-radius: .375rem;
    border: 1px solid #cbd5e1;
    padding: .75rem 1.25rem;
    font-size: .875rem;
    font-weight: 600;
    color: #1e293b;
    transition: background .2s;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    background: 0 0;
    font-family: Inter, sans-serif
}

.btn-dark-outline:hover {
    background-color: #1e293b
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem
}

.sidebar-card {
    border-radius: .75rem;
    border: 1px solid #e2e8f0;
    background-color: #fafaf9;
    padding: 1.25rem
}

.hero-sidebar-img-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative
}

.ollie-caption {
    position: absolute;
    bottom: 1.25rem;
    background: rgba(255, 255, 255, .95);
    color: #0e7490;
    padding: .5rem 1rem;
    border-radius: .75rem;
    font-family: Inter, sans-serif;
    font-size: .875rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
    pointer-events: none;
    transition: .4s cubic-bezier(.175, .885, .32, 1.275);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: .025em
}

.hero-sidebar-img-box:hover .ollie-caption {
    transform: translateY(-5px) scale(1.05);
    border-color: #0e7490;
    background: #fff;
    color: #0891b2
}

.ollie-hero-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform .4s cubic-bezier(.175, .885, .32, 1.275)
}

.hero-sidebar-img-box:hover .ollie-hero-img {
    transform: scale(1.08) rotate(-1deg)
}

.sidebar-title {
    font-size: .875rem;
    font-weight: 600
}

.sidebar-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    font-size: .875rem;
    color: #334155
}

.sidebar-list li {
    border-left: 2px solid #0e7490;
    padding-left: .75rem;
    list-style: none
}

.font-medium {
    font-weight: 500;
    color: #0f172a
}

.card {
    border-radius: .75rem;
    border: 1px solid #e2e8f0;
    background-color: #fff;
    padding: 1.25rem
}

.card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: .5rem
}

.card p {
    margin-top: .5rem;
    font-size: .875rem;
    color: #334155
}

.feature-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: .875rem;
    color: #334155
}

.table-container {
    overflow: hidden;
    border-radius: .75rem;
    border: 1px solid #e2e8f0
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem
}

th {
    background-color: #f5f5f4;
    padding: .75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #1e293b
}

td {
    padding: .75rem 1rem;
    border-top: 1px solid #e2e8f0;
    color: #334155
}

.text-white {
    color: #fff
}

.text-cyan-light {
    color: #67e8f9
}

.text-slate-light {
    color: #94a3b8
}

.mt-4 {
    margin-top: 1rem
}

.mt-7 {
    margin-top: 1.75rem
}

.fresh-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 80px 20px 40px
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px
}

@media(min-width:768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr
    }
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--ocean-dark);
    margin-bottom: 16px
}

.footer-brand p {
    color: #64748b;
    line-height: 1.6;
    max-width: 300px
}

.footer-links h4 {
    color: var(--ocean-dark);
    margin-bottom: 20px;
    font-size: 1.1rem
}

.footer-links a {
    display: block;
    color: #64748b;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .2s
}

.footer-links a:hover {
    color: var(--ocean-primary)
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #cbd5e1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: .9rem
}

@keyframes bounce-subtle {

    0%,
    100% {
        transform: translate(-50%, 0)
    }

    50% {
        transform: translate(-50%, -10px)
    }
}

.animate-bounce-subtle {
    animation: 3s ease-in-out infinite bounce-subtle
}

.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: radial-gradient(circle at 50% 0, #f8fafc 0, #f1f5f9 100%)
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem
}

.auth-card {
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .08);
    width: 100%;
    max-width: 480px;
    padding: 2.5rem
}

.auth-card-wide {
    max-width: 1000px
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem
}

.auth-header h1 {
    font-size: 2rem;
    margin: 0;
    color: #0f172a
}

.auth-header p {
    color: #64748b;
    margin-top: .5rem;
    font-size: .9375rem
}

.form-group {
    position: relative
}

.form-label {
    text-transform: uppercase;
    letter-spacing: .05em
}

.form-input {
    color: #1e293b;
    outline: 0;
    box-sizing: border-box
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(2, 132, 199, .1)
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 2.3rem;
    color: #94a3b8;
    pointer-events: none
}

.form-icon.interactive {
    pointer-events: auto;
    cursor: pointer;
    transition: color .2s
}

.form-icon.interactive:hover {
    color: #0284c7
}

.error-msg {
    color: #ef4444;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    padding: .75rem;
    border-radius: .5rem;
    font-size: .875rem;
    margin-top: 1rem;
    display: none;
    text-align: center
}

.dynamic-row {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    border-radius: .75rem;
    margin-bottom: 1rem;
    position: relative;
    animation: .3s fadeIn
}

.teacher-row {
    border-left: 4px solid #f59e0b
}

.student-row {
    border-left: 4px solid #0d9488
}

.remove-btn {
    position: absolute;
    top: -.625rem;
    right: -.625rem;
    background: #ef4444;
    color: #fff;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
    z-index: 5;
    transition: transform .2s;
    border: none
}

.remove-btn:hover {
    transform: scale(1.1)
}

.btn-dashed {
    width: 100%;
    padding: .75rem;
    border: 2px dashed #cbd5e1;
    color: #64748b;
    border-radius: .5rem;
    background: 0 0;
    cursor: pointer;
    font-family: Inter, sans-serif;
    font-weight: 600;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem
}

.btn-dashed:hover {
    border-color: #0284c7;
    color: #0284c7;
    background: #f0f9ff
}

.pricing-summary {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: .75rem;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.badge-premium {
    background: #f59e0b;
    color: #fff;
    font-size: .625rem;
    padding: .125rem .5rem;
    border-radius: .25rem;
    text-transform: uppercase;
    margin-left: .5rem;
    vertical-align: middle
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.split-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

@media (min-width:1024px) {
    .split-content-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch
    }
}

.content-box {
    padding: 3rem;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s;
    position: relative;
    overflow: hidden
}

.box-who {
    background-color: #fafaf9;
    border: 1px solid #e2e8f0
}

.box-who::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(2, 132, 199, .05), transparent)
}

.box-mission {
    background-color: #fff;
    border: 2px solid var(--ocean-primary);
    box-shadow: 0 20px 40px rgba(2, 132, 199, .08)
}

.content-box h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--ocean-dark);
    letter-spacing: -.02em
}

.content-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569
}

.faq-hero {
    background: linear-gradient(135deg, var(--ocean-dark) 0, #1e293b 100%);
    padding-top: 180px;
    padding-bottom: 140px;
    text-align: center;
    position: relative;
    color: #fff;
    overflow: hidden
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -.02em;
    position: relative;
    z-index: 2
}

.faq-hero p {
    color: #bae6fd;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2
}

.faq-container {
    max-width: 800px;
    margin: -80px auto 0;
    padding: 0 20px 80px;
    position: relative;
    z-index: 10
}

.faq-card {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
    overflow: hidden;
    transition: .3s
}

.faq-card:hover {
    border-color: var(--ocean-primary);
    box-shadow: 0 15px 35px rgba(2, 132, 199, .1);
    transform: translateY(-2px)
}

.faq-btn {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: 0 0;
    border: none;
    cursor: pointer;
    text-align: left
}

.faq-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ocean-dark);
    font-family: Montserrat, sans-serif;
    transition: color .3s
}

.faq-icon {
    color: #94a3b8;
    font-size: 1.2rem;
    transition: transform .3s, color .3s
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease-out;
    background-color: #f8fafc
}

.faq-content {
    padding: 0 30px 24px;
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem
}

.faq-btn[aria-expanded=true] .faq-icon {
    transform: rotate(180deg);
    color: var(--ocean-primary)
}

.faq-btn[aria-expanded=true] .faq-title {
    color: var(--ocean-primary)
}

.support-block {
    margin-top: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .05)
}

.support-block p {
    font-size: 1.2rem;
    color: var(--ocean-dark);
    font-weight: 600;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif
}

.btn-primary {
    background-color: var(--ocean-primary)
}

@media (max-width:768px) {
    .faq-hero {
        padding-top: 140px;
        padding-bottom: 100px
    }

    .faq-hero h1 {
        font-size: 2.5rem
    }

    .faq-container {
        margin-top: -50px
    }

    .faq-btn {
        padding: 20px
    }

    .faq-content {
        padding: 0 20px 20px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center
    }
}

.split-hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 100px;
    position: relative
}

@media (min-width:768px) {
    .split-hero {
        flex-direction: row;
        height: 90vh;
        min-height: 700px
    }
}

.hero-left {
    background-color: var(--ocean-dark);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 5%;
    position: relative;
    z-index: 2
}

@media (min-width:1200px) {
    .hero-left {
        padding-left: max(5%, calc((100vw - 1200px)/ 2))
    }
}

.hero-right {
    background: linear-gradient(135deg, #0369a1 0, #0f172a 100%);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px
}

.hero-bg-pattern {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: .2
}

.hero-left-content {
    max-width: 600px;
    text-align: left
}

.dashboard-mockup {
    background: #f1f5f9;
    border-radius: 12px;
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, .6);
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform .5s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .1)
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(0)
}

.dash-header {
    background: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.dash-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px
}

.dash-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05)
}

.chart-bar {
    background: var(--ocean-light);
    height: 100px;
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px
}

.bar {
    width: 12px;
    background: var(--ocean-primary);
    border-radius: 2px 2px 0 0
}

.ocean-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 20
}

.ocean-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px
}

.ocean-wave .shape-fill {
    fill: #FFFFFF
}

.section-padding {
    padding: 100px 20px
}

.feature-grid-container {
    position: relative;
    z-index: 30;
    margin-top: -60px;
    padding-bottom: 80px
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
    border: 1px solid #f1f5f9;
    transition: transform .3s;
    height: 100%
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--ocean-primary)
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--ocean-light);
    color: var(--ocean-primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin: 0 0 20px
}

.btn-primary {
    background-color: var(--ocean-primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: .2s;
    display: inline-block;
    text-align: center;
    text-decoration: none
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(2, 132, 199, .2);
    background-color: #38bdf8;
    transform: translateY(-2px)
}

.btn-outline-white {
    background: rgba(255, 255, 255, .05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-family: Orbitron, sans-serif;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .15);
    border-color: #fff
}

.cta-section {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #e2e8f0
}

@media (max-width:768px) {
    .hero-left {
        padding: 40px 20px;
        text-align: center
    }

    .hero-left-content {
        margin: 0 auto;
        text-align: center
    }

    .hero-left-content h1 {
        font-size: 2.5rem
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center
    }
}

.hero-section {
    padding: 120px 20px 80px;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    text-align: center
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--ocean-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

@media (min-width:768px) {
    .footer-bottom {
        flex-direction: row
    }

    .hero-section h1 {
        font-size: 4.5rem
    }
}

.marquee-section {
    background: #fff;
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden
}

.marquee-wrapper {
    display: flex;
    width: 200%;
    animation: 30s linear infinite marquee
}

.marquee-content {
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
    gap: 4rem
}

.marquee-item {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: .75rem;
    white-space: nowrap;
    transition: color .3s
}

.marquee-item:hover {
    color: var(--ocean-primary)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.feature-item {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0
}

@media (min-width:1024px) {
    .feature-item {
        grid-template-columns: 1fr 1fr
    }

    .feature-item:nth-child(2n) .feature-text {
        order: 2
    }

    .feature-item:nth-child(2n) .feature-visual {
        order: 1
    }
}

.feature-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--ocean-dark);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem
}

.feature-visual {
    background: #f8fafc;
    border-radius: 24px;
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transition: .3s
}

.feature-item:hover .feature-visual {
    border-color: var(--ocean-primary);
    box-shadow: 0 20px 40px rgba(2, 132, 199, .05);
    transform: translateY(-5px)
}

.feature-visual i {
    font-size: 5rem;
    color: var(--ocean-primary)
}

.bento-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr)
}

.bento-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .05);
    border-color: var(--ocean-primary)
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--ocean-dark);
    color: #fff;
    border: none
}

.bento-item.medium {
    grid-column: span 2
}

.bento-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #64748b;
    margin-bottom: 1rem
}

.bento-item.large .bento-title {
    color: #94a3b8
}

.bento-value {
    font-family: Orbitron, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--ocean-primary);
    line-height: 1
}

.bento-item.large .bento-value {
    color: var(--ocean-accent);
    font-size: 4.5rem
}

.bento-desc {
    font-size: .95rem;
    color: #64748b;
    line-height: 1.6;
    margin-top: 1.5rem
}

.bento-item.large .bento-desc {
    color: #cbd5e1;
    font-size: 1.15rem
}

@media (max-width:1023px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .bento-grid {
        grid-template-columns: 1fr
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 1;
        grid-row: span 1
    }
}

.track-list-premium {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.track-list-premium li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: #475569
}

.track-list-premium li i {
    color: var(--ocean-teal);
    font-size: 1rem
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem
}

@media (min-width:768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: .75rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
    align-items: center
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .05)
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #f0f9ff
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .25rem
}

.team-role {
    font-size: .875rem;
    font-weight: 600;
    color: #0e7490;
    text-transform: uppercase;
    letter-spacing: .025em;
    margin-bottom: 1rem
}

.team-bio {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.team-socials {
    display: flex;
    gap: 1rem;
    margin-top: auto
}

.team-socials a {
    color: #94a3b8;
    font-size: 1.125rem;
    transition: color .2s
}

.team-socials a:hover {
    color: #0e7490
}

.journey-timeline {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    position: relative
}

.journey-item::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    bottom: -24px;
    width: 2px;
    background: #e2e8f0
}

.journey-item:last-child::before {
    display: none
}

.journey-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0e7490;
    margin-top: 6px;
    flex-shrink: 0;
    z-index: 1
}

.journey-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .25rem
}

.journey-content p {
    font-size: .9375rem;
    color: #64748b
}

.mascot-grid {
    display: grid;
    gap: 3rem;
    align-items: center
}

@media (min-width:768px) {
    .mascot-grid {
        grid-template-columns: 1fr 1.5fr
    }
}

.mascot-image-container {
    background: rgba(255, 255, 255, .05);
    border-radius: 2rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center
}

.mascot-icon {
    font-size: 6rem;
    color: #67e8f9
}

.btn-primary {
    background-color: #0e7490;
    color: #fff;
    font-family: Inter, sans-serif
}

.mobile-menu {
    top: 5rem;
    height: calc(100vh - 5rem);
    background-color: #fff;
    border-left: 1px solid #e2e8f0
}

.menu-item {
    color: #334155;
    border-bottom: 1px solid #f1f5f9
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(2, 132, 199, .1);
    color: var(--ocean-primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: Orbitron, sans-serif;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: .2s;
    border: 1px solid rgba(2, 132, 199, .2);
    margin-bottom: 30px
}

.download-btn:hover {
    background: var(--ocean-primary);
    color: #fff
}

.page-header {
    padding-top: 180px;
    padding-bottom: 120px;
    text-align: center;
    background: linear-gradient(135deg, var(--ocean-dark) 0, #1e293b 100%);
    position: relative
}

.header-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none
}

.page-header h1 {
    font-size: 3.5rem;
    color: #fff;
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    letter-spacing: -.02em
}

.legal-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 60px 80px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: -80px auto 100px;
    position: relative;
    z-index: 10;
    text-align: left
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--ocean-dark);
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: .75rem
}

.legal-content h3 {
    font-size: 1.25rem;
    color: var(--ocean-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700
}

.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #475569;
    font-size: 1.05rem
}

.legal-content ol,
.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #475569;
    font-size: 1.05rem
}

.legal-content ul {
    list-style-type: disc
}

.legal-content li {
    margin-bottom: .75rem;
    line-height: 1.6
}

.legal-content strong {
    color: var(--ocean-dark);
    font-weight: 600
}

.contact-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start
}

.info-item-icon {
    width: 48px;
    height: 48px;
    background-color: #f0f9ff;
    color: #0e7490;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: .3s
}

.info-item:hover .info-item-icon {
    background-color: #0e7490;
    color: #fff
}

.info-item-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .25rem
}

.info-item-text a,
.info-item-text p {
    font-size: .9375rem;
    color: #64748b;
    text-decoration: none
}

.info-item-text a:hover {
    color: #0e7490;
    text-decoration: underline
}

.contact-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, .05)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: .5rem
}

.form-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    font-family: Inter, sans-serif;
    font-size: .9375rem;
    transition: .2s;
    background-color: #f8fafc
}

.form-input:focus {
    outline: 0;
    border-color: #0e7490;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(14, 116, 144, .1)
}

.social-connect {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0
}

.social-links-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem
}

.social-link-item {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    color: #64748b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: .2s;
    text-decoration: none
}

.social-link-item:hover {
    background-color: #0e7490;
    color: #fff;
    transform: translateY(-2px)
}

.btn-submit {
    width: 100%;
    background-color: #0e7490;
    color: #fff;
    padding: .875rem;
    border-radius: .5rem;
    font-weight: 700;
    font-family: Orbitron, sans-serif;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: .2s;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem
}

.btn-submit:hover {
    background-color: #155e75;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 116, 144, .2)
}

.btn-submit:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none
}