/* ===== PAGE-SPECIFIC STYLES ===== */

/* ===== FOOTER 6-COLUMN ===== */
.footer-inner {
    grid-template-columns: 1.5fr repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ===== PRICING COMPARISON TABLE ===== */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table th {
    background: var(--bg-surface);
    padding: 1.25rem 1rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.comparison-table th:first-child {
    text-align: left;
    min-width: 220px;
}

.comparison-table th.th-featured {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.15) 0%, var(--bg-surface) 100%);
    border-top: 3px solid var(--accent-purple);
}

.comparison-table td {
    padding: 0.9rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table .check {
    color: var(--accent-green);
    font-size: 1.2rem;
}

.comparison-table .dash {
    color: var(--text-muted);
}

.comparison-table .category-row td {
    background: var(--bg-surface-alt);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.75rem 1rem;
}

/* ===== COMPETITOR COMPARISON ===== */
.compare-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.compare-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.compare-logo-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
}

.compare-vs {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

.compare-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.compare-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.compare-card ul {
    list-style: none;
}

.compare-card ul li {
    padding: 6px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.compare-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    flex-shrink: 0;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FREE TOOLS ===== */
.tool-form {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-purple);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239d9db5' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.tool-output {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 720px;
    margin: 2rem auto 0;
    display: none;
}

.tool-output.visible {
    display: block;
}

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

.tool-output-content {
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-wrap;
    font-family: var(--font-body);
}

.btn-copy {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-purple);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-copy:hover {
    background: rgba(124, 58, 237, 0.25);
}

/* ===== TOOLS/SOLUTIONS HUB GRID ===== */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hub-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.hub-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.hub-card h3 {
    margin-bottom: 0.5rem;
}

.hub-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.hub-card .feature-link {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BLOG CARDS ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.blog-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(20, 184, 166, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-purple);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.blog-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.blog-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GUIDE / LONG-FORM ===== */
.guide-content {
    max-width: 760px;
    margin: 0 auto;
}

.guide-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1rem;
    text-align: left;
}

.guide-content h3 {
    margin: 2rem 0 0.75rem;
}

.guide-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.guide-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.guide-content ol li {
    list-style: decimal;
}

.guide-content ul li {
    list-style: disc;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CHANGELOG ===== */
.changelog-list {
    max-width: 760px;
    margin: 0 auto;
}

.changelog-item {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.changelog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.changelog-item h3 {
    margin-bottom: 0.75rem;
}

.changelog-item ul {
    padding-left: 1.25rem;
}

.changelog-item li {
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    list-style: disc;
}

/* ===== SIGNATURE GENERATOR PREVIEW ===== */
.signature-preview {
    background: #fff;
    color: #333;
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.signature-preview a {
    color: #7c3aed;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 3rem 0;
}

.content-section:nth-child(even) {
    background: var(--bg-surface-alt);
}

.content-section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section-inner.reverse {
    direction: rtl;
}

.content-section-inner.reverse > * {
    direction: ltr;
}

.content-visual {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .content-section-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-section-inner.reverse {
        direction: ltr;
    }
}

/* ===== SOLUTIONS STATS ===== */
.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

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

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ===== HOW IT WORKS VISUALS ===== */
.hiw-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem 1rem;
    min-height: 340px;
}

/* Shared email card */
.hiw-email-card {
    background: #1e1e2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 90%;
    max-width: 340px;
    transform: rotate(var(--rot, 0deg)) translateX(var(--x, 0px));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hiw-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hiw-card-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.hiw-card-lines span {
    display: block;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.2);
}

/* === Step 01: Connect === */
.hiw-inbox-pile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.hiw-inbox-pile .hiw-email-card {
    animation: hiw-pile-settle 2s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

@keyframes hiw-pile-settle {
    0% { transform: rotate(var(--rot)) translateX(var(--x)) translateY(4px); opacity: 0.7; }
    50% { transform: rotate(0deg) translateX(0px) translateY(0px); opacity: 1; }
    100% { transform: rotate(var(--rot)) translateX(var(--x)) translateY(4px); opacity: 0.7; }
}

.hiw-plug-line {
    width: 3px;
    height: 24px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-green));
    border-radius: 2px;
    animation: hiw-plug-grow 1.5s ease-out infinite;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

@keyframes hiw-plug-grow {
    0%, 100% { height: 16px; opacity: 0.4; }
    50% { height: 28px; opacity: 1; }
}

.hiw-connect-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-green);
    background: rgba(16, 185, 129, 0.12);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    animation: hiw-badge-pulse 2s ease-in-out infinite;
}

@keyframes hiw-badge-pulse {
    0%, 100% { opacity: 0.6; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* === Step 02: Learn === */
.hiw-scan-area {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.hiw-scan-beam {
    position: absolute;
    left: -4px;
    right: -4px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-purple), transparent);
    border-radius: 2px;
    animation: hiw-scan 2.5s ease-in-out infinite;
    box-shadow: 0 0 16px rgba(124, 58, 237, 0.5), 0 0 4px rgba(124, 58, 237, 0.3);
}

@keyframes hiw-scan {
    0% { top: -4px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% + 4px); opacity: 0; }
}

.hiw-scan-card {
    transition: border-color 0.3s;
}

.hiw-brain-pulse {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.hiw-pulse-ring {
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent-purple);
    animation: hiw-ring-expand 2s ease-out infinite;
}

.hiw-pulse-ring-2 {
    animation-delay: 0.8s;
}

@keyframes hiw-ring-expand {
    0% { transform: scale(0.6); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* === Step 03: Calm === */
.hiw-sorted-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.hiw-sorted-card {
    background: #1e1e2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 90%;
    max-width: 340px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: hiw-slide-in 0.6s ease-out both;
    animation-delay: var(--delay);
}

.revealed .hiw-sorted-card {
    animation: hiw-sorted-float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes hiw-slide-in {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes hiw-sorted-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.hiw-badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    margin-left: auto;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hiw-badge-purple { background: rgba(124, 58, 237, 0.15); color: var(--accent-purple); }
.hiw-badge-teal { background: rgba(20, 184, 166, 0.15); color: var(--accent-teal); }
.hiw-badge-pink { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.hiw-badge-cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }

.hiw-zen-check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hiw-zen-pop 2s ease-in-out infinite;
}

@keyframes hiw-zen-pop {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2); }
    50% { transform: scale(1.1); box-shadow: 0 0 20px 4px rgba(16, 185, 129, 0.15); }
}

/* ===== FEATURE PAGE SHARED VISUALS ===== */

/* AI Drafted Replies — tone demo */
.feat-tone-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.feat-tone-in {
    animation: sis-wobble 2.5s ease-in-out infinite alternate;
}

.feat-tone-out {
    animation: sis-glow 2.5s ease-in-out infinite;
    border-color: rgba(124, 58, 237, 0.3) !important;
}

.feat-tone-arrow {
    animation: sis-arrow-bounce 1.5s ease-in-out infinite;
}

.feat-tone-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-green);
    animation: hiw-badge-pulse 2s ease-in-out infinite;
}

/* Language cards */
.feat-lang-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.feat-lang-card {
    animation: hiw-sorted-float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.feat-lang-badge {
    animation: sis-pop 2.5s ease-in-out infinite;
    animation-delay: var(--delay);
}

/* Approve buttons */
.feat-approve-demo {
    width: 100%;
    display: flex;
    justify-content: center;
}

.feat-approve-card {
    animation: sis-glow 2.5s ease-in-out infinite;
    border-color: rgba(6, 182, 212, 0.3) !important;
}

.feat-approve-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.feat-approve-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    animation: sis-pop 2s ease-in-out infinite;
}

.feat-approve-send {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.feat-approve-edit {
    background: rgba(124, 58, 237, 0.2);
    color: var(--accent-purple);
    animation-delay: 0.3s;
}

/* Follow-up nudges */
.feat-nudge-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.feat-nudge-waiting {
    animation: sis-wobble 2.5s ease-in-out infinite alternate;
}

.feat-nudge-bell {
    animation: feat-bell-ring 2s ease-in-out infinite;
}

@keyframes feat-bell-ring {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(12deg); }
    20% { transform: rotate(-12deg); }
    30% { transform: rotate(8deg); }
    40% { transform: rotate(-8deg); }
    50% { transform: rotate(0deg); }
}

/* SLA board */
.feat-sla-board {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90%;
    max-width: 300px;
}

.feat-sla-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #1e1e2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
}

.feat-sla-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feat-sla-urgent {
    animation: sis-glow 1.5s ease-in-out infinite;
    border-color: rgba(239, 68, 68, 0.3) !important;
}

/* Escalation chain */
.feat-escalate-chain {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.feat-escalate-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.feat-escalate-line {
    width: 2px;
    height: 20px;
    border-radius: 2px;
    opacity: 0.5;
}

.feat-escalate-1 { animation: hiw-badge-pulse 2s ease-in-out infinite; }
.feat-escalate-2 { animation: hiw-badge-pulse 2s ease-in-out infinite 0.4s; }
.feat-escalate-3 { animation: hiw-badge-pulse 2s ease-in-out infinite 0.8s; }

/* Team board */
.feat-team-board {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 300px;
}

.feat-team-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1e1e2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    animation: hiw-sorted-float 3s ease-in-out infinite;
}

.feat-team-row:nth-child(2) { animation-delay: 0.3s; }
.feat-team-row:nth-child(3) { animation-delay: 0.6s; }

/* Meeting summaries — sound wave */
.feat-transcript-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.feat-sound-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 36px;
}

.feat-wave-bar {
    width: 4px;
    height: var(--h, 16px);
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: feat-wave 1s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes feat-wave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.feat-transcript-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 90%;
    max-width: 300px;
}

.feat-transcript-line {
    display: flex;
    align-items: center;
    gap: 8px;
    animation: feat-line-appear 2s ease-out infinite;
    animation-delay: var(--delay);
}

.feat-transcript-line span:last-child {
    display: block;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.15);
    flex: 1;
}

.feat-speaker {
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes feat-line-appear {
    0% { opacity: 0; transform: translateY(4px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Action items */
.feat-actions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
}

.feat-action-pending {
    opacity: 0.6;
    animation: sis-glow 2s ease-in-out infinite !important;
}

/* Calendar pre/post brief */
.feat-cal-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.feat-cal-brief {
    animation: sis-wobble 2.5s ease-in-out infinite alternate;
}

.feat-cal-divider {
    animation: sis-pop 2s ease-in-out infinite;
}

.feat-cal-summary {
    animation: sis-glow 2.5s ease-in-out infinite;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

/* Scheduling — calendar slots */
.feat-cal-slots {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 90%;
    max-width: 300px;
}

.feat-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #1e1e2a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.feat-slot-bar {
    flex: 1;
    height: 8px;
    border-radius: 4px;
}

.feat-slot-free {
    animation: sis-glow 2.5s ease-in-out infinite;
    border-color: rgba(124, 58, 237, 0.25) !important;
}

.feat-slot-free:nth-child(3) { animation-delay: 0.4s; }
.feat-slot-free:nth-child(5) { animation-delay: 0.8s; }

/* Timezone demo */
.feat-tz-demo {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.feat-tz-city {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feat-tz-clock {
    animation: sis-pop 3s ease-in-out infinite;
}

.feat-tz-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Search bar demo */
.feat-search-demo {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 90%;
    max-width: 320px;
}

.feat-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1e1e2a;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    animation: sis-glow 2.5s ease-in-out infinite;
}

.feat-search-text {
    height: 5px;
    width: 60%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    animation: feat-search-type 3s ease-in-out infinite;
}

@keyframes feat-search-type {
    0% { width: 0; }
    40% { width: 60%; }
    100% { width: 60%; }
}

.feat-search-results {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feat-search-result {
    animation: feat-line-appear 3s ease-out infinite;
    animation-delay: var(--delay);
}

/* ===== SMART INBOX SORTING VISUALS ===== */

/* Section 1: Categorize — messy emails drop into buckets */
.sis-categorize {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.sis-incoming {
    animation: sis-wobble 2s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

@keyframes sis-wobble {
    0% { transform: rotate(var(--rot)) translateX(var(--x)) translateY(3px); opacity: 0.7; }
    50% { transform: rotate(0deg) translateX(0px) translateY(0px); opacity: 1; }
    100% { transform: rotate(var(--rot)) translateX(var(--x)) translateY(3px); opacity: 0.7; }
}

.sis-arrow-down {
    animation: sis-arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes sis-arrow-bounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

.sis-buckets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sis-bucket-pop {
    animation: sis-pop 2s ease-in-out infinite;
    animation-delay: var(--delay);
    font-size: 0.75rem !important;
    padding: 5px 12px !important;
}

@keyframes sis-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Section 2: Custom rules — drag card to new category */
.sis-rules-demo {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.sis-rules-demo .hiw-email-card {
    width: 38%;
    max-width: 160px;
}

.sis-drag-card {
    animation: sis-drag-out 3s ease-in-out infinite;
}

.sis-drag-target {
    animation: sis-drag-in 3s ease-in-out infinite;
}

@keyframes sis-drag-out {
    0%, 30% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.4; transform: translateX(10px); }
    70%, 100% { opacity: 1; transform: translateX(0); }
}

@keyframes sis-drag-in {
    0%, 30% { opacity: 0.5; transform: translateX(0) scale(0.97); }
    50% { opacity: 1; transform: translateX(-5px) scale(1.03); box-shadow: 0 0 16px rgba(124, 58, 237, 0.3); }
    70%, 100% { opacity: 1; transform: translateX(0) scale(1); }
}

.sis-drag-arrow {
    animation: sis-arrow-slide 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sis-arrow-slide {
    0%, 30% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(4px); opacity: 1; }
    70%, 100% { transform: translateX(0); opacity: 0.4; }
}

.sis-learn-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-green);
    animation: hiw-badge-pulse 2s ease-in-out infinite;
}

/* Section 3: Priority — top card glows, rest fades */
.sis-priority-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    align-items: center;
}

.sis-priority-top {
    animation: sis-glow 2.5s ease-in-out infinite;
    border-color: rgba(124, 58, 237, 0.4) !important;
}

@keyframes sis-glow {
    0%, 100% { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(124, 58, 237, 0.25), 0 2px 10px rgba(0, 0, 0, 0.4); }
}

.sis-priority-dim {
    opacity: 0.4;
    animation: sis-dim-float 3s ease-in-out infinite;
}

.sis-priority-dim:nth-child(3) { animation-delay: 0.3s; }
.sis-priority-dim:nth-child(4) { animation-delay: 0.6s; }

@keyframes sis-dim-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

/* Section 4: Before/After */
.sis-before-after {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: center;
}

.sis-before, .sis-after {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 160px;
}

.sis-ba-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sis-ba-count {
    font-size: 0.75rem;
    font-weight: 700;
}

.sis-messy-pile, .sis-neat-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    align-items: center;
}

.sis-messy-pile .hiw-email-card,
.sis-neat-stack .hiw-email-card {
    width: 100%;
    max-width: 140px;
    padding: 8px 10px;
}

.sis-messy {
    animation: sis-wobble 2s ease-in-out infinite alternate;
    animation-delay: var(--delay);
}

.sis-neat {
    animation: hiw-sorted-float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.sis-ba-arrow {
    flex-shrink: 0;
    animation: sis-arrow-slide 2s ease-in-out infinite;
}

/* Hide animated visuals on mobile */
@media (max-width: 768px) {
    .content-visual {
        display: none;
    }
}
