/* ============================================
   ALFRED LANDING PAGE — STYLES
   Color Palette: White + Purple accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:wght@700&display=swap');

/* ── Reset & Base ─────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-400: #c084fc;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-purple: 0 8px 32px rgba(168, 85, 247, 0.22);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Utility ──────────────────────────────── */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--purple-100);
    color: var(--purple-600);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple-500);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* ── Navbar ───────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.4s ease;
}

.navbar.scrolled .nav-logo {
    color: var(--gray-900);
}

.nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--white);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--purple-600);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--gray-900);
    border: none;
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.navbar.scrolled .btn-primary:not(.purple) {
    background: var(--gray-900);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn-primary.purple {
    background: linear-gradient(160deg, #a855f7 0%, #7e22ce 100%);
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.4),
        0 4px 24px rgba(126, 34, 206, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.95rem;
    padding: 12px 26px;
}

.btn-primary.purple:hover {
    box-shadow:
        0 0 0 1px rgba(168, 85, 247, 0.5),
        0 6px 32px rgba(126, 34, 206, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--purple-400);
    color: var(--purple-600);
}

/* ── Hero ─────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('hero-bg.png') center top / cover no-repeat;
}

.hero .container {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(60, 0, 100, 0.18) 0%,
            rgba(80, 20, 120, 0.08) 60%,
            rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.hero-headline {
    font-family: 'PT Serif', serif;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--white);
    text-shadow: 0 2px 24px rgba(60, 0, 100, 0.18);
    margin-bottom: 20px;
}

.hero-headline .highlight {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-subtext-first {
    font-family: 'Newsreader', serif;
    font-weight: 400;
    font-size: inherit;
    font-style: italic;
}

.hero-subtext-second {
    font-family: 'Newsreader', serif;
    font-weight: 400;
    font-size: inherit;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.windows-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    margin-top: 14px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Mock App Window (Word + Alfred) ──────── */
.mock-window.word-window {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    background: #f3f2f1;
    /* Word light gray background */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: left;
}

.word-toolbar {
    display: flex;
    background: #2b579a;
    /* Word blue */
    padding: 8px 16px 0;
    gap: 4px;
}

.word-tab {
    padding: 6px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
}

.word-tab.active {
    background: #f3f2f1;
    color: #333;
}

.word-ribbon {
    display: flex;
    background: #f3f2f1;
    padding: 8px 16px;
    gap: 16px;
    border-bottom: 1px solid #e1dfdd;
    align-items: center;
}

.ribbon-group {
    display: flex;
    gap: 4px;
    padding-right: 16px;
    border-right: 1px solid #e1dfdd;
    align-items: center;
}

.ribbon-group:last-child {
    border-right: none;
}

.ribbon-btn {
    padding: 4px 8px;
    background: white;
    border: 1px solid #e1dfdd;
    border-radius: 2px;
    font-size: 0.75rem;
    color: #333;
    cursor: pointer;
}

.ribbon-btn.icon {
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: serif;
}

.word-workspace {
    background: #e1dfdd;
    padding: 24px;
    display: flex;
    justify-content: center;
    position: relative;
    min-height: 500px;
}

.word-page {
    background: white;
    width: 100%;
    max-width: 800px;
    min-height: 600px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 48px;
    font-family: 'Aptos', 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.5;
}

.word-content strong {
    font-weight: 600;
}

.word-cursor-blink {
    display: inline-block;
    width: 1px;
    height: 1.1em;
    background-color: black;
    vertical-align: text-bottom;
    margin-left: 1px;
    animation: blink 1s step-end infinite;
    opacity: 0;
    /* Hidden initially */
}

/* Translucent Alfred Window */
.alfred-overlay-window {
    position: absolute;
    right: 20px;
    top: 20px;
    bottom: 20px;
    /* Constrain height */
    width: 380px;
    background: rgba(23, 19, 31, 0.95);
    /* Dark translucent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    color: white;
    z-index: 10;
    overflow: hidden;
}

.alfred-header {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.alfred-logo-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.alfred-logo-img {
    height: 16px;
    width: auto;
}

.alfred-controls {
    display: flex;
    gap: 12px;
    color: #a1a1aa;
    font-size: 0.9rem;
}

.alfred-status {
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
}

.alfred-body {
    padding: 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: hidden;
    /* Prevent manual scrolling that messes up animation coordinates */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

/* Hide scrollbar for WebKit (Chrome, Safari, Edge) */
.alfred-body::-webkit-scrollbar {
    display: none;
}

.alfred-msg-system {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.alfred-msg-user-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.alfred-msg-user-container.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0;
}

.alfred-msg-user {
    background: #39285c;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: white;
    max-width: 85%;
    line-height: 1.5;
}

.alfred-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.alfred-response-container {
    opacity: 1;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.alfred-response-container.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
    margin: 0;
}

.alfred-response-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.alfred-response-content {
    font-size: 0.8rem;
    color: #d4d4d8;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.alfred-cursor-blink {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #d4d4d8;
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.paste-btn-container {
    margin-bottom: 12px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.paste-btn-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.paste-btn {
    background: var(--purple-600);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    width: fit-content;
}

.paste-btn:hover {
    background: var(--purple-500);
}

.paste-btn:active {
    transform: scale(0.96);
    background: var(--purple-700);
}

.success-msg {
    background: rgba(34, 197, 94, 0.1);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.success-msg.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.alfred-input-area {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.alfred-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 12px;
    gap: 8px;
}

.mic-icon {
    font-size: 0.8rem;
    color: #a1a1aa;
}

.alfred-input {
    flex: 1;
    font-size: 0.8rem;
    color: white;
}

.placeholder-text {
    color: #71717a;
}

.input-cursor-blink {
    display: inline-block;
    width: 1px;
    height: 1em;
    background-color: white;
    vertical-align: text-bottom;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
}

.alfred-send {
    width: 32px;
    height: 32px;
    background: var(--purple-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alfred-send.active {
    background: var(--purple-500);
    transform: scale(0.92);
}

/* Animated Cursor Overlay */
.animated-cursor {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transform: translate(0, 0);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s;
}

.animated-cursor.active {
    opacity: 1;
}

.animated-cursor.click {
    animation: cursorClick 0.4s ease;
}

@keyframes cursorClick {
    0% {
        transform: scale(1) translate(var(--tx), var(--ty));
    }

    50% {
        transform: scale(0.85) translate(var(--tx), var(--ty));
    }

    100% {
        transform: scale(1) translate(var(--tx), var(--ty));
    }
}

/* ── Section shared ───────────────────────── */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Features ─────────────────────────────── */
.features {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--purple-200);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--purple-50);
    border: 1px solid var(--purple-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── How It Works ─────────────────────────── */
.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
    background: linear-gradient(90deg, var(--purple-300), var(--purple-400), var(--purple-300));
    opacity: 0.5;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-purple);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.65;
}

/* ── Testimonials ─────────────────────────── */
.testimonials {
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--gray-700, #374151);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ── CTA Banner ───────────────────────────── */
.cta-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, var(--gray-900) 0%, #1a0a2e 100%);
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.cta-title .highlight {
    background: linear-gradient(135deg, var(--purple-400), #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
    margin: 0 auto 36px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--gray-900);
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.18);
}

/* ── Footer ───────────────────────────────── */
.footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 48px 0 32px;
}

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

.footer-brand .nav-logo {
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 220px;
}

.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 14px;
}

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

.footer-links a {
    text-decoration: none;
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-100);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    color: var(--gray-400);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: var(--purple-500);
}

/* ── Scroll Reveal ────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero overrides ───────────────────────── */
.hero .tag {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
}

.hero .tag .dot {
    background: var(--white);
}

.hero .hero-headline .highlight {
    background: linear-gradient(135deg, #e9d5ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Responsive ───────────────────────────── */

/* ── Cursor blink ─────────────────────────── */
.cursor-blink {
    display: inline-block;
    color: var(--purple-500);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mock-body {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: none;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-steps::before {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .cta-box {
        padding: 48px 24px;
    }
}