
/* --- app/static/css/shell/responsive.css --- */
/* Website: src/app/static/css/shell/responsive.css v1.0 */
/* Website: Website/src/app/static/css/shell/responsive.css v1.0 */
/* Website: src/app/static/css/shell/responsive.css

@media (max-width: 1200px) {

    .navbar-container {
        position: relative;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 27px;
        margin-right: 27px;
        margin-top: 5px;
    }

    .navbar-main, .footer-main {
        padding: 10px 20px;
        height: 40px;
    }

    .footer-main {
        height: 40px !important;
    }

    .navbar-main h1 {
        text-align: center;
        margin: 10px 0;
        font-size: 1.2rem;
        margin-right: 15px;
    }

    #nav-buttons,
    #auth-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        display: none;
    }

    .navbar-main.mobile-open #nav-buttons,
    .navbar-main.mobile-open #auth-buttons {
        display: flex;
    }

    .auth-nav-section {
        justify-content: center;
    }

    .nav-toggle, #footer-toggle {
        display: block;
    }

    #nav-buttons li:not(:last-child)::after,
    #auth-buttons li:not(:first-child)::before {
        display: none;
    }

    #nav-buttons li,
    #auth-buttons li {
        margin: 0;
    }

    .nav-center {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        flex-shrink: 0;
        margin: 0 auto;
    }

    .nav-circle,
    .footer-circle {
        width: 60px !important;
        height: 60px !important;
    }

    .footer-container {
        margin-left: 27px !important;
        margin-right: 27px !important;
        margin-bottom: 0px !important;
        height: 40px;
    }

}
*/
/*
@media (min-width: 1201px) {
    .mobile-nav {
        display: none !important;
        max-height: 0 !important;
        overflow: hidden !important;
    }
}

/* === Responsive Left Panel ===
@media (max-width: 800px) {
    .left-side-panel {
        left: 3px;
        width: 60px;
    }

    .wheel-icon {
        width: 30px;
        height: 30px;
    }
}


/* --- app/static/css/reveal.css --- */
/* Website: src/app/static/css/reveal.css v1.0 */
/* Website: Website/src/app/static/css/reveal.css v1.0 */
.will-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}


/* --- app/static/css/stripe.css --- */
/* Website: src/app/static/css/stripe.css v1.0 */
/* Website: Website/src/app/static/css/stripe.css v1.0 */
stripe-pricing-table {
    height: 900px;
}

.stripe-table {
    height: 100%;
    width: 100%;
    min-height: 900px;
    min-width: 1200px;
}


/* --- app/static/css/brand-legacy.css --- */
/* Website: src/app/static/css/brand-legacy.css v1.0 */
/* Website: Website/src/app/static/css/brand-legacy.css v1.0 */

/* https://docs.google.com/spreadsheets/d/1Ll9DcwFY8CY4H9-Omnh32N1XTK41S1hwuPCiqTYKvyo/edit?gid=856040671#gid=856040671 */

:root {
    /* Colors - Text */
    --brand-color-primary-text: #2ed9e7;

    /* Colors - Backgrounds */
    --brand-color-header: #243f53;
    --brand-color-background: #111d26;
    --brand-color-container: #404040;
    --brand-color-container-foreground-light: rgba(255, 255, 255, 0.6180339887);
    --brand-color-container-foreground-dark: rgba(0, 0, 0, 0.6180339887);
    --brand-color-cta-button: #186009;
    --brand-color-cta-button-hover: #1e7b0d;

    /* Fonts */
    --brand-font-body: 'Roboto', sans-serif;
    --brand-font-title: 'Roboto Mono', monospace;

    /* Borders */
    --brand-border-primary-color: #2ed9e7;
    --brand-border-primary-width: 2px;
    --brand-border-primary-radius: 12px;
}

/*========== COLOURS ==========-*/

/*--- Text ---*/

/* Primary Colour For Titles */
.brand-colour-primary-text {
    color: #2ed9e7;
}


/*--- Backgrounds ---*/

/* Header & footer colour */
.brand-colour-header {
    background-color: #243f53;
}


/* Background */
.brand-colour-background {
    background-color: #111d26;
}

/* Outer Container */
.brand-colour-container {
    background-color: #404040;
}

/* Inner Container - Light Variant */
.brand-colour-container-foreground-light {
    background-color: rgba(255, 255, 255, 0.6180339887);
}

/* Inner Container - Dark Variant */
.brand-colour-container-foreground-dark {
    background-color: rgba(0, 0, 0, 0.6180339887);
}

/* CTA Button colour */
.brand-colour-cta-button {
    background-color: #186009;
}

/* CTA Button hover colour */
.brand-colour-cta-button:hover {
    background-color: #1e7b0d;
}


/*========== FONTS ==========*/

/* Text body */
.brand-font-body {
    font-family: 'Roboto', sans-serif;
}

/* Titles */
.brand-font-title {
    font-family: 'Roboto Mono', monospace;
}


/*--- Borders ---*/

/*
.brand-border-primary {
   border: 2px solid #2ed9e7;
   border-radius: 12px;
}


/*========== CTA ==========*/
.cta-button-container {
    display: flex;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background-color: #186009;
    cursor: pointer;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    margin: 5px 0;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #1e7b0d;
}
/*========== DROPDOWNS ==========*/
select {
    background-color: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    border: 1px solid var(--brand-border-primary-color);
}

select:hover,
select:focus {
    background-color: rgba(17, 29, 38, 0.92);
    border-color: var(--brand-border-primary-color);
    color: #ffffff;
}

select option {
    background-color: #111d26;
    color: #ffffff;
}


/* --- app/static/css/partials/website.css --- */
/* Website: src/app/static/css/partials/website.css v1.0 */

/*=== TITLES ===*/
.website-title {
    display: block;
    min-width: auto;
    width: auto;
    max-width: 800px;
    text-align: center;
    text-transform: uppercase;
    font-size: 2.5em;
    color: #2ed9e7;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.61803398);
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3), 0px 4px 12px rgba(17, 29, 38, 0.4), inset 0px -2px 0px rgba(255, 255, 255, 0.15), inset 0px 2px 0px rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    position: relative;
}


/*=== SECTIONS ===*/

/* Container style section */
.website-container {
    max-width: 1200px;
    box-sizing: border-box;
    background-color: #404040;
    border-radius: 12px;
    border: 2px solid #2ed9e7;
    border-radius: 12px;
    padding: 20px;
    margin: 15px auto 30px;
}

/* Container section inner div */
.website-container-content {
    flex: 1;
    color: white;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.6180339887);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.website-container-content h1 {
    margin-top: 0px;
    padding-top: 0px;
}

/* Container for image text */
.website-image-text {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.website-image-text img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}

/* h1 */
.website-image-title {
    width: 100%;
    max-width: 320px;
    height: 70px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.6180339887);
    border-radius: 12px;
    text-transform: uppercase;
    font-size: clamp(1rem, 4.5vw, 1.75rem);
}

.website-image-title-container {
    max-width: 260px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.website-image-title-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Banner style container */
.website-banner {
    width: calc(100% + 200px);
    max-width: none;
    margin: 40px -100px;
    padding: 30px 20px;
    background-color: rgba(20, 20, 20, 0.95);
    box-shadow:
        0px 6px 20px rgba(0, 0, 0, 0.3),
        0px 4px 12px rgba(17, 29, 38, 0.4),
        inset 0px -2px 0px rgba(255, 255, 255, 0.15),
        inset 0px 2px 0px rgba(255, 255, 255, 0.15);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.website-banner h1 {
    text-align: center;
}


/*=== FORM CONTROLS ===*/
select,
.website-select {
    background-color: rgba(8, 16, 24, 0.95);
    color: #f4fbff;
    border: 1px solid rgba(46, 217, 231, 0.7);
    border-radius: 8px;
}

select:hover,
.website-select:hover {
    background-color: rgba(14, 27, 40, 0.98);
    border-color: #2ed9e7;
}

select:focus,
.website-select:focus {
    outline: 2px solid rgba(46, 217, 231, 0.45);
    outline-offset: 1px;
}

select option,
.website-select option {
    background-color: #0b1722;
    color: #f4fbff;
}

/*=== LOGOS ===*/
.website-logo-container {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.website-logo-container img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.website-logo-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #000262;
    opacity: 0.5;
    filter: blur(25px);
    z-index: -1;
    animation: breathe 4s ease-in-out infinite;
    pointer-events: none;
}

/* PathWAI */
.website-logo-container.pathwai::before {
    background-color: #000262;
}

/* Lead the WAI */
.website-logo-container.lead-the-wai::before {
    background-color: #620000;
}

/* PAI it Forward */
.website-logo-container.pai-it-forward::before {
    background-color: #116200;
}

@keyframes breathe {
    0%, 100% {
        opacity: 0.5;
        filter: blur(25px);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        filter: blur(30px);
        transform: translate(-50%, -50%) scale(1.05);
    }
}


/* --- app/static/css/partials/responsive.css --- */
/* Website: src/app/static/css/partials/responsive.css v1.0 */
/* Website: Website/src/app/static/css/partials/responsive.css v1.0 */

/* Big Screens - Full View */
@media (min-width: 768px) {

}

/* Medium Screens - Hide Logo Title */
@media (max-width: 1060px) {

}

/* Small Screens - Burger Icon */
@media (max-width: 768px) {

    main {
        margin-left: 10px;
        margin-right: 10px;
    }

    .website-title {
        white-space: normal;
    }

    .website-container {
        max-width: none;
    }

    .website-banner {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .website-container-content {
        /* font-size: 8px; */
        padding-left: 12%;
        padding-right: 12%;
    }

}

/* Small Screens - Burger Icon */
@media (max-width: 420px) {

    .website-container {
        padding: 5px;
    }

}


/* --- app/static/css/partials/faq.css --- */
/* Website: src/app/static/css/partials/faq.css v1.0 */
/* Website: Website/src/app/static/css/partials/faq.css v1.0 */

/* FAQ Section */
.faq-section {
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.25rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid #2ed9e7;
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.faq-icon {
    font-size: 1.5rem;
}

.faq-answer {
    padding: 0 1.25rem;
    color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.25rem;
}


/* --- app/static/css/partials/cta/structure.css --- */
/* Website: src/app/static/css/partials/cta/structure.css v1.0 */

.partial-cta {
  position: relative;
  width: min(1100px, calc(100% - 2rem));
  margin: 3rem auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(46, 217, 231, 0.45);
  background:
    radial-gradient(circle at 90% 12%, rgba(46, 217, 231, 0.2), transparent 52%),
    linear-gradient(140deg, rgba(10, 17, 26, 0.96), rgba(8, 13, 20, 0.98));
  box-shadow: 0 20px 45px rgba(3, 9, 16, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 130px;
}

.partial-cta__inner {
  display: grid;
  gap: 1.75rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
}

.partial-cta__content {
  display: grid;
  gap: 0.85rem;
  z-index: 1;
}

.partial-cta__eyebrow {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--brand-color-primary, #2ed9e7);
}

.partial-cta__title {
  margin: 0;
  color: #f4fbff;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.18;
}

.partial-cta__copy {
  margin: 0;
  max-width: 62ch;
  color: rgba(244, 251, 255, 0.82);
  font-size: 1.05rem;
}

.partial-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.partial-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.35rem;
  color: #f5fff4;
  background: linear-gradient(160deg, var(--brand-color-cta, #186009), var(--brand-color-cta-hover, #1e7b0d));
  border: 1px solid rgba(114, 204, 87, 0.95);
  box-shadow: 0 8px 18px rgba(16, 68, 7, 0.4);
}

.partial-cta__button-badge {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  line-height: 1;
}

.partial-cta__button.is-secondary {
  background: transparent;
  color: #d8f8fb;
  border: 1px solid rgba(123, 242, 253, 0.45);
  box-shadow: none;
}

.partial-cta__button:hover,
.partial-cta__button:focus-visible {
  filter: brightness(1.06);
}

.partial-cta__button.is-secondary:hover,
.partial-cta__button.is-secondary:focus-visible {
  background: rgba(123, 242, 253, 0.12);
}

.partial-cta__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.partial-cta__meta-item {
  border: 1px solid rgba(46, 217, 231, 0.3);
  background: rgba(46, 217, 231, 0.09);
  color: #cdf5f8;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
}

.partial-cta__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.partial-cta__pulse {
  position: absolute;
  width: min(240px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 217, 231, 0.35), transparent 68%);
  filter: blur(2px);
}

.partial-cta__card {
  position: relative;
  width: min(320px, 100%);
  border-radius: 18px;
  padding: 1rem;
  border: 1px solid rgba(123, 242, 253, 0.35);
  background: rgba(6, 19, 27, 0.86);
  backdrop-filter: blur(3px);
}

.partial-cta__card-title {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: #9df5fc;
}

.partial-cta__list {
  margin: 0;
  padding-left: 1.15rem;
  color: #d8f8fb;
  display: grid;
  gap: 0.35rem;
}

@media (min-width: 930px) {
  .partial-cta__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: center;
  }
}


/* --- app/static/css/neuron.css --- */
/* Website: src/app/static/css/neuron.css v3.1 */

#neuron-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;

    /* Brighter edges, darker centre */
    background:
        radial-gradient(
            circle at 0% 50%,
            rgba(46, 217, 231, 0.22),
            transparent 55%
        ),
        radial-gradient(
            circle at 100% 50%,
            rgba(106, 169, 255, 0.20),
            transparent 55%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(6, 12, 22, 0.92),
            rgba(3, 7, 14, 0.98) 55%,
            rgba(2, 5, 10, 1) 72%
        );
}

#neuron-background::after {
    content: "";
    position: absolute;
    inset: 0;

    /* Slightly stronger vignette to keep focus inward */
    background: radial-gradient(
        ellipse at 50% 50%,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.30) 60%,
        rgba(0, 0, 0, 0.52) 100%
    );
    pointer-events: none;
}

#neural-canvas {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    filter: saturate(1.05);
}

html {
    overflow-x: hidden;
}
