/* Custom CSS Variables & Core Theme Setup */
:root {
    --primary: #01C4A4;
    --primary-hover: #00b093;
    --primary-light: #E1F5ED;
    --primary-glow: rgba(1, 196, 164, 0.15);
    --dark: #0b1a16;
    --dark-muted: #4a5c56;
    --light: #fcfdfd;
    --white: #ffffff;
    --border-color: #e0e7e5;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    --glass-shadow: 0 10px 40px rgba(1, 196, 164, 0.04);
    --font-heading: 'Satoshi', sans-serif;
    --font-body: 'Satoshi', 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--light);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
    background: radial-gradient(circle at 10% 20%, rgba(1, 196, 164, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(24, 139, 246, 0.04) 0%, transparent 35%),
                radial-gradient(circle at 50% 80%, rgba(1, 196, 164, 0.04) 0%, transparent 45%),
                #fcfdfd;
}

/* Decorative Grid Background Layout matching base44.com */
.grid-lines-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
}

.vertical-line {
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
    opacity: 0.4;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
}

p {
    line-height: 1.6;
    color: var(--dark-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 196, 164, 0.3);
}

.btn-secondary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Main Navigation Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(252, 253, 253, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    border-radius: 8px;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background-color: var(--white);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
}

.nav-item {
    text-decoration: none;
    color: var(--dark-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-item:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(252, 253, 253, 0) 0%, rgba(1, 196, 164, 0.02) 100%);
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.8rem;
    background-color: var(--primary-light);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-tag {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.15rem 0.6rem;
    border-radius: 100px;
    font-size: 0.75rem;
}

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

.hero-title {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.text-gradient {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.text-gradient::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-light);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-muted);
    margin-bottom: 2.2rem;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--dark-muted);
    margin-top: 0.4rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* Hero Visual / App Simulator Style */
.hero-visual {
    width: 100%;
}

.simulator-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    height: 440px;
    display: flex;
    flex-direction: column;
}

.simulator-header {
    height: 44px;
    background-color: var(--light);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    position: relative;
}

.window-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-right: 0.4rem;
}

.window-dot.red { background-color: #ff5f56; }
.window-dot.yellow { background-color: #ffbd2e; }
.window-dot.green { background-color: #27c93f; }

.simulator-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: var(--dark-muted);
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 0.2rem 1.5rem;
    border-radius: 6px;
}

.simulator-body {
    flex-grow: 1;
    position: relative;
    padding: 2.5rem;
}

/* Sim State 1: Input Page */
.sim-state-input {
    display: none;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.sim-state-input.active {
    display: flex;
}

.sim-state-input h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.prompt-input-box {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.6rem 0.6rem 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    background-color: var(--light);
    margin-bottom: 1.2rem;
}

.prompt-prefix {
    font-weight: 600;
    color: var(--dark-muted);
    margin-right: 0.3rem;
    white-space: nowrap;
}

.prompt-input-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#user-prompt {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.cursor-blink {
    font-weight: 300;
    color: var(--primary);
    animation: blink 0.8s infinite;
}

.prompt-suggestions {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.suggestion-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.suggestion-tag:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Sim State 2: Building Terminal Screen */
.sim-state-building {
    display: none;
    flex-direction: column;
    height: 100%;
    background-color: #0b110f;
    border-radius: 12px;
    padding: 1.5rem;
    font-family: monospace;
    color: #a0c2b9;
    font-size: 0.9rem;
}

.sim-state-building.active {
    display: flex;
}

.terminal-header {
    border-bottom: 1px solid #1c2e28;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.terminal-title {
    color: var(--primary);
    font-weight: bold;
}

.terminal-body {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.log-line {
    display: flex;
    gap: 0.6rem;
}

.log-time { color: #5a756e; }
.log-success { color: var(--primary); }

.progress-bar-container {
    height: 6px;
    background-color: #1c2e28;
    border-radius: 100px;
    margin-top: 1.2rem;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--primary);
    border-radius: 100px;
    transition: width 0.1s linear;
}

/* Sim State 3: Final Mock App Output Display */
.sim-state-output {
    display: none;
    flex-direction: column;
    height: 100%;
    padding: 0;
    margin: -2.5rem; /* cancel body padding */
}

.sim-state-output.active {
    display: flex;
}

.mock-app-header {
    background-color: var(--light);
    border-bottom: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

.mock-logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
}

.mock-logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
}

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

.mock-nav-item {
    font-weight: 600;
    color: var(--dark-muted);
}

.mock-nav-item.active {
    color: var(--primary);
}

.mock-user {
    font-weight: 500;
    color: var(--dark-muted);
}

.mock-app-body {
    flex-grow: 1;
    display: flex;
    overflow: hidden;
}

.mock-sidebar {
    width: 110px;
    border-right: 1px solid var(--border-color);
    background-color: var(--light);
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-muted);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.sidebar-item.active {
    background-color: var(--primary-light);
    color: var(--primary);
}

.mock-main-content {
    flex-grow: 1;
    padding: 1.2rem;
    overflow-y: auto;
}

.mock-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.mock-stat-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
}

.m-card-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--dark-muted);
}

.m-card-val {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0.2rem 0;
}

.m-card-indicator {
    font-size: 0.6rem;
    font-weight: 700;
}

.m-card-indicator.positive { color: var(--primary); }
.m-card-indicator.neutral { color: var(--dark-muted); }

.mock-data-table-container h4 {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.mock-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.7rem;
}

.mock-table th, .mock-table td {
    padding: 0.4rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.mock-table th {
    font-weight: 700;
    color: var(--dark-muted);
}

.m-badge {
    padding: 0.15rem 0.4rem;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 700;
}

.m-badge.badge-teal { background-color: var(--primary-light); color: var(--primary); }
.m-badge.badge-blue { background-color: #e3efff; color: #188bf6; }
.m-badge.badge-green { background-color: #e2fbf0; color: #37ca37; }

.mock-app-success-footer {
    border-top: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light);
}

.success-message {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* Story/Origin Section */
.story-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, rgba(1, 196, 164, 0.01) 50%, #ffffff 100%);
}

.section-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-muted);
    max-width: 600px;
    margin-bottom: 4rem;
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marker-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: 4px solid var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
    z-index: 2;
}

.marker-line {
    width: 2px;
    flex-grow: 1;
    background-color: var(--border-color);
    margin: 0.8rem 0;
}

.timeline-content {
    background-color: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    margin: 0.4rem 0 0.8rem;
    letter-spacing: -0.5px;
}

/* Pillars Section */
.pillars-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.pillar-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.pillar-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.8rem;
}

.pillar-svg {
    width: 28px;
    height: 28px;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.pillar-image-container {
    margin-top: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 180px;
    background-color: var(--light);
}

.pillar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-smooth);
}

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

/* Use Flow Steps Section (base44.com vertical steps alignment) */
.use-flow-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, rgba(24, 139, 246, 0.01) 100%);
}

.use-flow-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.use-flow-intro {
    position: sticky;
    top: 8rem;
}

.steps-progress-indicator {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.indicator-track {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--border-color);
    z-index: 1;
}

.indicator-bar {
    width: 100%;
    height: 0%;
    background-color: var(--primary);
    transition: height 0.3s ease;
}

.step-nav-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.nav-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-muted);
    transition: var(--transition-smooth);
}

.nav-label {
    font-weight: 600;
    color: var(--dark-muted);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.step-nav-item.active .nav-number {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 6px var(--primary-light);
}

.step-nav-item.active .nav-label {
    color: var(--dark);
    font-weight: 800;
}

.use-flow-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-card {
    background-color: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    transition: var(--transition-smooth);
    opacity: 0.6;
    transform: scale(0.98);
}

.flow-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: var(--card-shadow);
}

.card-num {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    display: block;
    margin-bottom: 1rem;
}

.flow-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.card-visual {
    margin-top: 2rem;
    background-color: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.visual-chat-bubble {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 80%;
    text-align: center;
}

.visual-color-palettes {
    display: flex;
    gap: 1rem;
}

.palette-swatch {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: var(--card-shadow);
}
.palette-swatch.accent { background-color: var(--primary); }
.palette-swatch.primary { background-color: #188bf6; }
.palette-swatch.secondary { background-color: #0b1a16; }

.visual-connector-icons {
    display: flex;
    gap: 1.5rem;
}

.conn-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    box-shadow: var(--card-shadow);
}

.conn-icon.slack { background-color: #4A154B; }
.conn-icon.calendar { background-color: #4285F4; }
.conn-icon.gmail { background-color: #EA4335; }

.visual-deployment-success {
    position: relative;
    width: 64px;
    height: 64px;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-glow);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.success-dot {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Targets Section */
.targets-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.target-switcher {
    display: inline-flex;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.4rem;
    border-radius: 100px;
    margin-bottom: 3rem;
}

.target-btn {
    border: none;
    background: transparent;
    padding: 0.6rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--dark-muted);
}

.target-btn.active {
    background-color: var(--primary);
    color: var(--white);
}

.target-content-wrapper {
    position: relative;
    min-height: 380px;
}

.target-tab-content {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.target-tab-content.active {
    display: grid;
    animation: fadeIn 0.5s ease-in-out forwards;
}

.target-info h3 {
    font-size: 2.2rem;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.target-info p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit-list li {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.target-mock-preview {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
}

.preview-mini-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    width: 240px;
    background-color: var(--light);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.preview-mini-card h5 {
    font-size: 0.9rem;
    font-weight: bold;
}

.mini-bar-fill {
    height: 8px;
    background-color: var(--primary);
    width: 75%;
    border-radius: 100px;
}

.preview-mini-card span {
    font-size: 0.75rem;
    color: var(--dark-muted);
}

.preview-mini-card.code code {
    background-color: #0b110f;
    color: var(--primary);
    padding: 0.8rem;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.8rem;
}

.preview-mini-card.agency .rev-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    font-weight: bold;
}

/* Case Studies Section */
.case-studies-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(180deg, #ffffff 0%, rgba(1, 196, 164, 0.02) 100%);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.case-card {
    background-color: var(--light);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.case-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-shadow);
    transform: translateY(-5px);
}

.case-img-placeholder {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.case-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.case-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.case-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

.case-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.case-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.case-link {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
}

/* Horizontal Scrolling Infinite Marquee for Industry Coverage */
.industry-coverage {
    text-align: center;
    margin-top: 2rem;
}

.industry-coverage h3 {
    font-size: 1.2rem;
    color: var(--dark-muted);
    margin-bottom: 2rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
}

.marquee-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 2rem;
    letter-spacing: -0.5px;
}

/* Call to Action (CTA) Section */
.cta-section {
    padding: 8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cta-container {
    background-color: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: 24px;
    padding: 4.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-container h2 {
    font-size: 3rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.2rem;
}

.cta-container p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.2rem;
}

.cta-actions {
    display: flex;
    gap: 1.2rem;
}

/* Footer Section */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 0 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: #8fa59e;
    font-size: 0.95rem;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links h4 {
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #8fa59e;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #8fa59e;
}

/* Animations */
@keyframes blink {
    50% { opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

/* Scroll Reveal Classes & Alternating Motion Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Alternate sections motion animations */
.story-timeline .timeline-card:nth-child(even).scroll-reveal {
    transform: translateX(30px);
}
.story-timeline .timeline-card:nth-child(even).scroll-reveal.revealed {
    transform: translateX(0);
}

.story-timeline .timeline-card:nth-child(odd).scroll-reveal {
    transform: translateX(-30px);
}
.story-timeline .timeline-card:nth-child(odd).scroll-reveal.revealed {
    transform: translateX(0);
}

.pillars-grid .pillar-card:nth-child(even) {
    transition-delay: 0.15s;
}

.pillars-grid .pillar-card:nth-child(3) {
    transition-delay: 0.3s;
}

/* Target tab active card pop */
@keyframes cardPop {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.target-tab-content.active .preview-mini-card {
    animation: cardPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .use-flow-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .use-flow-intro {
        position: static;
    }
    .target-tab-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .desktop-only {
        display: none;
    }
    .timeline-card {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }
    .indicator-track {
        left: 15px;
    }
    .step-nav-item {
        gap: 1rem;
    }
    .nav-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}
