/**
 * SportGene Landing Page Styles
 * Version: 1.0.0
 * 
 * Table of Contents:
 * 1. CSS Variables
 * 2. Reset & Base
 * 3. Typography
 * 4. Utility Classes
 * 5. Header & Navigation
 * 6. Mobile Menu
 * 7. Hero Section
 * 8. Power/Endurance Slider Section
 * 9. What You'll Discover Section
 * 10. Sample Report Preview Section
 * 11. How It Works Section
 * 12. Credibility & Trust Section
 * 13. Testimonials Section
 * 14. Pricing Section
 * 15. FAQ Section
 * 16. Footer
 * 17. Floating CTA
 * 18. Animations & Keyframes
 * 19. Responsive Breakpoints
 * 20. Reduced Motion
 * 21. Print Styles
 */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
    /* Brand Colours */
    --sg-green: #00DF7A;
    --sg-green-dark: #00C96E;
    --sg-green-light: #E6FFF3;
    --sg-green-glow: rgba(0, 223, 122, 0.4);

    --sg-dark: #031E47;
    --sg-dark-lighter: #0A2A5C;
    --sg-dark-rgb: 3, 30, 71;

    --sg-white: #FFFFFF;
    --sg-light-grey: #F5F5F5;
    --sg-medium-grey: #E0E0E0;
    --sg-dark-grey: #333333;
    --sg-text-grey: #6B7280;

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Spacing */
    --section-padding: 5rem;
    --section-padding-mobile: 3rem;
    --container-max: 1200px;
    --container-padding: 1.5rem;

    /* Header */
    --header-height: 100px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 4px 20px var(--sg-green-glow);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ===========================================
   2. RESET & BASE
   =========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Offset anchor targets for the fixed header */
[id] {
    scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--sg-dark);
    background-color: var(--sg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    touch-action: manipulation;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

main {
    border: none;
    outline: none;
    box-shadow: none;
}

main:focus,
main:focus-visible,
section:focus,
section:focus-visible {
    outline: none;
}

/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--sg-dark);
}

p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 600;
}

/* ===========================================
   4. UTILITY CLASSES
   =========================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sg-green-dark);
    background: rgba(0, 223, 122, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--sg-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--sg-text-grey);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.btn--primary {
    color: var(--sg-dark);
    background: var(--sg-green);
}

.btn--primary:hover {
    background: var(--sg-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--secondary {
    color: var(--sg-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===========================================
   5. HEADER & NAVIGATION
   =========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.header--transparent {
    background: transparent;
}

.header--solid {
    background: var(--sg-dark);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-logo {
    height: auto;
    width: auto;
    max-height: 50px;
}

@media (min-width: 481px) {
    .header-logo {
        max-height: 60px;
    }
}

@media (min-width: 769px) {
    .header-logo {
        max-height: 70px;
    }
}

/* Main Navigation */
.header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.875rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-sm);
    min-height: 44px;
    transition: color var(--transition-normal), background var(--transition-normal);
}

@media (min-width: 769px) {
    .nav-link {
        font-size: 1.125rem;
    }
}

.nav-link:hover {
    color: var(--sg-white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link--active {
    color: var(--sg-green);
}

.nav-link__arrow {
    width: 12px;
    height: 12px;
    transition: transform var(--transition-normal);
}

.nav-item:hover .nav-link__arrow {
    transform: rotate(180deg);
}

/* Dropdown Menus */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--sg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sg-dark);
    border-radius: var(--radius-md);
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: background var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown__link:hover {
    background: var(--sg-light-grey);
    color: var(--sg-green-dark);
}

/* Header Right */
.header__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Social Icons */
.header__social {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.header__social-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-sm);
    transition: color var(--transition-normal), background var(--transition-normal);
}

.header__social-link:hover {
    color: var(--sg-green);
    background: rgba(255, 255, 255, 0.1);
}

.header__social-link svg {
    width: 18px;
    height: 18px;
}

.header__divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* Portal Link */
.header__portal {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-sm);
    min-height: 44px;
    transition: color var(--transition-normal), background var(--transition-normal);
}

.header__portal:hover {
    color: var(--sg-white);
    background: rgba(255, 255, 255, 0.1);
}

.header__portal svg {
    width: 18px;
    height: 18px;
}

/* Header CTA */
.header__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sg-dark);
    background: var(--sg-green);
    border-radius: var(--radius-md);
    transition: background var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
}

.header__cta:hover {
    background: var(--sg-green-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

/* Animated Header CTA Button */
.header__cta-animated {
    margin: 0;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
    cursor: pointer;
    --border-right: 4px;
    --text-stroke-color: rgba(0, 223, 122, 0.8);
    --animation-color: #00DF7A;
    --fs-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    font-size: var(--fs-size);
    font-family: inherit;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-stroke-color);
    display: inline-block;
}

.header__cta-animated .actual-text {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.4);
    -webkit-text-stroke: 0;
}

.header__cta-animated .hover-text {
    position: absolute;
    box-sizing: border-box;
    content: attr(data-text);
    color: var(--animation-color);
    width: 0%;
    inset: 0;
    border-right: var(--border-right) solid var(--animation-color);
    overflow: hidden;
    transition: 0.5s;
    text-shadow: 0 0 10px var(--animation-color), 0 0 20px var(--animation-color);
    -webkit-text-stroke: 0;
}



.header__cta-animated:hover .hover-text {
    width: 100%;
    filter: drop-shadow(0 0 23px var(--animation-color));
}

/* Solid header variant - adjust for light backgrounds */
.header--solid .header__cta-animated {
    --text-stroke-color: rgba(0, 223, 122, 0.8);
}

/* Mobile Toggle */
.header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header__toggle-icon {
    position: relative;
    width: 24px;
    height: 18px;
}

.header__toggle-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--sg-white);
    border-radius: 2px;
    transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.header__toggle-line:nth-child(1) {
    top: 0;
}

.header__toggle-line:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__toggle-line:nth-child(3) {
    bottom: 0;
}

.header__toggle--active .header__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header__toggle--active .header__toggle-line:nth-child(2) {
    opacity: 0;
}

.header__toggle--active .header__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===========================================
   6. MOBILE MENU
   =========================================== */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sg-dark);
    padding: var(--container-padding);
    padding-bottom: calc(var(--container-padding) + env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
}

.mobile-menu--open {
    transform: translateX(0);
}

.mobile-nav {
    margin-bottom: 2rem;
}

.mobile-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sg-white);
    min-height: 48px;
}

.mobile-nav__link svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-normal);
}

.mobile-nav__item--open .mobile-nav__link svg {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    padding-bottom: 0.5rem;
}

.mobile-nav__item--open .mobile-dropdown {
    display: block;
}

.mobile-dropdown__link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-dropdown__link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--sg-green);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.mobile-social__link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--sg-white);
    transition: background var(--transition-normal), color var(--transition-normal);
}

.mobile-social__link:hover {
    background: var(--sg-green);
    color: var(--sg-dark);
}

.mobile-social__link svg {
    width: 20px;
    height: 20px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-portal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--sg-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sg-dark);
    background: var(--sg-green);
    border-radius: var(--radius-md);
}

/* ===========================================
   7. HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sg-dark) 0%, var(--sg-dark-lighter) 50%, var(--sg-dark) 100%);
    overflow: hidden;
    padding: var(--header-height) 0 5rem;
}

.hero__background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* DNA Helix Animation */
.hero__dna {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 600px;
    opacity: 0.15;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dna-strand--left {
    animation: dnaRotate 8s linear infinite;
}

.dna-strand--right {
    animation: dnaRotate 8s linear infinite reverse;
}

.dna-rung {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: linear-gradient(90deg, var(--sg-green), transparent, var(--sg-green));
    border-radius: 2px;
    animation: dnaRung 4s ease-in-out infinite;
}

/* Floating Particles */
.hero__particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sg-green);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 15s infinite ease-in-out;
}

/* Hero Content */
.hero__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.hero__theorem-logo {
    display: block;
    max-width: 150px;
    max-height: 50px;
    width: auto;
    height: auto;
    margin: 0 auto 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease-out;
}

.hero__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sg-green);
    background: rgba(0, 223, 122, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out;
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: var(--sg-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__title-highlight {
    color: var(--sg-green);
    position: relative;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero__motion-toggle {
    display: none;
    justify-content: center;
    margin-bottom: 2rem;
}

.reduce-motion-toggle {
    padding: 0.6rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 44px;
}

.reduce-motion-toggle[aria-pressed="true"] {
    background: rgba(0, 223, 122, 0.18);
    border-color: rgba(0, 223, 122, 0.5);
    color: #d6ffe9;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sg-dark);
    background: var(--sg-green);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.hero__cta:hover {
    background: var(--sg-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.hero__cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sg-white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.hero__cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Trust Badges */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero__trust-icon {
    width: 20px;
    height: 20px;
    color: var(--sg-green);
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero__scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--sg-green);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

/* Back To Top */
.back-to-top {
    position: fixed;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) scale(0.92);
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 223, 122, 0.4);
    background: rgba(0, 223, 122, 0.95);
    color: #031E47;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    z-index: 900;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top:hover {
    background: var(--sg-green-dark);
    transform: translateY(-50%) scale(1);
}

.back-to-top--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

/* ===========================================
   8. POWER/ENDURANCE SLIDER SECTION
   =========================================== */
.slider-section {
    padding: var(--section-padding) 0;
    background: var(--sg-white);
}

.slider-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.slider-profile {
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-slow);
    min-height: 260px;
}

.slider-profile--power {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
    border: 2px solid rgba(255, 107, 107, 0.2);
}

.slider-profile--endurance {
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.1) 0%, rgba(0, 223, 122, 0.05) 100%);
    border: 2px solid rgba(0, 223, 122, 0.2);
}

.slider-profile--active {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.slider-profile__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-profile--power .slider-profile__icon {
    background: rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

.slider-profile--endurance .slider-profile__icon {
    background: rgba(0, 223, 122, 0.2);
    color: var(--sg-green);
}

.slider-profile__icon svg {
    width: 32px;
    height: 32px;
}

.slider-profile__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.slider-profile__subtitle {
    font-size: 0.9rem;
    color: var(--sg-text-grey);
    margin-bottom: 1rem;
}

.slider-profile__traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.slider-profile__trait {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--sg-dark);
}

/* Slider Control */
.slider-control {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.slider-control__label {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sg-dark);
}

.slider-control__input {
    writing-mode: vertical-lr;
    /* Removed direction: rtl to ensure 0=Top, 100=Bottom standard mapping */
    width: 8px;
    height: 280px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.slider-control__input::-webkit-slider-runnable-track {
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--sg-green), #FF6B6B);
    /* Swapped: Green to Red */
    border-radius: 4px;
}

.slider-control__input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: var(--sg-white);
    border: 3px solid var(--sg-dark);
    border-radius: 50%;
    cursor: grab;
    box-shadow: var(--shadow-md);
    margin-left: -8px;
}

.slider-control__input::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.slider-control__input::-moz-range-track {
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--sg-green), #FF6B6B);
    /* Swapped: Green to Red */
    border-radius: 4px;
}

.slider-control__input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--sg-white);
    border: 3px solid var(--sg-dark);
    border-radius: 50%;
    cursor: grab;
    box-shadow: var(--shadow-md);
}

/* Slider Bottom */
.slider-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.slider-insight {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered content */
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--sg-light-grey);
    border-radius: var(--radius-lg);
    width: 100%;
}

.slider-insight__icon {
    width: 48px;
    /* Slightly larger icon */
    height: 48px;
    flex-shrink: 0;
    background: var(--sg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sg-dark);
}

.slider-insight__icon svg {
    width: 24px;
    height: 24px;
}

.slider-insight__text {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.slider-insight__label {
    font-size: 1.1rem;
    /* Increased size */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sg-text-grey);
    line-height: 1.2;
}

.slider-insight__value {
    font-size: 1.5rem;
    /* Matches requested size */
    font-weight: 700;
    color: var(--sg-dark);
    line-height: 1.2;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .slider-insight {
        flex-direction: column;
        /* Stack icon and text on mobile */
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .slider-insight__text {
        text-align: center;
        align-items: center;
    }

    .slider-insight__label {
        font-size: 0.9rem;
    }

    .slider-insight__value {
        font-size: 1.25rem;
    }
}

/* ===========================================
   9. WHAT YOU'LL DISCOVER SECTION
   =========================================== */
.discover-section {
    padding: var(--section-padding) 0;
    background: var(--sg-light-grey);
}

.discover-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.discover-card {
    background: var(--sg-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.discover-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    background: rgba(0, 223, 122, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sg-green);
    transition: background var(--transition-normal), color var(--transition-normal);
}

.discover-card:hover .discover-card__icon {
    background: var(--sg-green);
    color: var(--sg-dark);
}

.discover-card__icon svg {
    width: 32px;
    height: 32px;
}

.discover-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sg-dark);
}

.discover-card__description {
    font-size: 0.9rem;
    color: var(--sg-text-grey);
    margin-bottom: 1.25rem;
}

/* Mini Gauge */
.discover-card__gauge {
    height: 6px;
    background: var(--sg-medium-grey);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.discover-card__gauge-fill {
    height: 100%;
    background: var(--sg-green);
    border-radius: 3px;
    width: var(--gauge-width, 0%);
    transition: width 1s ease-out;
}

/* Fallback/Enhancement if JS adds class, but basic width works now */
.discover-card.in-view .discover-card__gauge-fill {
    width: var(--gauge-width, 75%);
}

.discover-card__gauge-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sg-text-grey);
}

.discover-card__gauge-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--sg-text-grey);
}

/* ===========================================
   10. SAMPLE REPORT PREVIEW SECTION
   =========================================== */
.preview-section {
    padding: var(--section-padding) 0;
    background: var(--sg-white);
}

.preview-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.preview-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.preview-frame {
    position: relative;
    background: var(--sg-dark);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.preview-frame__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-frame__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-frame__dot--red {
    background: #FF6B6B;
}

.preview-frame__dot--yellow {
    background: #FFE66D;
}

.preview-frame__dot--green {
    background: var(--sg-green);
}

.preview-scroll {
    height: 400px;
    overflow-y: auto;
    border-radius: var(--radius-md);
    scrollbar-width: thin;
    scrollbar-color: var(--sg-green) rgba(255, 255, 255, 0.1);
}

.preview-scroll::-webkit-scrollbar {
    width: 6px;
}

.preview-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.preview-scroll::-webkit-scrollbar-thumb {
    background: var(--sg-green);
    border-radius: 3px;
}

.preview-content {
    background: var(--sg-white);
    border-radius: var(--radius-md);
    padding: 2rem;
}

/* Preview Blurred Section */
.preview-blurred {
    position: relative;
    margin-top: 2rem;
    padding: 2rem;
    background: var(--sg-light-grey);
    border-radius: var(--radius-md);
    filter: blur(4px);
    user-select: none;
}

.preview-blurred-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    z-index: 1;
}

.preview-blurred-overlay__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    color: var(--sg-dark);
}

.preview-blurred-overlay__text {
    font-weight: 600;
    color: var(--sg-dark);
}

/* Preview Info */
.preview-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.preview-info__title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--sg-dark);
}

.preview-info__description {
    font-size: 1rem;
    color: var(--sg-text-grey);
}

.preview-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.preview-feature__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--sg-green);
}

.preview-feature__text {
    font-size: 0.95rem;
    color: var(--sg-dark);
}

.preview-feature__text strong {
    font-weight: 600;
}

/* ===========================================
   11. HOW IT WORKS SECTION
   =========================================== */
.how-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--sg-dark) 0%, var(--sg-dark-lighter) 100%);
    color: var(--sg-white);
}

.how-section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-section__title {
    color: var(--sg-white);
}

.how-section__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.how-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.how-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 60px;
    width: calc(100% - 120px);
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.how-timeline__progress {
    position: absolute;
    top: 40px;
    left: 60px;
    height: 2px;
    background: var(--sg-green);
    width: 0;
    max-width: calc(100% - 120px);
    transition: width 0.5s ease-out;
}

.how-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
    z-index: 1;
}

.how-step__number {
    width: 80px;
    height: 80px;
    background: var(--sg-dark-lighter);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.how-step__number svg {
    width: 36px;
    height: 36px;
    color: var(--sg-green);
}

.how-step--active .how-step__number {
    background: var(--sg-green);
    border-color: var(--sg-green);
}

.how-step--active .how-step__number svg {
    color: var(--sg-dark);
}

.how-step__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sg-white);
}

.how-step__description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ===========================================
   12. CREDIBILITY & TRUST SECTION
   =========================================== */
.credibility-section {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding) 0;
    background: var(--sg-light-grey);
}

/* Floating SNP Animation Container */
.snp-float-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    contain: layout style;
}

.snp-float-container.is-active {
    opacity: 1;
}

.snp-float {
    position: absolute;
    font-family: 'SF Mono', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--sg-dark);
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Ensure section content stays above floating SNPs */
.credibility-section>.container {
    position: relative;
    z-index: 2;
}

.credibility-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 520px 1fr;
    /* Middle column sized for larger DNA map */
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Stats Column */
.credibility-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credibility-stat {
    background: var(--sg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.credibility-stat__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sg-green);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.credibility-stat__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sg-dark);
}

/* Gene Network Constellation */
.gene-network {
    width: 100%;
    max-width: 100%;
    /* Fill available space between columns */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    overflow: hidden;
}

.gene-network.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.network-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    animation: sportgeneNetworkFloat 10s ease-in-out infinite;
}

/* Connection lines */
.network-lines line {
    stroke: var(--sg-medium-grey);
    stroke-width: 1.5;
    opacity: 0.45;
    stroke-dasharray: 5 4;
    animation: sportgeneNetworkFlow 20s linear infinite;
}

.network-lines .line-primary {
    stroke: var(--sg-green);
    stroke-width: 2;
    opacity: 0.55;
}

@keyframes sportgeneNetworkFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -90;
    }
}

/* Node circles */
.network-nodes circle {
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.node-xl circle {
    fill: var(--sg-green);
    filter: url(#sportgene-nodeGlow);
    animation: sportgeneNodePulse 4s ease-in-out infinite;
}

.node-lg circle {
    fill: var(--sg-dark);
}

.node-md circle {
    fill: #1a3a5c;
}

.node-sm circle {
    fill: #2a4a6c;
}

/* Node labels */
.network-nodes text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 600;
    fill: var(--sg-white);
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    /* Added for contrast */
}

/* Reduced font sizes to fit circles better */
.node-xl text {
    font-size: 11px;
}

/* Was 13px */
.node-lg text {
    font-size: 10px;
}

/* Was 12px */
.node-md text {
    font-size: 9px;
}

/* Was 11px */
.node-sm text {
    font-size: 8px;
}

/* Was 5.5px */

@keyframes sportgeneNodePulse {

    0%,
    100% {
        filter: url(#sportgene-nodeGlow);
        opacity: 1;
    }

    50% {
        filter: url(#sportgene-nodeGlow) brightness(1.15);
        opacity: 0.92;
    }
}

@keyframes sportgeneNetworkFloat {

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

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

.credibility-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credibility-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--sg-white);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.credibility-badge__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(0, 223, 122, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sg-green);
}

.credibility-badge__icon svg {
    width: 24px;
    height: 24px;
}

.credibility-badge__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sg-dark);
    margin-bottom: 0.15rem;
}

.credibility-badge__text {
    font-size: 0.8rem;
    color: var(--sg-text-grey);
}

/* Science Summary */
.credibility-summary {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: var(--sg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.credibility-summary__text {
    font-size: 1rem;
    color: var(--sg-text-grey);
    margin-bottom: 1.5rem;
}

.credibility-summary__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--sg-green-dark);
}

.credibility-summary__link:hover {
    gap: 0.75rem;
}

.credibility-summary__link svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   13. TESTIMONIALS SECTION
   =========================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--sg-white);
    overflow: hidden;
}

.testimonials-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 2rem;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 1.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--sg-green) rgba(0, 0, 0, 0.1);
}

.testimonials-track::-webkit-scrollbar {
    height: 6px;
}

.testimonials-track::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.testimonials-track::-webkit-scrollbar-thumb {
    background: var(--sg-green);
    border-radius: 3px;
}

.testimonial-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--sg-light-grey);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sg-green) 0%, var(--sg-green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sg-dark);
    flex-shrink: 0;
}

.testimonial-card__info {
    flex: 1;
}

.testimonial-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sg-dark);
    margin-bottom: 0.25rem;
}

.testimonial-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-card__sport {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--sg-green-dark);
    background: rgba(0, 223, 122, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.testimonial-card__rating {
    display: flex;
    gap: 2px;
}

.testimonial-card__star {
    width: 14px;
    height: 14px;
    color: #FFB800;
    fill: #FFB800;
}

.testimonial-card__quote {
    position: relative;
    font-size: 0.95rem;
    color: var(--sg-text-grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-card__quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--sg-dark);
    opacity: 0.05;
    line-height: 1;
}

.testimonial-card__result {
    background: var(--sg-white);
    border-left: 3px solid var(--sg-green);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.testimonial-card__result-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sg-green-dark);
    margin-bottom: 0.25rem;
}

.testimonial-card__result-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sg-dark);
}

/* Carousel Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sg-medium-grey);
    border: none;
    cursor: pointer;
    transition: background var(--transition-normal), transform var(--transition-normal);
}

.testimonials-dot:hover {
    background: var(--sg-green);
    transform: scale(1.2);
}

.testimonials-dot--active {
    background: var(--sg-green);
}

.testimonials-swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--sg-text-grey);
}

.testimonials-swipe-hint svg {
    width: 20px;
    height: 20px;
    animation: swipeHint 1.5s ease-in-out infinite;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-cta__text {
    font-size: 1.125rem;
    color: var(--sg-text-grey);
    margin-bottom: 1rem;
}

/* ===========================================
   14. PRICING SECTION
   =========================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--sg-light-grey);
}

.pricing-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: var(--sg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 320px;
}

.pricing-card__badge {
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--sg-green);
    color: var(--sg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
}

.pricing-card__info {
    padding: 3rem;
    border-right: 1px solid var(--sg-medium-grey);
}

.pricing-card__name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sg-dark);
    margin-bottom: 0.5rem;
}

.pricing-card__tagline {
    font-size: 0.95rem;
    color: var(--sg-text-grey);
    margin-bottom: 2rem;
}

.pricing-card__includes-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sg-dark);
    margin-bottom: 1rem;
}

.pricing-card__includes-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-card__includes-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--sg-dark);
}

.pricing-card__includes-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--sg-green);
    margin-top: 2px;
}

/* Pricing Panel */
.pricing-card__panel {
    background: linear-gradient(135deg, var(--sg-dark) 0%, var(--sg-dark-lighter) 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pricing-card__price-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--sg-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.pricing-card__price-currency {
    font-size: 2rem;
    vertical-align: super;
}

.pricing-card__price-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.pricing-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sg-dark);
    background: var(--sg-green);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.pricing-card__cta:hover {
    background: var(--sg-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.pricing-card__cta svg {
    width: 20px;
    height: 20px;
}

.pricing-card__trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.pricing-card__trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card__trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--sg-green);
}

/* Guarantee Strip */
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 223, 122, 0.08);
    border: 1px solid rgba(0, 223, 122, 0.2);
    border-radius: var(--radius-lg);
}

.pricing-guarantee__icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--sg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sg-dark);
}

.pricing-guarantee__icon svg {
    width: 28px;
    height: 28px;
}

.pricing-guarantee__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sg-dark);
    margin-bottom: 0.25rem;
}

.pricing-guarantee__text {
    font-size: 0.9rem;
    color: var(--sg-text-grey);
}

/* Payment Badges */
.pricing-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--sg-text-grey);
}

.pricing-badge svg {
    width: 20px;
    height: 20px;
    color: var(--sg-dark);
}

/* ===========================================
   15. FAQ SECTION
   =========================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--sg-white);
    border-bottom: none;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.faq-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--sg-light-grey);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: background var(--transition-normal);
}

.faq-item:hover {
    background: #EFEFEF;
}

.faq-item[open] {
    background: var(--sg-white);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--sg-dark);
    transition: color var(--transition-normal);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-item[open] .faq-question {
    color: var(--sg-green-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--sg-dark);
    border-radius: 2px;
    transition: transform var(--transition-slow), background var(--transition-normal);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background: var(--sg-green-dark);
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--sg-text-grey);
    line-height: 1.7;
    animation: fadeIn var(--transition-slow);
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--sg-dark);
}

.faq-answer a {
    color: var(--sg-green-dark);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--sg-light-grey);
    border-radius: var(--radius-lg);
    border: 1px solid #00DF7A;
}

.faq-cta__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sg-dark);
    margin-bottom: 0.5rem;
}

.faq-cta__text {
    font-size: 0.95rem;
    color: var(--sg-text-grey);
    margin-bottom: 1.25rem;
}

.faq-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sg-green-dark);
    font-size: 1rem;
    font-weight: 600;
    transition: gap var(--transition-normal);
}

.faq-cta__link:hover {
    gap: 0.75rem;
}

.faq-cta__link svg {
    width: 18px;
    height: 18px;
}

/* ===========================================
   16. FOOTER
   =========================================== */
.footer {
    position: relative;
    z-index: 10;
    background: var(--sg-dark);
    color: var(--sg-white);
    padding-top: 4rem;
    border: none;
    outline: none;
    box-shadow: none;
    /* Negative margin to pull footer up slightly */
    margin-top: -1px;
}

/* Cover up any rendering artifacts/lines at the top of the footer */
.footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sg-dark);
    z-index: 11;
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Footer Top */
.footer__top {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border: none;
}

/* Footer Brand */
.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.footer-logo {
    height: auto;
    width: auto;
    max-height: 60px;
    max-width: 200px;
}

@media (min-width: 769px) {
    .footer-logo {
        max-height: 80px;
        max-width: 280px;
    }
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sg-white);
    transition: all var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--sg-green);
    color: var(--sg-dark);
    transform: translateY(-2px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Nav */
.footer__nav-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sg-white);
    margin-bottom: 1.25rem;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__nav-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

.footer__nav-link:hover {
    color: var(--sg-green);
}

/* Footer Middle */
.footer__middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    border: none;
}

.footer__contact {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--sg-green);
}

.footer__contact-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-text strong {
    display: block;
    color: var(--sg-white);
    font-weight: 600;
}

.footer__contact-text a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-normal);
}

.footer__contact-text a:hover {
    color: var(--sg-green);
}

.footer__trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--sg-green);
}

/* Footer Bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
}

.footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer__legal-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-normal);
}

.footer__legal-link:hover {
    color: var(--sg-green);
}

/* ===========================================
   17. FLOATING CTA
   =========================================== */
.floating-cta {
    position: fixed;
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
    right: 1.5rem;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow), visibility var(--transition-slow);
}

.floating-cta--visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-cta__button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--sg-dark);
    background: var(--sg-green);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px var(--sg-green-glow);
    transition: all var(--transition-normal);
}

.floating-cta__button:hover {
    background: var(--sg-green-dark);
    transform: scale(1.05);
}

.floating-cta__button svg {
    width: 20px;
    height: 20px;
}

/* ===========================================
   17b. PWA BANNER
   =========================================== */
.pwa-banner {
    position: fixed;
    left: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    max-width: 420px;
    background: rgba(3, 30, 71, 0.96);
    color: #ffffff;
    border: 1px solid rgba(0, 223, 122, 0.35);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
    display: none;
    z-index: 950;
}

.pwa-banner--visible {
    display: block;
}

.pwa-banner__title {
    font-weight: 700;
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
}

.pwa-banner__text {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.pwa-banner__actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pwa-banner__btn {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.45rem 0.9rem;
    font-weight: 700;
    font-size: 0.8rem;
    color: #031E47;
    background: #00DF7A;
}

.pwa-banner__btn--ghost {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 768px) {
    .pwa-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}

/* ===========================================
   18. ANIMATIONS & KEYFRAMES
   =========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes dnaRotate {
    0% {
        transform: rotateY(0deg) scaleX(1);
    }

    25% {
        transform: rotateY(90deg) scaleX(0.3);
    }

    50% {
        transform: rotateY(180deg) scaleX(1);
    }

    75% {
        transform: rotateY(270deg) scaleX(0.3);
    }

    100% {
        transform: rotateY(360deg) scaleX(1);
    }
}

@keyframes dnaRung {

    0%,
    100% {
        opacity: 0.3;
        width: 60%;
    }

    50% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }

    25% {
        transform: translate(20px, -30px);
        opacity: 0.6;
    }

    50% {
        transform: translate(-10px, -60px);
        opacity: 0.3;
    }

    75% {
        transform: translate(30px, -30px);
        opacity: 0.6;
    }
}

@keyframes scrollDot {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.5;
    }
}

@keyframes geneFloat {

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

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

@keyframes swipeHint {

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

    50% {
        transform: translateX(8px);
    }
}

/* ===========================================
   19. RESPONSIVE BREAKPOINTS
   =========================================== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .credibility-dna {
        width: 280px;
    }
}

/* Desktop/Tablet Transition (1024px) */
@media (max-width: 1024px) {

    .header__nav,
    .header__social,
    .header__divider,
    .header__portal {
        display: none;
    }

    .header__toggle {
        display: flex;
    }

    .slider-display {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .slider-profile {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .slider-control {
        flex-direction: row;
        justify-content: center;
        padding: 1rem 0;
    }

    .slider-control__input {
        writing-mode: horizontal-tb;
        direction: ltr;
        width: 200px;
        height: 8px;
    }

    .slider-control__input::-webkit-slider-runnable-track {
        width: 100%;
        height: 8px;
        background: linear-gradient(to right, #FF6B6B, var(--sg-green));
    }

    .slider-control__input::-webkit-slider-thumb {
        margin-top: -8px;
        margin-left: 0;
    }

    .slider-control__input::-moz-range-track {
        width: 100%;
        height: 8px;
        background: linear-gradient(to right, #FF6B6B, var(--sg-green));
    }

    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gene-network {
        max-width: 400px;
    }

    .credibility-dna {
        order: -1;
        height: 300px;
    }

    .credibility-stats,
    .credibility-badges {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .credibility-stat,
    .credibility-badge {
        flex: 1;
        min-width: 200px;
    }
}

/* Tablet (900px) */
@media (max-width: 900px) {
    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .preview-frame {
        order: 2;
    }

    .how-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .how-timeline::before {
        top: 40px;
        left: 40px;
        right: auto;
        bottom: 40px;
        width: 2px;
        height: auto;
    }

    .how-timeline__progress {
        top: 40px;
        left: 40px;
        width: 2px;
        height: 0;
    }

    .how-step {
        flex-direction: row;
        text-align: left;
        width: 100%;
        padding-left: 100px;
    }

    .how-step__number {
        position: absolute;
        left: 0;
        margin-bottom: 0;
    }

    .pricing-card {
        grid-template-columns: 1fr;
    }

    .pricing-card__info {
        border-right: none;
        border-bottom: 1px solid var(--sg-medium-grey);
    }

    .pricing-card__badge {
        top: 1rem;
        right: -2.5rem;
    }

    .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__brand {
        grid-column: span 2;
    }
}

/* Mobile (767px) */
@media (max-width: 767px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .hero__dna {
        width: 200px;
        opacity: 0.1;
        right: -50px;
    }

    .hero__cta-group {
        flex-direction: column;
    }

    .hero__cta,
    .hero__cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 1rem;
    }

    .hero__scroll {
        display: none;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }

    .credibility-dna {
        height: 250px;
    }

    .credibility-dna__markers {
        width: 200px;
    }

    .gene-marker:nth-child(4),
    .gene-marker:nth-child(6),
    .gene-marker:nth-child(8) {
        display: none;
    }

    /* Gene Network - constrained size on mobile */
    .gene-network {
        max-width: 350px;
    }

    .node-xl text {
        font-size: 9px;
    }

    .node-lg text {
        font-size: 8px;
    }

    .node-md text {
        font-size: 7px;
    }

    .node-sm text {
        font-size: 6px;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

    .testimonial-card__avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .testimonials-swipe-hint {
        display: flex;
    }

    .pricing-card__info,
    .pricing-card__panel {
        padding: 2rem 1.5rem;
    }

    .pricing-card__price {
        font-size: 3.5rem;
    }

    .pricing-card__badge {
        display: none;
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .faq-icon::before {
        width: 12px;
    }

    .faq-icon::after {
        height: 12px;
    }

    .footer__top {
        grid-template-columns: 1fr;
    }

    .footer__brand {
        grid-column: span 1;
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__tagline {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__nav {
        text-align: center;
    }

    .footer__nav-list {
        align-items: center;
    }

    .footer__middle {
        flex-direction: column;
        text-align: center;
    }

    .footer__contact {
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .footer__trust {
        justify-content: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__legal {
        justify-content: center;
    }

    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .floating-cta__button {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .slider-profile {
        padding: 1.5rem;
    }

    .slider-profile__icon {
        width: 48px;
        height: 48px;
    }

    .slider-profile__icon svg {
        width: 24px;
        height: 24px;
    }

    .discover-card {
        padding: 1.5rem;
    }

    .discover-card__icon {
        width: 48px;
        height: 48px;
    }

    .discover-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .how-step__number {
        width: 60px;
        height: 60px;
    }

    .how-step__number svg {
        width: 28px;
        height: 28px;
    }

    .how-step {
        padding-left: 80px;
    }

    .credibility-stat__number {
        font-size: 2rem;
    }
}

/* ===========================================
   20. REDUCED MOTION
   =========================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero__dna,
    .dna-strand,
    .dna-rung,
    .particle,
    .gene-marker,
    .hero__scroll-dot {
        animation: none;
    }
}

html.reduce-motion {
    scroll-behavior: auto;
}

html.reduce-motion .hero__dna,
html.reduce-motion .dna-strand,
html.reduce-motion .dna-rung,
html.reduce-motion .particle,
html.reduce-motion .hero__scroll-dot,
html.reduce-motion .hero__scroll {
    animation: none !important;
}

html.reduce-motion .hero__particles {
    opacity: 0.12;
}

html.reduce-motion .hero__theorem-logo,
html.reduce-motion .hero__label,
html.reduce-motion .hero__title,
html.reduce-motion .hero__subtitle,
html.reduce-motion .hero__cta-group,
html.reduce-motion .hero__trust {
    animation: none !important;
}

/* ===========================================
   21. PRINT STYLES
   =========================================== */
@media print {

    .header,
    .mobile-menu,
    .floating-cta,
    .hero__scroll,
    .hero__dna,
    .hero__particles {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ================================
   SCIENCE PAGE STYLES - Part 1
   ================================ */

/* Hero Section */
.science-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
}

.science-intro strong {
    color: #031E47;
}

.science-callout {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f0 100%);
    border-left: 4px solid #00DF7A;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
}

.callout-stat {
    font-size: 48px;
    font-weight: 700;
    color: #00DF7A;
    line-height: 1;
    flex-shrink: 0;
}

.callout-text {
    font-size: 18px;
    color: #031E47;
    line-height: 1.4;
}

.callout-text small {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* ACTN3 Spectrum Section */
.actn3-section {
    margin: 60px 0;
    text-align: center;
}

.actn3-section h2 {
    font-size: 32px;
    color: #031E47;
    margin-bottom: 10px;
}

.gene-highlight {
    color: #00DF7A;
    font-family: 'Courier New', monospace;
    background: rgba(0, 223, 122, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.actn3-spectrum {
    max-width: 800px;
    margin: 40px auto;
}

.spectrum-track {
    position: relative;
    height: 100px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.spectrum-gradient {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 8px;
    transform: translateY(-50%);
    background: linear-gradient(to right, #4A90E2 0%, #00DF7A 50%, #00BFA5 100%);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.spectrum-markers {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    gap: 0;
}

.marker-label {
    position: absolute;
    top: -30px;
    font-size: 24px;
    font-weight: 700;
    color: #031E47;
}

.marker-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 4px solid #00DF7A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: 700;
}

.marker-icon.power-icon {
    border-color: #4A90E2;
    color: #4A90E2;
}

.marker-icon.hybrid-icon {
    border-color: #00DF7A;
    color: #00DF7A;
}

.marker-icon.endurance-icon {
    border-color: #00BFA5;
    color: #00BFA5;
}

.spectrum-endpoints {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.endpoint {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.endpoint-power {
    background: linear-gradient(135deg, #EBF4FF 0%, #D6E9FF 100%);
    border-left: 4px solid #4A90E2;
}

.endpoint-endurance {
    background: linear-gradient(135deg, #E8FFF4 0%, #D0F5E5 100%);
    border-left: 4px solid #00DF7A;
}

.endpoint-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #031E47;
    margin-bottom: 8px;
}

.endpoint-desc {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.endpoint-athletes {
    display: block;
    font-size: 12px;
    color: #888;
    font-style: italic;
}

.spectrum-fact {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    text-align: left;
}

.spectrum-fact strong {
    color: #00DF7A;
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }
}

.actn3-section--alt .actn3-spectrum--alt {
    padding: 30px 32px 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.08) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(74, 144, 226, 0.08) 100%);
    border: 1px solid rgba(3, 30, 71, 0.08);
    box-shadow: 0 18px 40px rgba(3, 30, 71, 0.1);
}

.spectrum-track--alt {
    height: 120px;
}

.spectrum-track--alt::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 20px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(3, 30, 71, 0.06);
    box-shadow: inset 0 0 0 1px rgba(3, 30, 71, 0.08);
    z-index: 0;
}

.spectrum-helix {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    height: 60px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

.spectrum-helix::before,
.spectrum-helix::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.35;
    background: repeating-linear-gradient(90deg, rgba(3, 30, 71, 0.4) 0 12px, transparent 12px 24px);
    animation: helixSlide 8s linear infinite;
}

.spectrum-helix::before {
    top: 12px;
}

.spectrum-helix::after {
    bottom: 12px;
    animation-delay: -4s;
}

.actn3-section--alt .spectrum-gradient {
    height: 10px;
    background-size: 200% 100%;
    animation: gradientShift 6s linear infinite;
    z-index: 2;
}

.spectrum-sweep {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 16px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
    filter: blur(2px);
    animation: sweepTravel 5s linear infinite;
    z-index: 2;
    pointer-events: none;
}

.actn3-section--alt .marker {
    gap: 6px;
}

.actn3-section--alt .marker--above {
    transform: translateY(-12px);
}

.actn3-section--alt .marker--below {
    transform: translateY(12px);
}

.actn3-section--alt .marker-label {
    position: static;
    padding: 4px 12px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(3, 30, 71, 0.12);
    box-shadow: 0 6px 14px rgba(3, 30, 71, 0.12);
}

.actn3-section--alt .marker-icon {
    position: relative;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f0f4ff 40%, #ffffff 100%);
    border-width: 3px;
    box-shadow: 0 10px 18px rgba(3, 30, 71, 0.18);
}

.actn3-section--alt .marker-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 223, 122, 0.35), transparent 60%);
    filter: blur(6px);
    opacity: 0.7;
    z-index: -1;
    animation: markerPulse 3.8s ease-in-out infinite;
}

.actn3-section--alt .marker--power .marker-icon::after {
    background: radial-gradient(circle, rgba(74, 144, 226, 0.35), transparent 60%);
}

.actn3-section--alt .marker--endurance .marker-icon::after {
    background: radial-gradient(circle, rgba(0, 191, 165, 0.35), transparent 60%);
}

.actn3-section--alt .spectrum-endpoints {
    margin-top: 28px;
    gap: 24px;
}

.actn3-section--alt .spectrum-endpoints--triple {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.actn3-section--alt .endpoint {
    padding: 22px 24px;
    border-radius: 16px;
    border: 1px solid rgba(3, 30, 71, 0.08);
    box-shadow: 0 14px 26px rgba(3, 30, 71, 0.08);
    background: rgba(255, 255, 255, 0.9);
}

.actn3-section--alt .endpoint-power {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.12) 0%, rgba(255, 255, 255, 0.95) 60%);
    border-left: 4px solid #4A90E2;
}

.actn3-section--alt .endpoint-endurance {
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.12) 0%, rgba(255, 255, 255, 0.95) 60%);
    border-left: 4px solid #00DF7A;
}

.actn3-section--alt .endpoint-hybrid {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(255, 255, 255, 0.95) 60%);
    border-left: 4px solid #0ea5e9;
}

.endpoint-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.endpoint-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
}

.endpoint-badge--power {
    background: linear-gradient(135deg, #4A90E2, #2f6bbd);
}

.endpoint-badge--endurance {
    background: linear-gradient(135deg, #00DF7A, #00BFA5);
}

.endpoint-badge--hybrid {
    background: linear-gradient(135deg, #0ea5e9, #4A90E2);
}
.endpoint-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 6px;
}

.endpoint-chip {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(3, 30, 71, 0.1);
    color: #031E47;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes sweepTravel {
    0% {
        transform: translate(-20%, -50%);
        opacity: 0;
    }
    20% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    80% {
        opacity: 0.7;
    }
    100% {
        transform: translate(20%, -50%);
        opacity: 0;
    }
}

@keyframes helixSlide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 0;
    }
}

@keyframes markerPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

@media (max-width: 768px) {
    .hero__dna {
        display: none;
    }

    .hero__particles {
        opacity: 0.15;
    }

    .particle {
        animation-duration: 24s;
    }

    .hero__motion-toggle {
        display: flex;
    }

    .slider-profile {
        min-height: auto;
    }

    .science-callout {
        flex-direction: column;
        text-align: center;
    }

    .callout-stat {
        font-size: 36px;
    }

    .spectrum-endpoints {
        flex-direction: column;
        gap: 20px;
    }

    .marker-label {
        font-size: 18px;
    }

    .marker-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .actn3-section--alt .actn3-spectrum--alt {
        padding: 24px 18px 20px;
    }

    .actn3-section--alt .marker-label {
        font-size: 12px;
    }

    .endpoint-meta {
        flex-wrap: wrap;
    }

    .actn3-section--alt .spectrum-endpoints--triple {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SCIENCE PAGE STYLES - Part 2
   Infographics
   ================================ */

/* Performance Factors Chart */
.influence-infographic {
    text-align: center;
    margin: 80px auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
}

.influence-infographic h3 {
    font-size: 28px;
    color: #031E47;
    margin-bottom: 30px;
}

.influence-chart {
    max-width: 450px;
    margin: 0 auto 30px;
}

.infographic-caption {
    font-size: 16px;
    color: #555;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.influence-infographic--alt {
    background: linear-gradient(135deg, #f6fbff 0%, #eef6f1 55%, #f4f8ff 100%);
    border: 1px solid rgba(3, 30, 71, 0.08);
    box-shadow: 0 18px 45px rgba(3, 30, 71, 0.1);
    margin-top: 20px;
}

.influence-infographic__header {
    max-width: 720px;
    margin: 0 auto 35px;
}

.influence-infographic__sub {
    font-size: 16px;
    color: #47607a;
    margin: 0;
}

.influence-orbital {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}

.influence-orb {
    position: relative;
    width: 280px;
    height: 280px;
    flex: 0 0 auto;
}

.influence-orb__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(#00DF7A 0 45%, #4A90E2 45% 80%, #031E47 80% 100%);
    -webkit-mask: radial-gradient(circle at center, transparent 0 56%, #000 57% 100%);
    mask: radial-gradient(circle at center, transparent 0 56%, #000 57% 100%);
    box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.35), 0 18px 45px rgba(3, 30, 71, 0.2);
}

.influence-orb__ring::before {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 55%);
    opacity: 0.7;
}

.influence-orb__ring::after {
    content: '';
    position: absolute;
    inset: -6%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255, 255, 255, 0) 0deg, rgba(255, 255, 255, 0.5) 35deg, rgba(255, 255, 255, 0) 70deg);
    -webkit-mask: radial-gradient(circle at center, transparent 0 58%, rgba(0, 0, 0, 0.5) 59% 100%);
    mask: radial-gradient(circle at center, transparent 0 58%, rgba(0, 0, 0, 0.5) 59% 100%);
    animation: orbSweep 12s linear infinite;
    opacity: 0.7;
}

.influence-orb__core {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f1f6ff 55%, #e7f3ee 100%);
    box-shadow: inset 0 0 0 1px rgba(3, 30, 71, 0.12), 0 12px 25px rgba(3, 30, 71, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #031E47;
    gap: 4px;
}

.core-title {
    font-size: 12px;
    font-weight: 800;
}

.core-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: #5f7288;
}

.influence-orb__legend {
    display: grid;
    gap: 14px;
    min-width: 260px;
}

.influence-orb__chip {
    display: grid;
    grid-template-columns: 16px 1fr auto;
    gap: 8px 12px;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 14px;
    border: 1px solid rgba(3, 30, 71, 0.08);
    box-shadow: 0 12px 20px rgba(3, 30, 71, 0.08);
}

.chip-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.chip-label {
    font-weight: 700;
    color: #031E47;
}

.chip-range {
    font-weight: 700;
    color: #031E47;
}

.chip-note {
    grid-column: 2 / 4;
    font-size: 12px;
    color: #5f7288;
}

.influence-orb__chip--genetics .chip-dot {
    background: #00DF7A;
    box-shadow: 0 0 10px rgba(0, 223, 122, 0.55);
}

.influence-orb__chip--training .chip-dot {
    background: #4A90E2;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.45);
}

.influence-orb__chip--nutrition .chip-dot {
    background: #031E47;
    box-shadow: 0 0 10px rgba(3, 30, 71, 0.35);
}

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

@media (prefers-reduced-motion: reduce) {
    .influence-orb__ring::after {
        animation: none;
    }
}

@media (max-width: 768px) {
    .influence-orbital {
        gap: 28px;
    }

    .influence-orb {
        width: 230px;
        height: 230px;
    }
}

/* DNA Explainer Section */
.dna-explainer {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 50px;
    align-items: center;
    margin: 80px auto;
    padding: 50px;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    border-radius: 16px;
    max-width: 900px;
    border: 1px solid #00DF7A;
    position: relative;
    overflow: hidden;
}

.dna-visual {
    position: relative;
    align-self: stretch;
    margin: -50px 0 -50px -50px;
    display: flex;
    align-items: center;
}

.dna-helix-img {
    width: 220px;
    max-width: none;
    height: auto;
    min-height: 120%;
    object-fit: cover;
}

.dna-text {
    position: relative;
    z-index: 1;
    margin-left: 0;
}

@media (max-width: 768px) {
    .dna-explainer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .dna-visual {
        margin: 0 auto;
        align-self: auto;
    }

    .dna-helix-img {
        width: 140px;
        min-height: auto;
    }
}

.dna-text h3 {
    color: #031E47;
    font-size: 24px;
    margin-bottom: 20px;
}

.dna-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.dna-text strong {
    color: #031E47;
}

@media (max-width: 768px) {
    .dna-explainer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .dna-visual {
        max-width: 120px;
        margin: 0 auto;
    }

    .influence-infographic {
        padding: 30px 20px;
    }
}

/* ================================
   SCIENCE PAGE STYLES - Part 3
   Cards and CTA
   ================================ */

/* Science Cards Section */
.science-cards-section {
    position: relative;
    overflow: hidden;
    margin: 80px 0;
    padding: 60px 20px;
    width: 100%;
    max-width: none;
    text-align: center;
}

.science-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-image: url('/assets/images/coach3.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.20;
    z-index: 0;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.6) 35%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

/* Ensure content stays above background */
.science-cards-section h2,
.science-cards-section .section-subtitle,
.science-cards-section .science-cards-grid,
.science-cards-section .science-card {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .science-cards-section::before {
        opacity: 0.12;
        width: 100%;
    }
}

.science-cards-section h2 {
    font-size: 32px;
    color: #031E47;
    margin-bottom: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.science-cards-section .section-subtitle {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.science-results-subtitle {
    max-width: 720px;
}

.science-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.science-card {
    background: #f9fcfb;
    /* Light mint/teal tint */
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #00DF7A;
    border-left: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.science-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.science-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #031E47;
    margin: 0 0 15px 0;
}

.science-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.card-genes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.gene-tag {
    font-size: 11px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 223, 122, 0.3);
}

/* Final CTA Section */
.science-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0fdf8 0%, #e6f7f2 50%, #f0fdf8 100%);
    border-radius: 16px;
    margin: 60px auto;
    max-width: 900px;
    border: 2px solid rgba(0, 223, 122, 0.2);
}

.science-cta h2 {
    color: #031E47;
    font-size: 32px;
    margin-bottom: 12px;
}

.science-cta .cta-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 25px;
}

.science-cta .btn-primary {
    display: inline-block;
    background: #00DF7A;
    color: #031E47;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.science-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 223, 122, 0.3);
}

.science-cta .cta-trust {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .science-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .science-cards-grid {
        grid-template-columns: 1fr;
    }

    .science-cta {
        padding: 50px 25px;
    }

    .science-cta h2 {
        font-size: 28px;
    }
}
