*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    corner-shape: squircle;
}

:root {
    --text: #111111;
    --text-secondary: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-subtle: #f8f8f8;
    --border: #e8e8e8;
    --border-hover: #d0d0d0;
    --accent: #111111;
    --accent-text: #ffffff;
    --radius-sm: 20px;
    --radius-md: 28px;
    --radius-lg: 40px;
    --radius-xl: 56px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- NAV --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-ghost {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

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

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

.nav-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--accent);
    color: var(--accent-text) !important;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: opacity 0.2s;
}

.nav-download:hover {
    opacity: 0.85;
}

/* --- DOWNLOAD DROPDOWN --- */
.download-wrapper {
    position: relative;
    display: inline-block;
}

.download-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    min-width: 180px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 200;
}

.download-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.download-wrapper--inline .download-dropdown {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-4px);
}

.download-wrapper--inline .download-dropdown.active {
    transform: translateX(-50%) translateY(0);
}

.download-option {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--accent-text) !important;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.download-option:last-child {
    border-bottom: none;
}

.download-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--accent);
    color: var(--accent-text);
}

.btn-primary:hover {
    opacity: 0.85;
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

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

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

/* --- HERO --- */
.hero {
    padding: 160px 24px 100px;
    text-align: center;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-emoji {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 1;
}

.hero-emoji-ghost {
    top: 80px;
    right: -80px;
    font-size: 96px;
    transform: rotate(12deg);
}

.hero-emoji-heart {
    top: 90px;
    left: -90px;
    font-size: 80px;
    transform: rotate(-18deg);
}

.hero-emoji-eyes {
    bottom: -80px;
    right: -120px;
    font-size: 72px;
    transform: rotate(8deg);
}

.hero-emoji-phone {
    bottom: -90px;
    left: -80px;
    font-size: 90px;
    transform: rotate(-10deg);
}

.hero-emoji-fire {
    top: 60px;
    left: 60px;
    font-size: 68px;
    transform: rotate(15deg);
}

.hero-emoji-peach {
    bottom: -100px;
    right: 10px;
    font-size: 74px;
    transform: rotate(20deg);
}

.hero-emoji-eggplant {
    top: 65px;
    right: 80px;
    font-size: 66px;
    transform: rotate(-14deg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.hero-icon {
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 35%;
    corner-shape: squircle;
    object-fit: contain;
    margin: 0 auto 20px;
    border: 1px solid var(--border);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--text);
}

.tw-char {
    opacity: 0;
    transition: opacity 0.05s;
}

.hero h1 .tw-cursor {
    font-weight: 300;
    color: var(--text-muted) !important;
    animation: tw-blink 1s step-end infinite;
}

@keyframes tw-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero h1 span {
    color: var(--text);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-sources {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-source {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 100px;
    corner-shape: round;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid transparent;
}

.hero-source svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.hero-source--imessage {
    color: #1a7fd4;
    background: rgba(33, 150, 243, 0.1);
    border-color: rgba(33, 150, 243, 0.3);
}

.hero-source--whatsapp {
    color: #1a9e4a;
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.hero-source--snapchat {
    color: #9e9800;
    background: rgba(252, 251, 75, 0.2);
    border-color: rgba(180, 170, 0, 0.5);
}

.hero-source--instagram {
    color: #d6336c;
    background: rgba(228, 64, 95, 0.1);
    border-color: rgba(228, 64, 95, 0.3);
}

.hero-source--telegram {
    color: #0c8bca;
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
}

.hero-source--tiktok {
    color: #111;
    background: rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.2);
}

.hero-source--messenger {
    color: #1567d0;
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-screenshot {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg-subtle);
}

.hero-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.macos-only {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

.macos-only svg {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: -2px;
    margin-right: 4px;
}

/* --- SOURCES --- */
.sources {
    padding: 100px 24px;
}

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sources-header {
    text-align: center;
    margin-bottom: 60px;
}

.sources-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sources-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.source-float {
    width: 44px;
    height: 44px;
}

.source-float svg {
    width: 100%;
    height: 100%;
}

.source-detail {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

/* --- FEATURES --- */
.features {
    padding: 100px 24px;
    background: var(--bg-subtle);
}

.features-header {
    text-align: center;
    margin-bottom: 72px;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.feature-card:hover {
    border-color: var(--border-hover);
}

.feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    border-radius: 12px;
    background: var(--bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.icon-blue {
    background: #dbeafe;
    color: #2563eb;
}
.icon-blue svg {
    stroke: #2563eb;
}
.icon-amber {
    background: #fef3c7;
    color: #d97706;
}
.icon-amber svg {
    stroke: #d97706;
}
.icon-orange {
    background: #ffedd5;
    color: #ea580c;
}
.icon-orange svg {
    stroke: #ea580c;
}
.icon-green {
    background: #dcfce7;
    color: #16a34a;
}
.icon-green svg {
    stroke: #16a34a;
}
.icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}
.icon-purple svg {
    stroke: #9333ea;
}
.icon-pink {
    background: #fce7f3;
    color: #db2777;
}
.icon-pink svg {
    stroke: #db2777;
}
.icon-red {
    background: #fee2e2;
    color: #dc2626;
}
.icon-red svg {
    stroke: #dc2626;
}
.icon-teal {
    background: #ccfbf1;
    color: #0d9488;
}
.icon-teal svg {
    stroke: #0d9488;
}
.icon-indigo {
    background: #e0e7ff;
    color: #4f46e5;
}
.icon-indigo svg {
    stroke: #4f46e5;
}
.icon-cyan {
    background: #cffafe;
    color: #0891b2;
}
.icon-cyan svg {
    stroke: #0891b2;
}

.feature-ghost {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.icon-red .feature-ghost {
    filter: brightness(0) saturate(100%) invert(22%) sepia(95%) saturate(5000%)
        hue-rotate(355deg) brightness(95%);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- FEATURES MAX --- */
.features-free {
    padding: 40px 36px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.features-free-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.features-free-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    padding: 0 10.5px 0 12px;
    height: 28px;
    border-radius: 100px;
    background: var(--bg-subtle);
    color: var(--text);
}

.features-free-header h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-free-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-free-item {
    display: flex;
    gap: 14px;
    min-width: 0;
    align-items: flex-start;
}

.feature-free-item .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    min-width: 44px;
    min-height: 44px;
}

.feature-free-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-free-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.plan-selector {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 32px 0 24px;
    background: var(--bg-subtle);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.plan-option {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 100px;
    corner-shape: round;
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.plan-option.active {
    background: var(--accent);
    color: var(--accent-text);
}

.features-genz {
    margin-top: 24px;
    padding: 40px 36px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.features-genz-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.features-genz-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    padding: 0 10.5px 0 12px;
    height: 28px;
    border-radius: 100px;
    background: linear-gradient(135deg, #fcfb4b, #e4405f);
    color: #fff;
}

.features-genz-header h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-genz-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-genz-item {
    display: flex;
    gap: 14px;
    min-width: 0;
    align-items: flex-start;
}

.feature-genz-item .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    min-width: 44px;
    min-height: 44px;
}

.feature-icon-dual {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #fefed2, #fce4ec);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-shrink: 0;
}

.feature-genz-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-genz-item p {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.6;
}

.features-pro {
    margin-top: 24px;
    padding: 40px 36px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.features-pro-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.features-pro-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    padding: 0 10.5px 0 12px;
    height: 28px;
    border-radius: 100px;
    background: var(--accent);
    color: var(--accent-text);
}

.features-pro-header h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-pro-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-pro-item {
    display: flex;
    gap: 14px;
    min-width: 0;
    align-items: flex-start;
}

.feature-pro-item .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    min-width: 44px;
    min-height: 44px;
}

.feature-pro-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-pro-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-max {
    margin-top: 24px;
    padding: 40px 36px;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(165,243,252,0.05), rgba(196,181,253,0.05), rgba(251,207,232,0.05), rgba(165,243,252,0.05)), #fff;
    background-size: 300% 300%;
    animation: diamond-shine 4s ease infinite;
    border-radius: var(--radius-lg);
}

.features-max-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
}

.features-max-badge {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    padding: 0 10.5px 0 12px;
    height: 28px;
    border-radius: 100px;
    background: linear-gradient(135deg, #a5f3fc, #c4b5fd, #fbcfe8, #a5f3fc);
    background-size: 300% 300%;
    animation: diamond-shine 4s ease infinite;
    color: #1a1a2e;
}

@keyframes diamond-shine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.features-max-header h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-max-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-max-item {
    display: flex;
    gap: 14px;
    min-width: 0;
    align-items: flex-start;
}

.feature-max-item .feature-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    min-width: 44px;
    min-height: 44px;
}


.feature-max-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.feature-max-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- LOCAL BANNER --- */
.local-banner {
    max-width: 640px;
    margin: 0 auto 48px;
    padding: 24px 32px;
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.local-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.local-banner-header svg {
    width: 20px;
    height: 20px;
    color: var(--text);
    flex-shrink: 0;
}

.local-banner-header h3 {
    font-size: 15px;
    font-weight: 700;
}

.local-banner p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- WARNING --- */
.warning {
    padding: 40px 24px 80px;
}

.warning-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 40px;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: var(--radius-lg);
}

.warning-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.warning-header svg {
    width: 28px;
    height: 28px;
    color: #d97706;
    flex-shrink: 0;
}

.warning-header h2 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #92400e;
}

.warning-subtitle {
    font-size: 15px;
    color: #a16207;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- PRICING --- */
.pricing {
    padding: 100px 24px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header .section-subtitle {
    margin: 0 auto;
}

.pricing-table-wrap {
    max-width: 960px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: center;
    table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--border);
}

.pricing-table tbody td {
    height: 36px;
}

.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 22%;
    corner-shape: squircle;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.pricing-table thead th {
    padding: 24px 16px 20px;
    vertical-align: top;
    border-bottom: 2px solid var(--border);
    height: 150px;
}

.pricing-table thead th .features-free-badge,
.pricing-table thead th .features-genz-badge,
.pricing-table thead th .features-pro-badge,
.pricing-table thead th .features-max-badge {
    margin-bottom: 8px;
}

.plan-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.plan-price {
    display: block;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.plan-price span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-muted);
}

.pricing-yearly-total {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--text-muted);
    margin-top: -2px;
}

.feature-label {
    text-align: left;
    font-weight: 600;
    color: var(--text);
    vertical-align: middle;
}

.feature-label .table-icon {
    vertical-align: middle;
    margin-right: 6px;
}

.table-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.table-icon-ghost {
    filter: brightness(0) saturate(100%) invert(50%) sepia(80%) saturate(2000%)
        hue-rotate(340deg) brightness(100%);
}

.feature-sources {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.source-icons {
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    vertical-align: middle;
    line-height: 0;
}

.pricing-table .source-icons svg {
    margin: -4px 0;
    position: relative;
    top: -1px;
}

.source-icons svg {
    flex-shrink: 0;
    border-radius: 3px;
}

.pricing-table tbody td {
    color: var(--text-secondary);
}

.pricing-table tbody td.check {
    color: var(--text);
    font-weight: 700;
}

.pricing-table tbody td.cross {
    color: var(--text-muted);
}

.pricing-table tfoot td {
    padding: 24px 16px;
    border-bottom: none;
}

.pricing-table tfoot .btn {
    width: 100%;
}

.btn-genz {
    background: linear-gradient(135deg, #fcfb4b, #e4405f);
    color: #fff;
}

.btn-genz:hover {
    opacity: 0.9;
}

.btn-diamond {
    background: linear-gradient(135deg, #a5f3fc, #c4b5fd, #fbcfe8, #a5f3fc);
    background-size: 300% 300%;
    animation: diamond-shine 4s ease infinite;
    color: #1a1a2e;
}

.btn-diamond:hover {
    opacity: 0.9;
}

.btn-white {
    background: #fff;
    color: #111;
}

.btn-white:hover {
    opacity: 0.9;
}

/* --- BILLING TOGGLE --- */
.billing-toggle {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 48px;
    background: var(--bg-subtle);
    border-radius: 100px;
    padding: 4px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.billing-option {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s;
}

.billing-option.active {
    background: var(--accent);
    color: var(--accent-text);
}

.billing-discount {
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    margin-left: 4px;
}

.billing-option.active .billing-discount {
    color: #86efac;
}

/* --- CTA --- */
.cta {
    padding: 100px 24px;
    text-align: center;
    background: var(--bg-subtle);
}

.cta-icon {
    width: 120px;
    height: 120px;
    border-radius: 35%;
    corner-shape: squircle;
    object-fit: contain;
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.cta h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

/* --- FOOTER --- */
footer {
    padding: 32px 24px;
    border-top: 1px solid var(--border);
}

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

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

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

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

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

.footer-disclaimer {
    max-width: 980px;
    margin: 24px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
    text-align: center;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .pricing-table {
        font-size: 13px;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 10px 10px;
    }
    .plan-price {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-emoji {
        display: none;
    }
    .section-title {
        font-size: 30px;
    }
    .sources-icons {
        gap: 12px;
    }
    .source-float {
        width: 32px;
        height: 32px;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .features-free-list {
        grid-template-columns: 1fr;
    }
    .features-genz-list {
        grid-template-columns: 1fr;
    }
    .features-pro-list {
        grid-template-columns: 1fr;
    }
    .features-max-list {
        grid-template-columns: 1fr;
    }
    .pricing-table-wrap {
        margin: 0 -24px;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    .plan-price {
        font-size: 22px;
    }
    .plan-name {
        font-size: 11px;
    }
    .nav-links a:not(.nav-download) {
        display: none;
    }
    .footer-inner {
        flex-direction: column;
        gap: 16px;
    }
    .warning-header h2 {
        font-size: 18px;
        line-height: 1.15;
    }
    .local-banner-header h3 {
        line-height: 1.2;
    }
    .features-free-header h3,
    .features-genz-header h3,
    .features-pro-header h3,
    .features-max-header h3 {
        line-height: 1.15;
    }
    .features-genz-badge {
        padding: 0 14px;
        white-space: nowrap;
    }
    .pricing-table tfoot .btn {
        border-radius: 16px;
    }
    .hero-screenshot {
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
}
