:root {
    --primary: #FBBC04;
    --primary-dark: #F59E0B;
    --secondary: #F97316;
    --text-main: #1F2937;
    --text-sub: #4B5563;
    --bg-light: #FFFBEB;
    --white: #FFFFFF;
    --gray-light: #F3F4F6;
    --gradient: linear-gradient(135deg, #FBBC04 0%, #F97316 100%);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.8;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Layout Utilities */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-sub);
    transition: color 0.2s;
}

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



@media (max-width: 768px) {
    .header-inner {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at top right, #FFF7ED 0%, #FFFFFF 60%);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: #FEF3C7;
    color: #D97706;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(to right, #1F2937, #4B5563);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-sub);
    margin-bottom: 40px;
    max-width: 540px;
}



.coming-soon {
    display: inline-block;
    padding: 12px 24px;
    background: var(--bg-light);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 12px;
    border: 2px dashed var(--primary);
    font-size: 1.1rem;
}

.store-btn {
    height: 50px;
    transition: transform 0.2s;
}

.store-btn:hover {
    transform: translateY(-2px);
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #F3F4F6;
    border-radius: 40px;
    border: 8px solid #1F2937;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Simple CSS Mockup Content */
.mockup-header {
    height: 60px;
    background: var(--white);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: bold;
}

.mockup-list {
    padding: 20px;
    flex: 1;
}

.mockup-item {
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.mockup-check {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 50%;
}

.mockup-line {
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    width: 80%;
}

.mockup-item.active {
    border-left: 4px solid var(--primary);
}

/* Hero Messages Animation */
.hero-messages {
    margin-bottom: 40px;
    position: relative;
}

.hero-msg-stack {
    display: inline-grid;
    grid-template-areas: "stack";
    vertical-align: top;
}

.hero-msg {
    grid-area: stack;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 0 !important;
    display: block;
}

.hero-msg.primary {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

.hero-msg.secondary {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    filter: blur(4px);
    pointer-events: none;
}

.hero-messages.switched .hero-msg.primary {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    filter: blur(4px);
    pointer-events: none;
}

.hero-messages.switched .hero-msg.secondary {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    pointer-events: auto;
}

/* Story Section */
.story {
    background: var(--white);
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
}

.story p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-sub);
}

.story-highlight {
    background: #FFFBEB;
    padding: 32px;
    border-radius: 16px;
    margin: 40px 0;
    border-left: 4px solid var(--primary);
}

.story-highlight p {
    margin-bottom: 0;
    color: var(--text-main);
    font-weight: 500;
}

/* Features */
.features {
    background: #F9FAFB;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-sub);
    font-size: 1.125rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border-radius: 20px;
    background: var(--white);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #FFFBEB;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    background: var(--white);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.use-case-item {
    text-align: center;
}

.use-case-emoji {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.use-case-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.use-case-item p {
    color: var(--text-sub);
    font-size: 0.95rem;
}

/* Highlight Section */
.highlight {
    background: var(--text-main);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.highlight h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight p {
    color: #9CA3AF;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #E5E7EB;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.recommended {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pricing-card.joke {
    background: #F9FAFB;
    opacity: 0.8;
    border-style: dashed;
}

.pricing-badge {
    position: absolute;
    top: 30px;
    right: -45px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 20px 0;
}

.price span {
    font-size: 0.875rem;
    color: var(--text-sub);
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-card.joke .pricing-features li::before {
    content: "×";
    color: #9CA3AF;
}

/* Footer */
footer {
    background: #F9FAFB;
    padding: 60px 0 30px;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

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

.footer-links a {
    color: var(--text-sub);
    font-size: 0.875rem;
}

.copyright {
    text-align: center;
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .app-buttons {
        justify-content: center;
    }

    .story h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Message Section */
.message {
    background: #F9FAFB;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
}

.target-box {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.target-title {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 5px;
}

.target-list {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
}

.message-body {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-main);
}

.message-body p {
    margin-bottom: 24px;
}

.message-strong {
    background: linear-gradient(transparent 60%, #FEF3C7 60%);
    font-weight: 700;
}

/* Legal Pages Specific */
.legal-content h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
    padding-top: 120px;
    /* Adjust for fixed header */
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bg-light);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-sub);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
    color: var(--text-sub);
}

.legal-content li {
    margin-bottom: 10px;
}