
:root {
    color-scheme: dark;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    background: #05050a;
    color: #f4f4f9;
    accent-color: #ff8c00;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    min-height: 100%;
}

body {
    background: radial-gradient(circle at top left, rgba(255, 138, 0, 0.18), transparent 30%),
                radial-gradient(circle at bottom right, rgba(0, 200, 255, 0.12), transparent 25%),
                #05050a;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #ffd65a;
    color: #05050a;
    padding: 0.65rem 0.9rem;
    border-radius: 0.4rem;
    font-weight: 700;
    z-index: 1000;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.site-shell {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.site-header {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.brand-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 1rem;
}

.brand-logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #ffd65a;
}

.brand-logo span {
    color: #00d8ff;
}

.brand-tag {
    color: #cbd5ff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.site-nav {
    margin-top: 1rem;
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
}

.site-nav-main {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.site-nav a,
.site-nav-more > summary {
    color: #f7f7ff;
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-size: 0.86rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.site-nav a {
    text-decoration: none;
}

.site-nav-more {
    position: relative;
}

.site-nav-more > summary {
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.site-nav-more > summary::-webkit-details-marker {
    display: none;
}

.site-nav-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    display: grid;
    gap: 0.35rem;
    min-width: 200px;
    background: rgba(9, 10, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.85rem;
    padding: 0.55rem;
    z-index: 15;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.site-nav-more:not([open]) .site-nav-panel {
    display: none;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav-more > summary:hover,
.site-nav-more.active > summary,
.site-nav-more[open] > summary {
    transform: translateY(-1px);
    background: rgba(255, 138, 0, 0.12);
    border-color: rgba(255, 138, 0, 0.4);
}

.site-nav a.linkedin-cta {
    background: rgba(0, 216, 255, 0.14);
    border-color: rgba(0, 216, 255, 0.42);
    color: #b6f0ff;
    font-weight: 700;
}

.site-nav a.linkedin-cta:hover,
.site-nav a.linkedin-cta.active {
    background: rgba(0, 216, 255, 0.22);
    border-color: rgba(0, 216, 255, 0.6);
}

/* ==========================================
   NEW GLOBAL BANNER (BELOW NAV)
   ========================================== */
.global-sale-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    background: linear-gradient(90deg, rgba(255, 140, 0, 0.15), rgba(255, 59, 59, 0.15));
    border: 1px solid rgba(255, 140, 0, 0.3);
    padding: 0.75rem 1.2rem;
    border-radius: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.banner-badge {
    background: #ff3b3b;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.banner-text {
    color: #f4f4f9;
    flex-grow: 1;
}

.banner-text strong {
    color: #ffd65a;
}

.banner-link {
    color: #00d8ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 150ms ease;
}

.banner-link:hover {
    color: #ffd65a;
    text-decoration: underline;
}

/* ==========================================
   HERO & PAGE STRUCTURE
   ========================================== */
.hero-section,
.page-section {
    margin-bottom: 2rem;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1,
.page-section h1,
.page-section h2,
.features-section h2,
.testimonial-section h2 {
    margin-top: 0;
    letter-spacing: 0.05em;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.03;
    margin-bottom: 1rem;
}

.hero-copy p {
    max-width: 42rem;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 999px;
    padding: 0.95rem 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c00, #ffbf00);
    color: #05050a;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.linkedin-kit .kit-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.kit-logo,
.kit-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.kit-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.kit-copy {
    width: 100%;
    margin-top: 0.6rem;
    padding: 1rem;
    border-radius: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(4, 10, 18, 0.9);
    color: #f7f8ff;
    font: inherit;
    line-height: 1.6;
    resize: vertical;
}

.kit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.kit-alternates {
    display: grid;
    gap: 0.85rem;
}

.kit-alt-item {
    padding: 0.95rem 1rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.kit-alt-item p {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .linkedin-kit .kit-hero,
    .kit-grid {
        grid-template-columns: 1fr;
    }
}

.hero-panel {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.hero-portrait {
    width: min(100%, 320px);
    max-width: 320px;
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    object-fit: cover;
}

.sketch-box {
    border: 1px dashed rgba(255, 255, 255, 0.18);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}

.sketch-title {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: #79d7ff;
    margin-bottom: 1rem;
}

.price-tag {
    margin-top: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd65a;
}

.features-section,
.testimonial-section,
.products-section,
.contact-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
}

.features-section h2,
.testimonial-section h2,
.products-section h1,
.contact-section h1 {
    margin-bottom: 1rem;
}

.feature-grid,
.product-grid {
    display: grid;
    gap: 1.25rem;
}

.feature-grid article,
.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.feature-grid article h3,
.product-card h2 {
    margin-top: 0;
}

.product-card {
    position: relative;
}

.pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 138, 0, 0.2);
    color: #ffd65a;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
}

.tone-pill {
    display: inline-block;
    background: rgba(0, 216, 255, 0.12);
    color: #8befff;
    border: 1px solid rgba(0, 216, 255, 0.32);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.22rem 0.55rem;
    border-radius: 999px;
    margin: 0.2rem 0 0.6rem;
}

.tone-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.8rem 0 1rem;
}

.tone-filter {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #d9e8ff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

.tone-filter.active,
.tone-filter:hover {
    border-color: rgba(0, 216, 255, 0.45);
    color: #8befff;
    background: rgba(0, 216, 255, 0.1);
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #00d8ff;
}

.offer-box,
.callout-panel,
.notification {
    margin-top: 1.5rem;
    padding: 1.4rem;
    border-left: 4px solid #ff8c00;
    background: rgba(255, 138, 0, 0.08);
    border-radius: 1rem;
}

.callout-panel h3,
.notification h2 {
    margin-top: 0;
}

.testimonial-section blockquote {
    border-left: 4px solid rgba(255, 255, 255, 0.16);
    padding-left: 1.2rem;
    color: #d8d8ff;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-section cite {
    display: block;
    margin-top: 1rem;
    color: #a9b3ff;
}

.about-columns {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.about-columns ul {
    padding-left: 1.2rem;
}

.about-columns li {
    margin-bottom: 0.8rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.5rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: #f8f8ff;
    border-radius: 0.9rem;
    padding: 0.95rem 1rem;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid rgba(255, 138, 0, 0.55);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-side-note {
    margin-top: 1.5rem;
    padding: 1.3rem;
    background: rgba(0, 216, 255, 0.08);
    border: 1px solid rgba(0, 216, 255, 0.12);
    border-radius: 1rem;
}

.notification.success {
    border-color: #00d8ff;
    background: rgba(0, 216, 255, 0.08);
}

.notification.form-error {
    border-color: #ff6b6b;
    background: rgba(255, 80, 80, 0.12);
}

.notification.form-error ul {
    margin: 0;
    padding-left: 1.2rem;
}

#testimonial-container {
    min-height: 120px;
    display: flex;
    align-items: center;
}

.testimonial-rotator blockquote {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.staff-section {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
}

.staff-list {
    display: grid;
    gap: 3rem;
    margin: 2rem 0;
}

.staff-member {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 2rem;
}

.staff-member.right {
    direction: rtl;
}

.staff-member.right > * {
    direction: ltr;
}

.staff-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 1rem;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-profile h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    color: #ffd65a;
}

/* Deals page styles */
.deals-section {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
    border-radius: 1rem;
}

.deal-card {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.deal-badge {
    font-weight: 900;
    color: #05050a;
    background: linear-gradient(135deg,#ffd65a,#ff8c00);
    padding: 0.6rem 0.9rem;
    border-radius: 0.9rem;
    box-shadow: 0 8px 24px rgba(255,140,0,0.12);
}

.deal-mascot {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem 0 2rem 0;
}

.mini-deal {
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.04);
    padding: 0.8rem;
    border-radius: 0.8rem;
}

.mini-deal .pct {
    margin-top: 0.5rem;
    font-weight: 800;
    color: #ffd65a;
}

.mini-blurb {
    margin-top: 0.5rem;
    color: #cbd5ff;
    font-size: 0.95rem;
}

.autogen-section h3 {
    margin-bottom: 0.5rem;
}

.testimonial {
    display: block;
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(0,216,255,0.04);
    border-left: 4px solid rgba(0,216,255,0.14);
    border-radius: 0.6rem;
    color: #eaf6ff;
}

.testimonial-archive {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
    border-radius: 1.2rem;
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.testimonial-header h1 {
    margin: 0;
}

.testimonial-controls {
    display: flex;
    gap: 0.75rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 1.2rem 0 1rem;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 0.95rem;
    align-items: start;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.testimonial-card .avatar-wrap {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonial-card .avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-card .body {
    min-width: 0;
}

.testimonial-card .meta {
    display: grid;
    gap: 0.35rem;
}

.testimonial-card .who {
    color: #f9fbff;
    line-height: 1.35;
}

.testimonial-card .role {
    color: #7ce7ff;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.testimonial-card .stars {
    letter-spacing: 0.12em;
    font-size: 0.92rem;
}

.testimonial-card .star {
    color: #54638f;
}

.testimonial-card .star.filled {
    color: #ffd65a;
}

.testimonial-card .quote {
    margin: 0.8rem 0 0.7rem;
    color: #dce8ff;
    line-height: 1.75;
}

.testimonial-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.testimonial-card .tag {
    display: inline-flex;
    align-items: center;
    padding: 0.26rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(124, 231, 255, 0.28);
    background: rgba(124, 231, 255, 0.08);
    color: #bfefff;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
}

.small-note {
    font-size: 0.9rem;
    color: #9fbfff;
}

.staff-profile .title {
    color: #00d8ff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin: 0 0 1rem 0;
}

.staff-profile .bio {
    color: #d8d8d8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.site-footer {
    text-align: center;
    padding-top: 2rem;
    color: #9096aa;
    font-size: 0.95rem;
}

.visitor-tally {
    color: #bcd8ff;
    font-weight: 600;
}

.disclaimer {
    margin-top: 0.45rem;
    color: #777f9d;
}

.footer-social-link {
    margin: 0.45rem 0 0.2rem;
}

.footer-social-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    color: #7ce7ff;
    border: 1px solid rgba(0, 216, 255, 0.45);
    background: rgba(0, 216, 255, 0.1);
}

.footer-social-link a:hover {
    color: #ffd65a;
    border-color: rgba(255, 214, 90, 0.55);
    background: rgba(255, 214, 90, 0.14);
}

.footer-social-icon {
    width: 1.05rem;
    height: 1.05rem;
}

.satirical-page {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.5rem;
}

.sat-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sat-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.sat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem 1.1rem;
}

.sat-card h2 {
    margin-top: 0;
}

.sat-card.spotlight {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.error-page {
    text-align: center;
}

.error-lede {
    font-size: 1.08rem;
    color: #cbd5ff;
    max-width: 720px;
    margin: 0 auto 1rem;
}

.error-nav-grid {
    margin-top: 1rem;
}

.error-poster {
    margin: 1rem auto 0;
    max-width: 700px;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1rem 1.2rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
}

.error-poster h2 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-poster pre {
    margin: 0;
    white-space: pre-wrap;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
    line-height: 1.55;
    color: #dce8ff;
}

.error-poster.variant-a {
    border-color: rgba(255, 214, 90, 0.28);
    background: rgba(255, 214, 90, 0.08);
}

.error-poster.variant-b {
    border-color: rgba(0, 216, 255, 0.26);
    background: rgba(0, 216, 255, 0.09);
}

.error-poster.variant-c {
    border-color: rgba(255, 138, 0, 0.28);
    background: rgba(255, 138, 0, 0.08);
}

.fake-login-card {
    margin-bottom: 1rem;
}

.fake-login-card input[disabled],
.fake-login-card button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.timeline-list li {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 0.8rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0.8rem;
    padding: 0.8rem 1rem;
}

.timeline-time {
    font-weight: 800;
    color: #ffd65a;
}

.guide-list {
    display: grid;
    gap: 0.7rem;
    padding-left: 1.1rem;
}

.guide-list li {
    line-height: 1.5;
}

.status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.8rem 0 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.24rem 0.62rem;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffd65a;
    background: rgba(255, 214, 90, 0.08);
}

.status-pill.alt {
    color: #7ce7ff;
    background: rgba(0, 216, 255, 0.08);
    border-color: rgba(0, 216, 255, 0.22);
}

.chart-card {
    margin-top: 1.2rem;
}

.chart-title {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9fe9ff;
}

.chart-note {
    margin-top: 0.55rem;
    font-size: 0.8rem;
    color: #9fbfff;
    opacity: 0.92;
}

.fake-bars {
    display: grid;
    gap: 0.52rem;
}

.fake-bar-row {
    display: grid;
    grid-template-columns: minmax(100px, 180px) 1fr auto;
    gap: 0.55rem;
    align-items: center;
}

.fake-bar-label {
    font-size: 0.83rem;
    color: #d6ddff;
}

.fake-bar-track {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.fake-bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #00d8ff, #ffd65a);
}

.fake-bar-val {
    font-size: 0.77rem;
    color: #ffd65a;
}

.gauge-wrap {
    margin-top: 0.7rem;
}

.gauge-track {
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 59, 59, 0.35), rgba(255, 214, 90, 0.35), rgba(0, 216, 255, 0.35));
    position: relative;
}

.gauge-pointer {
    position: absolute;
    top: -4px;
    width: 2px;
    height: 22px;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.28);
}

.gauge-labels {
    margin-top: 0.35rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #b7c2e8;
}

@media (max-width: 960px) {
    .hero-section {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        justify-content: center;
    }

    .hero-portrait {
        width: min(100%, 280px);
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .staff-member,
    .staff-member.right {
        grid-template-columns: 1fr;
        direction: ltr;
        padding: 1.5rem;
    }

    .staff-member.right > * {
        direction: ltr;
    }

    .staff-image {
        height: 280px;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-controls {
        width: 100%;
    }

    .testimonial-controls .btn {
        width: 100%;
    }

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

    .testimonial-card .avatar-wrap {
        width: 58px;
        height: 58px;
    }
    
    .global-sale-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 620px) {
    .site-shell {
        padding: 0.9rem;
    }

    .site-nav {
        width: 100%;
        display: block;
    }

    .site-nav a,
    .site-nav-more > summary {
        padding: 0.5rem 0.62rem;
        font-size: 0.82rem;
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    .site-nav-main {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.42rem;
        width: 100%;
        flex: 1 1 auto;
    }

    .site-nav-panel {
        right: auto;
        left: 0;
        min-width: min(260px, calc(100vw - 2rem));
    }

    .brand-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-tag {
        font-size: 0.82rem;
        letter-spacing: 0.12em;
    }

    .hero-section,
    .page-section,
    .features-section,
    .testimonial-section,
    .satirical-page,
    .staff-section,
    .deals-section,
    .testimonial-archive {
        padding: 1.15rem;
        border-radius: 1rem;
    }

    .hero-actions {
        width: 100%;
        gap: 0.6rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

    .testimonial-card .quote {
        line-height: 1.65;
    }

    .timeline-list li {
        grid-template-columns: 1fr;
    }

    .fake-bar-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }
}