/* Bold Variant - Legal Launch Buddy */
/* CBD Design System Colors + Bold Gradients */

:root {
    --base: #ffffff;
    --base-2: #f5f7fa;
    --contrast: #1a1a1a;
    --contrast-2: #4a4a4a;
    --contrast-3: #6a6a6a;
    --accent: #8B7BD8;
    --accent-2: #7563C8;
    --accent-3: #A89FDB;
    --lavender: #A89FDB;
    --sky-blue: #C5D9F0;
    --deep-purple: #8B7BD8;
    --coral: #FF7B7B;
    --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
}

html {
  scroll-behavior: smooth;
}

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

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--contrast);
    background: var(--base);
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.05;
    color: var(--contrast);
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--contrast);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--contrast);
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--contrast-2);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    width: 100%;
    padding: 96px 24px 84px;
    background: linear-gradient(to bottom right, rgba(168, 159, 219, 0.3), rgba(197, 217, 240, 0.2), var(--base));
    overflow: hidden;
}

.blur-decoration {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(100px);
}

.blur-top-right {
    top: 0;
    right: 0;
    background: rgba(139, 123, 216, 0.1);
}

.blur-bottom-left {
    bottom: 0;
    left: 0;
    background: rgba(197, 217, 240, 0.2);
}

.blur-bottom-left-purple {
    bottom: 0;
    left: 0;
    background: rgba(139, 123, 216, 0.2);
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--base);
    border-radius: 8px;
}

.badge p {
    font-family: var(--mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--base);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
 text-decoration: none; 
    line-height: 1;
}

.btn-primary {
    background: var(--accent-2);
    color: var(--base);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.btn-primary .icon-arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .icon-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--base);
    color: var(--accent-2);
    border: 2px solid var(--accent-2);
    transition: all 0.3s ease; /* Ensures the transition is smooth */
}

.btn-secondary:hover {
    /* These three lines make it match the Primary Hover exactly */
    background: var(--accent); 
    border-color: var(--accent);
    color: var(--base);
}

.btn-secondary:hover svg {
    transform: translateY(3px);
    /* Transition is better placed in the main .btn-secondary svg selector 
       so it animates both ways, but keeping it here works too! */
}

/* Ensure the smooth scroll is active */
html {
    scroll-behavior: smooth;
}

/* Ensure the label takes its own line and has spacing */
.form-label {
    display: block;
    text-align: left;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 8px; /* Space between label and the input row */
    color: var(--contrast-2);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;

}

/* Ensure the signup-form allows the label to sit on top */
.signup-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns the label and row to the left */
    gap: 0; /* Set gap to 0 so the label sits closer to the top */
    margin-top: 0;
    padding-top: 0;
}

/* Your existing form-row keeps the input and button next to each other */
.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.hero-footnote {
    font-size: 0.875rem;
    color: var(--contrast-3);
}

.visual-card {
    background: linear-gradient(to bottom right, var(--accent-2), var(--accent));
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.visual-card-inner {
    background: var(--base);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visual-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.visual-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-2);
    border-radius: 50%;
}

.visual-label {
    font-family: var(--mono);
    font-size: 0.875rem;
    color: var(--contrast);
}

.visual-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.visual-line {
    height: 12px;
    background: var(--base-2);
    border-radius: 6px;
}

.visual-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(139, 123, 216, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-2);
}

/* === PROBLEM SECTION === */
.problem {
    width: 100%;
    padding: 80px 24px;
    background: var(--base-2);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;

}

.gradient-bar {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-2), var(--accent));
    margin: 16px auto 0;
    border-radius: 2px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.problem-card {
    background: var(--base);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(139, 123, 216, 0.2);
    text-align: center;
    transition: all 0.3s;
}

/*
.problem-card:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
*/
.icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
 /* This centers the badge box itself if the parent is a flex/grid container */
    margin-left: auto;
    margin-right: auto;
}

.gradient-bg {
    background: linear-gradient(to bottom right, var(--accent-2), var(--accent));
    box-shadow: 0 4px 12px rgba(139, 123, 216, 0.3);
}

.icon-large {
    color: var(--base);
Display: block;
}

/* === VALUE SECTION === */
.value {
    width: 100%;
    padding: 80px 24px;
    background: linear-gradient(to bottom right, var(--base), rgba(197, 217, 240, 0.1), var(--base));
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 123, 216, 0.2);
    transition: all 0.3s;
}

/*
.value-card:hover {
    background: var(--base);
}
*/
.value-card-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.icon-badge-small {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

/*.value-card:hover*/ .icon-badge-small {
    transform: scale(1.1);
}

.icon {
    color: var(--base);
}

/* === USE CASES SECTION === */
.use-cases {
    width: 100%;
    padding: 80px 24px;
    background: var(--base-2);
}

.section-description {
    font-size: 1.25rem;
    max-width: 48rem;
    margin: 0 auto;
    color: var(--contrast-2);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.use-case-card {
    background: var(--base);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(139, 123, 216, 0.2);
    transition: all 0.3s;
}

/*
.use-case-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
*/
.icon-badge-medium {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

/*.use-case-card:hover*/ .icon-badge-medium {
    transform: scale(1.1);
}

.gradient-bg-1 {
    background: linear-gradient(to bottom right, var(--accent-2), var(--accent));
}

.gradient-bg-2 {
    background: linear-gradient(to bottom right, var(--accent), var(--lavender));
}

.gradient-bg-3 {
    background: linear-gradient(to bottom right, var(--deep-purple), var(--accent-2));
}

.gradient-bg-4 {
    background: linear-gradient(to bottom right, var(--lavender), var(--accent));
}

.gradient-bg-5 {
    background: linear-gradient(to bottom right, var(--accent-2), var(--deep-purple));
}

.icon-medium {
    color: var(--base);
}

.use-case-card p {
    font-size: 0.875rem;
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
    width: 100%;
    padding: 80px 24px;
    background: linear-gradient(to bottom right, var(--base), rgba(168, 159, 219, 0.1), var(--base));
}

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

.step-card {
    position: relative;
    background: var(--base);
    padding: 32px;
    padding-top: 56px;
    border-radius: 16px;
    border: 2px solid rgba(139, 123, 216, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
}

/*
.step-card:hover {
    border-color: var(--accent);
}
*/
.step-number {
    position: absolute;
    top: -24px;
    left: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--accent-2), var(--accent));
    color: var(--base);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(139, 123, 216, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-arrow {
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    color: var(--accent);
    display: none;
}

/* === SIGNUP SECTION === */
.signup {
    position: relative;
    width: 100%;
    padding: 80px 24px;
    background: linear-gradient(to bottom right, var(--accent-2), var(--accent), var(--lavender));
    overflow: hidden;
}

.signup-container {
    position: relative;
    z-index: 10;
    max-width: 768px;
}

.text-white h2,
.text-white p {
    color: var(--base);
}

.signup-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px; /* Reduce this number to bring the form up */
}

.signup-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 64px 80px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin-top: 48px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 1rem;
    border: 2px solid rgba(139, 123, 216, 0.3);
    border-radius: 8px;
    background: var(--base);
    color: var(--contrast);
    transition: all 0.3s;
}

.email-input:focus {
    outline: none;
    border-color: var(--accent-2);
}

.btn-submit {
    background: var(--accent-2);
    color: var(--base);
    padding: 16px 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(139, 123, 216, 0.4);
    white-space: nowrap;
}

.btn-submit:hover {
    background: var(--deep-purple);
}

.btn-submit .icon {
    transition: transform 0.3s;
}

.btn-submit:hover .icon {
    transform: translateX(4px);
}

/* === FAQ SECTION === */
.faq {
    width: 100%;
    padding: 80px 24px;
    background: var(--base-2);
}

.faq-container {
    max-width: 896px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--base);
    border-radius: 16px;
    border: 2px solid rgba(139, 123, 216, 0.2);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(168, 159, 219, 0.05);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(to bottom right, var(--accent-2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-toggle svg {
    color: var(--base);
}

.faq-answer {
    padding: 0 32px 24px;
    background: rgba(168, 159, 219, 0.05);
}

.faq-answer p {
    line-height: 1.7;
}

/* === FOOTER === */
.footer {
    width: 100%;
    padding: 64px 24px;
    background: linear-gradient(to bottom right, var(--contrast), var(--contrast-2));
    color: var(--base);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-main h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--base);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    max-width: 40rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 40rem;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links p {
    color: var(--base);
    margin-bottom: 12px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container,
    .problem-grid,
    .value-grid,
    .use-cases-grid,
    .steps-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 64px 24px;
	/* Use min-height instead of a fixed height */
   	 min-height: 80vh; 
	/* Reduce large vertical padding if you have it */
  	  padding-top: 80px; 
   	 padding-bottom: 80px;
    
   	 /* Center the content vertically */
   	 display: flex;
   	 flex-direction: column;
  	 justify-content: center;
    }

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

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

    .signup-form {
        padding: 32px 24px;
    }

    .step-arrow {
        display: none;
    }
}
