/* GoMind Website Styles */
/* Modern, clean design with professional aesthetics */

/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #4a90e2;
    --primary-dark: #357abd;
    --primary-light: #6ba5e7;
    --secondary-color: #50c878;
    --accent-color: #ff6b6b;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    --font-family-zh: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
}

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

code {
    font-family: Consolas, 'Courier New', monospace;
}

html[lang="zh"] body {
    font-family: var(--font-family-zh);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===========================
   Navigation Bar
   =========================== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.lang-switch {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    padding: 0.4rem 1rem !important;
}

.lang-switch:hover {
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-download {
    width: 100%;
    margin-top: var(--spacing-sm);
}

/* ===========================
   Section Titles
   =========================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Capabilities Section
   =========================== */
.capabilities {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.capability {
    padding: var(--spacing-md);
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.capability h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.capability p {
    color: var(--text-light);
}

/* ===========================
   Use Cases Section
   =========================== */
.use-cases {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.use-case {
    padding: var(--spacing-md);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    text-align: center;
}

.use-case h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.use-case p {
    color: var(--text-light);
}

/* ===========================
   Comparison Section
   =========================== */
.comparison {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.comparison-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.1rem;
    color: var(--text-light);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
}

.comparison-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.comparison-table th {
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

.comparison-table tbody tr:hover {
    background-color: #e3f2fd;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

/* ===========================
   CTA Section
   =========================== */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta-note {
    margin-top: var(--spacing-sm);
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ===========================
   Download Page Styles
   =========================== */
.download-hero,
.privacy-hero,
.versions-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.download-hero h1,
.privacy-hero h1,
.versions-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.downloads {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.download-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.download-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--bg-light);
}

.platform-icon {
    font-size: 3rem;
}

.platform-info h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.platform-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.download-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.detail-item {
    flex: 1;
    min-width: 150px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.detail-value {
    color: var(--text-dark);
    font-weight: 500;
}

.download-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

.android-downloads {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.android-downloads .btn {
    flex: 1;
}

.download-source-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: var(--spacing-sm);
}

.download-source-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: 0.65rem 0.8rem;
    border: 1px solid var(--bg-light);
    border-radius: var(--radius-md);
}

.download-source-label {
    color: var(--text-dark);
    font-weight: 600;
}

.download-source-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem;
}

.download-source-link {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.download-source-link:hover {
    text-decoration: underline;
}

/* ===========================
   Instructions Section
   =========================== */
.instructions {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.instruction-card {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.instruction-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.instruction-card ol {
    margin-left: var(--spacing-md);
    color: var(--text-light);
}

.instruction-card li {
    margin-bottom: 0.5rem;
}

.instruction-card code {
    background-color: var(--bg-white);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: Consolas, 'Courier New', monospace;
    color: var(--primary-color);
}

/* ===========================
   Requirements Section
   =========================== */
.requirements {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.requirements-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.requirements-table table {
    width: 100%;
    border-collapse: collapse;
}

.requirements-table th,
.requirements-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
}

.requirements-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.requirements-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

.requirements-table tbody tr:hover {
    background-color: #e3f2fd;
}

/* ===========================
   Support Section
   =========================== */
.support {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.support-card {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.support-card p {
    color: var(--text-light);
}

.support-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.support-card a:hover {
    text-decoration: underline;
}

/* ===========================
   Privacy Page Styles
   =========================== */
.privacy-content {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.privacy-text {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.privacy-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.privacy-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.8;
}

.privacy-text ul {
    margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-light);
}

.privacy-text li {
    margin-bottom: 0.5rem;
}

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

.privacy-text a:hover {
    text-decoration: underline;
}

.privacy-summary {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    margin-top: var(--spacing-lg);
}

.privacy-summary h3 {
    color: var(--primary-color);
    margin-top: 0 !important;
}

/* ===========================
   Versions Page Styles
   =========================== */
.versions {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.version-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.version-card.current {
    border: 3px solid var(--secondary-color);
}

.version-header {
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.version-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.version-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.version-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.version-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.version-content ul {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.version-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Roadmap Section
   =========================== */
.roadmap {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.roadmap-content {
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.roadmap-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.roadmap-list {
    margin: var(--spacing-sm) 0 var(--spacing-md) var(--spacing-md);
}

.roadmap-list li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.6;
}

.roadmap-note {
    background-color: var(--bg-light);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--bg-white);
}

.footer-section p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-sm);
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        justify-content: center;
    }
    
    .features-grid,
    .capabilities-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .download-header {
        flex-direction: column;
        text-align: center;
    }
    
    .android-downloads {
        flex-direction: column;
    }

    .download-source-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .download-source-actions {
        justify-content: flex-start;
    }
    
    .instructions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ===========================
   Platform Download Tabs
   =========================== */
.platform-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: var(--spacing-md);
}

.platform-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.platform-tab i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.platform-tab:hover,
.platform-tab:focus-visible {
    border-color: var(--primary-light);
    color: var(--primary-dark);
    outline: none;
    transform: translateY(-1px);
}

.platform-tab.is-active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.platform-tab.is-active i {
    color: var(--bg-white);
}

.platform-panel[hidden] {
    display: none;
}

.platform-panel {
    margin-bottom: 0;
    min-height: 22rem;
}

.platform-panel:focus-visible {
    outline: 3px solid rgba(74, 144, 226, 0.3);
    outline-offset: 3px;
}

.platform-icon {
    display: grid;
    place-items: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    font-size: 2.1rem;
}

.download-alternatives {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--bg-light);
}

.download-alternatives h3 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
    font-size: 1.05rem;
}

.download-alternatives h3 i,
.instruction-card h3 i,
.support-card h3 i {
    color: var(--primary-color);
}

.download-alternatives-primary {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.version-content h3,
.roadmap-content h3 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.version-content h3 i,
.roadmap-content h3 i {
    color: var(--primary-color);
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .platform-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .platform-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .platform-tab {
        padding: 0.7rem 0.5rem;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

/* ===========================
   Landing page refresh
   =========================== */
.landing-page {
    --landing-ink: #24211e;
    --landing-muted: #746d65;
    --landing-paper: #fffaf3;
    --landing-warm: #f7eee3;
    --landing-orange: #f15b32;
    --landing-orange-dark: #c53f20;
    --landing-blue: #e8f0f8;
    --landing-green: #e8f1e9;
    --landing-line: rgba(36, 33, 30, 0.13);
    --landing-container: 1180px;
    margin: 0;
    color: var(--landing-ink);
    background:
        radial-gradient(circle at 8% 5%, rgba(255, 184, 119, 0.25), transparent 26rem),
        linear-gradient(180deg, #fffaf3 0%, #f9f1e8 45%, #fffaf5 100%);
    font-family: 'DM Sans', 'Microsoft YaHei', sans-serif;
    overflow-x: hidden;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
    box-sizing: border-box;
}

.landing-page a {
    color: inherit;
    text-decoration: none;
}

.landing-page img {
    max-width: 100%;
}

.landing-container {
    width: min(var(--landing-container), calc(100% - 48px));
    margin: 0 auto;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(36, 33, 30, 0.08);
    background: rgba(255, 250, 243, 0.82);
    backdrop-filter: blur(18px);
}

.landing-nav-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.landing-brand img {
    width: 38px;
    height: 38px;
    border-radius: 11px;
}

.landing-menu {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--landing-muted);
    font-size: 0.9rem;
}

.landing-menu a {
    transition: color 160ms ease;
}

.landing-menu a:hover {
    color: var(--landing-ink);
}

.landing-menu .landing-language {
    padding: 9px 13px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    color: var(--landing-ink);
}

.landing-language-switcher {
    position: relative;
}

.landing-language-switcher summary {
    cursor: pointer;
    list-style: none;
    padding: 9px 13px;
    border: 1px solid var(--landing-line);
    border-radius: 999px;
    color: var(--landing-ink);
}

.landing-language-switcher summary::-webkit-details-marker {
    display: none;
}

.landing-language-switcher[open] summary {
    background: var(--landing-ink);
    color: #fff;
}

.landing-language-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    min-width: 132px;
    padding: 8px;
    border: 1px solid var(--landing-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(58, 36, 29, .14);
}

.landing-language-options a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.landing-language-options a:hover,
.landing-language-options a[aria-current="page"] {
    background: var(--landing-paper);
    color: var(--landing-ink);
}

.landing-announcement {
    position: relative;
    z-index: 5;
    background: var(--landing-accent, #f05a28);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.landing-announcement a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 16px;
    color: #fff;
    text-decoration: none;
    transition: background 160ms ease;
}

.landing-announcement a:hover {
    background: rgba(0, 0, 0, 0.12);
}

.landing-announcement span {
    transition: transform 160ms ease;
}

.landing-announcement a:hover span {
    transform: translateX(4px);
}

.landing-hero {
    padding: 84px 0 100px;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.83fr) minmax(480px, 1.17fr);
    align-items: center;
    gap: 74px;
}

.landing-hero-copy {
    position: relative;
    z-index: 1;
}

.landing-kicker,
.landing-overline {
    margin: 0;
    color: var(--landing-orange-dark);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.landing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.landing-kicker span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-orange);
    box-shadow: 0 0 0 5px rgba(241, 91, 50, 0.12);
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
    margin-top: 0;
}

.landing-page h1,
.landing-page h2,
.landing-page h3 {
    font-family: 'Manrope', 'Microsoft YaHei', sans-serif;
}

.landing-page h1 em,
.landing-page h2 em {
    color: var(--landing-orange);
    font-style: normal;
}

.landing-page h1 {
    max-width: 560px;
    margin: 24px 0 22px;
    font-size: clamp(3.4rem, 6vw, 6.15rem);
    font-weight: 800;
    letter-spacing: -0.085em;
    line-height: 0.96;
}

.landing-lead {
    max-width: 500px;
    margin-bottom: 0;
    color: var(--landing-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.landing-primary-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.landing-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button span {
    font-size: 1.1rem;
    line-height: 1;
}

.landing-page .landing-button-primary {
    color: #fff;
    background: var(--landing-orange);
    box-shadow: 0 13px 28px rgba(197, 63, 32, 0.2);
}

.landing-page .landing-button-primary:hover {
    background: var(--landing-orange-dark);
}

.landing-page .landing-button-quiet {
    border-color: var(--landing-line);
    color: var(--landing-ink);
    background: rgba(255, 255, 255, 0.36);
}

.landing-page .landing-button-webapp {
    min-height: 42px;
    padding: 10px 18px;
    border-color: var(--landing-line);
    color: var(--landing-orange);
    background: transparent;
    font-size: 0.84rem;
}

.landing-page .landing-button-webapp:hover {
    border-color: var(--landing-orange);
    background: rgba(241, 91, 50, 0.06);
}

.landing-platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 44px;
    color: #958d84;
    font-size: 0.77rem;
}

.landing-platforms i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #c5bdb3;
}

.landing-hero-visual {
    position: relative;
    min-width: 0;
}

.landing-hero-glow {
    position: absolute;
    width: 460px;
    height: 460px;
    right: 1%;
    top: -8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 177, 83, 0.33), rgba(255, 177, 83, 0) 68%);
    pointer-events: none;
}

.landing-screen-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 10px 10px 0;
    border: 1px solid rgba(36, 33, 30, 0.16);
    border-radius: 24px;
    background: #f0ebe4;
    box-shadow: 0 28px 70px rgba(65, 46, 27, 0.2);
    transform: rotate(1.2deg);
}

.landing-window-bar {
    display: flex;
    height: 28px;
    align-items: center;
    gap: 5px;
    padding: 0 8px 8px;
}

.landing-window-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8cfc4;
}

.landing-window-bar span:first-child {
    background: #ef9474;
}

.landing-window-bar small {
    margin-left: 8px;
    color: #9a9187;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
}

.landing-screen-frame img {
    width: 100%;
    border-radius: 13px 13px 0 0;
}

.landing-float {
    position: absolute;
    z-index: 2;
    max-width: 190px;
    padding: 13px 15px;
    border: 1px solid rgba(36, 33, 30, 0.1);
    border-radius: 15px;
    background: rgba(255, 252, 247, 0.92);
    box-shadow: 0 14px 35px rgba(65, 46, 27, 0.14);
    transform: rotate(-2deg);
}

.landing-float strong,
.landing-float span {
    display: block;
}

.landing-float strong {
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.84rem;
}

.landing-float span {
    color: var(--landing-muted);
    font-size: 0.72rem;
    line-height: 1.45;
}

.landing-float-ai {
    left: -30px;
    bottom: 16%;
}

.landing-float-layout {
    right: -25px;
    top: 13%;
    transform: rotate(3deg);
}

.landing-section {
    padding: 116px 0;
}

.landing-section-intro {
    border-top: 1px solid rgba(36, 33, 30, 0.08);
}

.landing-section-heading {
    max-width: 650px;
}

.landing-section-heading h2,
.landing-dark-heading h2,
.landing-download h2 {
    margin: 17px 0 18px;
    font-size: clamp(2.5rem, 4.7vw, 4.4rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.99;
}

.landing-section-heading > p:last-child,
.landing-dark-heading > p:last-child {
    max-width: 530px;
    margin-bottom: 0;
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.landing-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 66px;
}

.landing-story-card {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    padding: 26px 25px 24px;
    border-radius: 22px;
}

.landing-story-orange { background: #fce9dd; }
.landing-story-blue { background: var(--landing-blue); }
.landing-story-green { background: var(--landing-green); }

.landing-card-number {
    display: block;
    margin-bottom: 62px;
    color: rgba(36, 33, 30, 0.48);
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.landing-story-card h3 {
    margin-bottom: 10px;
    font-size: 1.27rem;
    letter-spacing: -0.04em;
}

.landing-story-card p {
    max-width: 330px;
    margin-bottom: 0;
    color: rgba(36, 33, 30, 0.68);
    font-size: 0.89rem;
    line-height: 1.7;
}

.landing-cross-device {
    overflow: hidden;
    border-top: 1px solid rgba(36, 33, 30, 0.08);
    background: #eee8e0;
}

.landing-cross-device-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 42px;
}

.landing-cross-device-heading h2 {
    margin: 17px 0 0;
    font-size: clamp(2.8rem, 5.2vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.96;
}

.landing-cross-device-heading > p {
    max-width: 390px;
    padding-bottom: 3px;
    color: var(--landing-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.landing-device-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(210px, 0.7fr) minmax(150px, 0.42fr);
    align-items: end;
    gap: 12px;
    min-height: 500px;
    margin-top: 62px;
    padding: 36px 36px 28px;
    overflow: hidden;
    border: 1px solid #e0e2e6;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f6f8 58%, #eef2f8 100%);
    box-shadow: 0 24px 60px rgba(89, 96, 111, 0.14);
}

.landing-device-stage::before {
    position: absolute;
    width: 560px;
    height: 560px;
    top: -290px;
    left: 27%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 188, 136, 0.24), rgba(255, 188, 136, 0) 68%);
    content: '';
    pointer-events: none;
}

.landing-device-stage::after {
    position: absolute;
    right: -160px;
    bottom: -270px;
    width: 580px;
    height: 580px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(137, 183, 255, 0.26), rgba(137, 183, 255, 0) 68%);
    content: '';
    pointer-events: none;
}

.landing-device-card {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    margin: 0;
}

.landing-mac-frame {
    position: relative;
    width: 100%;
}

.landing-mac-frame {
    padding: 0 0 4px;
}

.landing-mac-frame .screenshot-mac {
    width: 100%;
}

.landing-mac-frame .screenshot-mac img {
    object-fit: cover;
    object-position: center 43%;
    border-radius: 5px;
}

.landing-mac-frame .screenshot-mac::after {
    background-image: url('assets/screenshot-mac-frame.svg');
}

.landing-device-card > img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.landing-device-ipad > img { width: 92%; }
.landing-device-iphone > img { width: 88%; }

.landing-device-card figcaption {
    display: flex;
    align-items: baseline;
    gap: 10px;
    width: 100%;
    padding: 17px 8px 0;
    color: var(--landing-muted);
}

.landing-device-card figcaption strong {
    color: var(--landing-ink);
    font-family: 'Manrope', sans-serif;
    font-size: 0.86rem;
}

.landing-device-card figcaption span {
    font-size: 0.74rem;
}

.landing-cross-device-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid rgba(36, 33, 30, 0.16);
}

.landing-cross-device-proof article {
    min-height: 146px;
    padding: 19px 24px 0 0;
    border-right: 1px solid rgba(36, 33, 30, 0.16);
}

.landing-cross-device-proof article + article {
    padding-left: 24px;
}

.landing-cross-device-proof article:last-child {
    border-right: 0;
}

.landing-cross-device-proof article > span {
    display: block;
    margin-bottom: 22px;
    color: var(--landing-orange-dark);
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.landing-cross-device-proof h3 {
    margin-bottom: 7px;
    font-size: 1rem;
    letter-spacing: -0.04em;
}

.landing-cross-device-proof p {
    max-width: 270px;
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.landing-card-line {
    position: absolute;
    width: 115px;
    height: 115px;
    right: -34px;
    bottom: -42px;
    border: 1px solid rgba(36, 33, 30, 0.15);
    border-radius: 50%;
}

.landing-card-line::after {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 19px;
    left: 19px;
    border: 1px solid rgba(36, 33, 30, 0.13);
    border-radius: 50%;
    content: '';
}

.landing-capabilities {
    color: #f8f1e9;
    background: #25221f;
}

.landing-dark-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: end;
}

.landing-dark-heading .landing-overline {
    grid-column: 1 / -1;
    color: #f18b63;
    margin-bottom: -24px;
}

.landing-dark-heading h2 {
    margin-bottom: 0;
}

.landing-dark-heading h2 em {
    color: #f18b63;
}

.landing-dark-heading > p:last-child {
    color: rgba(248, 241, 233, 0.64);
    padding-bottom: 5px;
}

.landing-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: 72px;
    border-top: 1px solid rgba(248, 241, 233, 0.18);
}

.landing-capability-grid article {
    min-height: 275px;
    padding: 25px 24px 24px 0;
    border-right: 1px solid rgba(248, 241, 233, 0.18);
}

.landing-capability-grid article + article {
    padding-left: 24px;
}

.landing-capability-grid article:last-child {
    border-right: 0;
}

.landing-capability-mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    border: 1px solid rgba(248, 241, 233, 0.25);
    border-radius: 50%;
    color: #f18b63;
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem;
}

.landing-capability-grid h3 {
    margin-bottom: 10px;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.landing-capability-grid p {
    margin-bottom: 0;
    color: rgba(248, 241, 233, 0.62);
    font-size: 0.86rem;
    line-height: 1.7;
}

.landing-workspace {
    background: #fffaf5;
}

.landing-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    max-width: none;
}

.landing-heading-row > p {
    max-width: 330px;
    padding-bottom: 7px;
}

.landing-workspace-grid {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    gap: 16px;
    align-items: stretch;
    margin-top: 62px;
}

.landing-image-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--landing-line);
    border-radius: 21px;
    background: #f5eee6;
}

.landing-image-card img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: center top;
}

.landing-image-wide img {
    aspect-ratio: 1.55;
}

.landing-image-tall img {
    aspect-ratio: 1.04;
}

.landing-image-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 18px 20px 20px;
}

.landing-image-card figcaption strong {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
}

.landing-image-card figcaption span {
    color: var(--landing-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.landing-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--landing-line);
    color: var(--landing-muted);
    font-size: 0.81rem;
}

.landing-facts span {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.landing-facts strong {
    color: var(--landing-ink);
    font-family: 'Manrope', sans-serif;
    font-size: 1.12rem;
}

.landing-download {
    color: #fff8ef;
    background: var(--landing-orange);
}

.landing-download-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 36px;
}

.landing-download .landing-overline {
    color: rgba(255, 248, 239, 0.72);
}

.landing-download h2 {
    margin-bottom: 18px;
}

.landing-download h2 em {
    color: #2b2420;
}

.landing-download p:last-child {
    max-width: 420px;
    margin-bottom: 0;
    color: rgba(255, 248, 239, 0.78);
    line-height: 1.7;
}

.landing-download-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-width: 210px;
}

.landing-page .landing-button-light {
    color: var(--landing-ink);
    background: #fff8ef;
    box-shadow: 0 14px 30px rgba(108, 40, 19, 0.18);
}

.landing-text-link {
    color: rgba(255, 248, 239, 0.84);
    font-size: 0.88rem;
    font-weight: 700;
}

.landing-text-link span {
    margin-left: 7px;
}

.landing-install-note {
    max-width: 300px;
    margin: -4px 0 0;
    color: rgba(255, 248, 239, 0.72);
    font-size: 0.78rem;
    line-height: 1.55;
}

.landing-install-note code {
    display: inline-block;
    max-width: 100%;
    padding: 2px 5px;
    color: #fff8ef;
    background: rgba(43, 36, 32, 0.2);
    border-radius: 4px;
    font-size: 0.74rem;
    overflow-x: auto;
    overflow-wrap: anywhere;
    white-space: nowrap;
}

.landing-footer {
    padding: 38px 0 45px;
    color: var(--landing-muted);
    background: #fffaf5;
}

.landing-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 30px;
    align-items: end;
}

.landing-footer .landing-brand {
    color: var(--landing-ink);
    font-size: 1rem;
}

.landing-footer .landing-brand img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.landing-footer p {
    margin: 12px 0 0;
    font-size: 0.8rem;
}

.landing-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
    font-size: 0.8rem;
}

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

.landing-footer .landing-copyright {
    margin: 0;
    white-space: nowrap;
}

.landing-page-zh .landing-kicker,
.landing-page-zh .landing-overline {
    letter-spacing: 0.08em;
}

.landing-page-zh h1,
.landing-page-zh h2,
.landing-page-zh h3,
.landing-page-zh p,
.landing-page-zh .landing-menu,
.landing-page-zh .landing-button,
.landing-page-zh .landing-footer {
    font-family: 'DM Sans', 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

.landing-page-zh h1,
.landing-page-zh h2,
.landing-page-zh h3 {
    letter-spacing: -0.06em;
}

@media (max-width: 1000px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .landing-hero-copy {
        max-width: 680px;
    }

    .landing-hero-visual {
        width: min(100%, 760px);
        margin: 0 auto;
    }

    .landing-capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-device-stage {
        min-height: 430px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .landing-capability-grid article:nth-child(2) {
        border-right: 0;
    }

    .landing-capability-grid article:nth-child(n + 3) {
        border-top: 1px solid rgba(248, 241, 233, 0.18);
    }

    .landing-capability-grid article:nth-child(3) {
        padding-left: 0;
    }

    .landing-footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .landing-footer .landing-copyright {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .landing-container {
        width: min(var(--landing-container), calc(100% - 32px));
    }

    .landing-nav-inner {
        min-height: 68px;
    }

    .landing-menu {
        gap: 12px;
        font-size: 0.76rem;
    }

    .landing-menu a:not(:nth-child(3)):not(:nth-child(7)):not(:last-child) {
        display: none;
    }

    .landing-hero {
        padding: 66px 0 70px;
    }

    .landing-page h1 {
        font-size: clamp(3.1rem, 15vw, 5rem);
    }

    .landing-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .landing-platforms {
        margin-top: 32px;
        gap: 6px;
        font-size: 0.68rem;
    }

    .landing-float {
        max-width: 145px;
        padding: 10px 11px;
    }

    .landing-float span {
        font-size: 0.64rem;
    }

    .landing-float-ai {
        left: -7px;
        bottom: 7%;
    }

    .landing-float-layout {
        right: -5px;
        top: 7%;
    }

    .landing-section {
        padding: 78px 0;
    }

    .landing-section-heading h2,
    .landing-dark-heading h2,
    .landing-download h2 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    .landing-story-grid,
    .landing-capability-grid,
    .landing-workspace-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .landing-cross-device-heading {
        display: block;
    }

    .landing-cross-device-heading > p {
        margin-top: 25px;
        padding-bottom: 0;
    }

    .landing-device-stage {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        margin-top: 42px;
        padding: 22px 16px 28px;
    }

    .landing-mac-frame {
        width: min(100%, 540px);
    }

    .landing-device-ipad > img {
        width: min(100%, 360px);
    }

    .landing-device-iphone > img {
        width: min(88%, 230px);
    }

    .landing-device-card figcaption {
        justify-content: center;
        padding-top: 6px;
    }

    .landing-cross-device-proof {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .landing-cross-device-proof article,
    .landing-cross-device-proof article + article {
        min-height: 0;
        padding: 19px 0 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(36, 33, 30, 0.16);
    }

    .landing-cross-device-proof article:last-child {
        border-bottom: 0;
    }

    .landing-cross-device-proof article > span {
        margin-bottom: 10px;
    }

    .landing-story-card {
        min-height: 240px;
    }

    .landing-card-number {
        margin-bottom: 40px;
    }

    .landing-dark-heading {
        display: block;
    }

    .landing-dark-heading .landing-overline {
        margin-bottom: 0;
    }

    .landing-dark-heading > p:last-child {
        margin-top: 25px;
    }

    .landing-capability-grid {
        margin-top: 42px;
    }

    .landing-capability-grid article,
    .landing-capability-grid article + article,
    .landing-capability-grid article:nth-child(3) {
        min-height: 0;
        padding: 22px 0 25px;
        border-right: 0;
        border-top: 1px solid rgba(248, 241, 233, 0.18);
    }

    .landing-capability-grid article:first-child {
        border-top: 0;
    }

    .landing-capability-mark {
        margin-bottom: 24px;
    }

    .landing-heading-row {
        display: block;
    }

    .landing-heading-row > p {
        margin-top: 24px;
        padding-bottom: 0;
    }

    .landing-workspace-grid {
        gap: 14px;
    }

    .landing-image-wide img,
    .landing-image-tall img {
        aspect-ratio: 1.35;
    }

    .landing-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 19px 12px;
        line-height: 1.45;
    }

    .landing-download-inner {
        display: block;
    }

    .landing-download-actions {
        margin-top: 34px;
    }

    .landing-footer-inner {
        display: block;
    }

    .landing-footer-links {
        justify-content: flex-start;
        margin-top: 28px;
    }

    .landing-footer .landing-copyright {
        margin-top: 26px;
    }
}

/* ===========================
   Affiliate Center
   =========================== */
.affiliate-page {
    background: #fff8ef;
}

.affiliate-hero {
    padding: 84px 0 96px;
    border-bottom: 1px solid var(--partner-line);
}

.affiliate-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    align-items: start;
    gap: 70px;
}

.affiliate-hero-copy {
    padding-top: 42px;
}

.affiliate-hero h1 {
    max-width: 620px;
    margin: 24px 0 24px;
    color: var(--partner-ink);
    font-size: clamp(3.2rem, 6vw, 5.9rem);
    letter-spacing: -0.08em;
    line-height: 0.98;
}

.affiliate-hero-lead {
    max-width: 540px;
    color: var(--partner-muted);
    font-size: 1.06rem;
    line-height: 1.85;
}

.affiliate-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.affiliate-hero-points span {
    padding: 8px 11px;
    border: 1px solid var(--partner-line);
    border-radius: 999px;
    color: var(--partner-ink);
    background: rgba(255, 255, 255, 0.52);
    font-size: 0.76rem;
    font-weight: 700;
}

.affiliate-console {
    position: relative;
    min-height: 530px;
    padding: 34px;
    border: 1px solid rgba(36, 33, 30, 0.14);
    border-radius: 28px;
    background: #fffdf9;
    box-shadow: 0 24px 60px rgba(65, 46, 27, 0.15);
}

.affiliate-panel-view[hidden] {
    display: none;
}

.affiliate-panel-kicker {
    margin-bottom: 9px !important;
    color: var(--partner-orange-dark);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.affiliate-console h2 {
    margin-bottom: 12px;
    color: var(--partner-ink);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    letter-spacing: -0.055em;
    line-height: 1.05;
}

.affiliate-panel-intro,
.affiliate-form-note,
.affiliate-message {
    color: var(--partner-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.affiliate-form {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.affiliate-form label {
    margin-top: 7px;
    color: var(--partner-ink);
    font-size: 0.76rem;
    font-weight: 700;
}

.affiliate-form input,
.affiliate-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid rgba(36, 33, 30, 0.18);
    border-radius: 11px;
    outline: none;
    color: var(--partner-ink);
    background: #fff;
    font: inherit;
    font-size: 0.88rem;
    resize: vertical;
}

.affiliate-form input:focus,
.affiliate-form textarea:focus {
    border-color: var(--partner-orange);
    box-shadow: 0 0 0 3px rgba(241, 91, 50, 0.12);
}

.affiliate-form .landing-button {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

.affiliate-form-note {
    margin-top: 19px !important;
    font-size: 0.74rem;
}

.affiliate-form .landing-button:disabled,
.affiliate-copy-button:disabled {
    cursor: wait;
    opacity: 0.5;
}

.affiliate-message {
    min-height: 24px;
    margin-top: 16px !important;
}

.affiliate-message.is-error {
    color: #b63d25;
}

.affiliate-loading {
    padding: 150px 0;
    color: var(--partner-muted);
    text-align: center;
}

.affiliate-review-note {
    display: grid;
    gap: 4px;
    margin: 26px 0;
    padding: 17px 18px;
    border-left: 3px solid var(--partner-orange);
    background: #fff5e9;
}

.affiliate-review-note strong {
    color: var(--partner-ink);
    font-size: 0.86rem;
}

.affiliate-review-note span {
    color: var(--partner-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.affiliate-dashboard-heading,
.affiliate-orders-heading,
.affiliate-link-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.affiliate-dashboard-heading h2 {
    margin-bottom: 0;
}

.affiliate-status-pill {
    display: inline-flex;
    flex: 0 0 auto;
    padding: 6px 9px;
    border-radius: 999px;
    color: #8b3d1f;
    background: #ffe2bf;
    font-size: 0.7rem;
    font-weight: 800;
}

.affiliate-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.affiliate-link-card {
    padding: 14px;
    border: 1px solid var(--partner-line);
    border-radius: 15px;
    background: #fff;
}

.affiliate-link-card-heading strong {
    color: var(--partner-ink);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.affiliate-link-row {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.affiliate-link-label {
    color: var(--partner-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.affiliate-link-value {
    min-width: 0;
    overflow: hidden;
    color: var(--partner-orange-dark) !important;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 0.67rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.affiliate-copy-button,
.affiliate-text-button {
    border: 0;
    cursor: pointer;
    color: var(--partner-orange-dark);
    background: transparent;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
}

.affiliate-copy-button:hover,
.affiliate-text-button:hover {
    color: var(--partner-ink);
}

.affiliate-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0 22px;
}

.affiliate-stat {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
    background: #f8efe5;
}

.affiliate-stat span {
    color: var(--partner-muted);
    font-size: 0.7rem;
}

.affiliate-stat strong {
    color: var(--partner-ink);
    font-family: Consolas, 'Courier New', monospace;
    font-size: 1.1rem;
}

.affiliate-stat-payable {
    color: #28735a !important;
}

.affiliate-orders-heading {
    padding-bottom: 9px;
    border-bottom: 1px solid var(--partner-line);
}

.affiliate-orders-heading h3 {
    margin: 0;
    color: var(--partner-ink);
    font-size: 1rem;
}

.affiliate-orders {
    max-height: 180px;
    overflow: auto;
}

.affiliate-order {
    display: grid;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(36, 33, 30, 0.08);
}

.affiliate-order strong {
    color: var(--partner-ink);
    font-size: 0.8rem;
}

.affiliate-order span,
.affiliate-empty {
    color: var(--partner-muted);
    font-size: 0.72rem;
}

.affiliate-explainer {
    padding: 104px 0;
    background: #f4ecdf;
}

.affiliate-explainer-heading h2,
.affiliate-rules h2 {
    margin-top: 17px;
    color: var(--partner-ink);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.affiliate-path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 63px;
    background: var(--partner-line);
}

.affiliate-path-grid article {
    min-height: 245px;
    padding: 29px 25px;
    background: #f4ecdf;
}

.affiliate-path-grid article span {
    color: var(--partner-orange-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.affiliate-path-grid h3 {
    margin: 66px 0 12px;
    color: var(--partner-ink);
    font-size: 1.18rem;
}

.affiliate-path-grid p {
    color: var(--partner-muted);
    font-size: 0.84rem;
    line-height: 1.7;
}

.affiliate-rules {
    padding: 104px 0;
    color: #fff8ef;
    background: var(--partner-ink);
}

.affiliate-rules-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
}

.affiliate-rules h2 {
    color: #fff8ef;
}

.affiliate-rules ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.affiliate-rules li {
    padding: 18px 0 18px 24px;
    border-top: 1px solid rgba(255, 248, 239, 0.2);
    color: rgba(255, 248, 239, 0.77);
    font-size: 0.94rem;
    line-height: 1.7;
}

.affiliate-rules li::before {
    float: left;
    width: 24px;
    margin-left: -24px;
    color: var(--partner-orange);
    content: '•';
}

@media (max-width: 900px) {
    .affiliate-hero-grid,
    .affiliate-rules-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .affiliate-hero-copy {
        padding-top: 0;
    }

    .affiliate-path-grid {
        grid-template-columns: 1fr;
    }

    .affiliate-path-grid article {
        min-height: 0;
    }

    .affiliate-path-grid h3 {
        margin-top: 38px;
    }
}

@media (max-width: 600px) {
    .affiliate-hero {
        padding: 66px 0 70px;
    }

    .affiliate-console {
        min-height: 0;
        padding: 23px 18px;
        border-radius: 21px;
    }

    .affiliate-link-row {
        grid-template-columns: 72px minmax(0, 1fr) auto;
    }

    .affiliate-link-value {
        font-size: 0.59rem;
    }

    .affiliate-explainer,
    .affiliate-rules {
        padding: 74px 0;
    }
}

/* ===========================
   Pricing page
   =========================== */
.pricing-page {
    --pricing-ink: #24211e;
    --pricing-muted: #746d65;
    --pricing-paper: #fffaf3;
    --pricing-line: rgba(36, 33, 30, 0.13);
}

.pricing-hero {
    padding: 104px 0 92px;
    border-bottom: 1px solid var(--pricing-line);
    background:
        radial-gradient(circle at 83% 18%, rgba(255, 178, 88, 0.28), transparent 25rem),
        linear-gradient(180deg, #fffaf3 0%, #f9f0e6 100%);
}

.pricing-hero h1 {
    max-width: 800px;
    margin-bottom: 25px;
}

.pricing-hero-lead {
    max-width: 660px;
    color: var(--pricing-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.pricing-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.pricing-jump-links a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border: 1px solid var(--pricing-line);
    border-radius: 999px;
    color: var(--pricing-ink);
    background: rgba(255, 255, 255, 0.38);
    font-size: 0.84rem;
    font-weight: 700;
    transition: transform 180ms ease, background 180ms ease;
}

.pricing-jump-links a:hover {
    background: #fff;
    transform: translateY(-2px);
}

.pricing-jump-links span,
.pricing-card-button span,
.pricing-enterprise-cta span {
    font-size: 1.05rem;
    line-height: 1;
}

.pricing-section {
    padding: 108px 0;
}

.pricing-personal {
    background: #fffaf5;
}

.pricing-section-heading,
.pricing-enterprise-intro {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 48px;
    align-items: end;
}

.pricing-section-heading h2,
.pricing-enterprise-intro h2,
.pricing-faq h2 {
    margin: 16px 0 0;
    font-size: clamp(2.65rem, 5vw, 4.55rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.pricing-section-heading > p,
.pricing-enterprise-intro > p {
    max-width: 410px;
    margin: 0 0 4px;
    color: var(--pricing-muted);
    font-size: 0.96rem;
    line-height: 1.8;
}

.pricing-personal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 64px;
}

.pricing-card {
    display: flex;
    min-width: 0;
    min-height: 490px;
    flex-direction: column;
    padding: 23px 22px 25px;
    border: 1px solid var(--pricing-line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.pricing-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #9a9187;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card-index {
    color: var(--landing-orange-dark);
}

.pricing-card h3 {
    margin: 62px 0 8px;
    font-size: 1.45rem;
    letter-spacing: -0.05em;
}

.pricing-card-description {
    min-height: 48px;
    margin-bottom: 25px;
    color: var(--pricing-muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.pricing-amount {
    display: flex;
    min-height: 69px;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 20px;
}

.pricing-amount strong {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.15rem, 3.4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.pricing-amount span {
    color: var(--pricing-muted);
    font-size: 0.72rem;
    line-height: 1.25;
}

.pricing-card-promo {
    min-height: 34px;
    margin: -8px 0 20px;
    color: var(--landing-orange-dark);
    font-size: 0.72rem;
    line-height: 1.45;
}

.pricing-card-yearly .pricing-card-promo {
    color: var(--landing-orange-dark);
}

.pricing-card-button,
.pricing-enterprise-cta {
    display: inline-flex;
    min-height: 47px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 11px 15px;
    border-radius: 999px;
    color: #fff;
    background: var(--landing-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    transition: transform 180ms ease, background 180ms ease;
}

.pricing-card-button:hover,
.pricing-enterprise-cta:hover {
    background: var(--landing-orange-dark);
    transform: translateY(-2px);
}

.pricing-enterprise-note {
    margin: 19px 0 0;
    color: rgba(248, 241, 233, 0.62);
    font-size: 0.8rem;
    line-height: 1.6;
}

.pricing-card-button-muted {
    color: var(--pricing-ink);
    background: #eee6dc;
}

.pricing-card-button-muted:hover {
    color: var(--pricing-ink);
    background: #e2d7ca;
}

.pricing-card ul {
    display: grid;
    gap: 11px;
    margin: auto 0 0;
    padding: 21px 0 0;
    border-top: 1px solid var(--pricing-line);
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 17px;
    color: rgba(36, 33, 30, 0.7);
    font-size: 0.78rem;
    line-height: 1.45;
}

.pricing-card li::before {
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--landing-orange);
    content: '';
}

.pricing-card-featured {
    border-color: var(--landing-orange);
    color: #fff8ef;
    background: var(--landing-orange);
    box-shadow: 0 18px 42px rgba(197, 63, 32, 0.19);
    transform: translateY(-12px);
}

.pricing-card-featured .pricing-card-top,
.pricing-card-featured .pricing-card-description,
.pricing-card-featured .pricing-amount span,
.pricing-card-featured li {
    color: rgba(255, 248, 239, 0.76);
}

.pricing-card-featured .pricing-card-index {
    color: #fff8ef;
}

.pricing-card-featured .pricing-card-button {
    color: var(--pricing-ink);
    background: #fff8ef;
}

.pricing-card-featured .pricing-card-button:hover {
    background: #fff;
}

.pricing-card-featured ul {
    border-color: rgba(255, 248, 239, 0.3);
}

.pricing-card-featured li::before {
    background: #fff8ef;
}

.pricing-card-yearly {
    background: #f3eee8;
}

.pricing-footnote {
    margin: 24px 0 0;
    color: #968d84;
    font-size: 0.73rem;
    line-height: 1.6;
}

.pricing-enterprise {
    overflow: hidden;
    color: #f8f1e9;
    background: #25221f;
}

.pricing-enterprise-overline {
    margin: 0;
    color: #f18b63;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.pricing-enterprise-intro h2 em {
    color: #f18b63;
}

.pricing-enterprise-intro > p {
    color: rgba(248, 241, 233, 0.68);
}

.pricing-enterprise-panel {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0;
    margin-top: 64px;
    border: 1px solid rgba(248, 241, 233, 0.22);
    border-radius: 22px;
    background: rgba(248, 241, 233, 0.06);
}

.pricing-enterprise-price,
.pricing-enterprise-service {
    padding: 29px 30px 27px;
}

.pricing-enterprise-service {
    border-left: 1px solid rgba(248, 241, 233, 0.18);
}

.pricing-price-label {
    display: block;
    margin-bottom: 19px;
    color: #f18b63;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-enterprise-panel strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 1;
}

.pricing-enterprise-panel strong span {
    font-family: 'DM Sans', 'Microsoft YaHei', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0;
}

.pricing-enterprise-panel p {
    max-width: 250px;
    margin: 16px 0 0;
    color: rgba(248, 241, 233, 0.63);
    font-size: 0.79rem;
    line-height: 1.6;
}

.pricing-enterprise-cta {
    align-self: center;
    margin: 0 25px 0 10px;
    white-space: nowrap;
}

.pricing-enterprise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
    border-top: 1px solid rgba(248, 241, 233, 0.18);
}

.pricing-enterprise-grid article {
    min-height: 190px;
    padding: 24px 24px 20px 0;
    border-right: 1px solid rgba(248, 241, 233, 0.18);
}

.pricing-enterprise-grid article + article {
    padding-left: 24px;
}

.pricing-enterprise-grid article:last-child {
    border-right: 0;
}

.pricing-feature-mark {
    display: block;
    margin-bottom: 40px;
    color: #f18b63;
    font-family: 'Manrope', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.pricing-enterprise-grid h3 {
    margin-bottom: 9px;
    font-size: 1.02rem;
}

.pricing-enterprise-grid p {
    max-width: 270px;
    margin: 0;
    color: rgba(248, 241, 233, 0.62);
    font-size: 0.84rem;
    line-height: 1.65;
}

.pricing-faq {
    background: #fffaf5;
}

.pricing-faq-heading {
    display: block;
}

.pricing-faq-list {
    margin-top: 58px;
    border-top: 1px solid var(--pricing-line);
}

.pricing-faq-list details {
    padding: 22px 0 23px;
    border-bottom: 1px solid var(--pricing-line);
}

.pricing-faq-list summary {
    cursor: pointer;
    color: var(--pricing-ink);
    font-family: 'Manrope', 'Microsoft YaHei', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.pricing-faq-list p {
    max-width: 680px;
    margin: 15px 0 0;
    color: var(--pricing-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

@media (max-width: 1050px) {
    .pricing-personal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-enterprise-panel {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-enterprise-cta {
        grid-column: 1 / -1;
        justify-self: start;
        margin: 0 25px 25px;
    }
}

@media (max-width: 700px) {
    .pricing-page .landing-menu a:nth-child(6),
    .pricing-page .landing-menu a:nth-child(7) {
        display: none;
    }

    .pricing-hero {
        padding: 74px 0 70px;
    }

    .pricing-hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .pricing-hero-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .pricing-section {
        padding: 78px 0;
    }

    .pricing-section-heading,
    .pricing-enterprise-intro {
        display: block;
    }

    .pricing-section-heading > p,
    .pricing-enterprise-intro > p {
        margin-top: 25px;
    }

    .pricing-personal-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .pricing-card {
        min-height: 0;
    }

    .pricing-card h3 {
        margin-top: 40px;
    }

    .pricing-card-description {
        min-height: 0;
    }

    .pricing-card ul {
        margin-top: 26px;
    }

    .pricing-enterprise-panel {
        display: block;
        margin-top: 42px;
    }

    .pricing-enterprise-price,
    .pricing-enterprise-service {
        padding: 25px 22px;
    }

    .pricing-enterprise-service {
        border-top: 1px solid rgba(248, 241, 233, 0.18);
        border-left: 0;
    }

    .pricing-enterprise-cta {
        display: flex;
        margin: 0 22px 22px;
    }

    .pricing-enterprise-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .pricing-enterprise-grid article,
    .pricing-enterprise-grid article + article {
        min-height: 0;
        padding: 22px 0 25px;
        border-right: 0;
        border-top: 1px solid rgba(248, 241, 233, 0.18);
    }

    .pricing-enterprise-grid article:first-child {
        border-top: 0;
    }

    .pricing-feature-mark {
        margin-bottom: 22px;
    }

    .pricing-faq-list {
        margin-top: 42px;
    }
}

/* ===========================
   Partner page
   =========================== */
.partner-page {
    --partner-ink: #24211e;
    --partner-muted: #746d65;
    --partner-line: rgba(36, 33, 30, 0.13);
    --partner-orange: #f15b32;
    --partner-orange-dark: #c53f20;
    --partner-blue: #dce9f6;
    --partner-lilac: #e9e3f7;
}

.partner-hero {
    padding: 112px 0 104px;
    border-bottom: 1px solid var(--partner-line);
    background:
        radial-gradient(circle at 87% 16%, rgba(128, 146, 228, 0.24), transparent 25rem),
        linear-gradient(180deg, #fffaf3 0%, #f8efe6 100%);
}

.partner-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
    gap: 86px;
    align-items: center;
}

.partner-hero h1 {
    max-width: 660px;
    margin: 25px 0 24px;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.96;
}

.partner-hero-lead {
    max-width: 570px;
    margin-bottom: 0;
    color: var(--partner-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.partner-hero-note {
    max-width: 500px;
    margin: 23px 0 0;
    color: #958d84;
    font-size: 0.81rem;
    line-height: 1.6;
}

.partner-hero-panel {
    position: relative;
    min-height: 490px;
    overflow: hidden;
    padding: 28px 30px 30px;
    border-radius: 28px;
    color: #f8f1e9;
    background: #292623;
    box-shadow: 0 30px 70px rgba(54, 41, 29, 0.24);
    transform: rotate(1.2deg);
}

.partner-hero-panel::before,
.partner-hero-panel::after {
    position: absolute;
    border: 1px solid rgba(248, 241, 233, 0.12);
    border-radius: 50%;
    content: '';
}

.partner-hero-panel::before {
    width: 420px;
    height: 420px;
    right: -125px;
    top: 128px;
}

.partner-hero-panel::after {
    width: 300px;
    height: 300px;
    right: -65px;
    top: 188px;
}

.partner-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: rgba(248, 241, 233, 0.6);
    font-size: 0.73rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.partner-orbit {
    position: relative;
    min-height: 308px;
    margin-top: 17px;
}

.partner-orbit-center {
    position: absolute;
    z-index: 2;
    display: flex;
    width: 152px;
    height: 152px;
    align-items: center;
    justify-content: center;
    top: 76px;
    left: calc(50% - 76px);
    border: 1px solid rgba(248, 241, 233, 0.26);
    border-radius: 50%;
    color: #fff8ef;
    background: rgba(241, 91, 50, 0.93);
    font-family: 'Manrope', sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-align: center;
    box-shadow: 0 0 0 14px rgba(241, 91, 50, 0.12), 0 18px 40px rgba(0, 0, 0, 0.22);
}

.partner-orbit-center small {
    display: block;
    margin-top: 8px;
    color: rgba(255, 248, 239, 0.75);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.59rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partner-orbit-line {
    position: absolute;
    width: 276px;
    height: 276px;
    top: 14px;
    left: calc(50% - 138px);
    border: 1px solid rgba(248, 241, 233, 0.2);
    border-radius: 50%;
}

.partner-orbit-line::after {
    position: absolute;
    width: 214px;
    height: 214px;
    top: 30px;
    left: 30px;
    border: 1px dashed rgba(248, 241, 233, 0.18);
    border-radius: 50%;
    content: '';
}

.partner-orbit-node {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 84px;
    height: 84px;
    align-content: center;
    border: 1px solid rgba(248, 241, 233, 0.2);
    border-radius: 22px;
    color: #f8f1e9;
    background: #3b3530;
    font-family: 'Manrope', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.partner-orbit-node small {
    margin-top: 5px;
    color: rgba(248, 241, 233, 0.55);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.61rem;
    font-weight: 500;
}

.partner-orbit-node-one { left: 2%; top: 21px; }
.partner-orbit-node-two { right: 2%; top: 21px; }
.partner-orbit-node-three { left: 10%; bottom: 8px; }
.partner-orbit-node-four { right: 10%; bottom: 8px; }

.partner-panel-caption {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 19px;
    border-top: 1px solid rgba(248, 241, 233, 0.18);
}

.partner-panel-caption strong,
.partner-panel-caption span {
    display: block;
}

.partner-panel-caption strong {
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
}

.partner-panel-caption span {
    max-width: 210px;
    color: rgba(248, 241, 233, 0.58);
    font-size: 0.78rem;
    line-height: 1.5;
    text-align: right;
}

.partner-section {
    padding: 112px 0;
}

.partner-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
}

.partner-section-heading h2 {
    max-width: 680px;
    margin: 17px 0 0;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
    line-height: 0.98;
}

.partner-section-heading > p {
    max-width: 360px;
    margin: 0 0 6px;
    color: var(--partner-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.partner-program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 60px;
}

.partner-program-card {
    min-height: 380px;
    padding: 28px 28px 30px;
    border-radius: 24px;
    background: var(--partner-blue);
}

.partner-program-card-reseller {
    background: var(--partner-lilac);
}

.partner-card-top {
    display: flex;
    justify-content: space-between;
    color: rgba(36, 33, 30, 0.5);
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partner-program-card h3 {
    margin: 69px 0 10px;
    font-size: 1.75rem;
    letter-spacing: -0.05em;
}

.partner-program-card > p {
    max-width: 460px;
    margin-bottom: 24px;
    color: rgba(36, 33, 30, 0.68);
    font-size: 0.93rem;
    line-height: 1.7;
}

.partner-program-card ul,
.partner-principles ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.partner-program-card li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid rgba(36, 33, 30, 0.13);
    color: rgba(36, 33, 30, 0.75);
    font-size: 0.84rem;
    line-height: 1.55;
}

.partner-program-card li::before {
    color: var(--partner-orange-dark);
    content: '↗';
    font-weight: 800;
}

.partner-program-rate {
    display: inline-flex;
    align-items: baseline;
    gap: 9px;
    margin-top: 23px;
    color: var(--partner-ink);
}

.partner-program-rate strong {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    letter-spacing: -0.06em;
}

.partner-program-rate span {
    color: rgba(36, 33, 30, 0.58);
    font-size: 0.75rem;
}

.partner-economics {
    color: #f8f1e9;
    background: #25221f;
}

.partner-economics .landing-overline {
    color: #f18b63;
}

.partner-economics h2 {
    max-width: 720px;
    margin: 17px 0 0;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
    line-height: 0.98;
}

.partner-economics h2 em {
    color: #f18b63;
}

.partner-economics-intro {
    max-width: 540px;
    margin-top: 24px;
    color: rgba(248, 241, 233, 0.64);
    font-size: 1rem;
    line-height: 1.75;
}

.partner-rate-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 66px;
    border-top: 1px solid rgba(248, 241, 233, 0.18);
}

.partner-rate-item {
    min-height: 220px;
    padding: 24px 24px 24px 0;
    border-right: 1px solid rgba(248, 241, 233, 0.18);
}

.partner-rate-item + .partner-rate-item {
    padding-left: 24px;
}

.partner-rate-item:last-child {
    border-right: 0;
}

.partner-rate-item small,
.partner-rate-item strong,
.partner-rate-item span {
    display: block;
}

.partner-rate-item small {
    color: rgba(248, 241, 233, 0.52);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partner-rate-item strong {
    margin: 44px 0 8px;
    color: #fff8ef;
    font-family: 'Manrope', sans-serif;
    font-size: 2.7rem;
    letter-spacing: -0.08em;
}

.partner-rate-item span {
    max-width: 220px;
    color: rgba(248, 241, 233, 0.62);
    font-size: 0.83rem;
    line-height: 1.55;
}

.partner-steps {
    background: #fffaf5;
}

.partner-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 62px;
}

.partner-step {
    min-height: 250px;
    padding: 24px 24px 26px;
    border: 1px solid var(--partner-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.42);
}

.partner-step-number {
    display: block;
    color: rgba(36, 33, 30, 0.42);
    font-family: 'Manrope', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.partner-step h3 {
    margin: 67px 0 10px;
    font-size: 1.25rem;
}

.partner-step p {
    max-width: 290px;
    margin-bottom: 0;
    color: var(--partner-muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.partner-principles {
    background: #f7eee3;
}

.partner-principles-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.partner-principles h2 {
    max-width: 500px;
    margin: 17px 0 0;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
    line-height: 0.98;
}

.partner-principles h2 em {
    color: var(--partner-orange);
}

.partner-principles-intro {
    max-width: 430px;
    margin-top: 23px;
    color: var(--partner-muted);
    font-size: 0.98rem;
    line-height: 1.75;
}

.partner-principles li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid var(--partner-line);
}

.partner-principles li:last-child {
    border-bottom: 1px solid var(--partner-line);
}

.partner-principles li::before {
    color: var(--partner-orange-dark);
    content: '✦';
    font-size: 0.9rem;
}

.partner-principles li strong,
.partner-principles li span {
    display: block;
}

.partner-principles li strong {
    margin-bottom: 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.98rem;
}

.partner-principles li span {
    color: var(--partner-muted);
    font-size: 0.85rem;
    line-height: 1.65;
}

.partner-cta {
    color: #fff8ef;
    background: var(--partner-orange);
}

.partner-cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 42px;
}

.partner-cta h2 {
    max-width: 680px;
    margin: 17px 0 18px;
    font-size: clamp(2.6rem, 4.8vw, 4.5rem);
    line-height: 0.98;
}

.partner-cta h2 em {
    color: #2b2420;
}

.partner-cta p {
    max-width: 490px;
    margin-bottom: 0;
    color: rgba(255, 248, 239, 0.78);
    line-height: 1.7;
}

.partner-cta-action {
    flex: 0 0 auto;
}

.partner-cta-note {
    margin-top: 13px !important;
    color: rgba(255, 248, 239, 0.62) !important;
    font-size: 0.75rem;
}

.partner-faq-list {
    display: grid;
    gap: 0;
    max-width: 850px;
    margin-top: 58px;
}

.partner-faq-list details {
    padding: 18px 0;
    border-top: 1px solid var(--partner-line);
}

.partner-faq-list details:last-child {
    border-bottom: 1px solid var(--partner-line);
}

.partner-faq-list summary {
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    list-style: none;
}

.partner-faq-list summary::-webkit-details-marker {
    display: none;
}

.partner-faq-list summary::after {
    float: right;
    color: var(--partner-orange-dark);
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
}

.partner-faq-list details[open] summary::after {
    content: '−';
}

.partner-faq-list details p {
    max-width: 710px;
    margin: 13px 30px 4px 0;
    color: var(--partner-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

@media (max-width: 1000px) {
    .partner-hero-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .partner-hero-panel {
        width: min(100%, 720px);
        margin: 0 auto;
    }

    .partner-principles-grid {
        gap: 45px;
    }
}

@media (max-width: 700px) {
    .partner-page .landing-menu a:nth-child(6),
    .partner-page .landing-menu a:nth-child(7) {
        display: none;
    }

    .partner-hero {
        padding: 74px 0 76px;
    }

    .partner-hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .partner-hero-lead {
        font-size: 1rem;
        line-height: 1.7;
    }

    .partner-hero-panel {
        min-height: 430px;
        padding: 22px 20px 23px;
        border-radius: 23px;
    }

    .partner-panel-top {
        font-size: 0.63rem;
    }

    .partner-orbit {
        min-height: 270px;
    }

    .partner-orbit-center {
        width: 126px;
        height: 126px;
        top: 72px;
        left: calc(50% - 63px);
    }

    .partner-orbit-line {
        width: 240px;
        height: 240px;
        top: 16px;
        left: calc(50% - 120px);
    }

    .partner-orbit-line::after {
        width: 186px;
        height: 186px;
        top: 26px;
        left: 26px;
    }

    .partner-orbit-node {
        width: 70px;
        height: 70px;
        border-radius: 17px;
        font-size: 0.68rem;
    }

    .partner-orbit-node small {
        font-size: 0.55rem;
    }

    .partner-orbit-node-one { left: 0; top: 30px; }
    .partner-orbit-node-two { right: 0; top: 30px; }
    .partner-orbit-node-three { left: 6%; bottom: 4px; }
    .partner-orbit-node-four { right: 6%; bottom: 4px; }

    .partner-panel-caption {
        display: block;
    }

    .partner-panel-caption span {
        max-width: none;
        margin-top: 7px;
        text-align: left;
    }

    .partner-section {
        padding: 78px 0;
    }

    .partner-section-heading,
    .partner-cta-inner {
        display: block;
    }

    .partner-section-heading > p {
        margin-top: 25px;
    }

    .partner-program-grid,
    .partner-step-grid,
    .partner-rate-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .partner-program-card {
        min-height: 0;
    }

    .partner-program-card h3 {
        margin-top: 44px;
    }

    .partner-economics-intro {
        font-size: 0.95rem;
    }

    .partner-rate-item,
    .partner-rate-item + .partner-rate-item {
        min-height: 0;
        padding: 22px 0 25px;
        border-right: 0;
        border-top: 1px solid rgba(248, 241, 233, 0.18);
    }

    .partner-rate-item:first-child {
        border-top: 0;
    }

    .partner-rate-item strong {
        margin-top: 27px;
    }

    .partner-step {
        min-height: 0;
    }

    .partner-step h3 {
        margin-top: 43px;
    }

    .partner-principles-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .partner-cta-action {
        margin-top: 32px;
    }

    .partner-faq-list {
        margin-top: 42px;
    }
}
