/* ===================== FOUNDATIONS ===================== */

:root {
    --bg: #fafcfa;
    --border: #d1d5db;
    --surface: #ffffff;
    --text: #2d362b;
    --text-muted: #6b7a68;
    --accent: #16a34a;
    --accent-hover: #15803d;
    --accent-light: rgba(22, 163, 74, 0.08);
    --accent-glow: rgba(22, 163, 74, 0.15);
    /* Add the Pro Accent */
    --pro-accent: #f46d6d;
    --pro-accent-hover: #d94a4a;
    --pro-accent-light: rgba(244, 109, 109, 0.08);
    --pro-accent-glow: rgba(244, 109, 109, 0.15);

    /* New Dark Mode Palette */
    --dark-bg: #111827;
    --dark-surface: #1f2937;
    --dark-border: #374151;
    --dark-text: #f9fafb;
    --dark-text-muted: #9ca3af;

    --success: #16a34a;
    --error: #dc2626;
    --mono: 'JetBrains Mono', monospace;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background-color: var(--bg);
    /* Subtle dot grid texture */
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.loading {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body:not(.loading) {
    opacity: 1;
}

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





.is-hidden {
    display: none !important;
}

/* ===================== NAV ===================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 14px 32px 15px 0;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.nav-logo img {
    border-radius: 6px;
}

.url-part {
    color: var(--text-muted);
    opacity: .6;
}

.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.15s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.15s, transform 0.1s;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* ===================== HERO (TWO COLUMN) ===================== */

.hero {
    padding: 180px 32px 80px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.01em;
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===================== VISUAL SANDBOX (HERO RIGHT) ===================== */

.hero-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    top: 12px;
    /* Prevents grid blowout */
}

/* Animated Mesh Blob */
.hero-blob {
    position: absolute;
    background: radial-gradient(circle at 30% 48%, var(--accent-glow), transparent 54%), radial-gradient(circle at 67% 75%, var(--accent-glow), transparent 49%);
    filter: blur(50px);
    animation: pulse-blob 8s ease-in-out infinite alternate;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
}

@keyframes pulse-blob {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.demo-window {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 387px;
}

.demo-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #fafafa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.demo-dot.red {
    background: #ff5f57;
}

.demo-dot.yellow {
    background: #febc2e;
}

.demo-dot.green {
    background: #28c840;
}

.demo-url {
    margin-left: 12px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: var(--mono);
}

.demo-content {
    aspect-ratio: 14 / 8;
    position: relative;
    overflow: hidden;
}

/* Demo simulation */
.demo-sim {
    display: flex;
    height: 100%;
    position: relative;
}

.demo-sidebar {
    width: 150px;
    background: var(--bg);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.demo-sidebar-header {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.demo-sidebar-btn {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s;
    position: relative;
}

.demo-sidebar-btn.editing {
    background: var(--accent);
    font-size: 11px;
}

.demo-sidebar-btn.saved {
    background: var(--accent);
}

.demo-sidebar-btn.cursor-here {
    box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.3);
}

.demo-sidebar-textarea {
    background: rgba(22, 163, 74, 0.06);
    border: 1px solid rgba(22, 163, 74, 0.15);
    border-radius: 6px;
    padding: 8px;
    font-size: 9px;
    font-family: var(--mono);
    line-height: 1.5;
    color: var(--text);
}

.demo-diff-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.demo-page {
    flex: 1;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    background: #e8edf2;
}

.demo-page-nav {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.demo-page-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 22px;
}

.demo-page-tagline {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.demo-page-h1 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.demo-word {
    display: inline;
    position: relative;
}

.demo-selecting {
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px;
}

.demo-cursor-text::after {
    content: '';
    display: inline-block;
    width: 1.5px;
    height: 1.1em;
    background: var(--text);
    vertical-align: text-bottom;
    animation: blink-cursor 0.8s step-end infinite;
    margin-left: 1px;
}

@keyframes blink-cursor {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.demo-edited {
    background: rgba(22, 163, 74, 0.12);
    padding: 0 4px;
    border-radius: 4px;
}

.demo-page-btn {
    display: inline-block;
    background: #586776;
    color: var(--surface);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

/* Animated cursor */
.demo-cursor {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1), top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

.cursor-clickEdit {
    left: 80px;
    top: 52px;
}

.cursor-editing {
    left: 280px;
    top: 120px;
}

.cursor-selecting {
    left: 320px;
    top: 120px;
}

.cursor-deleting {
    left: 280px;
    top: 120px;
}

.cursor-typing {
    left: 280px;
    top: 120px;
}

.cursor-clickSave {
    left: 80px;
    top: 52px;
}

.cursor-saving {
    left: 80px;
    top: 52px;
}

/* ===================== BUTTONS ===================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s, box-shadow 0.15s, border-color 0.15s;
    border: none;
    text-decoration: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.2);
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent-hover);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--text-muted);
}

.btn .material-symbols-outlined {
    font-size: 18px;
}


/* Create a Pro Button variant */
.btn-pro {
    background: var(--pro-accent);
    color: #fff;
    /* Ensure high contrast */
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.btn-pro:hover:not(:disabled) {
    background: var(--pro-accent-hover);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
    transform: translateY(-1px);
}

/* Update the featured pricing card */
.pricing-card.featured {
    border-color: var(--pro-accent);
    box-shadow: 0 0 0 1px var(--pro-accent), 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Update the featured card label
.pricing-card.featured .pricing-card-label {
    color: var(--pro-accent);
}
 */
/* ===================== HOW IT WORKS ===================== */

.how {
    padding: 80px 32px;
}

.how-inner {
    max-width: 900px;
    margin: 0 auto;
}

.how h2,
.tracks h2,
.checker h2,
.pricing h2,
.faq h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 48px;
}

/* Soft Toggle */
.how-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    width: fit-content;
    margin: 0 auto 48px;
    padding: 6px;
}

.how-toggle button {
    padding: 10px 32px;
    border-radius: 24px;
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.how-toggle button.active {
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Steps Layout */
.how-steps {
    display: grid;
    gap: 32px;
    transition: all 0.3s ease;
}

.how-steps.mode-free {
    grid-template-columns: repeat(4, 1fr);
}

.how-steps.mode-pro {
    grid-template-columns: repeat(4, 1fr);
}

.how-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mode-free .four .how-icon .material-symbols-outlined {
    color: #333333;
}

.mode-free .how-step.four {
    opacity: .4;
}

.how-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.how-icon .material-symbols-outlined {
    color: var(--accent);
    font-size: 24px;
}

/* Update the icon color for the Pro step (Step 4) */
.how-steps.mode-pro .how-step:nth-child(4) .material-symbols-outlined {
    color: var(--pro-accent);
}

/* Optional: Make the border of that specific icon box amber too */
.how-steps.mode-pro .how-step:nth-child(4) .how-icon {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
}

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

.how-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Smart Dashed Connectors */
.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    right: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(0, 0, 0, 0.1);
    z-index: -1;
}

/* Hide dashed line after step 3 in Free mode */
.how-steps.mode-free .how-step:nth-child(3)::after {
    display: none;
}

/* ===================== TRACKS (CARDS AS TOGGLES) ===================== */

.tracks {
    padding: 0 32px 140px;
}

.tracks-inner {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.track {
    background: var(--surface);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.8;
}

/* Active Track Styling */
.track.active {
    opacity: 1;
}

.track.free.active {
    border: 1px solid var(--accent);
}

/* Update the active Pro card styling */
.track.pro.active {
    border-color: var(--pro-accent);
    box-shadow: 0 0 0 1px var(--pro-accent), 0 8px 30px rgba(245, 158, 11, 0.1);
}

/* Update the Pro label and CTA link */
.track.pro .track-label,
.track.pro .track-cta {
    color: var(--pro-accent);
}

/* Update hover state for the Pro CTA */
.track.pro .track-cta:hover {
    border-bottom-color: var(--pro-accent);
}

/* Update the checkmarks inside the Pro card */
.track.pro li .material-symbols-outlined {
    color: var(--pro-accent);
}

.track-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 12px;
}


.track h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.track p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.track ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.track li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
}

.track li .material-symbols-outlined {
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.track-cta {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

.track-cta:hover {
    border-bottom-color: var(--accent);
}


/* ===================== CHECKER (DARK INVERTED) ===================== */

.checker {
    padding: 140px 32px 80px;
    background: var(--dark-bg);
    color: var(--dark-text);
}

.checker-inner {
    max-width: 640px;
    margin: 0 auto;
}

.checker h2 {
    color: var(--dark-text);
}

.checker-sub {
    text-align: center;
    font-size: 15px;
    color: var(--dark-text-muted);
    margin-top: -32px;
    margin-bottom: 32px;
}

.checker-form {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.checker-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 0 14px;
    transition: border-color 0.15s;
}

.checker-input-wrap:focus-within {
    border-color: var(--accent);
}

.checker-input-wrap .material-symbols-outlined {
    color: var(--dark-text-muted);
    font-size: 18px;
    flex-shrink: 0;
}

.checker-input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--mono);
    font-size: 14px;
    color: var(--dark-text);
    padding: 12px 0;
    outline: none;
}

.checker-input-wrap input::placeholder {
    color: var(--dark-text-muted);
    font-family: var(--sans);
    font-size: 13px;
}

.checker-results {
    margin-top: 16px;
}

.checker-pass,
.checker-fail {
    padding: 20px;
    border-radius: 12px;
}

.checker-pass {
    background-color: var(--pro-accent-light);
    border: 1px solid var(--pro-accent-glow);
}

.checker-fail {
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
}

.checker-verdict {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.checker-pass .checker-verdict .material-symbols-outlined {
    color: var(--accent);
}

.checker-fail .checker-verdict .material-symbols-outlined {
    color: var(--dark-text-muted);
}

.checker-verdict strong {
    font-size: 15px;
}

.checker-results p {
    font-size: 14px;
    color: var(--dark-text-muted);
}

.checker-files {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}



/* Update these specific classes in your style.css */

.checker-pass {
    background-color: #f59e0b1a;
    /* Amber with 10% opacity */
    border: 1px solid #f59e0b33;
    /* Amber with 20% opacity */
}

.checker-fail {
    background-color: #ffffff0d;
    /* White with 5% opacity */
    border: 1px solid var(--dark-border);
}

.checker-pass .checker-verdict .material-symbols-outlined {
    color: var(--pro-accent);
    /* Make the checkmark Amber */
}

.checker-file {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    background-color: #00000033;
    /* Black with 20% opacity */
    border: 1px solid #f59e0b4d;
    /* Amber with 30% opacity */
    color: var(--border);
    /* Amber text */
    padding: 3px 10px;
    border-radius: 6px;
}

/* ===================== PRICING (DARK MODE BLOCK) ===================== */

.pricing {
    padding: 80px 32px 200px 32px;
    background: var(--dark-bg);
}

.pricing-inner {
    max-width: 900px;
    margin: 0 auto;
}

.pricing h2 {
    color: var(--dark-text);
}

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

.pricing-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 12px #00000020;
    transition: transform 0.2s;
}



.pricing-card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark-text-muted);
    margin-bottom: 8px;
}


.pricing-price {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-text-muted);
    letter-spacing: 0;
}

.pricing-card p {
    font-size: 14px;
    color: var(--dark-text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Adjust secondary button for dark mode */
.pricing-card .btn-secondary {
    background: transparent;
    color: var(--dark-text);
    border-color: var(--dark-border);
}

.pricing-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--dark-text-muted);
}

.pricing-note {
    font-size: 12px;
    color: var(--dark-text-muted);
    text-align: center;
    width: 100%;
    margin-top: 8px;
}


/* ===================== FAQ ===================== */

.faq {
    padding: 140px 32px 160px;
    /* Removed background colors, uses body background */
}

.faq-inner {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-chevron {
    transition: transform 0.2s;
    color: var(--text-muted);
    font-size: 20px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 0 18px;
}

.faq-a p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ===================== FOOTER ===================== */

.footer {
    padding: 100px 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}


.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
}

.footer-logo img {
    border-radius: 5px;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-left: auto;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 60px;
}

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

/* ===================== RESPONSIVE ===================== */

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

    .hero {
        padding: 120px 20px 40px;
        text-align: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero h1 br {
        display: none;
    }

    .how-steps.mode-free,
    .how-steps.mode-pro {
        grid-template-columns: 1fr;
    }

    .how-step:not(:last-child)::after {
        display: none;
    }

    .tracks-inner {
        grid-template-columns: 1fr;
    }

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

    .checker-form {
        flex-direction: column;
    }

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

    .footer-links {
        margin-left: 0;
    }

    .demo-sidebar {
        width: 120px;
        padding: 12px 8px;
    }

    .demo-page-h1 {
        font-size: 1.2rem;
    }
}