/* ================================
   RESET AND BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d0c0c;
    --secondary-color: #f4f4f4;
    --accent-color: #0da2ff;
    --text-primary: #0d0c0c;
    --text-secondary: #6c6f76;
    --text-muted: #9c9e9d;
    --background: #f4f4f4;
    --background-alt: #f3f3f3;
    --background-light: #eeeeee;
    --border-color: #dcdcdc;
    --transition: all 0.3s ease;
    --font-mono: 'IBM Plex Mono', monospace;
    --font-display: 'TT Lakes Neue Trial', sans-serif;
}

body {
    font-family: var(--font-mono);
    line-height: 1.4;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 14px;
    text-decoration: none;
    z-index: 1000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* TT Lakes Neue Trial Font */
@font-face {
    font-family: 'TT Lakes Neue Trial';
    src: url('assets/fonts/TT-Lakes-Neue-Trial-Medium-BF641a4c38c092e.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Lakes Neue Trial';
    src: url('assets/fonts/TT-Lakes-Neue-Trial-Regular-BF641a4c3979232.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Lakes Neue Trial';
    src: url('assets/fonts/TT-Lakes-Neue-Trial-Bold-BF641a4c38d8513.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hidden {
    display: none;
}

/* ================================
   HEADER / NAVBAR
   ================================ */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 88px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1264px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: auto;
    width: clamp(140px, 12vw, 220px);
    object-fit: contain;
}

.logo svg text {
    font-family: var(--font-display);
}

/* Navigation Menu */
.nav-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

.nav-item {
    position: relative;
}

.nav-item a {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.nav-item.active a {
    font-weight: 500;
}

.nav-item .nav-underline {
    display: none;
}

.nav-arrow {
    width: 10px;
    height: 10px;
}

/* Arrow icons */
.btn-arrow {
    width: 10px;
    height: 10px;
}

.btn-arrow-light {
    filter: brightness(0) invert(1);
}

.badge-arrow-icon {
    width: 10px;
    height: 10px;
    display: block;
}

/* Header Buttons */
.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-discord {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3.5px;
    transition: var(--transition);
    overflow: hidden;
}

.btn-discord:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-discord img {
    width: 36px;
    height: 36px;
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 3.5px;
    background: transparent;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.28px;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.02);
}

.btn-secondary svg {
    width: 13px;
    height: 13px;
    transform: rotate(-45deg);
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    height: 36px;
    background: var(--accent-color);
    border-radius: 3.5px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    letter-spacing: -0.28px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #0b8cd9;
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 3.5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger-line {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */
.hero-section {
    position: relative;
    min-height: 900px;
    padding: 24px;
    background: var(--background);
    overflow: hidden;
}

.hero-wrapper {
    position: relative;
    max-width: 1392px;
    height: 748px;
    margin: 57px auto 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-texture {
    position: absolute;
    inset: 0;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.64;
    mix-blend-mode: multiply;
}

/* Dot patterns */
.dots-pattern {
    position: absolute;
    width: 660px;
    height: 389px;
    z-index: 1;
    overflow: visible;
    pointer-events: none;
}

.dots-left {
    bottom: -43px;
    left: -215px;
}

.dots-right {
    top: -124px;
    right: -236px;
}

.dots-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Falling light effects */
.falling-lights {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.light {
    position: absolute;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(13, 162, 255, 0.1) 10%,
        rgba(13, 162, 255, 0.8) 50%,
        rgba(13, 162, 255, 0.1) 90%,
        transparent 100%
    );
    opacity: 0;
    animation: falling-light 4s ease-in-out infinite;
}

.light-1 { left: 56px; top: -110px; height: 110px; animation-delay: 0s; }
.light-2 { left: 171px; top: -110px; height: 110px; animation-delay: 1.2s; }
.light-3 { right: 248px; top: -170px; height: 170px; animation-delay: 0.6s; }
.light-4 { right: 77px; top: -110px; height: 110px; animation-delay: 1.8s; }

@keyframes falling-light {
    0% { opacity: 0; transform: translateY(0); }
    15% { opacity: 0.7; }
    50% { opacity: 0.9; }
    85% { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(900px); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 147px 208px;
}

/* ST Badge */
.st-badge {
    display: inline-flex;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 32px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.st-badge:hover {
    opacity: 0.8;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    height: 32px;
    box-sizing: border-box;
    background: var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 0 0 1px #e3e3e3, 0 1px 2px 0 rgba(218, 218, 218, 0.5);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
    text-transform: uppercase;
}

.badge-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 0 0 1px #e3e3e3, 0 1px 2px 0 rgba(218, 218, 218, 0.5);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 5.8px;
    text-transform: uppercase;
    color: var(--text-primary);
    background: linear-gradient(90deg, #0d0c0c 0%, #383432 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 56px;
}

.hero-title .highlight {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 350px;
    margin-bottom: 56px;
}

.hero-subtitle .text-muted {
    color: var(--text-secondary);
}

/* CTA Button */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 52px;
    padding: 10px 16px;
    background: var(--accent-color);
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.btn-cta:hover {
    background: #0b8cd9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 162, 255, 0.3);
}

.btn-cta svg {
    transform: rotate(-45deg);
}

/* ================================
   TEXT FILL SECTION
   ================================ */
.text-fill-section {
    background: var(--background);
    position: relative;
}

.text-fill-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 204px;
}

.text-fill-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
}

/* Corner dots */
.text-fill-container::before,
.text-fill-container::after,
.corner-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    opacity: 0.65;
    pointer-events: none;
}

.text-fill-container::before,
.text-fill-container::after {
    content: '';
}

.text-fill-container::before { top: 0; left: 0; }
.text-fill-container::after { top: 0; right: 0; }
.corner-dot-bl { bottom: 0; left: 0; }
.corner-dot-br { bottom: 0; right: 0; }

.bracket-icon-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.bracket-icon-center + .text-fill-content {
    margin-top: 51px;
}

.text-fill-content {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -1.52px;
    text-align: center;
    max-width: 862px;
}

.text-fill-content .word {
    color: #babcbb;
    transition: color 0.3s ease;
}

.text-fill-content .word.revealed {
    color: var(--text-primary);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services-section {
    background: var(--background-alt);
    padding: 120px 24px 0;
    position: relative;
}

.services-section-inner {
    max-width: 1392px;
    margin: 0 auto;
}

.services-dashed-rect {
    flex: 0 0 308px;
    width: 308px;
    height: 405px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: calc(-308px + 50px - 46px);
    pointer-events: none;
}

.services-dashed-rect img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-container {
    position: relative;
    z-index: 2;
}

.services-header {
    padding-left: 0;
    margin-bottom: 40px;
}

.services-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #0d0c0c 0%, #383432 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 16px;
}

.services-title .highlight {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

/* Services Cards Wrapper */
.services-cards-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: max(0px, calc((100% - 1392px) / 2 - 16px));
}

.services-cards-wrapper::-webkit-scrollbar {
    display: none;
}

.services-cards {
    display: flex;
    gap: 16px;
    align-items: stretch;
    position: relative;
}

/* Service Card */
.service-card {
    flex: 0 0 308px;
    width: 308px;
    height: 405px;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 31px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:last-child {
    flex: 0 0 305px;
    width: 305px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.service-card-full {
    padding: 0;
    background: transparent;
    border: none;
    overflow: hidden;
}

.service-card-full:hover {
    box-shadow: none;
    transform: none;
}

.service-card-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-card .card-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 28px;
}

.service-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card .card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.24;
    letter-spacing: -0.96px;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.service-card .card-description {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--text-secondary);
    max-width: 249px;
}

.service-card .card-visual {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
}

/* Services Navigation Bar */
.services-nav-bar {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: transparent;
    border-top: 1px dashed var(--border-color);
    border-bottom: 1px dashed var(--border-color);
    margin-top: 16px;
    position: relative;
    z-index: 2;
}

.services-nav-content {
    max-width: 1392px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.services-nav-left,
.services-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition);
}

.services-nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.services-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.services-nav-btn:disabled:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.nav-direction-icon {
    width: 10px;
    height: 14px;
}

.nav-direction-left {
    transform: scaleX(-1);
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing-section {
    background: var(--background-alt);
    padding: 60px 24px;
}

.pricing-container {
    max-width: 1392px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--primary-color);
    border-radius: 10px;
    padding: 80px 64px 60px;
    position: relative;
    overflow: hidden;
}

.pricing-bg-decoration {
    position: absolute;
    top: -153px;
    right: -249px;
    width: 842px;
    height: 590px;
    transform: scaleY(-1);
    opacity: 0.3;
    pointer-events: none;
}

.pricing-bg-vector {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 1.84px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 311px;
    position: relative;
    z-index: 1;
}

/* Pricing Table */
.pricing-table {
    position: relative;
    z-index: 1;
}

.pricing-table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}

.pricing-col {
    padding: 24px 32px;
}

.pricing-col-pro {
    background: #111010;
    position: relative;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(100, 100, 100, 0.3);
    border-right: 1px solid rgba(100, 100, 100, 0.3);
    border-top: 1px solid rgba(100, 100, 100, 0.3);
    border-bottom: 1px solid rgba(100, 100, 100, 0.3);
}

.pricing-col-coaching {
    border-right: 1px solid rgba(100, 100, 100, 0.3);
    border-top: 1px solid rgba(100, 100, 100, 0.3);
    border-bottom: 1px solid rgba(100, 100, 100, 0.3);
}

.plan-name {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.8px;
    color: var(--accent-color);
    margin-bottom: 38px;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--secondary-color);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.24px;
    padding: 4px 10px;
    white-space: nowrap;
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 15px;
}

.plan-price .price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.96px;
    color: var(--secondary-color);
}

.plan-price .period {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
}

.plan-description {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.28px;
    color: var(--text-muted);
}

.btn-pricing-mobile {
    display: none;
}

.pricing-coaching-mobile {
    display: none;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-top: 1px solid rgba(100, 100, 100, 0.3);
}

.feature-name {
    padding: 24px 32px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: -0.8px;
    color: var(--secondary-color);
}

.feature-check {
    padding: 24px 32px;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.24;
    letter-spacing: -0.8px;
    color: var(--secondary-color);
    text-align: center;
}

.pro-check {
    background: #111010;
    border-left: 1px solid rgba(100, 100, 100, 0.3);
    border-right: 1px solid rgba(100, 100, 100, 0.3);
}

.coaching-check {
    background: transparent;
    border-right: 1px solid rgba(100, 100, 100, 0.3);
}

.bracket-icon {
    width: 24px;
    height: 19px;
}

.bracket-icon-muted {
    width: 24px;
    height: 19px;
    opacity: 0.5;
    filter: grayscale(100%);
}

/* Pricing CTA */
.pricing-cta {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 0;
    padding-top: 0;
    gap: 0;
}

.pricing-cta-col {
    padding: 16px 32px 24px;
}

.pricing-cta-col-pro {
    grid-column: 2;
    background: #111010;
    border-left: 1px solid rgba(100, 100, 100, 0.3);
    border-right: 1px solid rgba(100, 100, 100, 0.3);
}

.pricing-cta-col-coaching {
    grid-column: 3;
    border-right: 1px solid rgba(100, 100, 100, 0.3);
}

.btn-pricing-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 52px;
    padding: 10px 24px;
    background: var(--accent-color);
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-pricing-primary:hover {
    background: #0b8cd9;
    transform: translateY(-2px);
}

.btn-pricing-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 10px 24px;
    border: 1px solid var(--accent-color);
    border-radius: 5px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
    white-space: nowrap;
}

.btn-pricing-secondary:hover {
    background: rgba(13, 162, 255, 0.1);
    transform: translateY(-2px);
}

.btn-pricing-secondary .bracket {
    color: var(--accent-color);
    font-size: 13px;
    letter-spacing: -0.56px;
}

/* Pricing Contact */
.pricing-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.contact-label {
    display: none;
}

.contact-btn-wrapper {
    display: flex;
    align-items: stretch;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-btn-wrapper:hover {
    opacity: 0.85;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: #212020;
    border-radius: 3px;
    box-shadow: 0 0 0 1px #262626, 0 1px 2px 0 rgba(38, 38, 38, 0.5);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.badge-arrow.dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    background: var(--secondary-color);
    border-radius: 3px;
    box-shadow: 0 0 0 1px #e3e3e3, 0 1px 2px 0 rgba(218, 218, 218, 0.5);
}

.badge-arrow.dark .badge-arrow-icon {
    width: 8px;
    height: 8px;
}

/* Info Tooltip */
.info-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    vertical-align: middle;
}

.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.info-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.info-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 280px;
    padding: 10px 14px;
    background: var(--secondary-color);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-primary);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 100;
    pointer-events: none;
}

.info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--secondary-color);
}

.info-tooltip-wrapper:hover .info-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ================================
   TEAM SECTION
   ================================ */
.team-section {
    background: var(--background);
    padding: 120px 24px;
    position: relative;
}

.team-container {
    max-width: 1392px;
    margin: 0 auto;
}

.team-header {
    margin-bottom: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 24px;
}

.team-title .highlight {
    color: var(--accent-color);
}

/* Corner squares */
.team-corner-square {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    opacity: 0.65;
    z-index: 1;
}

.team-corner-square.top-left { top: 40px; left: 40px; }
.team-corner-square.top-right { top: 40px; right: 40px; }
.team-corner-square.bottom-left { bottom: 40px; left: 40px; }
.team-corner-square.bottom-right { bottom: 40px; right: 40px; }

/* Team Layout */
.team-layout {
    position: relative;
    max-width: 1180px;
    height: 620px;
    margin: 0 auto 60px;
}

.team-slot {
    position: absolute;
    width: 207px;
    height: 207px;
    border-radius: 8px;
    overflow: hidden;
}

.team-slot-empty {
    background: transparent;
    border: 1px dashed #B0B0B0;
    border-radius: 4px;
}

.team-slot-photo {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    z-index: 2;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    border-radius: 2px;
}

.team-slot-photo:hover .team-photo {
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.team-slot-photo:hover .team-overlay {
    opacity: 1;
}

.team-x-link {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border-radius: 4px;
    color: var(--primary-color);
    transition: var(--transition);
    opacity: 0;
}

.team-slot-photo:hover .team-x-link {
    opacity: 1;
}

.team-x-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
}

.team-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent-color);
    text-transform: uppercase;
}

.team-slot-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    width: 224px;
    height: 224px;
    z-index: 1;
    overflow: visible;
}

.team-center-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-role-mobile,
.team-name-row {
    display: none;
}

/* Team slot positions */
.slot-1 { left: 0; top: 80px; }
.slot-2 { left: 230px; top: 0; }
.slot-4 { right: 230px; top: 0; }
.slot-5 { right: 0; top: 80px; }
.slot-center { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.slot-6 { left: 0; bottom: 0; }
.slot-7 { left: 230px; bottom: 80px; }
.slot-9 { right: 230px; bottom: 80px; }
.slot-10 { right: 0; bottom: 0; }

/* Team Description */
.team-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.team-description p {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.8px;
}

.team-description .text-dark {
    color: var(--text-primary);
}

.team-description .text-muted {
    color: var(--text-secondary);
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    background: var(--background);
    padding: 120px 24px;
    border-top: 1px dashed var(--border-color);
}

.faq-container {
    max-width: 1392px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.faq-left {
    padding-right: 40px;
}

.faq-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: 2.24px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.faq-description {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    opacity: 0.8;
}

.question-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 3.6px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-color);
    letter-spacing: -0.28px;
    flex-shrink: 0;
}

.faq-item.active .question-number {
    background: var(--accent-color);
}

.question-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    flex: 1;
}

.question-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 19px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-bracket-icon {
    width: 24px;
    height: 19px;
    filter: brightness(0);
    transition: filter 0.3s ease;
}

.faq-item.active .faq-bracket-icon {
    filter: brightness(0) saturate(100%) invert(53%) sepia(98%) saturate(1653%) hue-rotate(176deg) brightness(101%) contrast(101%);
}

.faq-item.active .question-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-primary);
}

.faq-inline-link {
    color: var(--text-primary);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.faq-inline-arrow {
    width: 12px;
    height: 12px;
    filter: brightness(0);
}

/* ================================
   JOIN TODAY SECTION
   ================================ */
.join-today-section {
    background: var(--background-alt);
    padding: 60px 24px 120px;
}

.join-today-container {
    max-width: 1392px;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 650px;
}

.join-today-bg {
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    pointer-events: none;
}

.join-glitch-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1392px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.join-lights {
    position: absolute;
    inset: 0;
}

.light-join-1 { left: 222px; top: 127px; height: 110px; }
.light-join-2 { left: 80px; top: 257px; height: 110px; }
.light-join-3 { right: 117px; left: auto; top: 357px; height: 110px; }
.light-join-4 { right: 278px; left: auto; top: 137px; height: 170px; }

.join-today-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 80px 45px 45px;
}

.join-dots {
    position: absolute;
    height: 150px;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
}

.join-dots-left { left: 40px; }
.join-dots-right { right: 40px; }

.join-today-icon {
    margin-top: 24px;
    margin-bottom: 24px;
}

.join-today-icon img {
    width: 72px;
    height: 72px;
    filter: brightness(0) invert(1);
}

.join-today-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.join-today-description {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--secondary-color);
    margin-bottom: 32px;
    max-width: 364px;
}

.join-today-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-discord-large {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    background: #000;
    transition: var(--transition);
}

.btn-discord-large:hover {
    background: rgba(0, 0, 0, 0.8);
}

.btn-discord-large img {
    filter: invert(1);
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--background);
    border-top: 1px dashed var(--border-color);
    padding: 80px 88px 40px;
    position: relative;
}

.footer-container {
    max-width: 1392px;
    margin: 0 auto;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr auto;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-columns-wrapper {
    display: flex;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    height: auto;
    width: clamp(140px, 12vw, 220px);
}

.footer-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-dots {
    position: absolute;
    left: -88px;
    top: 50%;
    width: 300px;
    height: auto;
    transform: translateY(-50%) rotate(90deg);
}

.footer-dots-mobile {
    display: none;
}

.footer-column h4 {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-slash {
    color: var(--text-muted);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-branch {
    color: var(--text-primary);
    font-family: var(--font-mono);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-back-top {
    display: flex;
    align-items: flex-start;
}

.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--accent-color);
}

.back-top-arrow {
    font-size: 16px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal a {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-separator {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 12px;
}

/* ================================
   RESPONSIVE - 1280px (Large screens)
   ================================ */
@media (max-width: 1280px) {
    .header {
        padding: 24px 40px;
    }

    .hero-content {
        padding: 100px 100px;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .text-fill-wrapper {
        padding: 100px 100px;
    }

    .text-fill-content {
        font-size: 32px;
    }

}

/* ================================
   RESPONSIVE - 1024px (Medium screens)
   ================================ */
@media (max-width: 1024px) {
    /* Nav menu hide (merged from 1100px) */
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header {
        padding: 20px 24px;
    }

    .hero-section {
        min-height: auto;
        padding: 20px;
    }

    .hero-wrapper {
        height: auto;
        min-height: 600px;
        margin-top: 80px;
    }

    .hero-content {
        padding: 80px 40px;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    .hero-subtitle {
        margin-bottom: 40px;
    }

    .dots-pattern {
        width: 400px;
        height: 250px;
    }

    .text-fill-wrapper {
        padding: 80px 40px;
    }

    .text-fill-content {
        font-size: 28px;
        max-width: 100%;
    }

    .services-section {
        padding: 80px 24px 0;
    }

    .services-title {
        font-size: 42px;
    }

    .pricing-card {
        padding: 64px 40px 48px;
    }

    .pricing-title {
        font-size: 38px;
        margin-bottom: 80px;
    }
}

/* ================================
   RESPONSIVE - 768px (Tablet screens)
   ================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-buttons .btn-secondary span {
        display: none;
    }

    .btn-secondary {
        width: 36px;
        padding: 0;
    }

    .hero-wrapper {
        margin-top: 70px;
        min-height: 500px;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
        max-width: 300px;
        margin-bottom: 32px;
    }

    .st-badge {
        margin-bottom: 24px;
    }

    .badge-text {
        font-size: 10px;
        padding: 8px;
    }

    .badge-arrow {
        width: 24px;
        height: 24px;
    }

    .btn-cta {
        height: 48px;
        font-size: 14px;
        padding: 10px 14px;
        gap: 12px;
    }

    .dots-pattern,
    .falling-lights {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .text-fill-section {
        padding: 60px 24px;
    }

    .text-fill-content {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .services-title {
        font-size: 36px;
    }

    .service-card {
        flex: 0 0 290px;
        width: 290px;
    }

    .pricing-section {
        padding: 40px 16px;
    }

    .pricing-card {
        padding: 48px 32px 40px;
    }

    .pricing-title {
        font-size: 32px;
        margin-bottom: 60px;
    }

    .pricing-bg-decoration {
        display: none;
    }

    .team-section {
        padding: 80px 24px;
    }

    .team-title {
        font-size: 42px;
    }

    .team-layout {
        height: 500px;
        max-width: 100%;
    }

    .team-slot {
        width: 161px;
        height: 161px;
    }

    .team-slot-center {
        width: 180px;
        height: 180px;
    }

    .slot-2, .slot-7 {
        left: 160px;
    }

    .slot-4, .slot-9 {
        right: 160px;
    }

    .slot-1, .slot-5 {
        top: 60px;
    }

    .slot-7, .slot-9 {
        bottom: 60px;
    }

    .team-corner-square {
        width: 5px;
        height: 5px;
    }

    .team-corner-square.top-left,
    .team-corner-square.top-right {
        top: 24px;
    }

    .team-corner-square.bottom-left,
    .team-corner-square.bottom-right {
        bottom: 24px;
    }

    .team-corner-square.top-left,
    .team-corner-square.bottom-left {
        left: 24px;
    }

    .team-corner-square.top-right,
    .team-corner-square.bottom-right {
        right: 24px;
    }

    .team-description p {
        font-size: 16px;
    }

    .faq-section {
        padding: 80px 24px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-left {
        padding-right: 0;
    }

    .faq-title {
        font-size: 42px;
    }

    .question-text {
        font-size: 16px;
    }

    /* Team Mobile Illumination for 768px */
    .team-photo {
        filter: grayscale(100%);
        transition: filter 0.5s ease;
    }

    .team-slot-photo.illuminated .team-photo {
        filter: grayscale(0%);
    }

    .team-slot-photo > .team-x-link {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-slot-photo.illuminated > .team-x-link {
        opacity: 1;
    }
}

/* ================================
   RESPONSIVE - 480px (Mobile screens)
   ================================ */
@media (max-width: 480px) {
    /* Header Mobile */
    .header {
        padding: 16px;
    }

    .header-container {
        gap: 8px;
    }

    .logo img {
        width: 137px;
        height: 24px;
    }

    .nav-menu {
        display: none;
    }

    .header-buttons .btn-secondary,
    .header-buttons .btn-primary {
        display: none;
    }

    .header-buttons .btn-discord {
        width: 32px;
        height: 32px;
    }

    .header-buttons .btn-discord img {
        width: 32px;
        height: 32px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Mobile */
    .hero-section {
        min-height: auto;
        padding: 16px;
    }

    .hero-wrapper {
        height: auto;
        min-height: 650px;
        margin-top: 56px;
        border-radius: 6px;
        overflow: hidden;
    }

    .hero-content {
        padding: 80px 16px 48px;
    }

    .st-badge {
        margin-bottom: 24px;
        display: inline-flex;
        align-items: stretch;
        gap: 7px;
    }

    .badge-text {
        font-size: 12px;
        padding: 0 10px;
        display: inline-flex;
        align-items: center;
        height: 31px;
        box-sizing: border-box;
    }

    .badge-arrow {
        width: 31px;
        height: 31px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .dots-pattern {
        display: block;
    }

    .dots-left {
        width: 300px;
        height: 180px;
        bottom: -20px;
        left: -150px;
    }

    .dots-right {
        width: 300px;
        height: 180px;
        top: -60px;
        right: -150px;
    }

    /* Falling lights animation in hero mobile */
    .falling-lights {
        display: block;
    }

    .light {
        height: 80px;
    }

    .light-1 {
        left: 20px;
        top: -80px;
        height: 80px;
    }

    .light-2 {
        left: auto;
        right: 60px;
        top: -80px;
        height: 80px;
    }

    .light-3 {
        left: 80px;
        right: auto;
        top: -100px;
        height: 100px;
    }

    .light-4 {
        right: 20px;
        left: auto;
        top: -80px;
        height: 80px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 32px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 300px;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .btn-cta {
        width: auto;
        max-width: none;
        height: 48px;
        font-size: 12px;
        padding: 12px 16px;
        gap: 10px;
        white-space: nowrap;
    }

    /* Text Fill Mobile */
    .text-fill-section {
        padding: 48px 16px;
    }

    .text-fill-wrapper {
        padding: 0;
    }

    .text-fill-container {
        padding: 24px 16px;
    }

    .bracket-icon-center {
        margin-bottom: 24px;
    }

    .bracket-icon-center img {
        width: 20px;
        height: 16px;
    }

    .text-fill-content {
        font-size: 18px;
        letter-spacing: -0.5px;
        line-height: 1.4;
        max-width: 100%;
    }

    /* Services Mobile */
    .services-section {
        padding: 48px 16px 0;
    }

    .services-header {
        padding-right: 0;
        margin-bottom: 24px;
    }

    .services-header .st-badge {
        margin-bottom: 16px;
    }

    .services-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .services-cards-wrapper {
        overflow-x: visible;
        overflow-y: visible;
    }

    .services-cards {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .services-dashed-rect {
        display: none;
    }

    .service-card {
        flex: 1 1 auto;
        width: 100%;
        height: auto;
        min-height: 380px;
        padding: 24px;
    }

    .service-card:last-child {
        flex: 1 1 auto;
        width: 100%;
    }

    .service-card .card-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .service-card .card-description {
        font-size: 13px;
        max-width: 100%;
    }

    .service-card .card-visual {
        height: 160px;
    }

    .service-card-full {
        min-height: auto;
        padding: 0;
        background: transparent;
        border: none;
    }

    .service-card-full:hover {
        transform: none;
        box-shadow: none;
    }

    .service-card-svg {
        width: 100%;
        height: auto;
    }

    /* Services Nav Bar Mobile */
    .services-nav-bar {
        margin-top: 12px;
    }

    .services-nav-content {
        padding: 16px;
        flex-direction: row;
        justify-content: center;
    }

    .services-nav-left .btn-secondary {
        display: flex;
        width: auto;
        height: 36px;
        padding: 0 12px;
    }

    .services-nav-left .btn-secondary span {
        display: inline;
    }

    .services-nav-left .btn-secondary .btn-arrow {
        filter: none;
    }

    .services-nav-left .btn-discord {
        width: 36px;
        height: 36px;
    }

    .services-nav-right {
        display: none;
    }

    /* Pricing Mobile */
    .pricing-section {
        padding: 32px 16px;
    }

    .pricing-card {
        padding: 32px 16px;
        border-radius: 8px;
    }

    .pricing-title {
        font-size: 28px;
        letter-spacing: 1px;
        margin-bottom: 32px;
        max-width: 100%;
    }

    .pricing-table {
        display: flex;
        flex-direction: column;
    }

    .pricing-table-header {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .pricing-col-features,
    .pricing-col-coaching {
        display: none;
    }

    .pricing-col-pro {
        background: transparent;
        border: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-badge {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: inline-block;
        margin-bottom: 24px;
        font-size: 11px;
        padding: 6px 12px;
        order: 1;
    }

    .plan-name {
        font-size: 20px;
        margin-bottom: 24px;
        font-weight: 500;
        order: 2;
    }

    .plan-price {
        margin-bottom: 8px;
        order: 3;
    }

    .plan-price .price {
        font-size: 28px;
    }

    .plan-price .period {
        font-size: 16px;
    }

    .plan-description {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
        order: 4;
    }

    .pricing-table-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
        border: none;
        border-top: none;
        margin-top: 32px;
    }

    .pricing-row {
        display: flex;
        align-items: center;
        gap: 0;
        padding: 0;
        border: none;
    }

    .pricing-row .pro-check,
    .pricing-row .coaching-check {
        display: none;
    }

    .pricing-row .feature-name {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: -0.28px;
        color: var(--secondary-color);
        padding: 0;
        white-space: nowrap;
    }

    .pricing-row .feature-name br {
        display: none;
    }

    .pricing-row .feature-name::before {
        content: "[•]";
        color: var(--accent-color);
        font-family: var(--font-mono);
        font-size: 14px;
        flex-shrink: 0;
    }

    .pricing-row-muted .feature-name::before {
        color: #6b6b6b;
    }

    .pricing-row-muted .feature-name {
        color: #6b6b6b;
    }

    .pricing-cta {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }

    .pricing-cta-col {
        padding: 0;
    }

    .pricing-cta-col-pro {
        background: transparent;
        border: none;
    }

    .pricing-cta-col-coaching {
        border: none;
    }

    .pricing-cta .btn-pricing-secondary {
        display: none;
    }

    .pricing-cta .btn-pricing-primary {
        width: 100%;
        height: 52px;
        justify-content: center;
        font-size: 14px;
        border-radius: 6px;
    }

    /* Mobile Coaching Section */
    .pricing-coaching-mobile {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--border-color);
    }

    .pricing-coaching-mobile .plan-name {
        font-size: 20px;
        margin-bottom: 24px;
        font-weight: 500;
        color: var(--accent-color);
        order: 1;
    }

    .pricing-coaching-mobile .plan-price {
        margin-bottom: 8px;
        order: 2;
    }

    .pricing-coaching-mobile .plan-price .price {
        font-size: 28px;
    }

    .pricing-coaching-mobile .plan-price .period {
        font-size: 16px;
    }

    .pricing-coaching-mobile .plan-description {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 24px;
        order: 3;
    }

    .coaching-features-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
        order: 4;
    }

    .coaching-feature {
        font-family: var(--font-mono);
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
        letter-spacing: -0.28px;
        color: var(--secondary-color);
    }

    .coaching-feature .bullet {
        color: var(--accent-color);
    }

    .btn-pricing-coaching-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 52px;
        background: transparent;
        color: var(--secondary-color);
        font-family: var(--font-mono);
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        border: 1px solid var(--accent-color);
        text-decoration: none;
        transition: var(--transition);
        order: 5;
    }

    .btn-pricing-coaching-mobile .bracket {
        color: var(--accent-color);
    }

    .btn-pricing-coaching-mobile:hover {
        opacity: 0.9;
    }

    .pricing-contact {
        margin-top: 32px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .contact-label {
        display: block;
        font-family: var(--font-mono);
        font-size: 10px;
        color: var(--secondary-color);
        text-align: center;
    }

    .contact-btn-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .contact-badge {
        font-size: 10px;
        padding: 8px;
        text-align: center;
    }

    .pricing-contact .badge-arrow.dark {
        height: auto;
        padding: 10px 12px;
        box-sizing: border-box;
    }

    .contact-text-desktop {
        display: none;
    }

    /* Team Mobile */
    .team-section {
        padding: 48px 16px;
    }

    .team-header {
        margin-bottom: 32px;
    }

    .team-header .st-badge {
        margin-bottom: 16px;
    }

    .team-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .team-corner-square {
        display: none;
    }

    .team-layout {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        height: auto;
        max-width: 100%;
    }

    .team-slot {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
    }

    .team-slot-empty {
        display: none;
    }

    .slot-2 { order: 1; }
    .slot-4 { order: 2; }
    .slot-9 { order: 3; }
    .slot-6 { order: 4; }
    .slot-7 { order: 5; }
    .slot-10 { order: 6; }
    .slot-center { order: 7; }

    .team-slot-photo {
        border-radius: 6px;
        height: auto;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        position: relative;
        background: transparent;
        border: none;
    }

    .team-photo {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 6px;
        /* illumination styles inherited from 768px */
    }

    .team-slot-photo > .team-x-link {
        position: absolute;
        top: 12px;
        left: 12px;
        z-index: 2;
        width: 28px;
        height: 28px;
        /* opacity/transition inherited from 768px */
    }

    .team-overlay {
        display: none;
    }

    .team-role-mobile {
        display: block;
        font-family: var(--font-mono);
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 12px;
        margin-bottom: 4px;
    }

    .team-name-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .team-name-mobile {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 500;
        color: var(--text-primary);
    }

    .team-arrow {
        width: 10px;
        height: 10px;
        opacity: 0.5;
    }

    .team-slot-center {
        display: none;
    }

    .team-description {
        margin-top: 32px;
    }

    .team-description p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 48px 16px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-left {
        padding-right: 0;
        text-align: left;
    }

    .faq-left .st-badge {
        justify-content: flex-start;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .faq-description {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .faq-left .btn-cta {
        display: none;
    }

    .faq-item {
        border-radius: 6px;
    }

    .faq-question {
        padding: 14px 12px;
        gap: 12px;
    }

    .question-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .question-text {
        font-size: 13px;
    }

    .question-toggle {
        width: 18px;
        height: 14px;
    }

    .faq-bracket-icon {
        width: 18px;
        height: 14px;
    }

    .faq-item.active .faq-answer {
        padding: 0 12px 16px;
    }

    .faq-answer p {
        font-size: 12px;
        padding-left: 40px;
    }

    /* Join Today Mobile */
    .join-today-section {
        padding: 32px 16px 48px;
    }

    .join-today-container {
        height: auto;
        min-height: 380px;
        border-radius: 8px;
    }

    .join-glitch-svg {
        width: 300%;
        left: 50%;
        transform: translateX(-50%);
    }

    .join-dots {
        display: none;
    }

    .join-today-content {
        padding: 32px 16px;
    }

    .join-today-icon {
        margin: 50px 0;
    }

    .join-today-icon img {
        width: 54px;
        height: 54px;
    }

    .join-today-title {
        font-size: 32px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .join-today-description {
        font-size: 14px;
        font-weight: 300;
        margin-bottom: 60px;
        max-width: 300px;
    }

    .join-today-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        margin-bottom: 40px;
    }

    .join-today-buttons .btn-cta {
        width: 100%;
        max-width: 100%;
    }

    .btn-discord-large {
        display: none;
    }

    /* Join Today Falling Lights Mobile */
    .join-lights {
        display: block;
        z-index: 2;
    }

    .light-join-1 {
        left: 20px;
        top: -80px;
        height: 80px;
    }

    .light-join-2 {
        left: auto;
        right: 60px;
        top: -80px;
        height: 80px;
    }

    .light-join-3 {
        left: 80px;
        right: auto;
        top: -100px;
        height: 100px;
    }

    .light-join-4 {
        right: 20px;
        left: auto;
        top: -80px;
        height: 80px;
    }

    /* Footer Mobile */
    .footer {
        padding: 48px 16px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-buttons {
        justify-content: center;
    }

    .footer-buttons .btn-secondary {
        width: auto;
        padding: 0 12px;
    }

    .footer-buttons .btn-secondary span {
        display: inline;
    }

    .footer-dots {
        display: none;
    }

    .footer-columns-wrapper {
        display: flex;
        gap: 24px;
        justify-content: center;
    }

    .footer-column {
        text-align: left;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 16px;
        justify-content: flex-start;
    }

    .footer-column ul li a {
        font-size: 13px;
        justify-content: flex-start;
    }

    .footer-back-top {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 10px;
        order: 2;
    }

    .footer-legal {
        flex-direction: column;
        gap: 12px;
        order: 1;
    }

    .footer-legal a {
        font-size: 10px;
    }

    .footer-separator {
        display: none;
    }

    .footer-dots-mobile {
        display: block;
        position: absolute;
        bottom: 40px;
        right: 16px;
        width: 120px;
        height: auto;
        transform: rotate(90deg);
        transform-origin: right bottom;
    }
}
