:root {
    --primary-color: #37a000;
    --primary-hover: #2e8600;
    --text-color: #1a202c; /* Darker for better contrast */
    --text-light: #4a5568; /* Softer light text */
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    --line-height: 1.6;
    --container-width: 1200px;
    --section-spacing: 6rem;
    --card-radius: 8px;
    --btn-radius: 4px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes particle-flow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

/* Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    padding: 2rem 0; /* Adjusted padding */
    position: relative;
    overflow: hidden;
    text-align: left;
    background-color: #111827; /* Dark background */
    color: var(--white);
    min-height: 100vh; /* Make hero fill viewport */
    display: flex;
    align-items: center; /* Vertically center content */
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 3rem; /* Adjusted gap */
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, var(--gray-400) 1px, transparent 1px),
        radial-gradient(circle, var(--gray-400) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particle-flow 30s linear infinite;
    z-index: 0;
    opacity: 0.3; /* Increased opacity */
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    flex: 1;
    max-width: 45%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    background: linear-gradient(to right, #ffffff, #b0b0b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem; /* Reduced font size */
    color: var(--gray-300); /* Lighter text for dark bg */
    max-width: 600px;
    margin: 0 0 2rem;
}

.hero-cta {
    margin-top: 2rem;
}

.button.cta-button {
    background: linear-gradient(to right, var(--primary-color), #2e8600);
    color: white;
    padding: 0.8rem 2.2rem; /* Adjusted padding */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem; /* Made button text slightly larger for new text */
    transition: all 0.3s ease;
    border: none; /* Remove border */
    box-shadow: 0 4px 15px rgba(55, 160, 0, 0.4);
}

.button.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 7px 25px rgba(55, 160, 0, 0.5);
}

.cta-subtext {
    color: var(--gray-400); /* Lighter text for dark bg */
    font-size: 0.9rem;
    margin-top: 0; /* Reset margin */
}

.hero-note {
    font-style: italic;
    color: var(--gray-500); /* Even softer color */
    font-size: 0.85rem;
    margin-top: 0.25rem; /* Tighter margin */
}

.hero-image-container {
    margin-top: 0;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
    flex: 1;
    max-width: 55%;
}

.hero-image-wrapper {
    background: transparent; /* Remove background */
    border-radius: 16px;
    padding: 0; /* Remove padding */
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.hero-gif {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #374151; /* Darker border */
}

.hero-keyword {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem; /* Adjusted margin */
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 65ch;
    margin: 0 auto 4rem;
}

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

.step {
    text-align: center;
}

.step-illustration {
    height: 120px;
    width: 120px;
    margin: 0 auto 2rem;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.step-illustration i {
    font-size: 3rem;
    color: var(--primary-color);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-light);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Give even more space to the image */
    align-items: center;
    gap: 5rem;
    background: var(--gray-100);
    padding: 4rem;
    border-radius: 20px;
}

.feature-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
    background-color: #e9f5e3;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 0;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    will-change: transform; /* Hint for browser animation optimization */
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Founder Note / Early Access Section */
.founder-note {
    padding: 6rem 0;
    background-color: #1A202C;
    color: var(--white);
}

.founder-card {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.founder-avatar {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    flex-shrink: 0;
}

.founder-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.founder-content p {
    color: var(--gray-300);
    max-width: 65ch;
}

.founder-name {
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--white);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.pricing-card {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    padding: 3rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.pricing-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center; /* Changed to center for better alignment */
    gap: 0.75rem; /* Slightly increased gap */
    margin-bottom: 1rem; /* Added margin-bottom */
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.pricing-features .feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.pricing-features ul {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.pricing-cta .cta-button {
    width: 100%;
    display: block;
}

.pricing-cta .cta-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.pricing-discount-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 2rem;
}

.discounted-price {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 700;
}

.pricing-subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.discount-code {
    background-color: #e9f5e3; /* Softer, on-brand background */
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    margin-top: 1.5rem;
    border: 2px dashed var(--primary-color);
    color: var(--text-color);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    font-family: inherit;
}

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    color: var(--text-light);
    padding-bottom: 1.5rem;
    line-height: 1.7;
}

/* When FAQ is active */
.faq-item.active .faq-question {
    color: var(--primary-color);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    /* Set max-height to a value larger than any possible answer height */
    max-height: 300px;
}

/* Hover only on non-touch devices */
html:not(.touch-device) .faq-item:not(.active) .faq-question:hover {
  color: var(--primary-color);
}

/* Remove tap-and-hold blue highlight on mobile */
.faq-question {
  -webkit-tap-highlight-color: transparent;
}

.faq-question:focus {
    outline: none;
}

.early-access-form {
    margin-top: 2rem;
}

.early-access-form .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input.form-control {
    background-color: #2D3748 !important;
    border-color: #4A5568 !important;
    color: var(--white) !important;
}

.early-access-form .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
    background-color: var(--primary-color) !important;
    font-size: 1.1rem !important;
    width: auto !important;
    padding: 12px 30px !important;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--gray-100);
}

.banner-visible footer {
    padding-bottom: calc(3rem + 70px);
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-links {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
}

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

.footer-link-separator {
    margin: 0 0.5rem;
    color: var(--text-light);
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--text-light);
    cursor: pointer;
    text-decoration: none;
}

.link-button:hover {
    text-decoration: underline;
    color: var(--primary-color);
}


/* Contact Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
    animation: fadeIn 0.3s ease;
    /* Add flexbox for centering */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: 1rem; /* Use a small margin instead of percentage */
    padding: 2.5rem;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 0.4s ease;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    border: none;
    background: none;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-content p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(55, 160, 0, 0.1);
}

.form-group .cta-button {
    width: 100%;
}

.hidden {
    display: none;
}

#form-success-message {
    text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
      flex-direction: column;
      text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-image-container {
      margin-top: 2.5rem; /* Reduced margin for mobile */
      max-width: 100%;
    }
    .steps-container, .feature-card {
        grid-template-columns: 1fr;
    }
    .feature-card {
        gap: 3rem;
    }
    .feature-image {
        order: -1;
    }
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: unset;
        padding: 4rem 0;
    }
    .hero-title { 
        font-size: 2.2rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .section-title { 
        font-size: 2rem; 
        line-height: 1.2;
    }
    .section-subtitle {
        font-size: 1rem;
    }
    .feature-card {
        padding: 2.5rem 0; /* Remove horizontal padding from the card */
    }
    .feature-content {
        padding: 0 1.5rem; /* Apply padding only to the text content */
    }
    .feature-image {
        padding: 0 1.5rem; /* Set initial padding for the image */
    }
    .privacy-container {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .button.cta-button {
        font-size: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* MailerLite overrides */
#mlb2-25767038.ml-form-embedContainer {
    box-sizing: border-box;
    display: table;
    margin: 0;
    position: static;
    width: 100% !important;
}
#mlb2-25767038.ml-form-embedContainer .ml-block-form {
    display: flex;
    gap: 10px;
}
#mlb2-25767038.ml-form-embedContainer .ml-form-formContent {
    flex-grow: 1;
}
#mlb2-25767038.ml-form-embedContainer .ml-form-embedSubmit {
    margin: 0;
}
#mlb2-25767038.ml-form-embedContainer .ml-form-embedWrapper {
    background-color: transparent !important;
}
#mlb2-25767038.ml-form-embedContainer .ml-form-embedBody {
    padding: 0 !important;
}
#mlb2-25767038.ml-form-embedContainer .ml-form-fieldRow {
    margin: 0 !important;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
    font-size: 14px;
}

.cookie-consent-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%; /* Allow banner content to be wider */
}

.cookie-consent-banner p {
    margin: 0;
    margin-right: 20px;
    flex-grow: 1;
    text-align: left;
}

.cookie-consent-banner button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.cookie-consent-banner button:hover {
    background-color: var(--primary-hover);
}

/* Responsive adjustments for cookie banner if needed */
@media (max-width: 768px) {
    .cookie-consent-banner .container {
        flex-direction: column;
        max-width: 100%;
        padding: 0 1.5rem;
    }
    .cookie-consent-banner p {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
        font-size: 12px; /* Slightly smaller on mobile */
    }
} 

/* Privacy Policy Page */
body.privacy-page {
    background-color: var(--gray-100);
}

.privacy-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.privacy-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.privacy-container p em {
    display: block;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.privacy-container h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.privacy-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-container p, 
.privacy-container ul,
.privacy-container address {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-container ul {
    padding-left: 1.5rem;
}

.privacy-container li {
    margin-bottom: 0.5rem;
}

.privacy-container a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-container a:hover {
    text-decoration: underline;
}

.privacy-container .back-link {
    display: block;
    text-align: center;
    margin: 3rem auto 0;
    font-weight: 600;
}

.privacy-container address {
    font-style: normal;
}

.table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.privacy-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.privacy-container th, 
.privacy-container td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.privacy-container thead th {
    background-color: var(--gray-100);
    font-weight: 600;
    color: var(--text-color);
}

.privacy-container tbody tr:last-child td {
    border-bottom: none;
}

.privacy-container tbody tr:nth-child(even) {
    background-color: #f8f9fa;
} 

h1 {
  font-size: 2rem;
} 

@media (max-width: 768px) {
  .footer-links {
    font-size: 0.75rem;
  }
  
  .banner-visible footer {
    padding-bottom: calc(3rem + 100px); /* More space on mobile for banner */
  }
} 

 