/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-accent);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
    border: 2px solid var(--color-accent-dark);
}

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

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

:root {
    --color-text: #1a1a1a;
    --color-text-light: #666;
    --color-bg: #fefefe;
    --color-bg-alt: #faf9f6;
    --color-accent: #ff6b6b;
    --color-accent-hover: #ff5252;
    --color-accent-dark: #e63946;
    --color-border: #d4af37;
    --color-yellow: #ffd700;
    --max-width: 800px;
    --spacing: 2rem;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-snap-type: none;
}

body {
    font-family: 'Kalam', cursive;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    font-size: 18px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    scroll-behavior: auto;
    scroll-snap-type: none;
    -ms-scroll-snap-type: none;
    height: auto;
    min-height: auto;
}

img, svg, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Hand-drawn container with sketchy border */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    width: 100%;
    max-width: min(var(--max-width), 100%);
    overflow: visible;
    box-sizing: border-box;
    height: auto;
    min-height: auto;
    max-height: none;
}

/* Subtle Header */
.site-header {
    padding: 1.2rem 0;
    border-bottom: 2px dashed rgba(212, 175, 55, 0.3);
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(212, 175, 55, 0.2) 20%,
        rgba(212, 175, 55, 0.2) 80%,
        transparent 100%
    );
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.4rem;
    color: var(--color-text);
    text-decoration: none;
    transform: rotate(-0.5deg);
    transition: all 0.2s ease;
    position: relative;
}

.header-logo::after {
    content: '→';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 1rem;
    opacity: 0.4;
    font-family: 'Kalam', cursive;
}

.header-logo:hover {
    transform: rotate(0deg) scale(1.05);
    color: var(--color-accent);
}

.header-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.header-links a {
    font-family: 'Kalam', cursive;
    font-size: 0.95rem;
    color: var(--color-text-light);
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    padding-bottom: 2px;
    transition: all 0.2s ease;
    position: relative;
}

.header-links a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    transform: translateY(-1px);
}

.header-links a::before {
    content: '•';
    position: absolute;
    left: -0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--color-accent);
}

.header-links a:hover::before {
    opacity: 0.5;
}

.header-about-link {
    font-weight: 600;
    color: var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

/* Hero Section */
.hero {
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    border-bottom: 3px dashed var(--color-border);
    width: 100%;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin: 0;
    scroll-padding: 0;
    height: auto;
    min-height: auto;
    max-height: none;
}

.hero-title {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    transform: rotate(-0.5deg);
    text-shadow: 2px 2px 0px rgba(255, 215, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    transform: rotate(0.3deg);
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Doodles */
.doodle {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

.doodle-1 {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.doodle-2 {
    bottom: 20px;
    right: 15%;
    animation-delay: 1.5s;
}

.doodle-3 {
    top: 10px;
    right: 10%;
    font-size: 2.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

/* Disable smooth scrolling for anchor links */
a[href^="#"] {
    scroll-behavior: auto;
}

/* CRITICAL: Ensure all sections and elements with IDs NEVER have scrollbars */
section,
[id] {
    overflow: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
    scroll-margin: 0 !important;
    scroll-padding: 0 !important;
    scroll-behavior: auto;
}

/* Buttons with hand-drawn style */
.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 3px solid;
    cursor: pointer;
    font-size: 1.05rem;
    font-family: 'Kalam', cursive;
    position: relative;
    transform: rotate(-1deg);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: auto;
}

.btn:hover,
.btn:active {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.15);
}

@media (hover: none) {
    .btn:active {
        transform: rotate(0deg) scale(0.98);
    }
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    border-color: var(--color-accent-dark);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: rgba(255, 107, 107, 0.1);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: rotate(-1deg);
    pointer-events: none;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    min-height: 40px;
}

/* Contact options layout */
.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
}

.contact-options .btn {
    margin: 0;
}

/* Sections with hand-drawn borders */
.section {
    padding: 3rem 0;
    position: relative;
    border-bottom: 2px dashed var(--color-border);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin: 0;
    scroll-padding: 0;
    height: auto;
    min-height: auto;
    max-height: none;
}

.section-alt {
    background-color: var(--color-bg-alt);
    border-top: 2px dashed var(--color-border);
    border-bottom: 2px dashed var(--color-border);
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin: 0;
    scroll-padding: 0;
    height: auto;
    min-height: auto;
    max-height: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.why-section-wrap {
    padding: 2.5rem 0 !important;
    overflow: visible !important;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin: 0;
    scroll-padding: 0;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}

.why-section-wrap .section-header {
    margin-bottom: 1.2rem;
}

.section.why-section .section-header {
    margin-bottom: 1.2rem;
}

.section h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--color-text);
    transform: rotate(-0.8deg);
    letter-spacing: 0.02em;
}

.content-block {
    font-size: 1.1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: none;
}

.content-block p {
    margin-bottom: 0.9rem;
    transition: all 0.3s ease;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.why-section {
    line-height: 1.6;
}

.why-section p {
    margin-bottom: 0.8rem;
}

/* Target Circle Elements */
.target-circle {
    width: 35px;
    height: 35px;
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transform: rotate(-15deg);
}

.target-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
}

.target-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.target-bullet {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    position: relative;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

.target-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
}

.target-bullet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.target-bullet.small {
    width: 16px;
    height: 16px;
}

.target-bullet.small::before {
    width: 8px;
    height: 8px;
}

.target-bullet.small::after {
    width: 3px;
    height: 3px;
}

/* Lists */
.quote-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.quote-list li {
    padding: 0.4rem 0;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
}

.why-section .quote-list {
    margin: 0.8rem 0;
}

.why-section .quote-list li {
    padding: 0.3rem 0;
    transition: transform 0.2s ease;
}

.why-section .quote-list li:hover {
    transform: translateX(3px);
}

/* Hand-drawn strikethrough for "Why" */
.crossed-why {
    position: relative;
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
}

.crossed-why::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: translateY(-50%) rotate(-5deg) skewY(-2deg);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    z-index: 1;
}

.crossed-why::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    right: -2px;
    height: 2px;
    background: var(--color-accent);
    transform: translateY(-50%) rotate(3deg) skewY(1deg);
    opacity: 0.6;
    z-index: 1;
}

.hand-drawn-marker {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 1.8rem;
    color: var(--color-accent);
}

.philosophy-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.15rem;
    line-height: 2.2;
}

.philosophy-list li {
    padding: 0.7rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

.feedback-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.feedback-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1.1rem;
}

.feedback-cta {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

/* Annotations */
.annotation {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin: 0.8rem 0 0;
    transform: rotate(-2deg);
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.annotation.right {
    text-align: right;
    transform: rotate(1deg);
}

.why-section .annotation {
    margin: 1rem 0 0;
    text-align: left;
    font-size: 1.6rem;
    transform: rotate(-2deg);
}

/* Products Intro */
.products-intro {
    text-align: center;
    margin-bottom: 3rem;
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: none;
}

.handwritten-note {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--color-accent);
    transform: rotate(-0.5deg);
    display: inline-block;
    padding: 0 1rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    position: relative;
    padding: 2rem 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
    box-sizing: border-box;
    height: auto;
    min-height: auto;
    max-height: none;
}

/* Hand-drawn connector lines */
.products-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--color-accent) 0px,
        var(--color-accent) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.2;
    z-index: 0;
    transform: translateY(-50%) rotate(-0.5deg);
}

@media (max-width: 768px) {
    .products-grid::before {
        display: none;
    }
}

.product-card {
    padding: 2.5rem;
    border: 4px solid var(--color-accent);
    border-radius: 0;
    background-color: var(--color-bg);
    position: relative;
    transition: all 0.3s ease;
    min-height: 320px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* Unique card styles */
.card-1 {
    transform: rotate(-1.2deg);
    box-shadow: 8px 8px 0px rgba(255, 107, 107, 0.25);
    border-style: solid;
}

.card-1:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: 12px 12px 0px rgba(255, 107, 107, 0.35);
}

.card-2 {
    transform: rotate(1.5deg);
    box-shadow: -8px 8px 0px rgba(212, 175, 55, 0.25);
    border-color: var(--color-border);
    border-style: dashed;
    background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.card-2:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.02);
    box-shadow: -12px 12px 0px rgba(212, 175, 55, 0.35);
}

/* Sticky note */
.card-sticky-note {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--color-yellow);
    padding: 0.3rem 0.8rem;
    font-family: 'Permanent Marker', cursive;
    font-size: 0.85rem;
    transform: rotate(12deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-text);
    z-index: 2;
}

@media (max-width: 768px) {
    .card-sticky-note {
        right: 10px;
        top: -10px;
        font-size: 0.8rem;
        padding: 0.25rem 0.7rem;
    }
}

/* Card number */
.card-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.3rem;
    border: 3px solid var(--color-accent-dark);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

@media (max-width: 768px) {
    .card-number {
        top: -12px;
        left: 10px;
    }
}

.card-2 .card-number {
    background: var(--color-border);
    border-color: var(--color-border);
    color: var(--color-text);
}

/* Doodles */
.card-doodle {
    position: absolute;
    font-size: 2.5rem;
    background: var(--color-bg);
    padding: 8px;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.doodle-top-left {
    top: -20px;
    left: 20px;
    transform: rotate(-20deg);
}

.doodle-top-right {
    top: -20px;
    right: 20px;
    transform: rotate(20deg);
}

.card-scribble {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 3rem;
    opacity: 0.3;
    transform: rotate(25deg);
    z-index: 0;
}

@media (max-width: 768px) {
    .card-doodle {
        font-size: 2rem;
        padding: 6px;
    }

    .doodle-top-left {
        top: -15px;
        left: 15px;
    }

    .doodle-top-right {
        top: -15px;
        right: 15px;
    }

    .card-scribble {
        bottom: -10px;
        right: -10px;
        font-size: 2rem;
    }
}

/* Product Card Content */
.product-card h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    margin-top: 0.5rem;
    color: var(--color-text);
    transform: rotate(-0.3deg);
    line-height: 1.2;
}

.product-card p {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.inline-link {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 2px dashed var(--color-accent);
    font-weight: 600;
    transition: all 0.2s ease;
}

.inline-link:hover {
    border-bottom-style: solid;
}

/* Status Badge */
.product-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.2rem;
    font-family: 'Kalam', cursive;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid;
    background: var(--color-bg-alt);
    transform: rotate(-1deg);
}

.status-experiment {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.status-coming {
    border-color: var(--color-border);
    color: var(--color-text);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.status-experiment .status-dot {
    background: var(--color-accent);
}

.status-coming .status-dot {
    background: var(--color-border);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Product Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    font-family: 'Kalam', cursive;
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px dashed var(--color-accent);
    color: var(--color-accent);
    transform: rotate(0.5deg);
    display: inline-block;
}

.card-2 .tag {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-border);
    color: var(--color-text);
}

/* Card Annotation */
.card-annotation {
    position: absolute;
    bottom: -25px;
    left: 20px;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--color-accent);
    transform: rotate(-3deg);
    opacity: 0.8;
    pointer-events: none;
    max-width: calc(100% - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Old status (keep for backwards compatibility) */
.product-status {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Bike Goal Section - Compact & Cute (Height-wise) */
.bike-goal-section {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border: 2px dashed var(--color-accent);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    position: relative;
    transform: rotate(-0.3deg);
}

.bike-goal-header {
    margin-bottom: 0.6rem;
}

.bike-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 0;
    transform: rotate(-0.5deg);
    text-align: center;
    line-height: 1.2;
}

.bike-emoji-large {
    font-size: 2rem;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.progress-container {
    margin: 0.8rem 0;
}

.progress-label {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-family: 'Kalam', cursive;
    font-size: 1rem;
    font-weight: 600;
}

.progress-amount {
    color: var(--color-accent);
    font-size: 1.3rem;
    font-weight: 700;
    transform: rotate(-0.5deg);
}

.progress-target {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.progress-bar-wrapper {
    position: relative;
    margin: 0.4rem 0;
}

.progress-bar-bg {
    width: 100%;
    height: 24px;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--color-accent);
    border-radius: 0;
    position: relative;
    overflow: visible;
    box-shadow: inset 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent) 0%, #ff5252 100%);
    position: relative;
    transition: width 1.5s ease-out;
    box-shadow: 3px 0px 0px rgba(0, 0, 0, 0.1);
    border-right: 2px solid var(--color-accent-dark);
}

.progress-bar-fill::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 4px,
        rgba(255, 255, 255, 0.1) 4px,
        rgba(255, 255, 255, 0.1) 8px
    );
}

.progress-bar-handle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--color-yellow);
    border: 2px solid var(--color-accent-dark);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .progress-bar-wrapper {
        overflow: hidden;
        padding-right: 3px;
    }

    .progress-bar-handle {
        right: -3px;
        width: 10px;
        height: 10px;
    }
}

.progress-percentage {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 0.3rem;
    transform: rotate(0.3deg);
}

.bike-motivation {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0.6rem 0;
    font-style: italic;
    transform: rotate(-0.2deg);
}

.contribution-buttons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0.8rem 0 0;
}

.bike-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--color-border);
}

.bike-note p {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 0;
    transform: rotate(0.2deg);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: var(--color-bg-alt);
    border-top: 3px dashed var(--color-border);
    position: relative;
    overflow: visible;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin: 0;
    scroll-padding: 0;
    height: auto;
    min-height: auto;
    max-height: none;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.footer-tagline {
    font-family: 'Caveat', cursive;
    color: var(--color-text-light);
    font-style: italic;
    font-size: 1.3rem;
    transform: rotate(-0.5deg);
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px dashed var(--color-accent);
    padding-bottom: 2px;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    border-bottom-style: solid;
    transform: translateY(-2px);
}

.footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--color-border);
    font-style: italic;
}

/* Hand-drawn underline effect for emphasis */
strong {
    position: relative;
    font-weight: 700;
}

strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, 
        var(--color-yellow) 0%, 
        var(--color-yellow) 30%, 
        transparent 30%, 
        transparent 40%, 
        var(--color-yellow) 40%, 
        var(--color-yellow) 70%, 
        transparent 70%);
    opacity: 0.6;
    transform: skewY(-1deg);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 2rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    .container {
        padding: 0 1.2rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .site-header {
        padding: 1rem 0;
    }

    .header-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .header-logo {
        font-size: 1.3rem;
    }

    .header-links {
        gap: 1.2rem;
        font-size: 0.9rem;
    }

    .header-links a::before {
        display: none;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
        transform: rotate(0deg);
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section h2 {
        font-size: 1.75rem;
        line-height: 1.2;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-block {
        font-size: 1rem;
    }

    .content-block p {
        margin-bottom: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .product-card {
        min-height: auto;
        padding: 2rem 1.5rem;
        transform: rotate(0deg) !important;
        overflow: hidden;
        margin: 0 auto;
    }

    .product-card:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }

    .card-number {
        top: -12px;
        left: 10px;
    }

    .card-sticky-note {
        right: 10px;
        top: -10px;
        font-size: 0.8rem;
        padding: 0.25rem 0.7rem;
    }

    .card-doodle {
        font-size: 2rem;
        padding: 6px;
    }

    .doodle-top-left {
        top: -15px;
        left: 15px;
    }

    .doodle-top-right {
        top: -15px;
        right: 15px;
    }

    .card-scribble {
        display: none;
    }

    .card-annotation {
        display: none;
    }

    .progress-bar-wrapper {
        overflow: hidden;
        padding-right: 3px;
    }

    .progress-bar-handle {
        right: -3px;
        width: 10px;
        height: 10px;
    }

    .product-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-card p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .handwritten-note {
        font-size: 1.25rem;
        padding: 0 0.5rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .card-scribble,
    .card-annotation {
        display: none;
    }

    .card-doodle {
        font-size: 2rem;
    }

    .section-header {
        justify-content: flex-start;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .section-header h2 {
        flex: 1;
        min-width: 0;
    }

    .target-circle {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }

    .target-circle::before {
        width: 18px;
        height: 18px;
    }

    .target-circle::after {
        width: 7px;
        height: 7px;
    }

    .doodle {
        display: none;
    }

    .philosophy-list {
        font-size: 1rem;
    }

    .philosophy-list li {
        padding: 0.6rem 0;
    }

    .quote-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .hand-drawn-marker {
        font-size: 1.5rem;
        left: -0.5rem;
    }

    .annotation {
        font-size: 1.1rem;
        margin-top: 0.6rem;
        transform: rotate(0deg);
    }

    .why-section .annotation {
        font-size: 1.5rem;
        text-align: left;
        margin-top: 1rem;
        transform: rotate(-2deg);
    }

    .products-intro {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 2.5rem 0;
    }

    .footer-nav {
        gap: 1.5rem;
        margin-top: 1.2rem;
    }

    .bike-goal-section {
        padding: 1.5rem 1.2rem;
    }

    .bike-title {
        font-size: 1.3rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .progress-label {
        font-size: 0.95rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .progress-amount {
        font-size: 1.2rem;
        transform: rotate(0deg);
    }

    .progress-target {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .site-header {
        padding: 0.9rem 0;
    }

    .header-logo {
        font-size: 1.2rem;
        transform: rotate(0deg);
    }

    .header-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 3rem 0 2.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section {
        padding: 2rem 0;
    }

    .section h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .content-block {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .content-block p {
        margin-bottom: 0.75rem;
    }

    .hero-cta {
        padding: 0 0.5rem;
    }

    .btn {
        padding: 0.85rem 1.3rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .btn-small {
        padding: 0.55rem 1rem;
        font-size: 0.9rem;
    }

    .target-circle {
        width: 26px;
        height: 26px;
    }

    .target-circle::before {
        width: 15px;
        height: 15px;
    }

    .target-circle::after {
        width: 6px;
        height: 6px;
    }

    .target-bullet {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

    .target-bullet::before {
        width: 9px;
        height: 9px;
    }

    .target-bullet::after {
        width: 3.5px;
        height: 3.5px;
    }

    /* Bike section mobile */
    .bike-goal-section {
        padding: 1.2rem 1rem;
        margin: 1.2rem 0;
    }

    .bike-title {
        font-size: 1.15rem;
        line-height: 1.15;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .bike-emoji-large {
        font-size: 1.4rem;
    }

    .progress-container {
        margin: 0.6rem 0;
    }

    .progress-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .progress-amount {
        font-size: 1.1rem;
        transform: rotate(0deg);
    }

    .progress-target {
        font-size: 0.8rem;
    }

    .progress-bar-bg {
        height: 22px;
    }

    .progress-bar-handle {
        width: 10px;
        height: 10px;
        right: -5px;
    }

    .progress-percentage {
        font-size: 0.9rem;
        margin-top: 0.4rem;
        transform: rotate(0deg);
    }

    .bike-motivation {
        font-size: 0.85rem;
        margin: 0.5rem 0;
        transform: rotate(0deg);
    }

    .contribution-buttons {
        flex-direction: column;
        gap: 0.7rem;
        margin-top: 0.7rem;
    }

    .contribution-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .product-card {
        padding: 1.8rem 1.2rem;
    }

    .product-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.9rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .card-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: -12px;
        left: -12px;
    }

    .card-sticky-note {
        top: -10px;
        right: 15px;
        padding: 0.25rem 0.7rem;
        font-size: 0.8rem;
    }

    .card-doodle {
        font-size: 1.8rem;
        padding: 6px;
    }

    .product-status-badge {
        padding: 0.45rem 0.9rem;
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .product-tags {
        gap: 0.4rem;
        margin-bottom: 1.2rem;
    }

    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .handwritten-note {
        font-size: 1.15rem;
        padding: 0 0.3rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .philosophy-list {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .philosophy-list li {
        padding: 0.5rem 0;
    }

    .quote-list {
        margin: 0.9rem 0;
    }

    .quote-list li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .hand-drawn-marker {
        font-size: 1.3rem;
        left: -0.3rem;
    }

    .annotation {
        font-size: 1rem;
        margin-top: 0.5rem;
        transform: rotate(0deg);
    }

    .why-section .annotation {
        font-size: 1.3rem;
        text-align: left;
        margin-top: 0.8rem;
        transform: rotate(-2deg);
    }

    .footer-content {
        margin-bottom: 1.5rem;
    }

    .footer-tagline {
        font-size: 1.15rem;
        transform: rotate(0deg);
    }

    .footer-nav {
        gap: 1.2rem;
        margin-top: 1rem;
        font-size: 0.95rem;
    }

    .footer-note {
        font-size: 0.85rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }

    .section-header {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }

    .why-section-wrap {
        padding: 2rem 0 !important;
    }

    .why-section .quote-list {
        margin: 0.7rem 0;
    }

    .why-section .quote-list li {
        padding: 0.3rem 0;
        padding-left: 1.8rem;
    }

    .feedback-cta {
        margin-top: 1.2rem;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 1.6rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section h2 {
        font-size: 1.35rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .product-card {
        padding: 1.5rem 1rem;
    }

    .bike-goal-section {
        padding: 1rem 0.8rem;
    }

    .bike-title {
        font-size: 1.05rem;
        transform: rotate(0deg);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Subtle paper texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
    pointer-events: none;
    z-index: 1000;
    opacity: 0.3;
}

/* FINAL OVERRIDE: Absolutely prevent any scrollbars on sections at any breakpoint */
section,
section.hero,
section.section,
section.section-alt,
section.why-section-wrap,
[id] {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}

/* Ensure containers inside sections never create scrollbars */
section .container,
section .content-block,
section .products-grid,
section .products-intro {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
}