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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.7;
}

:root {
    --bg: #fafafa;
    --text: #000;
    --text-dim: #666;
    --text-muted: #777;
    --border: #e5e5e5;
    --action-color: #16a34a;
}

[data-theme="dark"] {
    --bg: #000;
    --text: #fff;
    --text-dim: #999;
    --text-muted: #555;
    --border: #222;
    --action-color: #22c55e;
}

[data-theme="dark"] nav {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .hero {
    background-image: linear-gradient(to bottom, transparent 0%, var(--bg) 60%), url('../images/hero-dark.png');
}

[data-theme="dark"] .logo,
[data-theme="dark"] .nav-right a,
[data-theme="dark"] .theme-btn {
    color: #fff;
}

.theme-img-light + .theme-img-dark {
    display: none;
}

.theme-img-dark {
    display: none;
}

[data-theme="dark"] .theme-img-light {
    display: none;
}

[data-theme="dark"] .theme-img-dark {
    display: block;
}

.wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.wrap-wide {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    border-top: 1px solid var(--border);
}

::selection {
    background: var(--text);
    color: var(--bg);
}

/* nav */
nav {
    max-width: 560px;
    margin: 16px auto 0;
    padding: 8px 20px;
    position: sticky;
    top: 16px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.06);
}

.logo {
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
}

.logo:hover {
    text-decoration: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 13px;
    white-space: nowrap;
}

.nav-right a {
    color: #1a1a1a;
    font-weight: 600;
}

.nav-right a:hover {
    opacity: 0.7;
}

.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    padding: 0;
    line-height: 1;
    transition: opacity 0.2s;
}

.theme-btn:hover {
    opacity: 0.7;
}

/* hero */
.hero {
    margin-top: -80px;
    padding: 130px 0 80px;
    background-image: linear-gradient(to bottom, transparent 0%, var(--bg) 60%), url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-img {
    width: 100%;
    max-width: 720px;
    border-radius: 12px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 65%, rgba(0,0,0,0.6) 85%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 65%, rgba(0,0,0,0.6) 85%, rgba(0,0,0,0) 100%);
}

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

.wrap-wide {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-demo {
    width: 100%;
    max-width: 560px;
}

.hero-text {
    text-align: center;
    max-width: 680px;
    margin-top: -40px;
}

.hero-text .sub {
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.sub {
    color: var(--text);
    font-weight: 500;
    max-width: 520px;
    margin-bottom: 32px;
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top-color: rgba(255, 255, 255, 0.25);
    border-bottom-color: rgba(0, 0, 0, 0.15);
    padding: 12px 28px;
    color: #fff;
    background: #D11310;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12), inset 0px 0px 4px #FFFFFF;
    border-radius: 52px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    margin-right: 8px;
}

.btn-icon {
    width: 36px;
    height: 36px;
    fill: #fff;
}

.btn:hover {
    text-decoration: none;
    background: #B8100E;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16), inset 0px 0px 4px #FFFFFF;
}

[data-theme="dark"] .btn {
    border-color: rgba(255, 255, 255, 0.2);
    border-top-color: rgba(255, 255, 255, 0.35);
    border-bottom-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3), inset 0px 0px 4px rgba(255, 100, 100, 0.3);
}

[data-theme="dark"] .btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4), inset 0px 0px 4px rgba(255, 100, 100, 0.4);
}



.meta, .btn-note, .hero-meta {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    clear: both;
}

.hero-meta {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-dim);
}

#download-cta .hero-meta {
    margin-top: 20px;
}

#download-cta h2 {
    margin-bottom: 32px;
}

#download-cta .btn {
    margin-bottom: 12px;
}
}





/* sections */
.roadmap-section {
    padding: 80px 0 64px;
}

.roadmap-sub {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 480px;
}

.roadmap-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.roadmap-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.roadmap-list li:first-child {
    border-top: 1px solid var(--border);
}

.roadmap-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--action-color);
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.roadmap-list li:nth-child(n+4) .roadmap-badge {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.15);
}

.roadmap-list li:nth-child(n+6) .roadmap-badge {
    background: rgba(156, 163, 175, 0.08);
    color: var(--text-muted);
    border-color: rgba(156, 163, 175, 0.15);
}

[data-theme="dark"] .roadmap-list li:nth-child(n+4) .roadmap-badge {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.2);
}

.roadmap-item-text {
    flex: 1;
}

.btn-roadmap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    padding: 10px 24px;
    color: var(--text);
    background: transparent;
    border-radius: 52px;
    text-decoration: none;
    transition: background 0.15s, opacity 0.15s;
}

.btn-roadmap:hover {
    background: var(--border);
    text-decoration: none;
}

.nav-link {
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-link:hover {
    opacity: 0.7;
}

[data-theme="dark"] .nav-link {
    color: #fff;
}

/* sections */
.feature-section {
    padding: 80px 0;
}

.feature-section .wrap-wide {
    flex-direction: row;
    align-items: center;
    gap: 64px;
}

.feature-section.feature-reverse .wrap-wide {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
    max-width: 480px;
}

.feature-img img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.feature-text {
    flex: 1;
    max-width: 400px;
}

.feature-desc {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    font-size: 14px;
    color: var(--text-dim);
    padding-left: 16px;
    position: relative;
}

.feature-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-box h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.divider {
    padding: 0;
}

section:not(.animation-section):not(.divider):not(.hero) {
    padding: 64px 0;
}

#download-cta {
    padding: 64px 0 90px;
}

.label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: lowercase;
    margin-bottom: 32px;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

/* how it works */
.cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.col h2 {
    font-size: 48px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.col p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* rules */
.rules-list {
    display: flex;
    flex-direction: column;
}

.rule-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.rule-row:last-child {
    border-bottom: none;
}

.rule-name {
    font-weight: 600;
    white-space: nowrap;
}

.rule-desc {
    color: var(--text-muted);
}

/* who is it for */
.for-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
}

.for-item h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.wrap-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 404 page */
.not-found {
    padding: 120px 0 80px;
    text-align: center;
}

.not-found h1 {
    font-size: clamp(64px, 10vw, 96px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.not-found-text {
    font-size: 16px;
    color: var(--text-dim);
    max-width: 400px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.btn-404 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    padding: 10px 24px;
    color: var(--text);
    background: transparent;
    border-radius: 52px;
    text-decoration: none;
    transition: background 0.15s, opacity 0.15s;
}

.btn-404:hover {
    background: var(--border);
    text-decoration: none;
}

/* support form */
.support-page {
    padding: 80px 0;
}

.support-page h1 {
    margin-bottom: 8px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.15s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.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 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

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

.btn-submit {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #D11310;
    border: none;
    border-radius: 52px;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #B8100E;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

[data-theme="dark"] .btn-submit {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.form-result {
    font-size: 13px;
    margin-top: 4px;
}

/* feedback popover */
.popover-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.popover-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popover-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    max-width: 420px;
    width: calc(100% - 48px);
    position: relative;
}

.popover-card h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.popover-sub {
    font-size: 14px;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.popover-card .form-group {
    margin-bottom: 16px;
}

.popover-card .form-group:last-of-type {
    margin-bottom: 20px;
}

.popover-card .form-group textarea {
    min-height: 80px;
}

.popover-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.15s;
}

.popover-close:hover {
    color: var(--text);
}

/* faq */
.faq-section h2 {
    margin-bottom: 32px;
}

.faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-list li {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.faq-list li:first-child {
    border-top: 1px solid var(--border);
}

.faq-list h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-list p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 600px;
}

/* waitlist */
.waitlist-section {
    padding: 64px 0;
}

.waitlist-section h2 {
    margin-bottom: 12px;
}

.waitlist-sub {
    color: var(--text-dim);
    font-size: 14px;
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.waitlist-form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-form input[type="email"] {
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 52px;
    padding: 12px 20px;
    outline: none;
    width: 280px;
    transition: border-color 0.15s;
}

.waitlist-form input[type="email"]:focus {
    border-color: var(--text-dim);
}

.waitlist-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.waitlist-form .btn {
    margin-right: 0;
}

.waitlist-form .form-result {
    width: 100%;
    text-align: center;
    margin-top: 4px;
}

/* legal pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    margin-bottom: 8px;
}

.legal-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-page h3 {
    font-size: 15px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-page p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-page ul {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 0;
}

.legal-page ul li {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    padding-left: 16px;
    position: relative;
}

.legal-page ul li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

/* footer */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.footer-inner p {
    margin-bottom: 8px;
}

footer p {
    font-size: 12px;
    color: var(--text-muted);
}

footer a {
    color: var(--text-muted);
}

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

/* responsive */
@media (max-width: 600px) {
    .wrap-wide {
        gap: 40px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-demo {
        max-width: 100%;
    }

    .feature-section .wrap-wide {
        flex-direction: column;
        gap: 40px;
    }

    .feature-section.feature-reverse .wrap-wide {
        flex-direction: column;
    }

    .feature-img {
        max-width: 100%;
        width: 100%;
    }

    .feature-text {
        max-width: 100%;
    }

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

    .cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .col h2 {
        font-size: 32px;
    }

    .nav-right {
        gap: 16px;
        font-size: 12px;
    }

    .rule-row {
        flex-direction: column;
        gap: 2px;
    }

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

    .roadmap-list li {
        flex-direction: column;
        gap: 8px;
    }

    .demo {
        height: 180px;
    }
}

.ph-badge {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.ph-badge a {
    display: block;
}

.ph-badge:hover {
    transform: scale(1.05);
}

.ph-badge img {
    display: block;
    height: auto;
}

.ph-badge .ph-dark {
    display: none;
}

[data-theme="dark"] .ph-badge .ph-light {
    display: none;
}

[data-theme="dark"] .ph-badge .ph-dark {
    display: block;
}

@media (max-width: 640px) {
    .ph-badge {
        bottom: 20px;
        right: 20px;
    }

    .ph-badge img {
        width: 180px;
        height: auto;
    }
}

/* SEO sub-pages */
.seo-hero {
    padding: 140px 0 64px;
    text-align: center;
}

.seo-hero h1 {
    margin-bottom: 24px;
}

.seo-hero-sub {
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 36px;
}

.seo-hero .btn {
    margin-bottom: 12px;
}

.seo-section {
    padding: 64px 0;
}

.seo-section h2 {
    margin-bottom: 24px;
}

.seo-sub {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.seo-pain-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.seo-pain-list li {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
}

.seo-pain-list li:first-child {
    border-top: 1px solid var(--border);
}

.seo-pain-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 8px;
}

.step-card {
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--border);
    color: var(--text);
}

.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

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

.seo-feature-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: background 0.15s, border-color 0.15s;
}

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

.seo-feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.template-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.template-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.template-item:first-child {
    border-top: 1px solid var(--border);
}

.template-name {
    font-size: 14px;
    font-weight: 700;
}

.template-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 40px;
}

.comparison-table th {
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    padding: 14px 16px;
    border-bottom: 2px solid var(--border);
    background: var(--bg);
}

.comparison-table th:first-child {
    padding-left: 0;
}

.comparison-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.comparison-table td:first-child {
    font-weight: 600;
    padding-left: 0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-highlight {
    background: rgba(22, 163, 74, 0.05);
}

[data-theme="dark"] .comparison-highlight {
    background: rgba(34, 197, 94, 0.05);
}

@media (max-width: 600px) {
    .seo-hero {
        padding: 120px 0 48px;
    }

    .seo-hero-sub {
        text-align: left;
    }

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

    .seo-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}
