﻿/* sheets.css - Designer Master Stylesheet for Sheets by TrueData Landing Page */

:root {
    --brand-secondary: #0f172a;
    --bg-light: #f8fafc;
    --border-color: rgba(15, 23, 42, 0.06);
    --brand-primary: #53A7DB;
    --brand-primary-hover: #4096cb;
    --brand-primary-glow: rgba(83, 167, 219, 0.25);
    --brand-accent: #f7941c;
    --brand-accent-hover: #e8860f;
    --brand-accent-glow: rgba(247, 148, 28, 0.2);
    --brand-dark: #0f172a;
    --brand-muted: #64748b;
    --brand-surface: #f8fafc;
    --border-subtle: rgba(15, 23, 42, 0.06);
    --border-light: rgba(15, 23, 42, 0.1);
    --card-shadow: 0 2px 12px -2px rgba(15, 23, 42, 0.04);
    --card-shadow-hover: 0 16px 40px -8px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    --section-gap: 100px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    box-sizing: border-box;
}

html, body {
    overflow-x: clip !important; /* Fix sticky positioning breaking in Webkit/Blink */
}

body {
    font-family: 'Satoshi', 'Inter', sans-serif !important;
    color: var(--brand-dark) !important;
    font-size: 15px;
    line-height: 1.6;
    background: #fff !important;
    -webkit-font-smoothing: antialiased;
    background-size: 30px 30px;
    background-image: linear-gradient(to right, rgba(16, 185, 129, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(16, 185, 129, 0.07) 1px, transparent 1px);
}

/* Designer Sticky Card Stacking Scroll Animation Engine */
#features,
#features .bg-primary-new,
.features-cards {
    overflow: visible !important;
    position: relative;
}

    .features-cards section.position-sticky,
    .features-cards .position-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 90px !important;
        z-index: 10;
        margin-bottom: 40px;
    }

/* Remove AOS CSS transform once animated so position:sticky works natively */
.position-sticky.aos-animate {
    transform: none !important;
}

.align-items-centers {
    align-items: center !important;
}

.vh-50 {
    min-height: 50vh !important;
}

.rounded-4.px-4.py-5.bg-light {
    background-size: 30px 30px;
    background-image: linear-gradient(to right, rgba(16, 185, 129, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(16, 185, 129, 0.07) 1px, transparent 1px);
}

.bg-primary-new.rounded-4.px-4.py-5 {
    background-size: 30px 30px;
    background-image: linear-gradient(to right, rgb(92 172 223) 1px, transparent 1px), linear-gradient(to bottom, rgb(92 172 223) 1px, transparent 1px);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--brand-surface);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

.sheet-header {
    z-index: 99;
}

    .sheet-header .dropdown-item {
        font-size: 14px;
    }

.btn {
    font-size: 14px !important;
    font-weight: 600 !important;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.btn-primary {
    background: #54a7dc !important;
    border-color: #479dd4 !important;
    color: #ffffff !important;
}

    .btn-primary:hover,
    .btn-primary:focus {
        background: #479dd4 !important;
        border-color: #479dd4 !important;
        color: #ffffff !important;
    }

.btn-secondary {
    background: #f7941c !important;
    border-color: #ee8c16 !important;
    color: #ffffff !important;
}

.btn-outline-secondary {
    border-color: #f7941c !important;
    color: #f7941c !important;
    background-color: transparent !important;
}

    .btn-secondary:hover,
    .btn-secondary:focus,
    .btn-outline-secondary:hover {
        background: #ee8c16 !important;
        border-color: #ee8c16 !important;
        color: #ffffff !important;
    }

.bg-primary-new {
    background-color: #54a7dc !important;
}

.title-gradient {
    background: linear-gradient(135deg, #0f172a 40%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hover-premium {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--card-shadow) !important;
}

    .hover-premium:hover {
        transform: translateY(-6px) !important;
        box-shadow: var(--card-shadow-hover) !important;
        border-color: rgb(65 150 203 / 27%) !important;
    }

/* Feature Cards
   NOTE: the hover-reveal video treatment (absolute-positioned video at
   opacity:0/visibility:hidden, revealed on hover while the card text faded out)
   is intentionally NOT enabled - the designer commented it out in index3.html.
   Enabling it makes the card videos invisible until hover. Videos render inline. */
.features-cards .card,
.features-cards .bg-white {
    position: relative;
}

.icon-container {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 1px solid rgba(83, 167, 219, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(247 148 28 / 9%);
    color: #f7941c;
}

.badge-modern-success {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(83, 167, 219, 0.08);
    border: 1px solid rgba(83, 167, 219, 0.15);
    border-radius: 50px !important;
    padding: 6px 18px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    color: var(--brand-primary-hover);
    margin-bottom: 16px !important;
}

.badge-modern-slate {
    background-color: #f1f5f9 !important;
    color: var(--brand-secondary) !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    font-weight: 500 !important;
}

.navbar {
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

.nav-link {
    font-weight: 500 !important;
    color: var(--brand-muted) !important;
    transition: color 0.2s ease;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--brand-primary) !important;
    }

.highlight-column {
    background-color: rgba(16, 185, 129, 0.02) !important;
    border-left: 1px solid rgba(16, 185, 129, 0.08);
    border-right: 1px solid rgba(16, 185, 129, 0.08);
}

.accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--card-shadow);
}

.accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--brand-secondary);
    background-color: #ffffff !important;
}

    .accordion-button:not(.collapsed) {
        color: var(--brand-primary-hover);
        box-shadow: none;
        border-bottom: 1px solid var(--border-color);
    }

.mock-chart-line {
    height: 60px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.2) 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

    .mock-chart-line::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--brand-primary);
    }

.visual-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
}

.text-orange {
    color: #f7941c !important;
}

.overlap-img img {
    margin: 0px -6px 0px 0px;
}

.video-preview-card {
    background: var(--brand-dark);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18) !important;
}

    .video-preview-card:hover {
        transform: none !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, .18) !important;
    }

    .video-preview-card .ms-3.text-muted.mono.text-xs {
        color: #fff !important;
        font-weight: 500;
        letter-spacing: 0.4px;
    }

    .video-preview-card video {
        pointer-events: none;
    }

.text-gradient {
    background: linear-gradient(135deg, var(--brand-dark) 30%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section {
    position: relative;
    padding: 80px 0 40px;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-size: 32px 32px;
        background-image: linear-gradient(to right, rgba(83, 167, 219, 0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(83, 167, 219, 0.04) 1px, transparent 1px);
        mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
        -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 70%);
    }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 8s ease-in-out infinite alternate !important;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-primary-glow);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-accent-glow);
    top: 20%;
    right: -5%;
    animation-delay: -3s;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: rgba(16, 185, 129, 0.12);
    bottom: -5%;
    left: 40%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.08);
    }
}

.sheet-header .nav-link {
    font-weight: 500 !important;
    font-size: 14px;
    color: var(--brand-muted) !important;
}

.lead, p {
    font-weight: 400;
}

.text-gradient-accent {
    background: linear-gradient(135deg, var(--brand-dark) 30%, var(--brand-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.td-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(83, 167, 219, 0.15);
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    font-size: 12px;
    padding: 3px 11px;
}

.td-badge-1 {
    background: rgba(83, 167, 219, 0.08);
    border: 1px solid rgba(83, 167, 219, 0.15);
    color: var(--brand-primary-hover);
}

.td-badge-2 {
    background: rgba(247, 148, 28, 0.08);
    border-color: rgba(247, 148, 28, 0.15);
    color: var(--brand-accent);
}

.td-badge-3 {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.td-badge-4 {
    background: var(--brand-surface);
    border-color: var(--border-light);
    color: var(--brand-muted);
}

.td-badge-5 {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.td-badge-6 {
    background: rgba(83, 167, 219, 0.08);
    border: 1px solid rgba(83, 167, 219, 0.15);
    color: var(--brand-primary-hover);
}

.td-badge-7 {
    background: rgba(247, 148, 28, 0.08);
    border-color: rgba(247, 148, 28, 0.15);
    color: var(--brand-accent);
}

.td-badge-8 {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.td-badge-9 {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
}

.cashify-comp-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.cashify-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
}

    .cashify-table thead th {
        padding: 24px 20px;
        vertical-align: bottom;
        border-bottom: 1px solid #e2e8f0;
        font-size: 15px;
        font-weight: 700;
        border-right: 1px solid #f1f5f9;
        color: #0f172a;
    }

.td-cashify-col {
    background-color: #f0fdf4 !important;
}

.cashify-table tbody td {
    padding: 16px 20px;
    font-size: 13.5px;
    color: #334155;
    border-right: 1px solid #f1f5f9;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
}

.cashify-table tbody tr:last-child td {
    border-bottom: none;
}

.cashify-table tbody tr:hover td {
    background-color: #f8fafc;
}

    .cashify-table tbody tr:hover td.td-cashify-col {
        background-color: #dc26260d !important;
    }

.check-icon-success {
    color: #16a34a;
    font-weight: 800;
    font-size: 17px;
}

.cross-icon-danger {
    color: #ef4444;
    font-weight: 700;
    font-size: 15px;
}

.text-muted-desc {
    color: #64748b;
    font-size: 13px;
}

/* Scripting Engine - code viewer tabs */
.custom-code-tabs .nav-link {
    color: #94a3b8;
    background: transparent;
    transition: all 0.2s ease;
}

    .custom-code-tabs .nav-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
    }

    .custom-code-tabs .nav-link.active {
        color: #38bdf8 !important;
        background: rgba(56, 189, 248, 0.12) !important;
        border-color: rgba(56, 189, 248, 0.3) !important;
    }

/* Footer links */
.footer-link {
    color: #64748b !important;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .footer-link:hover {
        color: #10b981 !important;
        transform: translateY(-1px);
    }

.footer-social-link {
    color: #64748b !important;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

    .footer-social-link:hover {
        color: #10b981 !important;
    }
