/*
Theme Name: Pushi
Author: Pushi
Version: 1.1
*/

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
    background: #000;
    color: #fff;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at 20% 10%,
        rgba(255,214,10,0.08),
        transparent 40%
    ),
    radial-gradient(
        circle at 80% 20%,
        rgba(255,0,150,0.06),
        transparent 40%
    );
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

/* Header container override */

.site-header .container {
    padding: 16px 20px;
}

/* Hero */

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: auto;
    padding: 40px 0 40px 0;
    gap: 40px;
    position: relative;
}

.hero-text {
    max-width: 520px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 28px;
}

.hero-image img {
    max-width: 320px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    border-radius: 28px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* Button */

.app-store {
    display: inline-block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.app-store img {
    height: 52px;
    width: auto;
}

.app-store:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.download-button {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}

/* Features */

.features {
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
    gap: 40px;
}

.feature {
    max-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature p {
    color: #999;
}

/* Footer */

footer {
    text-align: center;
    padding: 80px 0;
    color: #666;
}

.site-header {
    padding: 24px 0;
}

.site-header h2 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 16px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    max-width: 40px;
    width: auto;
    height: auto;
    display: block;
    border-radius: 10px;
}

.header-actions {
    display: flex;
    align-items: center;
}

.download-button {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.download-button:hover {
    opacity: 0.8;
}


/* Apple-style spacing improvements */

.hero {
    padding-top: 20px;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        max-width: 260px;
    }

    .features {
        flex-direction: column;
        gap: 60px;
        text-align: center;
    }
}

.hero-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    width: 100%;
}

.hero-text {
    max-width: 560px;
    margin-top: -40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 340px;
}

/* Apple-style spacing */

.hero {
    padding: 60px 0 60px 0;
}

/* Hero glow background */

.hero::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 15%;
    width: 520px;
    height: 520px;
    background: radial-gradient(
        circle,
        rgba(255,214,10,0.14),
        transparent 70%
    );
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

/* Subtle Animations */

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Staggered Animation */

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.6s; }

/* Floating animation for screenshot */

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* App Store badge glow */

.app-store {
    position: relative;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.app-store:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 18px rgba(255, 214, 10, 0.35));
}

.app-store img {
    display: block;
}

/* Soft glow behind screenshot */

.hero-image {
    position: relative;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(
        circle,
        rgba(255,214,10,0.15),
        rgba(255,214,10,0.05),
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
}


/* Feature section animation */

.feature {
    opacity: 0;
    transform: translateY(20px);
    animation: featureFade 0.8s ease forwards;
}

.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.35s; }
.feature:nth-child(3) { animation-delay: 0.5s; }

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


/* Extra spacing section */

.section-spacer {
    height: 120px;
}


/* How it works */

.how-it-works {
    margin-top: 140px;
}

.hiw-header {
    text-align: center;
    margin-bottom: 64px;
}

.hiw-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #FFD60A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.how-it-works h2 {
    font-size: 48px;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 0;
}

.hiw-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.hiw-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 2px;
    margin-top: 48px;
    background: linear-gradient(90deg, rgba(255,214,10,0.4), rgba(255,214,10,0.1));
    border-radius: 999px;
}

.hiw-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
    position: relative;
}

.hiw-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: rgba(255,214,10,0.1);
    border: 1px solid rgba(255,214,10,0.22);
    color: #FFD60A;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
}

.hiw-step-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
}

.hiw-step h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.hiw-step p {
    color: #999;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .how-it-works {
        margin-top: 96px;
    }

    .how-it-works h2 {
        font-size: 34px;
    }

    .hiw-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .hiw-connector {
        width: 2px;
        height: 36px;
        margin: 0 0 0 0;
        background: linear-gradient(180deg, rgba(255,214,10,0.4), rgba(255,214,10,0.1));
    }

    .hiw-step {
        max-width: 320px;
        width: 100%;
    }
}


/* About preview section */

.about-preview {
    margin-top: 160px;
    text-align: center;
}

.about-preview h2 {
    font-size: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.about-preview p {
    max-width: 620px;
    margin: 0 auto;
    color: #999;
    font-size: 18px;
    line-height: 1.6;
}

/* Organisations section */

.for-teams {
    margin-top: 140px;
}

.for-teams-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 28px;
    padding: 42px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(255,214,10,0.16), transparent 34%),
        radial-gradient(circle at 90% 15%, rgba(255,255,255,0.05), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    box-shadow: 0 36px 100px rgba(0,0,0,0.34);
    overflow: hidden;
    position: relative;
}

.for-teams-copy {
    max-width: 560px;
    position: relative;
    z-index: 1;
}

.for-teams-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,214,10,0.12);
    color: #FFD60A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.for-teams h2 {
    margin: 0 0 16px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.for-teams p {
    margin: 0;
    color: #aaa;
    font-size: 18px;
    line-height: 1.7;
}

.for-teams-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.for-teams-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #f4f4f4;
    font-size: 15px;
    line-height: 1.55;
}

.for-teams-point-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 7px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #FFD60A, #ff9f0a);
    box-shadow: 0 0 0 6px rgba(255,214,10,0.08);
}

.for-teams-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 999px;
    background: #FFD60A;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.96;
    box-shadow: 0 12px 28px rgba(255,214,10,0.24);
}

.for-teams-link {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 2px;
}

.for-teams-link:hover {
    border-color: rgba(255,255,255,0.45);
}

.for-teams-visual {
    position: relative;
    min-height: 420px;
}

.for-teams-board {
    position: relative;
    z-index: 2;
    margin: 26px 22px 26px 0;
    padding: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(180deg, rgba(16,16,16,0.94), rgba(10,10,10,0.84));
    box-shadow: 0 26px 60px rgba(0,0,0,0.42);
    backdrop-filter: blur(14px);
}

.for-teams-board::before {
    content: "";
    position: absolute;
    inset: auto -40px -50px auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,214,10,0.2), transparent 70%);
    pointer-events: none;
}

.for-teams-board-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.for-teams-board-eyebrow {
    margin-bottom: 8px;
    color: #8c8c8c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.for-teams-board h3 {
    margin: 0;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.for-teams-board-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(52,199,89,0.12);
    color: #7df1a4;
    font-size: 12px;
    font-weight: 700;
}

.for-teams-board-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #34c759;
    box-shadow: 0 0 12px rgba(52,199,89,0.8);
}

.for-teams-board-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 18px;
}

.for-teams-stat-card {
    padding: 14px 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.07);
}

.for-teams-stat-label {
    display: block;
    margin-bottom: 8px;
    color: #8f8f8f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.for-teams-stat-card strong {
    font-size: 17px;
    line-height: 1.2;
}

.for-teams-leaderboard {
    display: grid;
    gap: 12px;
}

.for-teams-leaderboard-row {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 14px 14px 14px 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.06);
}

.for-teams-leaderboard-row.is-leading {
    background: linear-gradient(90deg, rgba(255,214,10,0.12), rgba(255,255,255,0.03));
    border-color: rgba(255,214,10,0.2);
}

.for-teams-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: #f5f5f5;
    font-size: 12px;
    font-weight: 700;
}

.for-teams-person {
    display: grid;
    gap: 4px;
}

.for-teams-person strong {
    font-size: 15px;
}

.for-teams-person span {
    color: #9a9a9a;
    font-size: 13px;
}

.for-teams-score {
    color: #FFD60A;
    font-size: 14px;
    font-weight: 700;
}

.for-teams-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.for-teams-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: #d6d6d6;
    font-size: 12px;
    font-weight: 600;
}

.for-teams-float-card {
    position: absolute;
    z-index: 3;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(18,18,18,0.88);
    box-shadow: 0 18px 40px rgba(0,0,0,0.32);
    backdrop-filter: blur(16px);
}

.for-teams-float-card-top {
    top: 0;
    right: 0;
}

.for-teams-float-card-bottom {
    right: 18px;
    bottom: 0;
}

.for-teams-float-value {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.for-teams-float-label {
    margin-top: 6px;
    color: #9d9d9d;
    font-size: 12px;
    line-height: 1.45;
}


/* Footer links */

footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 160px;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: #888;
    margin: 0 12px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}


.site-header {
    position: sticky;
    top: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(20px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0);
    transition: border-color 0.25s ease, background 0.25s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-actions a,
.header-actions a:visited,
.header-actions a:active {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.header-actions a:hover {
    color: #fff;
}


/* Divider on scroll */

.site-header.scrolled {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}


/* Mobile menu */


/* Mobile styles */

@media (max-width: 768px) {

    .header-actions {
        position: absolute;
        top: 64px;
        right: 0;
        background: rgba(0,0,0,0.92);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: 12px;
        flex-direction: column;
        gap: 16px;
        display: none;
        min-width: 160px;
    }

    .header-actions.open {
        display: flex;
    }

}

/* Hamburger animation */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: none;
    border: none;
    margin-left: 0;
    margin-right: 12px;
    position: relative;
    z-index: 200;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    transition: all 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}


/* Smooth menu animation */

.header-actions {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (max-width: 768px) {

    .header-actions {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .header-actions.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

}
/* Subtle animated hero gradient */

body::before {
    animation: gradientShift 18s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 20% 10%, 80% 20%;
    }
    100% {
        background-position: 30% 20%, 70% 10%;
    }
}


/* Feature hover animation */

.feature {
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    padding: 20px;
    border-radius: 16px;
}

.feature:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


/* Screenshot carousel */

.screenshot-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.screenshot-carousel img {
    height: 520px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    scroll-snap-align: center;
    transition: transform 0.25s ease;
}

.screenshot-carousel img:hover {
    transform: scale(1.03);
}

/* iPhone device frame */

.screenshot-frame {
    position: relative;
    padding: 12px;
    background: #111;
    border-radius: 36px;
    box-shadow: 
        0 40px 80px rgba(0,0,0,0.6),
        inset 0 0 0 2px rgba(255,255,255,0.06);
}

.screenshot-frame img {
    border-radius: 24px;
}

.screenshot-frame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #000;
    border-radius: 12px;
}

/* Carousel item */

.screenshot-item {
    scroll-snap-align: center;
}


/* Feature icons */

.feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px auto;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.feature-icon span {
    opacity: 0.9;
}

.feature:hover .feature-icon {
    background: rgba(255,255,255,0.08);
}

/* Hide scrollbar */

.screenshot-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* Screenshot section */

.screenshots {
    margin-top: 140px;
    text-align: center;
}

.screenshots h2 {
    font-size: 36px;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}


/* Animated activity rings behind device */

.hero-image::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
background:
radial-gradient(circle, transparent 68%, rgba(255,214,10,0.22) 70%, transparent 72%),
radial-gradient(circle, transparent 62%, rgba(255,59,48,0.22) 64%, transparent 66%),
radial-gradient(circle, transparent 56%, rgba(52,199,89,0.22) 58%, transparent 60%),
radial-gradient(circle, transparent 50%, rgba(0,122,255,0.22) 52%, transparent 54%);
    animation: ringsFloat 14s ease-in-out infinite;
    filter: blur(1px);
    z-index: -1;
    pointer-events: none;
}

@keyframes ringsFloat {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-12px) scale(1.03);
        opacity: 0.9;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
}

/* iPhone / Mobile Improvements */

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
    }

    .menu-toggle {
        position: relative;
        z-index: 200;
    }

    .hero-responsive {
        min-height: auto;
        padding: 60px 0 20px 0;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text-responsive {
        margin-top: 0;
        max-width: 100%;
    }

    .hero-text-responsive h1 {
        font-size: 36px;
    }

    .hero-text-responsive p {
        font-size: 16px;
    }

    .hero-image-responsive img {
        max-width: 260px;
    }

    /* Features */

    .features-responsive {
        flex-direction: column;
        gap: 32px;
        margin-top: 60px;
    }

    .feature {
        max-width: 100%;
    }

    /* Screenshots */

    .screenshots-responsive {
        margin-top: 80px;
    }

    .screenshot-carousel img {
        height: 420px;
    }

    .for-teams {
        margin-top: 96px;
    }

    .for-teams-inner {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .for-teams h2 {
        font-size: 32px;
    }

    .for-teams p {
        font-size: 16px;
    }

    .for-teams-visual {
        min-height: auto;
    }

    .for-teams-board {
        margin: 12px 0 0;
        padding: 18px;
    }

    .for-teams-board-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .for-teams-board-stats {
        grid-template-columns: 1fr;
    }

    .for-teams-float-card {
        position: static;
        margin-top: 14px;
    }

    .for-teams-float-card-top {
        margin-top: 0;
    }

}


/* ============================================================
   Portal How-To Guide — page-portal-guide.php
   ============================================================ */

/* Override browser-default blue for all links inside the guide */
.page-content a {
    color: #FFD60A;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content a.guide-cta,
.page-content a.guide-cta-btn {
    color: #000;
}

.page-content a.guide-cta:hover,
.page-content a.guide-cta-btn:hover {
    text-decoration: none;
}

.guide-hero {
    text-align: center;
    padding: 80px 0 60px;
}

.guide-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFD60A;
    margin-bottom: 16px;
}

.guide-hero h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 20px;
}

.guide-hero p {
    font-size: 20px;
    color: #aaa;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.guide-cta {
    display: inline-block;
    background: #FFD60A;
    color: #000;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.guide-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* Table of contents */

.guide-toc {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 560px;
    margin: 0 auto 80px;
}

.guide-toc-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 12px;
}

.guide-toc ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.guide-toc li a {
    color: #aaa;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
}

.guide-toc li a:hover {
    color: #fff;
}

/* Guide section */

.guide-section {
    margin-bottom: 100px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.guide-step-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFD60A;
    margin-bottom: 12px;
}

.guide-section h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.guide-intro {
    font-size: 17px;
    color: #aaa;
    line-height: 1.65;
    margin-bottom: 40px;
}

.guide-intro a {
    color: #FFD60A;
    text-decoration: none;
}

.guide-intro a:hover {
    text-decoration: underline;
}

/* Numbered steps */

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.guide-steps::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: rgba(255,255,255,0.06);
}

.guide-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 0;
}

.guide-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,214,10,0.12);
    border: 1px solid rgba(255,214,10,0.25);
    color: #FFD60A;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.guide-step-body {
    flex: 1;
    padding-top: 8px;
}

.guide-step-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.guide-step-body p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 8px;
}

.guide-step-body a {
    color: #FFD60A;
    text-decoration: none;
}

.guide-step-body a:hover {
    text-decoration: underline;
}

.guide-list {
    color: #aaa;
    font-size: 15px;
    line-height: 1.65;
    padding-left: 20px;
    margin: 8px 0 0;
}

.guide-list li {
    margin-bottom: 6px;
}

/* Feature-style cards */

.guide-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.guide-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 24px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.guide-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-3px);
}

.guide-card-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.guide-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.guide-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.guide-card code {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 13px;
}

/* FAQ */

.guide-faq h2 {
    margin-bottom: 40px;
}

.faq-item {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.faq-item p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.faq-item p + p {
    margin-top: 12px;
}

/* CTA block */

.guide-cta-block {
    text-align: center;
    padding: 80px 0 60px;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 40px;
}

.guide-cta-block h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.guide-cta-block p {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 28px;
}

.guide-cta-btn {
    display: inline-block;
    background: #FFD60A;
    color: #000;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.guide-cta-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* Guide responsive */

@media (max-width: 768px) {

    .guide-hero h1 {
        font-size: 36px;
    }

    .guide-hero p {
        font-size: 16px;
    }

    .guide-cards,
    .guide-cards-2col {
        grid-template-columns: 1fr;
    }

    .guide-section h2 {
        font-size: 28px;
    }

    .guide-steps::before {
        display: none;
    }

}