/* =========================================================
           SKY GYM — GLOBAL VARIABLES
        ========================================================= */

:root {
    --blue: #373A8F;
    --blue2: #2E3192;
    --cyan: #1FA0CF;
    --cyan-light: #5BC8EC;
    --bg: #F5F7FA;
    --dark: #1F2A44;
    --white: #FFFFFF;
    --border: #DDE4F0;
    --muted: #6B7A99;
    --card-bg: #FFFFFF;

    --glow-blue: rgba(55, 58, 143, 0.18);
    --glow-cyan: rgba(31, 160, 207, 0.22);

    --radius-sm: 14px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 8px 25px rgba(31, 42, 68, 0.06);
    --shadow-md: 0 18px 50px rgba(31, 42, 68, 0.10);
    --shadow-lg: 0 30px 80px rgba(31, 42, 68, 0.15);
}

/* =========================================================
           RESET
        ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* body {
            font-size: 14px;
            line-height: 1.6;
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        } */

img {
    max-width: 100%;
    display: block;
}

button,
a {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

/* =========================================================
           COMMON
        ========================================================= */

section {
    position: relative;
    padding: 80px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label::before {
    content: "";
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg,
            var(--cyan),
            var(--blue));
    border-radius: 50px;
}

.section-title {
    /* max-width: 720px; */
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    position: unset;
    transform: inherit;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 18px;
}

.section-title span {
    color: var(--blue);
}

.section-description {
    max-width: 650px;
    color: var(--muted);
    line-height: 1.8;
}

.center-heading {
    text-align: center;
}

.center-heading .section-description {
    margin: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg,
            var(--blue),
            var(--blue2));
    box-shadow: 0 12px 28px var(--glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px var(--glow-blue);
}

.btn-outline {
    color: var(--blue);
    border-color: rgba(55, 58, 143, 0.2);
    background: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* =========================================================
           HERO
        ========================================================= */

.hero {
    min-height: 690px;
    padding: 70px 0 90px;
    overflow: hidden;
    color: var(--white);

    background:
        radial-gradient(circle at 85% 20%,
            rgba(91, 200, 236, 0.28),
            transparent 30%),
        radial-gradient(circle at 10% 90%,
            rgba(55, 58, 143, 0.8),
            transparent 35%),
        linear-gradient(125deg,
            #24286f 0%,
            #373A8F 48%,
            #12648f 100%);
}

/* decorative background */

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.4) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.4) 1px,
            transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom,
            black,
            transparent);
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    bottom: -250px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 0 60px rgba(255, 255, 255, 0.02),
        0 0 0 120px rgba(255, 255, 255, 0.02);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 570px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 25px;
}

.hero-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan-light);
    box-shadow: 0 0 12px var(--cyan-light);
}

.hero h1 {
    font-size: clamp(42px, 5.2vw, 70px);
    line-height: 0.98;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--cyan-light);
}

.hero-lead {
    max-width: 530px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background: var(--white);
    color: var(--blue);
}

.hero .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.hero-note {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

/* =========================================================
           HERO DASHBOARD VISUAL
        ========================================================= */

.dashboard-scene {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-window {
    width: min(570px, 100%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(22px);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.22);
    transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
    animation: dashboardFloat 5s ease-in-out infinite;
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform:
            perspective(1000px) rotateY(-7deg) rotateX(2deg) translateY(0);
    }

    50% {
        transform:
            perspective(1000px) rotateY(-7deg) rotateX(2deg) translateY(-10px);
    }
}

.window-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 5px 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 700;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.dashboard-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dash-card {
    padding: 15px;
    min-height: 100px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.dash-card.large {
    grid-column: span 2;
}

.dash-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    margin-bottom: 7px;
}

.dash-number {
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
}

.dash-number.cyan {
    color: var(--cyan-light);
}

.dash-number.green {
    color: #76e0b0;
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 65px;
    margin-top: 12px;
}

.mini-chart span {
    flex: 1;
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(to top,
            var(--cyan),
            var(--cyan-light));
    opacity: 0.85;
}

.dash-list {
    margin-top: 8px;
}

.dash-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 9px;
}

.dash-list li:last-child {
    border-bottom: 0;
}

/* floating cards */

.float-card {
    position: absolute;
    padding: 13px 15px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--dark);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    z-index: 3;
}

.float-card.one {
    top: 40px;
    right: -20px;
}

.float-card.two {
    left: -25px;
    bottom: 70px;
}

.float-label {
    display: block;
    font-size: 9px;
    color: var(--muted);
    margin-bottom: 3px;
}

.float-value {
    font-weight: 800;
    color: var(--blue);
    font-size: 17px;
}

/* =========================================================
           PLATFORM FEATURES
        ========================================================= */

.features {
    background: var(--white);
}

.features-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 245px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--card-bg);
    transition: 0.35s ease;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -40px;
    bottom: -40px;
    border-radius: 50%;
    background: var(--glow-cyan);
    opacity: 0;
    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 160, 207, 0.3);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    margin-bottom: 20px;
    background: linear-gradient(135deg,
            rgba(55, 58, 143, 0.1),
            rgba(31, 160, 207, 0.12));
    color: var(--blue);
    font-size: 20px;
}

.feature-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.explore {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
}

/* =========================================================
           STATS
        ========================================================= */

.stats {
    padding: 35px 0;
    background:
        linear-gradient(110deg,
            var(--blue),
            #30398e 50%,
            #126a94);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    text-align: center;
    padding: 15px 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
    border-right: 0;
}

.stat-number {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================================================
           WEB + MOBILE EXPERIENCE
        ========================================================= */

.experiences {
    background: var(--bg);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}

.experience-card {
    position: relative;
    padding: 40px;
    min-height: 550px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.experience-card.web {
    background: #202c4b;
    color: var(--white);
}

.experience-card.mobile {
    background: var(--white);
    border: 1px solid var(--border);
}

.experience-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    right: -100px;
    top: -100px;
    background: var(--glow-cyan);
}

.experience-top {
    position: relative;
    z-index: 2;
}

.experience-tag {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--cyan-light);
    background: rgba(91, 200, 236, 0.1);
    margin-bottom: 20px;
}

.experience-card h3 {
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.experience-card>p {
    color: var(--muted);
    max-width: 430px;
    line-height: 1.8;
}

.web>p {
    color: rgba(255, 255, 255, 0.65);
}

.experience-list {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 35px;
}

.experience-list li {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
}

.mobile .experience-list li {
    background: var(--bg);
    border-color: var(--border);
}

.mobile .experience-list {
    margin-bottom: 28px;
}

.experience-bottom {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 800;
    color: var(--cyan-light);
}

.mobile .experience-bottom {
    border-color: var(--border);
}

/* phone visual */

.phone {
    position: absolute;
    right: 45px;
    bottom: -75px;
    width: 155px;
    height: 300px;
    padding: 8px;
    border-radius: 26px;
    background: #1d2740;
    box-shadow: var(--shadow-lg);
    transform: rotate(7deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 18px 12px;
    background: linear-gradient(160deg,
            #f9fbff,
            #e9f7fc);
}

.phone-notch {
    width: 50px;
    height: 8px;
    margin: -11px auto 18px;
    border-radius: 20px;
    background: #1d2740;
}

.phone-title {
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 14px;
}

.phone-stat {
    padding: 12px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    margin-bottom: 8px;
}

.phone-stat small {
    display: block;
    color: var(--muted);
    font-size: 7px;
}

.phone-stat strong {
    color: var(--blue);
    font-size: 15px;
}

/* =========================================================
           ANALYTICS
        ========================================================= */

.analytics {
    background: var(--white);
}

.analytics-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.analytics-list {
    margin-top: 30px;
}

.analytics-list li {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
}

.analytics-list li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(31, 160, 207, 0.1);
    color: var(--cyan);
    font-weight: 800;
}

.analytics-board {
    padding: 30px;
    border-radius: var(--radius-xl);
    background: var(--bg);
    border: 1px solid var(--border);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.analytics-header h3 {
    font-size: 17px;
}

.period {
    padding: 6px 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 9px;
    color: var(--muted);
}

.analytics-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.metric {
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.metric small {
    color: var(--muted);
    font-size: 9px;
}

.metric strong {
    display: block;
    font-size: 22px;
    margin-top: 4px;
    color: var(--blue);
}

.chart {
    height: 190px;
    margin-top: 15px;
    padding: 15px;
    display: flex;
    align-items: end;
    gap: 10px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
}

.chart span {
    flex: 1;
    min-height: 25px;
    border-radius: 5px 5px 2px 2px;
    background: linear-gradient(to top,
            var(--blue),
            var(--cyan-light));
    opacity: 0.9;
}

/* =========================================================
           SETUP PROCESS
        ========================================================= */

.setup {
    background: var(--bg);
}

.setup-layout {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
    margin-top: 55px;
}

.setup-intro {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.steps {
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    bottom: 22px;
    width: 1px;
    background: linear-gradient(var(--cyan),
            var(--blue),
            transparent);
}

.step {
    position: relative;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.step-number {
    position: relative;
    z-index: 2;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--blue);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.step-content {
    padding: 4px 0 25px;
    border-bottom: 1px solid var(--border);
}

.step-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--muted);
    font-size: 14px;
}

/* =========================================================
           ROLES
        ========================================================= */

.roles {
    background: var(--white);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.role-card {
    padding: 27px;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: 0.3s ease;
    background: var(--white);
}

.role-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(55, 58, 143, 0.2);
}

.role-number {
    color: var(--cyan);
    font-weight: 800;
    font-size: 10px;
    margin-bottom: 18px;
}

.role-card h3 {
    font-size: 17px;
    margin-bottom: 9px;
}

.role-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
           MEMBER JOURNEY
        ========================================================= */

.journey {
    background: var(--bg);
    overflow: hidden;
}

.journey-track {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-top: 55px;
    /* overflow-x: auto; */
    padding-bottom: 15px;
}

.journey-item {
    position: relative;
    min-width: 145px;
    text-align: center;
}

.journey-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 25px;
    left: calc(50% + 25px);
    width: calc(100% - 50px);
    height: 1px;
    background: linear-gradient(90deg,
            var(--cyan),
            var(--blue));
}

.journey-dot {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    margin: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--blue);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.journey-item span {
    display: block;
    margin-top: 13px;
    font-size: 10px;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================================
           CUSTOMER STORIES
        ========================================================= */

.stories {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 45px;
}

.story-card {
    position: relative;
    padding: 35px;
    border-radius: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
}

.quote-mark {
    font-size: 42px;
    line-height: 0.8;
    color: var(--cyan);
    margin-bottom: auto;
    position: unset;
    transform: inherit;
}

.story-card blockquote {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark);
    margin-bottom: 22px;
}

.story-author {
    color: var(--blue);
    font-weight: 800;
    font-size: 11px;
}

.story-role {
    color: var(--muted);
    font-size: 10px;
}

/* =========================================================
           FINAL CTA
        ========================================================= */

.cta-section {
    padding: 80px 0 110px;
    background: var(--white);
}

.cta-box {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 80px 30px;
    border-radius: var(--radius-xl);
    color: var(--white);

    background:
        radial-gradient(circle at 20% 10%,
            rgba(91, 200, 236, 0.3),
            transparent 30%),
        radial-gradient(circle at 90% 90%,
            rgba(31, 160, 207, 0.35),
            transparent 30%),
        linear-gradient(120deg,
            var(--blue),
            #252b72);

    box-shadow: var(--shadow-lg);
}

.cta-box::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    top: -230px;
    left: -100px;
}

.cta-box>* {
    position: relative;
    z-index: 2;
}

.cta-box .section-label {
    color: var(--cyan-light);
}

.cta-box h2 {
    max-width: 700px;
    margin: auto auto 18px;
    font-size: clamp(34px, 5vw, 55px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.cta-box p {
    max-width: 580px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-box .btn {
    background: var(--white);
    color: var(--blue);
}

.cta-note {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

/* =========================================================
           SCROLL ANIMATION
        ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(.2, .7, .2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* =========================================================
           RESPONSIVE
        ========================================================= */

@media (max-width: 1100px) {

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 750px;
    }

    .dashboard-scene {
        min-height: 450px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .analytics-layout {
        grid-template-columns: 1fr;
    }

    .setup-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .setup-intro {
        position: static;
    }
}

@media (max-width: 800px) {

    section {
        padding: 75px 0;
    }

    .container {
        width: min(100% - 30px, 1180px);
    }

    .hero {
        min-height: auto;
        padding: 55px 0 70px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .dashboard-scene {
        min-height: 380px;
    }

    .dashboard-window {
        transform: none;
    }

    .float-card.one {
        right: 0;
    }

    .float-card.two {
        left: 0;
    }

    .features-heading {
        display: block;
    }

    .features-heading .section-description {
        margin-top: 15px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        min-height: 500px;
    }

    .analytics-metrics {
        grid-template-columns: 1fr;
    }

    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }
}

@media (max-width: 600px) {

    .section-title {
        font-size: 31px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .dash-card.large {
        grid-column: span 1;
    }

    .dashboard-window {
        padding: 10px;
    }

    .dashboard-scene {
        min-height: 340px;
    }

    .float-card {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: auto;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        padding: 18px 10px;
    }

    .stat-number {
        font-size: 27px;
    }

    .experience-card {
        padding: 28px;
    }

    .experience-list {
        grid-template-columns: 1fr;
    }

    .experience-bottom {
        left: 28px;
        right: 28px;
    }

    .phone {
        display: none;
    }

    .roles-grid {
        grid-template-columns: 1fr;
    }

    .analytics-board {
        padding: 18px;
    }

    .chart {
        height: 150px;
    }

    .story-card {
        padding: 25px;
    }

    .cta-box {
        padding: 60px 20px;
        border-radius: 22px;
    }

    .cta-box h2 {
        font-size: 35px;
    }
}

/* reduced motion accessibility */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}