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

:root {
    --primary-dark: #061624;
    --secondary-dark: #0c2436;
    --card-dark: #122c3c;
    --teal: #0f7a6c;
    --green: #30b55c;
    --light-green: #6be58d;
    --gradient-start: #0f7a6c;
    --gradient-end: #34c35b;
    --text-primary: #ffffff;
    --text-secondary: #8fa6bf;
    --accent-orange: #fb923c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background: var(--primary-dark);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: var(--secondary-dark);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    font-size: 2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    animation: squirrel-bounce 0.5s ease;
}

@keyframes squirrel-bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(-5px); }
    75% { transform: translateY(-7px); }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 195, 91, 0.35);
}

.btn-secondary {
    background: var(--card-dark);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}


/* App Mockup */
.app-mockup {
    background: var(--card-dark);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.mockup-screen {
    background: var(--secondary-dark);
    border-radius: 16px;
    overflow: hidden;
}

.screen-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.screen-nav {
    display: flex;
    gap: 1rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.nav-item.active {
    background: var(--teal);
    color: var(--text-primary);
}

.screen-content {
    padding: 1.5rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.5rem;
}

.badge {
    background: var(--card-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.progress-section {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-percent {
    color: var(--green);
    font-weight: bold;
}

.progress-bar {
    background: var(--card-dark);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    height: 100%;
    width: 17%;
    border-radius: 4px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--card-dark);
    padding: 1.5rem;
    border-radius: 12px;
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card-title {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.card-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--green);
}

.card-total {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--secondary-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(52, 195, 91, 0.45);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Product Showcase Section */
.product-showcase {
    padding: 6rem 0;
    background: var(--primary-dark);
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--card-dark);
    padding: 1rem;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* App Screenshot Mockups */
.app-screenshot {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    min-height: 500px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Calendar Screenshot */
.calendar-screenshot {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.screenshot-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.week-number {
    width: 50px;
    height: 50px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
}

.week-info {
    flex: 1;
}

.week-label {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.week-progress {
    font-size: 1rem;
    color: var(--green);
    font-weight: bold;
}

.week-progress span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.progress-bar-mini {
    height: 8px;
    background: var(--card-dark);
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-fill-mini {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--green));
    border-radius: 4px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day-card {
    background: var(--card-dark);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.day-card.completed {
    background: rgba(61, 155, 143, 0.15);
    border-color: var(--teal);
}

.day-card.rest {
    opacity: 0.6;
}

.day-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.day-distance {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.day-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.day-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.week-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

/* Scout's Forest Screenshot */
.scout-screenshot {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.scout-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.scout-icon {
    font-size: 2rem;
}

.scout-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.scout-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.scout-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.scout-stat {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.planting-header {
    margin: 1rem 0 0.75rem 0;
}

.planting-title {
    font-size: 0.95rem;
    font-weight: bold;
}

.seed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
}

.seed-card {
    background: var(--card-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
}

.seed-card.growing {
    border-color: var(--green);
}

.seed-card.ready {
    background: rgba(78, 222, 128, 0.1);
    border-color: var(--green);
}

.seed-icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.seed-name {
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.seed-progress {
    font-size: 0.7rem;
    color: var(--text-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.seed-indicator {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 1rem;
}

/* Analytics Screenshot */
.analytics-screenshot {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.chart-card {
    background: var(--card-dark);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.chart-card:last-child {
    margin-bottom: 0;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-title {
    font-size: 1rem;
    font-weight: bold;
}

.chart-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--green);
}

.chart-with-axis {
    display: flex;
    gap: 0.75rem;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px;
    padding-top: 0;
    padding-bottom: 2rem;
}

.y-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 120px;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    padding-bottom: 2rem;
}

.chart-bars::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}

.bar {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
}

.bar.active {
    background: linear-gradient(180deg, var(--light-green), var(--teal));
}

.bar-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    white-space: nowrap;
    position: absolute;
    bottom: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
}

.line-chart-container {
    flex: 1;
}

.line-chart {
    height: 100px;
    position: relative;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.x-axis {
    display: flex;
    justify-content: space-around;
    margin-top: 0.5rem;
}

.x-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: center;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.showcase-features {
    list-style: none;
    padding: 0;
}

.showcase-features li {
    color: var(--text-secondary);
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
}

.showcase-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Training Plans Section */
.training-plans {
    padding: 6rem 0;
    background: var(--secondary-dark);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plan-card {
    background: var(--card-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    animation: subtle-wiggle 0.5s ease;
}

@keyframes subtle-wiggle {
    0%, 100% { transform: translateY(-5px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(0.5deg); }
    50% { transform: translateY(-5px) rotate(-0.5deg); }
    75% { transform: translateY(-5px) rotate(0.3deg); }
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.plan-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.plan-card ul {
    list-style: none;
    padding: 0;
}

.plan-card ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.plan-card ul li:before {
    content: "🌰";
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Blog Section */
.blog {
    padding: 6rem 0;
    background: var(--primary-dark);
}

/* Blog Grid/Index */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--secondary-dark);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--teal);
    box-shadow: 0 10px 30px rgba(15, 122, 108, 0.2);
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-category {
    display: inline-block;
    background: var(--card-dark);
    color: var(--green);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: var(--light-green);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.meta-separator {
    opacity: 0.5;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s, gap 0.3s;
    gap: 0.5rem;
}

.blog-card-link:hover {
    color: var(--light-green);
    gap: 0.75rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.breadcrumbs li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--green);
}

.breadcrumbs li:last-child {
    color: var(--text-primary);
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.article-meta {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-byline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.article-author {
    color: var(--text-primary);
}

.article-separator {
    color: var(--text-secondary);
    opacity: 0.5;
}

.article-date {
    color: var(--text-secondary);
}

.article-reading-time {
    color: var(--text-secondary);
}

.article-content {
    color: var(--text-primary);
}

.article-content a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    border-bottom: 1px solid transparent;
}

.article-content a:hover {
    color: var(--light-green);
    border-bottom-color: var(--light-green);
}

.article-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--secondary-dark);
    border-radius: 12px;
    border-left: 4px solid var(--green);
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--light-green);
}

.article-section h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: var(--text-primary);
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.article-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.article-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-conclusion {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

.article-conclusion h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--light-green);
}

.article-conclusion p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.article-conclusion p:last-child {
    margin-bottom: 0;
}

.article-cta {
    background: var(--card-dark);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--green);
}

.article-cta a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-cta a:hover {
    color: var(--light-green);
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-cta {
    background: var(--primary-dark);
    color: var(--text-primary);
    padding: 1.25rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(10, 22, 40, 0.4);
}

.cta-features {
    font-size: 1rem;
    color: var(--text-primary);
    opacity: 0.85;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--secondary-dark);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--green);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .nav-links a:not(.btn-primary) {
        display: none;
    }

    .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .features-grid,
    .steps-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
    }

    .calendar-grid {
        gap: 0.25rem;
    }

    .day-card {
        padding: 0.5rem 0.25rem;
        min-height: 70px;
    }

    .day-distance {
        font-size: 1rem;
    }

    .app-screenshot {
        padding: 1rem;
        min-height: 300px;
        transform: scale(0.85);
        transform-origin: top;
        margin-bottom: -3rem;
    }

    .showcase-item {
        margin-bottom: 2rem;
    }

    .calendar-screenshot,
    .scout-screenshot,
    .analytics-screenshot {
        max-width: 100%;
    }

    .showcase-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .showcase-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .showcase-features li {
        padding: 0.5rem 0;
        padding-left: 2.5rem;
    }

    .week-divider {
        margin: 1.5rem 0;
    }

    .scout-stats {
        gap: 0.65rem;
    }

    .scout-stat {
        padding: 0.75rem;
    }

    .stat-icon {
        font-size: 1.5rem;
        margin-bottom: 0.35rem;
    }

    .stat-value {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .seed-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.65rem;
    }

    .seed-card {
        padding: 0.75rem;
        aspect-ratio: 1;
    }

    .seed-icon {
        font-size: 1.5rem;
    }

    .seed-name {
        font-size: 0.7rem;
    }

    .seed-progress {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

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

    .btn-primary {
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

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

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 0.15rem;
    }

    .day-card {
        padding: 0.35rem 0.15rem;
        min-height: 60px;
    }

    .day-label {
        font-size: 0.6rem;
    }

    .day-distance {
        font-size: 0.9rem;
    }

    .day-type {
        font-size: 0.6rem;
    }

    .day-icon {
        font-size: 1.2rem;
    }

    .app-screenshot {
        padding: 0.75rem;
        min-height: 250px;
        transform: scale(0.75);
        margin-bottom: -4rem;
    }

    .week-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .week-label {
        font-size: 1rem;
    }

    .scout-icon {
        font-size: 1.5rem;
    }

    .scout-title {
        font-size: 1.25rem;
    }

    .scout-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .scout-stat {
        padding: 0.65rem;
        aspect-ratio: 1;
    }

    .stat-icon {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
    }

    .stat-value {
        font-size: 1.35rem;
        margin-bottom: 0.15rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .chart-card {
        padding: 1rem;
    }

    .chart-bars {
        height: 80px;
        padding-bottom: 1.5rem;
    }

    .chart-bars::after {
        bottom: 1.5rem;
    }

    .y-axis {
        height: 80px;
        padding-bottom: 1.5rem;
    }

    .y-label {
        font-size: 0.6rem;
    }

    .bar-label {
        font-size: 0.55rem;
        bottom: -1.5rem;
    }

    .line-chart {
        height: 70px;
    }

    .x-label {
        font-size: 0.55rem;
    }

    .showcase-features li {
        padding-left: 3rem;
    }

    .week-divider {
        margin: 1rem 0;
    }

    .article-header h1 {
        font-size: 1.75rem;
    }

    .article-meta {
        font-size: 1rem;
    }

    .article-byline {
        flex-wrap: wrap;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .article-intro {
        font-size: 1.05rem;
        padding: 1.25rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .article-section h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .article-conclusion h2 {
        font-size: 1.5rem;
    }

    .article-section p,
    .article-conclusion p {
        font-size: 1rem;
    }

    .article-section ul li {
        font-size: 0.95rem;
    }

    .breadcrumbs {
        margin-bottom: 1.5rem;
    }

    .breadcrumbs ol {
        font-size: 0.85rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card h2 {
        font-size: 1.35rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .planting-title {
        font-size: 0.85rem;
    }

    .scout-stats {
        gap: 0.65rem;
    }

    .seed-grid {
        gap: 0.65rem;
    }

    .seed-card {
        padding: 0.65rem;
        aspect-ratio: 1;
    }

    .seed-icon {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
    }

    .seed-name {
        font-size: 0.65rem;
    }

    .seed-progress {
        font-size: 0.6rem;
    }

    .seed-indicator {
        font-size: 0.85rem;
        top: 4px;
        right: 4px;
    }
}
