@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");

html {
    scroll-behavior: smooth;
}

/* Global */
body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    background-color: #2a2a45;
}

/* Button */
.btn-primary {
    margin-left: 0.4rem;
    background: linear-gradient(135deg, #6259ca 0%, #7b6fd4 100%);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    box-shadow: 0 2px 10px rgba(98, 89, 202, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a51c7 0%, #6e63cc 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(98, 89, 202, 0.5);
}

.btn-primary:focus,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, #5a51c7 0%, #6e63cc 100%);
    box-shadow: 0 0 0 0.25rem rgba(98, 89, 202, 0.4);
    outline: none;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(98, 89, 202, 0.3);
}

.btn-outline-primary {
    margin-left: 0.4rem;
    color: #a89df5;
    border: 1.5px solid rgba(98, 89, 202, 0.6);
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-outline-primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #6259ca 0%, #7b6fd4 100%);
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(98, 89, 202, 0.4);
}

.btn-outline-primary:focus,
.btn-outline-primary:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #6259ca 0%, #7b6fd4 100%);
    border-color: transparent;
    box-shadow: 0 0 0 0.25rem rgba(98, 89, 202, 0.4);
    outline: none;
}

.btn-outline-primary:active {
    transform: translateY(0);
}

.btn-outline-light {
    margin-left: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-outline-light:hover {
    color: #2a2a45;
    background: #fff;
    border-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(255, 255, 255, 0.2);
}

.btn-outline-light:focus,
.btn-outline-light:focus-visible {
    color: #2a2a45;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.3);
    outline: none;
}

.btn-outline-light:active {
    transform: translateY(0);
}

.btn-link {
    color: #6259ca;
    text-decoration: none;
}

.btn-link:hover,
.btn-link:focus {
    color: #5a51c7;
    text-decoration: underline;
}

/* Navbar */
.navbar {
    border-bottom: 1px solid #6259ca;
}

.navbar img {
    width: 33px;
    height: 50px;
    margin-right: 0.3rem;
}

.navbar .navbar-brand {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
    color: #6259ca;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:focus {
    color: #6259ca;
}

.navbar-bg {
    background-color: #2a2a45;
}

.navbar-toggler {
    background-color: #6259ca;
    border: 1px solid #fff;
}

.navbar-toggler-icon {
    background-color: #6259ca;
}

/* Hero Section */
.text-purple {
    color: #6259ca;
}

.hero {
    background: linear-gradient(135deg, #2a2a45 0%, #3d3d6b 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .text-purple {
    color: #a89df5;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.8);
}

.hero-badge {
    background-color: rgba(98, 89, 202, 0.25);
    border: 1px solid rgba(98, 89, 202, 0.6);
    color: #b8b0ff;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.35em 0.75em;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-divider {
    width: 1px;
    min-height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}

.hero-logo-wrap {
    background: radial-gradient(circle, rgba(98, 89, 202, 0.25) 0%, transparent 70%);
    padding: 2rem;
    display: inline-block;
    border-radius: 50%;
}

/* Features Section */
.features {
    background-color: #2a2a45;
    color: #fff;
}

.features h2 {
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
}

.features p {
    font-size: 1.3rem;
    font-weight: 400;
}

.features i {
    font-size: 1.4rem;
    color: #6259ca;
}

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #b8b0ff;
    background-color: rgba(98, 89, 202, 0.2);
    border: 1px solid rgba(98, 89, 202, 0.5);
    border-radius: 999px;
    padding: 0.25em 0.9em;
    margin-bottom: 0.75rem;
}

/* Product Cards (dark section) */
.features .product-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(98, 89, 202, 0.3);
    color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.features .product-card:hover {
    border-color: #6259ca;
    box-shadow: 0 8px 24px rgba(98, 89, 202, 0.3);
    transform: translateY(-3px);
}

.features .product-card .card-subtitle {
    color: rgba(255, 255, 255, 0.55) !important;
}

.features .product-card .card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Detailed Features Section */
.detailed-features {
    background-color: #2a2a45;
    color: #fff;
}

.detailed-features .card-title {
    color: #a89df5;
    padding-bottom: 0.5rem;
}

.detailed-features h2 {
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 1.5rem;
}

.detailed-features .card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(98, 89, 202, 0.3);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.detailed-features .card:hover {
    border-color: #6259ca;
    box-shadow: 0 8px 24px rgba(98, 89, 202, 0.3);
    transform: translateY(-3px);
}

.detailed-features .card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.feature-card-number {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(168, 157, 245, 0.5);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.feature-icon-wrap {
    width: 64px;
    height: 64px;
    background-color: #6259ca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon-wrap i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-github-link {
    color: #a89df5;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
}

.feature-github-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Pitch Section */
.pitch-section {
    background-color: #2a2a45;
    color: #fff;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
}

.cta-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
}

/* Cards */
.border-purple {
    border: 1px solid #6259ca;
}

.background-purple {
    background-color: #6259ca;
    color: #fff;
}

.card-header h5 {
    font-size: 2.4rem;
    font-weight: 400;
}

.card-header h6 {
    font-size: 5rem;
    font-weight: 800;
}

.card-header span {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Accordion */
.accordion-button {
    font-weight: 500;
}
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #6259ca;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Resource Page */
.resource-card-top {
    height: 200px;
    background: linear-gradient(135deg, #6a11cb 0%, #6259ca 100%);
}

/* Contact Page */
.contact-section {
    background-color: #2a2a45;
}

.contact-form-card {
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    border: 1px solid rgba(98, 89, 202, 0.3);
    padding: 2rem;
    color: #fff;
}

.contact-form-card h4 {
    color: #fff;
}

.contact-form-card .form-label {
    color: #fff;
}

.required-asterisk {
    color: #f87171;
}

.form-required-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(98, 89, 202, 0.35);
    color: #fff;
}

.contact-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form-card .form-select option {
    background-color: #2a2a45;
    color: #fff;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #6259ca;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(98, 89, 202, 0.25);
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    border: 1px solid rgba(98, 89, 202, 0.3);
    padding: 2rem;
    height: 100%;
    color: #fff;
}

.contact-info-card h4 {
    color: #fff;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(98, 89, 202, 0.25);
    border: 1px solid rgba(98, 89, 202, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8b0ff;
    font-size: 1rem;
}

.contact-info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.contact-info-link {
    color: #a89df5;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-link:hover {
    color: #c0b9ff;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2a2a45;
    color: #fff;
    border-top: 1px solid #6259ca;
}

.footer img {
    height: 6rem;
    padding-bottom: 2rem;
}

.footer h5 {
    color: #fff;
    padding-top: 1.2rem;
}

.footer-left a {
    color: #6259ca;
}

.footer-left a:hover,
.footer-left a:focus {
    color: #5a51c7;
}

.footer .break {
    border-top: 1px solid #6259ca;
    padding-top: 1.8rem;
}

.footer .break i {
    color: #fff;
    font-size: 1.6rem;
    padding-right: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.footer .btn-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.25rem;
    transition: color 0.15s ease;
}

.footer .btn-link:hover,
.footer .btn-link:focus {
    color: #b8b0ff;
    text-decoration: none;
}