@font-face {
    font-family: 'Rene';
    src: url('Rene-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #ffffff;
    --color-surface: #ffffff;
    --color-text: #0a0a0a;
    --color-text-secondary: #9ca3af;
    --color-border: #e5e5e5;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-brand: 'Rene', sans-serif;
    --radius: 24px;
    --radius-sm: 16px;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 36px;
    border-radius: 1.5px;
}

.header-cta {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-bg);
    background: var(--color-text);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 100px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-cta:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-logo {
    height: 100px;
    margin-bottom: 32px;
    border-radius: 4px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.15;
    color: var(--color-text);
    max-width: 700px;
    margin-bottom: 28px;
}

.hero-headline .accent {
    color: #2563eb;
}

.hero-description {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 420px;
    margin-bottom: 48px;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-bg);
    background: var(--color-text);
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 100px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn-primary:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
}

/* Phone */
.phone-wrapper {
}

.phone {
    width: 340px;
    height: 700px;
    background: var(--color-text);
    border-radius: 52px;
    padding: 12px;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section */
section {
    padding: 160px 24px;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 500px;
    line-height: 1.7;
}

/* Features - Showcase */
.showcase {
    padding: 120px 24px;
    text-align: center;
}

.showcase-header {
    max-width: 600px;
    margin: 0 auto 60px;
}

.showcase-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
}

.showcase-header p {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.showcase-bento {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
}

.bento-card.large {
    grid-row: span 2;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.bento-card.large .bento-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bento-card.large .bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card.large .bento-meta {
    text-align: left;
}

.bento-card.small {
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.bento-card.small .bento-image {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.bento-card.small .bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card.small .bento-meta {
    text-align: left;
    flex: 1;
}

.bento-card.tilted {
    transform: rotate(2deg);
}

.bento-card.tilted-reverse {
    transform: rotate(-2deg);
}

.bento-source {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.bento-source-text {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-secondary);
}

.bento-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.bento-card.accent {
    background: #2563eb;
    border-color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.bento-card.accent span {
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    color: #fff;
    text-align: center;
}

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

    .bento-card.large {
        grid-row: span 1;
    }

    .showcase-bento {
        padding: 24px;
    }
}

/* Search Section */
.search-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    max-width: 1000px;
    margin: 80px auto;
}

.search-content h3 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.search-content p {
    font-size: 17px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 400px;
}

.search-visual {
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .showcase {
        padding: 100px 24px;
    }

    .showcase-cards {
        gap: 24px;
    }

    .search-section {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 100px 24px;
        text-align: center;
    }

    .search-content p {
        max-width: 100%;
    }
}

/* Mini phone */
.mini-phone {
    width: 90px;
    height: 180px;
    background: #1a1a1a;
    border-radius: 18px;
    padding: 4px;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.3);
}

.mini-phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.mini-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Capsl card */
.capsl-card {
    font-family: var(--font-mono);
    background: var(--color-surface);
    border-radius: 20px;
    padding: 16px;
    width: 300px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.capsl-card.wide {
    width: 340px;
}

.capsl-card-image {
    width: 100%;
    height: 268px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f0f0f5;
}

.capsl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.capsl-card-meta {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.capsl-card-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
    white-space: nowrap;
}

.capsl-card-source-text {
    font-size: 11px;
    color: var(--color-text-secondary);
}

.capsl-card-badge {
    font-size: 10px;
    font-weight: 500;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    padding: 3px 8px;
    border-radius: 100px;
}

.capsl-card-badge.purple {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.15);
}

.capsl-card-badge.dark {
    color: #0a0a0a;
    background: rgba(10, 10, 10, 0.1);
}

.capsl-card-handle {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 3px 8px;
    border: 1px solid rgba(107, 107, 123, 0.3);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.capsl-card-handle:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}

.capsl-card-title {
    font-size: 12px;
    color: var(--color-text);
    line-height: 1.4;
}

/* Transform visual */
.transform-visual {
    display: flex;
    align-items: center;
    gap: 24px;
}

.transform-arrow {
    font-size: 20px;
    color: var(--color-text-secondary);
    opacity: 0.4;
}

/* Search mockup */
.search-mockup {
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.search-bar svg {
    width: 16px;
    height: 16px;
    color: var(--color-text-secondary);
}

.search-bar span {
    font-size: 14px;
    color: var(--color-text);
}

.search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.search-result-image {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-text {
    font-size: 12px;
    color: var(--color-text);
    line-height: 1.5;
}

.search-result-meta {
    font-size: 11px;
    color: var(--color-text-secondary);
    margin-top: 2px;
}

/* Testimonial */
.testimonial {
    padding: 160px 24px;
    text-align: center;
}

.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 32px);
    font-style: italic;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.testimonial-handle {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.testimonial-handle a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.testimonial-handle a:hover {
    color: var(--color-text);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 200px 24px;
}

.cta-section .section-title {
    margin-bottom: 16px;
}

.cta-section .section-description {
    margin: 0 auto 48px;
}

/* Footer */
footer {
    padding: 48px 24px;
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-social a {
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--color-text);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}



/* Responsive */
@media (max-width: 900px) {
    header {
        padding: 20px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-visual {
        min-height: 220px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 140px 20px 80px;
    }

    .hero-logo {
        height: 72px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .btn-primary {
        justify-content: center;
    }

    .phone {
        width: 280px;
        height: 580px;
        border-radius: 44px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    section {
        padding: 100px 20px;
    }

    .feature-card {
        padding: 28px;
    }

    .transform-visual {
        flex-direction: column;
        gap: 16px;
    }

    .transform-arrow {
        transform: rotate(90deg);
    }

    footer {
        padding: 32px 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
