@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&display=swap');


:root {
    /*  color palette from kit */
    --primary-green: #33CD66;
    --primary-blue: #0D47A1;
    --primary-red: #FF3131;
    --dark-gray: #5B5753;
    --light-gray: #9C9D9B;
    --black: #000000;
    --white: #FFFFFF;
    --bg-light: #FAFAFA;
    --blueprint-blue: #0D47A1;
    --blueprint-line: #0D47A1;
    /* --accent-color: #FF6B35; */
    
    /* Alternative color scheme - maybe use this later
    --primary-green: #2ECC71;
    --primary-blue: #3498DB;
    --primary-red: #E74C3C;
    */
}

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

body {
    font-family: 'Archivo Narrow', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
     position: relative;
    /* overflow-x: hidden; */
    
    /* Custom scrollbar styling - need to finish this */
}

/* Old body styles
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
*/

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--blueprint-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: -1px -1px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--black);
    letter-spacing: 1.2px;
    font-weight: 400;
    line-height: 1.1;
}

h1 { font-size: 4.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
/* h4 { font-size: 2rem; } */

.tech-text {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

.measure-line {
    position: absolute;
    background: var(--blueprint-blue);
    opacity: 0.3;
    pointer-events: none;
}

.measure-line.horizontal {
    height: 1px;
    width: 100%;
}

.measure-line.vertical {
    width: 1px;
    height: 100%;
}

.measure-text {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--blueprint-blue);
    background: var(--white);
    padding: 2px 6px;
    white-space: nowrap;
    pointer-events: none;
}

.corner-bracket {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid var(--blueprint-blue);
    opacity: 0.3;
}

.corner-bracket.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-bracket.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bracket.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-bracket.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

header {
    background: var(--white);
    border-bottom: 2px solid var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 25px;
}

header::before {
    content: 'HEADER MODULE';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    letter-spacing: 2px;
    opacity: 0.5;
}

nav {
    padding: 1.2rem 0;
    position: relative;
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blueprint-blue) 10%, var(--blueprint-blue) 90%, transparent);
    opacity: 0.2;
}

.navbar-brand, .logo {
    color: var(--black) !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Logo styling complete */
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-brand::before, .logo::before {
    content: '[';
    position: absolute;
    left: -15px;
    color: var(--primary-blue);
    opacity: 0.5;
}

.navbar-brand::after, .logo::after {
    content: ']';
    position: absolute;
    right: -15px;
    color: var(--primary-blue);
    opacity: 0.5;
}

.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 600;
    padding: 8px 16px !important;
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 8px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.2s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
}

.cta-button {
    background: var(--primary-green) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-green) !important;
    padding: 10px 20px !important;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '>';
    position: absolute;
    left: -20px;
    transition: left 0.2s ease;
}

.cta-button:hover {
    background: transparent !important;
    color: var(--primary-green) !important;
}

.cta-button:hover::before {
    left: 10px;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero::after {
    content: 'HERO_SECTION // 001';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.hero-container {
    position: relative;
}

.hero-container::before,
.hero-container::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-container::before {
    top: -25px;
    left: -25px;
    border-right: none;
    border-bottom: none;
}

.hero-container::after {
    bottom: -25px;
    right: -25px;
    border-left: none;
    border-top: none;
}

.profile-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image-wrapper::before {
    content: 'PROFILE_IMG';
    position: absolute;
    top: -25px;
    left: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.profile-avatar {
    width: 350px;
    height: 400px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--light-gray), var(--dark-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
    overflow: visible;
}

.profile-avatar .width-measure {
    position: absolute;
    top: -35px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.profile-avatar .width-measure::before,
.profile-avatar .width-measure::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    top: -5px;
}

.profile-avatar .width-measure::before {
    left: 0;
}

.profile-avatar .width-measure::after {
    right: 0;
}

.profile-avatar .width-text {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.6);
    padding: 2px 8px;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 10;
}

/* overlap issue fix later
.profile-avatar .height-measure {
    position: absolute;
    right: -35px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.4);
}

.profile-avatar .height-measure::before,
.profile-avatar .height-measure::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: rgba(255,255,255,0.4);
    right: -5px;
}

.profile-avatar .height-measure::before {
    top: 0;
}

.profile-avatar .height-measure::after {
    bottom: 0;
}
*/

.profile-avatar .height-text {
    position: absolute;
    right: -85px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.6);
    padding: 2px 8px;
    border: 1px solid rgba(255,255,255,0.3);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 10;
}

.profile-bio {
    padding-left: 4rem;
    position: relative;
}

/*
.profile-bio::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    opacity: 0.5;
}
*/



.profile-bio h1 {
    color: white;
    font-size: 5rem;
    margin-bottom: 3rem;
    position: relative;
}

.profile-bio h1::after {
    content: '< MICHAEL_KIRK >';
    position: absolute;
    bottom: -30px;
    left: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 2px;
    white-space: nowrap;
}

.bio-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-weight: 500;
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 20px;
    position: relative;
}

.bio-subtitle::before {
    content: '//';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    font-weight: 400;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.bio-text::before,
.bio-text::after {
    content: '"';
    position: absolute;
    font-size: 2rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.bio-text::before {
    top: 10px;
    left: 10px;
}

.bio-text::after {
    bottom: 10px;
    right: 10px;
}

.hero-cta {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--primary-green);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
}

.hero-cta::before {
    content: '[ ';
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hero-cta::after {
    content: ' ]';
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hero-cta:hover {
    background: transparent;
    color: var(--primary-green);
    transform: translateX(5px);
}

.hero-cta:hover::before,
.hero-cta:hover::after {
    opacity: 1;
}

.goals-section {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.goals-section::before {
    content: 'SECTION_002 // GOALS';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    letter-spacing: 2px;
    opacity: 0.5;
}

  

.goals-container {
    position: relative;
}

.goals-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--blueprint-blue) 20%, var(--blueprint-blue) 80%, transparent);
    opacity: 0.1;
}

.goals-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.goals-title h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.goals-title h2::before,
.goals-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 1px;
    background: var(--blueprint-blue);
    opacity: 0.3;
}

.goals-title h2::before {
    right: calc(100% + 30px);
}

.goals-title h2::after {
    left: calc(100% + 30px);
}

.goal-card {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    
    /* Card styling */
}

/* Alternative card design
.goal-card {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
*/

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.goal-card:hover::before {
    transform: translateX(0);
}

.goal-card::after {
    content: attr(data-index);
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--blueprint-blue);
    opacity: 0.3;
}

.goal-card:nth-child(1)::after { content: '01'; }
.goal-card:nth-child(2)::after { content: '02'; }
.goal-card:nth-child(3)::after { content: '03'; }

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.goal-icon {
    width: 60px;
    height: 60px;
    color: var(--primary-green);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.goal-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.goal-card p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.blog-posts {
    background: var(--bg-light);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.blog-posts::before {
    content: 'SPREADSHEET_VIEW // LATEST';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    letter-spacing: 2px;
    opacity: 0.5;
}

.blog-container {
    position: relative;
}

.blog-title {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-title h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.blog-preview-card {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    position: relative;
}

.blog-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.blog-preview-card:hover::before {
    transform: scaleY(1);
}

.blog-preview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.blog-preview-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-preview-card.featured .blog-preview-image {
    height: 300px;
}

.blog-preview-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-preview-card:hover .blog-preview-image::after {
    opacity: 1;
}

.blog-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-preview-card:hover .blog-preview-image img {
    transform: scale(1.05);
}

.blog-preview-content {
    padding: 2rem;
    position: relative;
}

.blog-category {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    padding-left: 15px;
}

.blog-category::before {
    content: '//';
    position: absolute;
    left: 0;
}

.blog-preview-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-preview-card.featured .blog-preview-content h3 {
    font-size: 1.8rem;
}

.blog-preview-content h3 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-preview-content h3 a:hover {
    color: var(--primary-green);
}

.blog-preview-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--light-gray);
    font-size: 0.8rem;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    position: relative;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.blog-meta span::before {
    content: '< ';
    opacity: 0.5;
}

.blog-meta span::after {
    content: ' >';
    opacity: 0.5;
}

.view-all-btn {
    background: var(--black);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    display: inline-block;
    border: 2px solid var(--black);
    position: relative;
}

.view-all-btn::after {
    content: ' →';
    opacity: 0;
    transition: opacity 0.2s ease;
}

.view-all-btn:hover {
    background: transparent;
    color: var(--black);
}

.view-all-btn:hover::after {
    opacity: 1;
}

/* Spreadsheet-style articles list */
.spreadsheet-header {
    background: var(--dark-gray);
    border: 1px solid var(--blueprint-blue);
    border-bottom: none;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--white);
}

.cell-selector {
    background: var(--white);
    color: var(--black);
    padding: 0.25rem 1rem;
    border: 1px solid var(--blueprint-blue);
    font-weight: 700;
    min-width: 60px;
    text-align: center;
}

.formula-display {
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.spreadsheet-container {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    overflow-x: auto;
    position: relative;
}

.articles-spreadsheet {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.articles-spreadsheet thead {
    background: #e8e8e8;
    border-bottom: 2px solid var(--blueprint-blue);
}

.articles-spreadsheet th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    color: var(--dark-gray);
    border-right: 1px solid #d0d0d0;
    position: relative;
}

.articles-spreadsheet th:last-child {
    border-right: none;
}

.articles-spreadsheet th::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--dark-gray);
    opacity: 0.3;
}

.col-id { width: 60px; }
.col-category { width: 120px; }
.col-title { width: auto; min-width: 300px; }
.col-efficiency { width: 100px; }
.col-time { width: 80px; }
.col-date { width: 120px; }
.col-status { width: 80px; }

.article-row {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.article-row:hover {
    background: #f5f5f5;
    box-shadow: inset 3px 0 0 var(--primary-green);
}

.article-row.featured {
    background: #fafafa;
}

.articles-spreadsheet td {
    padding: 1rem 0.75rem;
    border-right: 1px solid #e0e0e0;
    vertical-align: middle;
}

.articles-spreadsheet td:last-child {
    border-right: none;
}

.cell-id {
    font-weight: 700;
    color: var(--blueprint-blue);
    text-align: center;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
}

.featured-tag {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.productivity-tag {
    background: #FFE4B5;
    color: #8B6914;
    border-color: #8B6914;
}

.finance-tag {
    background: #E6F3FF;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.time-tag {
    background: #FFE6E6;
    color: #CC0000;
    border-color: #CC0000;
}

.nutrition-tag {
    background: #E6FFE6;
    color: #008800;
    border-color: #008800;
}

.health-tag {
    background: #F0E6FF;
    color: #6600CC;
    border-color: #6600CC;
}

.lifestyle-tag {
    background: #FFE6F0;
    color: #CC0066;
    border-color: #CC0066;
}

.col-metric { width: 100px; }
.col-revision { width: 60px; }

.cell-metric {
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    font-size: 0.85rem;
}

.cell-revision {
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
}

.cell-title a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.cell-title a:hover {
    color: var(--primary-green);
}

.cell-description {
    font-size: 0.8rem;
    color: var(--dark-gray);
    line-height: 1.4;
    margin-top: 0.25rem;
    font-weight: 400;
}

.efficiency-score {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    border-radius: 2px;
}

.efficiency-score.high {
    background: #D4F1D4;
    color: #2E7D2E;
}

.efficiency-score.medium {
    background: #FFF4E6;
    color: #CC7A00;
}

.cell-time,
.cell-date {
    font-weight: 500;
    color: var(--dark-gray);
    text-align: center;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-green);
    margin: 0 auto;
    display: block;
}

.status-indicator.active {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(51, 205, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(51, 205, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(51, 205, 102, 0);
    }
}

.spreadsheet-footer {
    background: #f0f0f0;
    border-top: 1px solid var(--blueprint-blue);
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--dark-gray);
}

.row-count {
    font-weight: 600;
}

.calc-status {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments for spreadsheet */
@media (max-width: 768px) {
    .spreadsheet-container {
        font-size: 0.8rem;
    }
    
    .col-efficiency,
    .col-status {
        display: none;
    }
    
    .articles-spreadsheet th.col-efficiency,
    .articles-spreadsheet th.col-status,
    .articles-spreadsheet td.cell-efficiency,
    .articles-spreadsheet td.cell-status {
        display: none;
    }
    
    .cell-description {
        display: none;
    }
}

/* Additional styles for resources spreadsheet */
.articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.col-source { width: 150px; }
.col-quality { width: 80px; }
.col-impact { width: 100px; }
.col-link { width: 60px; }

.cell-source {
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.quality-score {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    font-weight: 700;
    border-radius: 2px;
}

.quality-score.high {
    background: #D4F1D4;
    color: #2E7D2E;
}

.quality-score.medium {
    background: #FFF4E6;
    color: #CC7A00;
}

.cell-quality {
    text-align: center;
}

.cell-impact {
    font-weight: 600;
    color: var(--primary-green);
    text-align: center;
    font-size: 0.85rem;
}

.cell-link {
    text-align: center;
}

.external-link {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.external-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

/* Newsletter row in spreadsheet */
.newsletter-row {
    background: linear-gradient(135deg, rgba(51, 205, 102, 0.1), rgba(42, 184, 87, 0.1));
}

.newsletter-row:hover {
    box-shadow: none;
}

.newsletter-cell {
    padding: 2rem !important;
    border: none !important;
}

.inline-newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.inline-newsletter h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.inline-newsletter p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.inline-newsletter .newsletter-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.inline-newsletter input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--blueprint-blue);
    font-family: 'Archivo Narrow', sans-serif;
}

.inline-newsletter button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.inline-newsletter button:hover {
    background: var(--primary-blue);
}

/* Homepage Summary Spreadsheet (Compact) */
.summary-spreadsheet-container {
    background: var(--white);
    border: 2px solid var(--blueprint-blue);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    
    /* Main container for homepage spreadsheet */
}

/* Old spreadsheet styling
.summary-spreadsheet-container {
    border: 1px solid #ccc;
    background: #f9f9f9;
    border-radius: 4px;
}
*/

.spreadsheet-tab {
    background: var(--blueprint-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
}

.summary-spreadsheet {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
}

.summary-spreadsheet thead {
    background: #f0f0f0;
    border-bottom: 2px solid var(--dark-gray);
}

.summary-spreadsheet th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sum-col-rank { width: 50px; text-align: center; }
.sum-col-title { width: auto; }
.sum-col-impact { width: 100px; text-align: center; }
.sum-col-new { width: 80px; text-align: center; }

.summary-row {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.summary-row:hover {
    background: #f8f8f8;
}

.featured-row {
    background: #fffef0;
}

.sum-rank {
    text-align: center;
    font-weight: 700;
    color: var(--dark-gray);
    padding: 1rem 0.75rem;
}

.featured-row .sum-rank {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.sum-title {
    padding: 1rem 0.75rem;
}

.sum-title a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.sum-title a:hover {
    color: var(--primary-green);
}

.sum-meta {
    display: block;
    font-size: 0.75rem;
    color: var(--light-gray);
    font-weight: 400;
}

.sum-impact {
    text-align: center;
    padding: 1rem 0.75rem;
}

.impact-high {
    color: var(--primary-green);
    font-weight: 700;
}

.impact-medium {
    color: #CC7A00;
    font-weight: 700;
}

.sum-new {
    text-align: center;
    padding: 1rem 0.75rem;
}

.new-badge {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.summary-footer {
    background: #f8f8f8;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--dark-gray);
    border-top: 1px solid #e0e0e0;
}

.sum-stat {
    font-weight: 600;
}

.sum-updated {
    color: var(--light-gray);
}

/* Learning Modules Spreadsheet Style */
.modules-spreadsheet-container {
    background: var(--white);
    border: 2px solid #1a1a1a;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-top: 2rem;
    
    /* Module spreadsheet container */
}

.spreadsheet-header {
    background: #1a1a1a;
    color: var(--white);
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sheet-tabs {
    display: flex;
    gap: 0;
}

.sheet-tab {
    padding: 0.5rem 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #333;
    border-right: 1px solid #555;
}

.sheet-tab.active {
    background: var(--white);
    color: var(--black);
}

.sheet-tab:hover:not(.active) {
    background: #444;
}

.sheet-controls {
    display: flex;
    gap: 0.5rem;
}

.ctrl-btn {
    background: none;
    border: 1px solid #555;
    color: var(--white);
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ctrl-btn:hover {
    background: #444;
    border-color: #777;
}

.modules-spreadsheet {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
}

.modules-spreadsheet thead {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}

.modules-spreadsheet th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mod-col-id { width: 100px; }
.mod-col-module { width: 220px; }
.mod-col-desc { width: auto; }
.mod-col-topics { width: 280px; }
.mod-col-time { width: 80px; text-align: center; }
.mod-col-level { width: 120px; text-align: center; }
.mod-col-action { width: 100px; text-align: center; }

.module-row {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.module-row:hover {
    background: #f8f8f8;
    box-shadow: inset 4px 0 0 var(--primary-green);
}

.module-row td {
    padding: 1.25rem 0.75rem;
    vertical-align: middle;
}

.mod-id {
    font-weight: 700;
    color: #666;
    font-size: 0.85rem;
}

.mod-module {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.module-icon {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-green);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(51, 205, 102, 0.1);
    border-radius: 4px;
}

.module-name {
    font-weight: 700;
    color: var(--black);
}

.mod-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #555;
}

.mod-topics {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.topic-tag {
    background: #e8e8e8;
    color: #333;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.mod-time {
    text-align: center;
    font-weight: 600;
    color: #666;
}

.level-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.level-badge.beginner {
    background: #e3f2fd;
    color: #1565c0;
}

.level-badge.intermediate {
    background: #fff3e0;
    color: #ef6c00;
}

.level-badge.advanced {
    background: #fce4ec;
    color: #c2185b;
}

.start-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.start-btn:hover {
    background: var(--primary-blue);
    transform: translateX(3px);
}

.modules-footer {
    background: #f8f8f8;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.footer-stats {
    display: flex;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

.footer-actions {
    display: flex;
    gap: 0.75rem;
}

.footer-btn {
    background: none;
    border: 1px solid #ddd;
    color: #666;
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-btn:hover {
    background: #f0f0f0;
    border-color: #999;
}

.footer-btn.primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.footer-btn.primary:hover {
    background: #0a3980;
    border-color: #0a3980;
    
    /* Primary button hover state */
}


/* End of CSS file */

/* Blog Analysis Spreadsheet Style */
.analysis-header {
    background: #2c2c2c;
    color: var(--white);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--dark-gray);
    border-bottom: none;
}

.analysis-tools {
    display: flex;
    gap: 0.5rem;
}

.tool-btn {
    background: transparent;
    border: 1px solid #555;
    color: #ccc;
    padding: 0.5rem 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tool-btn.active {
    background: #444;
    color: var(--white);
    border-color: var(--primary-green);
}

.tool-btn:hover {
    background: #333;
    color: var(--white);
}

.tool-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

.query-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.query-label {
    color: var(--primary-green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
}

.query-display {
    color: #ccc;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.analysis-container {
    background: var(--white);
    border: 1px solid var(--dark-gray);
    overflow-x: auto;
}

.analysis-spreadsheet {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.analysis-spreadsheet thead {
    background: #3a3a3a;
    color: var(--white);
}

.analysis-spreadsheet th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-right: 1px solid #555;
}

.analysis-spreadsheet th:last-child {
    border-right: none;
}

.ana-col-id { width: 80px; }
.ana-col-cat { width: 80px; }
.ana-col-title { width: auto; min-width: 300px; }
.ana-col-score { width: 100px; }
.ana-col-views { width: 80px; text-align: right; }
.ana-col-saves { width: 80px; text-align: right; }
.ana-col-roi { width: 100px; text-align: right; }
.ana-col-date { width: 80px; }

.analysis-row {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.analysis-row:hover {
    background: #f5f5f5;
}

.top-performer {
    background: #f0fff4;
}

.analysis-row td {
    padding: 0.75rem;
    vertical-align: middle;
}

.ana-id {
    font-weight: 700;
    color: var(--blueprint-blue);
    font-size: 0.85rem;
}

.cat-badge {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 3px;
    text-transform: uppercase;
}

.cat-badge.time { background: #ffe0e0; color: #cc0000; }
.cat-badge.nutrition { background: #e0ffe0; color: #008800; }
.cat-badge.finance { background: #e0e0ff; color: #0000cc; }
.cat-badge.productivity { background: #fff0e0; color: #cc6600; }
.cat-badge.health { background: #f0e0ff; color: #6600cc; }
.cat-badge.lifestyle { background: #ffe0f0; color: #cc0066; }

.ana-title a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: color 0.2s ease;
}

.ana-title a:hover {
    color: var(--primary-green);
}

.ana-subtitle {
    font-size: 0.8rem;
    color: var(--light-gray);
    margin-top: 0.25rem;
}

.ana-score {
    position: relative;
}

.score-bar {
    background: linear-gradient(to right, var(--primary-green), #2ab857);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    border-radius: 2px;
}

.ana-views, .ana-saves {
    text-align: right;
    color: var(--dark-gray);
    font-weight: 600;
}

.roi-positive {
    color: var(--primary-green);
    font-weight: 700;
}

.ana-date {
    color: var(--dark-gray);
    font-size: 0.85rem;
}

.analysis-footer {
    background: #f0f0f0;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--dark-gray);
    border-top: 2px solid var(--dark-gray);
}

.data-stats {
    display: flex;
    gap: 1rem;
}

.data-stats span {
    font-weight: 600;
}

.query-time {
    color: var(--primary-green);
    font-weight: 700;
}

/* External Resources Links Dashboard Style */
.links-dashboard {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    
    /* Dashboard header styling */
}

/* Old dashboard design
.links-dashboard {
    background: #333333;
    border-radius: 8px 8px 0 0;
    padding: 1.5rem;
}
*/

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

.dashboard-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.db-icon {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-right: 0.5rem;
}

.sync-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: #aaa;
}

.sync-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.filter-bar {
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.filter-icon {
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-right: 0.25rem;
}

.active-filter {
    color: var(--primary-green);
    font-weight: 700;
}

.result-count {
    margin-left: auto;
    color: #aaa;
}

.links-container {
    background: var(--white);
    border: 2px solid #2d2d2d;
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.links-spreadsheet {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
}

.links-spreadsheet thead {
    background: #f5f5f5;
    border-bottom: 2px solid #ddd;
}

.links-spreadsheet th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-col-fav { width: 50px; text-align: center; }
.link-col-source { width: 200px; }
.link-col-title { width: auto; }
.link-col-type { width: 100px; }
.link-col-rating { width: 120px; }
.link-col-verified { width: 80px; text-align: center; }
.link-col-action { width: 100px; text-align: center; }

.link-row {
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.link-row:hover {
    background: #f8f8f8;
    box-shadow: inset 4px 0 0 var(--primary-green);
}

.link-row.featured {
    background: #f0fff4;
}

.link-row td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.link-fav {
    text-align: center;
}

.fav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.fav-btn:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.fav-btn.active {
    color: #ffd700;
}

.link-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.favicon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

.link-title a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.link-title a:hover {
    color: var(--primary-green);
}

.link-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #e0e0e0;
    color: #666;
    padding: 0.2rem 0.5rem;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
}

.type-badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.type-badge.article { background: #e3f2fd; color: #1976d2; }
.type-badge.guide { background: #f3e5f5; color: #7b1fa2; }
.type-badge.study { background: #e8f5e9; color: #388e3c; }
.type-badge.tool { background: #fff3e0; color: #f57c00; }
.type-badge.video { background: #ffebee; color: #d32f2f; }

.link-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.rating-num {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.85rem;
}

.verified-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.verified-badge.gold {
    background: #ffd700;
    color: #333;
}

.open-btn {
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: inline-block;
}

.open-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.links-footer {
    background: #f8f8f8;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid #ddd;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.link-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.stat-icon {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    margin-right: 0.25rem;
}

.update-status {
    color: var(--primary-green);
    font-weight: 600;
}

.newsletter-row .link-fav,
.newsletter-row .link-source,
.newsletter-row .link-type,
.newsletter-row .link-rating,
.newsletter-row .link-verified,
.newsletter-row .link-action {
    display: none;
}

.newsletter-row td {
    padding: 0 !important;
}

.newsletter-row .link-title {
    width: 100%;
}

.features-section {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.features-section::before {
    content: 'FEATURES // GRID_LAYOUT';
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    letter-spacing: 2px;
    opacity: 0.5;
}

.features-container {
    position: relative;
}

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

.section-header h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
}

.section-header p::before {
    content: '{ ';
    color: var(--blueprint-blue);
    opacity: 0.3;
}

.section-header p::after {
    content: ' }';
    color: var(--blueprint-blue);
    opacity: 0.3;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    position: relative;
    height: 450px;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.feature-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.feature-image::before {
    content: 'IMG_ASSET';
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 2px 8px;
    z-index: 2;
    letter-spacing: 1px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 2rem;
    height: 250px;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
}

.feature-content p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    flex-grow: 1;
}

.feature-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
}

.feature-link::before {
    content: '[ ';
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feature-link:hover::before {
    opacity: 1;
}

.feature-link:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.newsletter {
    background: linear-gradient(135deg, var(--primary-green) 0%, #2AB857 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
    pointer-events: none;
}

.newsletter::after {
    content: 'SUBSCRIBE_MODULE // ACTIVE';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.newsletter-container {
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.newsletter h2::before,
.newsletter h2::after {
    content: '//';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
}

.newsletter h2::before {
    left: -40px;
}

.newsletter h2::after {
    right: -40px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    font-family: 'Archivo Narrow', sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-button {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--white);
    padding: 15px 25px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    position: relative;
}

.newsletter-button::before {
    content: '>';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.2s ease;
}

.newsletter-button:hover {
    background: transparent;
    color: var(--white);
}

.newsletter-button:hover::before {
    left: 10px;
    opacity: 1;
}

.subscriber-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 1rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue), var(--primary-red));
}

footer::after {
    content: 'END_DOCUMENT';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: color 0.2s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-green);
    transition: width 0.2s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.3);
}

.social-links a:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.popup-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border: 2px solid var(--primary-blue);
    width: 90%;
    max-width: 650px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.popup-content::before {
    content: 'MODAL_WINDOW';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--primary-blue);
    background: var(--white);
    padding: 0 10px;
    letter-spacing: 2px;
}

.popup-content::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(13, 71, 161, 0.1);
    pointer-events: none;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark-gray);
    transition: all 0.2s ease;
    font-family: 'JetBrains Mono', monospace;
}

.popup-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.popup-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-size: 2.5rem;
    position: relative;
}

.popup-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-green);
}

.popup-content p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size: 1rem;
    color: var(--dark-gray);
}

.dimension-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--blueprint-blue);
    background: var(--white);
    padding: 2px 8px;
    border: 1px solid var(--blueprint-blue);
    opacity: 0.6;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

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

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

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

.nav-links {
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 1rem;
}

.blog-header, .page-header {
    background: var(--white);
    padding: 3rem 0 2rem;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
    margin-bottom: 3rem;
}

.blog-header::before, .page-header::before {
    content: 'PAGE_HEADER // MODULE';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    letter-spacing: 2px;
    opacity: 0.5;
}

.excel-header {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
}

.cell-reference {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.formula-bar {
    color: var(--dark-gray);
    flex-grow: 1;
}

.blog-header h1, .page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
}

.blog-header h1::after, .page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--primary-green);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--light-gray), var(--dark-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    font-family: 'Bebas Neue', sans-serif;
    position: relative;
}

.blog-image .cell-ref {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    background: rgba(255,255,255,0.9);
    color: var(--dark-gray);
    padding: 2px 8px;
    border: 1px solid var(--dark-gray);
}

.blog-image .tech-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
}

.efficiency-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 10px;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-category, .article-category {
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
}

.blog-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
    line-height: 1.3;
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--light-gray);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.load-more {
    text-align: center;
    margin: 3rem 0;
}

.load-more-button {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
    padding: 15px 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.load-more-button:hover {
    background: transparent;
    color: var(--black);
}

.filter-section {
    background: var(--bg-light);
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid var(--blueprint-blue);
    border-bottom: 1px solid var(--blueprint-blue);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-label {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--dark-gray);
}

.filter-button {
    background: transparent;
    border: 1px solid var(--blueprint-blue);
    color: var(--dark-gray);
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-button:hover {
    background: var(--blueprint-blue);
    color: var(--white);
}

.filter-button.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.search-box {
    position: relative;
}

.search-input {
    padding: 10px 20px;
    border: 1px solid var(--blueprint-blue);
    background: var(--white);
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 1rem;
    width: 300px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.articles-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.article-card:hover::before {
    transform: scaleY(1);
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.article-card .cell-ref {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--blueprint-blue);
    opacity: 0.3;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-link {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-link:hover {
    color: var(--primary-green);
}

.external-icon {
    font-size: 1.2rem;
    opacity: 0.5;
}

.article-description {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--light-gray);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.article-source {
    font-weight: 600;
}

.newsletter-banner {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-green), #2AB857);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
}

.newsletter-banner h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-inline input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
}

.newsletter-inline input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-inline button {
    background: var(--white);
    color: var(--primary-green);
    border: none;
    padding: 15px 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.newsletter-inline button:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.article-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--blueprint-blue);
    position: relative;
}

.article-header::before {
    content: 'ARTICLE_001';
    position: absolute;
    top: -20px;
    left: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    letter-spacing: 2px;
    opacity: 0.5;
}

.article-title {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
    line-height: 1.1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), #2AB857);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.article-content h2 {
    font-size: 2.5rem;
    margin: 3rem 0 1.5rem;
    color: var(--black);
    position: relative;
}

.article-content h2::before {
    content: '//';
    position: absolute;
    left: -25px;
    color: var(--primary-green);
    opacity: 0.5;
}

.article-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--black);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content pre {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 1.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.article-content code {
    font-family: 'JetBrains Mono', monospace;
    background: rgba(13, 71, 161, 0.1);
    padding: 2px 6px;
    font-size: 0.9em;
}

.article-content blockquote {
    border-left: 3px solid var(--primary-green);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--dark-gray);
}

.highlight-box {
    background: var(--bg-light);
    border: 2px solid var(--primary-green);
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.highlight-box::before {
    content: 'KEY_POINT';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--white);
    padding: 0 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--primary-green);
    letter-spacing: 2px;
}

.highlight-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--blueprint-blue);
}

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

.share-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--black);
    transition: all 0.2s ease;
}

.share-button:hover {
    background: transparent;
    color: var(--black);
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--primary-green), #2AB857);
    color: var(--white);
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
}

.newsletter-cta h3 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.newsletter-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
}

.newsletter-cta .newsletter-form {
    position: relative;
    z-index: 2;
}

.related-articles h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.related-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.related-card h4 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-card h4 a:hover {
    color: var(--primary-green);
}

.related-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.landing-hero-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-main-content {
    text-align: center;
    position: relative;
}

.hero-main-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-highlight {
    color: var(--primary-green);
    background: rgba(51, 205, 102, 0.2);
    padding: 0 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 3rem;
}

.measurement-line {
    position: absolute;
    background: rgba(255,255,255,0.3);
    pointer-events: none;
}

.measurement-line.top-line {
    top: -40px;
    left: 0;
    right: 0;
    height: 1px;
}

.measurement-text {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    padding: 2px 8px;
}

.measurement-text.top-measurement {
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
}

.angle-indicator {
    position: absolute;
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(255,255,255,0.3);
    border-right: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
}

.angle-measurement {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.benefits-section {
    position: relative;
}

.measurement-line.side-line {
    left: -40px;
    top: 0;
    bottom: 0;
    width: 1px;
}

.measurement-text.side-measurement {
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.1rem;
    position: relative;
    transition: all 0.2s ease;
}

.benefits-list li:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.benefit-metric {
    color: var(--primary-green);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    display: inline-block;
    min-width: 50px;
    margin-right: 10px;
}

.cta-section {
    position: relative;
}

.corner-measurement {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid rgba(255,255,255,0.3);
    border-right: 2px solid rgba(255,255,255,0.3);
}

.corner-text {
    position: absolute;
    top: 5px;
    right: 35px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.5);
}

.email-form {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.email-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 1rem;
}

.email-input::placeholder {
    color: rgba(255,255,255,0.7);
}

.submit-button {
    width: 100%;
    padding: 15px 20px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: var(--white);
    color: var(--primary-green);
}

.privacy-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.problem-section {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.problem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-measurement-line {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--blueprint-blue);
    opacity: 0.3;
}

.section-measurement-text {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--blueprint-blue);
    background: var(--white);
    padding: 2px 8px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--blueprint-blue);
    position: relative;
    background: var(--bg-light);
}

.item-measurement {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
    border-left: 2px solid var(--blueprint-blue);
    border-top: 2px solid var(--blueprint-blue);
    opacity: 0.3;
}

.item-angle {
    position: absolute;
    top: 15px;
    left: 55px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    opacity: 0.5;
}

.problem-item h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.problem-number {
    font-size: 3rem;
    color: var(--primary-red);
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 1rem;
}

.solution-section {
    background: var(--bg-light);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
}

.solution-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.transformation-timeline {
    position: relative;
    padding: 2rem 0;
}

.transformation-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    z-index: 10;
}

.value-props {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.section-dimension-line {
    position: absolute;
    top: -30px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--blueprint-blue);
    opacity: 0.3;
}

.section-dimension-text {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--blueprint-blue);
    background: var(--white);
    padding: 2px 8px;
}

.kit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.kit-item {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 2rem;
    position: relative;
    transition: all 0.2s ease;
}

.kit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.corner-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--blueprint-blue);
    border-right: 2px solid var(--blueprint-blue);
    opacity: 0.3;
}

.corner-angle {
    position: absolute;
    top: 5px;
    right: 35px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--blueprint-blue);
    opacity: 0.5;
}

.kit-item h3 {
    color: var(--black);
    margin-bottom: 1rem;
}

.kit-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.kit-value {
    color: var(--primary-green);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
}

.total-value {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.value-line {
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--primary-green);
}

.value-measurement {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary-green);
}

.proof-section {
    background: var(--bg-light);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
    position: relative;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.metrics-measurement-line {
    position: absolute;
    top: -30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--blueprint-blue);
    opacity: 0.3;
}

.metrics-measurement-text {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--blueprint-blue);
    background: var(--bg-light);
    padding: 2px 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    position: relative;
}

.stat-angle-marker {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    border-top: 2px solid var(--primary-green);
    border-right: 2px solid var(--primary-green);
    transform: rotate(45deg);
    opacity: 0.3;
}

.stat-angle-text {
    position: absolute;
    top: 5px;
    right: 40px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--primary-green);
    opacity: 0.5;
}

.stat-number {
    font-size: 3.5rem;
    color: var(--primary-green);
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-gray);
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.testimonials {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 2rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

.faq-section {
    background: var(--bg-light);
    padding: 5rem 0;
    border-bottom: 2px solid var(--primary-blue);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1rem 2rem 2rem;
    max-height: 500px;
}

.final-cta {
    background: linear-gradient(135deg, var(--primary-green), #2AB857);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 25px 25px;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-measurement-frame {
    position: relative;
    padding: 4rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.frame-line {
    position: absolute;
    background: rgba(255,255,255,0.3);
}

.frame-line.top,
.frame-line.bottom {
    left: 20px;
    right: 20px;
    height: 1px;
}

.frame-line.top {
    top: 0;
}

.frame-line.bottom {
    bottom: 0;
}

.frame-line.left,
.frame-line.right {
    top: 20px;
    bottom: 20px;
    width: 1px;
}

.frame-line.left {
    left: 0;
}

.frame-line.right {
    right: 0;
}

.frame-measurement {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.5);
    padding: 2px 8px;
}

.frame-measurement.top-left {
    top: -20px;
    left: 20px;
}

.frame-measurement.bottom-right {
    bottom: -20px;
    right: 20px;
}

.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-prop-item {
    text-align: center;
}

.value-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 0.5rem;
}

.value-label {
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.final-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-form .email-input {
    flex: 1;
    min-width: 250px;
}

.final-form .submit-button {
    width: auto;
    padding: 15px 30px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.8;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.8rem; }
    
    header {
        margin-top: 0;
    }
    
    .profile-container {
        text-align: center;
        flex-direction: column;
    }
    
    .profile-avatar {
        width: 280px;
        height: 320px;
        font-size: 6rem;
        margin: 0 auto 2rem;
    }
    
    .profile-bio {
        padding-left: 0;
    }
    
    .profile-bio::before {
        display: none;
    }
    
    .profile-bio h1 {
        font-size: 3.5rem;
    }
    
    .goal-card {
        height: auto;
        min-height: 250px;
    }
    
    .feature-card {
        height: auto;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        max-width: none;
        width: 100%;
    }
    
    .subscriber-stats {
        gap: 2rem;
    }
    
    .section-header h2,
    .goals-title h2,
    .blog-title h2 {
        font-size: 2.5rem;
    }
    
    .newsletter h2 {
        font-size: 2.5rem;
    }
    
    .popup-content {
        padding: 2rem;
        margin: 10% auto;
    }
    
    .popup-content h2 {
        font-size: 2rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-bottom: 2px solid var(--primary-blue);
    }
    
    .nav-links.active {
        display: flex;
    }
    /*
    .measure-line,
    .measure-text,
    .dimension-label,
    .corner-bracket,
    .profile-avatar .width-measure,
    .profile-avatar .height-measure,
    .profile-avatar .width-text,
    .profile-avatar .height-text,
    .hero::after,
    .goals-section::before,
    .blog-posts::before,
    .features-section::before,
    .newsletter::after,
    footer::after,
    .profile-bio h1::after,
    header::before,
    .section-measurement-line,
    .section-measurement-text,
    .measurement-line,
    .measurement-text,
    .angle-indicator,
    .angle-measurement,
    .corner-measurement,
    .corner-text,
    .item-measurement,
    .item-angle,
    .section-dimension-line,
    .section-dimension-text,
    .corner-indicator,
    .corner-angle,
    .metrics-measurement-line,
    .metrics-measurement-text,
    .stat-angle-marker,
    .stat-angle-text,
    .frame-measurement {
        display: none;
    } */
    
    .timeline-item {
        flex-direction: column !important;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .transformation-timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px !important;
        transform: translateX(0) !important;
    }
    
    .landing-hero-grid {
        gap: 2rem;
    }
    
    .hero-main-content h1 {
        font-size: 2.5rem;
    }
    
    .final-form {
        flex-direction: column;
    }
    
    .final-form .email-input,
    .final-form .submit-button {
        width: 100%;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    background: var(--bg-light);
    border: 2px solid var(--blueprint-blue);
    border-left: none;
    border-right: none;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--blueprint-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: -1px -1px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.carousel-arrow {
    background: var(--white);
    border: 2px solid var(--blueprint-blue);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--dark-gray);
}

.carousel-arrow:hover {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-wrapper {
    flex: 1;
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
}

.carousel-track {
    display: flex;
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--white);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content h2 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
    max-width: 500px;
    line-height: 1.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--blueprint-blue);
}

.dot.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--dark-gray);
    border-color: var(--dark-gray);
}

@media (max-width: 768px) {
    .hero-carousel {
        padding: 2.5rem 0 4rem;
    }
    
    .carousel-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        display: none; /* hide on mobile - takes up too much space */
    }
    
    .carousel-wrapper {
        height: 140px;
        width: 100%;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .carousel-dots {
        position: static;
        transform: none;
        margin-top: 1.5rem;
        gap: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Page Content Styles for Policy Pages */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1565c0 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin: 0;
    color: var(--white);
}

.page-content {
    padding: 4rem 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper h2 {
    color: var(--black);
    margin: 2.5rem 0 1rem;
    font-size: 2.2rem;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 0.5rem;
}

.content-wrapper h3 {
    color: var(--dark-gray);
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
}

.content-wrapper p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-size: 1rem;
}

.content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .content-wrapper {
        padding: 0 1.5rem;
    }
    
    .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.4rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background: var(--bg-light);
    border-bottom: 2px solid var(--blueprint-blue);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--blueprint-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.about-content {
    padding: 4rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.value-card {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.value-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.approach-list {
    margin-top: 2rem;
}

.approach-item {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.approach-item h4 {
    color: var(--black);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.approach-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 1rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-card, .stats-card {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 2rem;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), #2AB857);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    border: 2px solid var(--blueprint-blue);
}

.team-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.team-title {
    color: var(--primary-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.stats-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-cta {
    background: linear-gradient(135deg, var(--primary-green), #2AB857);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary-green);
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    border: 2px solid var(--white);
}

.cta-btn:hover {
    background: transparent;
    color: var(--white);
}

/* Shop Now Page Styles */
.shop-hero {
    background: var(--bg-light);
    border-bottom: 2px solid var(--blueprint-blue);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(var(--blueprint-blue) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-blue) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
}

.shop-hero-content {
    position: relative;
    z-index: 2;
}

.shop-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.shop-content {
    padding: 4rem 0;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.shop-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.shop-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--bg-light);
    border: 2px solid var(--blueprint-blue);
    overflow: hidden;
    transition: all 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.product-image {
    height: 200px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--blueprint-blue);
}

.product-placeholder {
    width: 80px;
    height: 80px;
    color: var(--primary-green);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-info {
    padding: 2rem;
}

.product-category {
    color: var(--primary-green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.product-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--blueprint-blue);
    color: var(--white);
    padding: 4px 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--blueprint-blue);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin-top: 0.2rem;
}

.product-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    color: var(--dark-gray);
    font-weight: 500;
}

.product-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 20px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 2px solid var(--primary-green);
}

.product-btn:hover {
    background: transparent;
    color: var(--primary-green);
}

.shop-info {
    margin-bottom: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-light);
    border: 1px solid var(--blueprint-blue);
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--primary-green);
}

.info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.info-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-cta {
    background: linear-gradient(135deg, var(--primary-blue), #1565c0);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-cta .cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-stats {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1,
    .shop-hero h1 {
        font-size: 2.5rem;
    }
}