/* Cursor 新风格样式 - 基于 project-cursor 前端设计 */

/* 基础变量 */
:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #6366f1;
    --text-primary: #000000;
    --text-secondary: #6b7280;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
}

/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    padding-top: 64px; /* 为固定header留出空间 */
}

/* 渐变文字 */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header 新样式 */
.cursor-header-new {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.cursor-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .cursor-header-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cursor-header-container {
        padding: 0 2rem;
    }
}

.cursor-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.cursor-header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cursor-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.cursor-nav {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cursor-nav {
        display: flex;
    }
}

.cursor-nav-link {
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cursor-nav-link:hover,
.cursor-nav-link.active {
    color: #000;
}

.cursor-header-right {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .cursor-header-right {
        display: flex;
    }
}

/* 移动端菜单按钮 */
.cursor-mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.cursor-mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .cursor-mobile-menu-btn {
        display: none;
    }
}

.cursor-mobile-nav {
    display: none;
}

.cursor-mobile-nav:not(.hidden) {
    display: block;
}

.cursor-btn-download {
    padding: 0.5rem 1rem;
    background: #000;
    color: #fff;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background 0.3s ease;
}

.cursor-btn-download:hover {
    background: #1f2937;
}

/* 移动端菜单按钮 */
.cursor-mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (min-width: 768px) {
    .cursor-mobile-menu-btn {
        display: none;
    }
}

.cursor-mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.cursor-mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.cursor-mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.cursor-mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.cursor-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

@media (min-width: 768px) {
    .cursor-mobile-nav {
        display: none !important;
    }
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Hero 区域 */
.cursor-hero-new {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.cursor-hero-content {
    width: 70%;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .cursor-hero-content {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .cursor-hero-content {
        width: 100%;
    }
}

.cursor-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cursor-hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .cursor-hero-title {
        font-size: 4.5rem;
    }
}

.cursor-hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .cursor-hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cursor-btn-primary,
.cursor-btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.cursor-btn-primary {
    background: #000;
    color: #fff;
}

.cursor-btn-primary:hover {
    background: #1f2937;
}

.cursor-btn-secondary {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.cursor-btn-secondary:hover {
    background: #f9fafb;
}

.cursor-hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cursor-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 演示区域 */
.cursor-demo-new {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.cursor-demo-new .bg-white {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cursor-demo-new .bg-gray-900 {
    background: #111827;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cursor-demo-new .bg-gray-900 > div {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.cursor-demo-new .bg-gray-900 > div:nth-child(1) {
    background: #ef4444;
}

.cursor-demo-new .bg-gray-900 > div:nth-child(2) {
    background: #eab308;
}

.cursor-demo-new .bg-gray-900 > div:nth-child(3) {
    background: #22c55e;
}

.cursor-demo-new .p-8 {
    padding: 2rem;
}

.cursor-demo-new .grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .cursor-demo-new .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cursor-demo-new .bg-gray-900.code-block {
    background: #111827;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
}

.cursor-demo-new pre {
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace;
    font-size: 0.875rem;
    color: #4ade80;
}

.cursor-demo-new .bg-gradient-to-br {
    background: linear-gradient(to bottom right, #faf5ff, #eff6ff);
    border-radius: 0.5rem;
    padding: 1.5rem;
    height: 100%;
}

/* 功能特性 */
.cursor-features-new {
    padding: 5rem 1rem;
}

.cursor-features-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cursor-features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cursor-features-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cursor-feature-card-new {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.cursor-feature-card-new:hover {
    border-color: #9ca3af;
}

.cursor-feature-icon-new {
    margin-bottom: 1rem;
}

.cursor-feature-icon-new img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

/* 下载区域 */
.cursor-download-new {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.cursor-download-buttons-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cursor-download-buttons-new {
        flex-direction: row;
        justify-content: center;
    }
}

/* 定价区域 */
.cursor-pricing-new {
    padding: 5rem 1rem;
}

.cursor-pricing-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .cursor-pricing-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cursor-pricing-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 博客区域 */
.cursor-blog-new {
    padding: 5rem 1rem;
    background: #f9fafb;
}

.cursor-blog-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .cursor-blog-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cursor-blog-image-new {
    overflow: hidden;
}

.cursor-blog-image-new img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

/* Footer 新样式 */
.cursor-footer-new {
    background: #000;
    color: #fff;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .cursor-footer-new {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cursor-footer-new {
        padding: 3rem 2rem;
    }
}

.cursor-footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .cursor-footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cursor-footer-grid h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.cursor-footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cursor-footer-grid ul li a {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cursor-footer-grid ul li a:hover {
    color: #fff;
}

.cursor-footer-new .border-t {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* 工具类 */
.max-w-5xl {
    max-width: 64rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl,
.max-w-5xl,
.max-w-6xl,
.max-w-7xl {
    width: 100%;
}

.max-w-4xl {
    max-width: 56rem; /* 896px */
}

.max-w-5xl {
    max-width: 64rem; /* 1024px */
}

.max-w-6xl {
    max-width: 72rem; /* 1152px */
}

.max-w-7xl {
    max-width: 80rem; /* 1280px */
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.w-full {
    width: 100%;
}

.h-auto {
    height: auto;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .sm\:flex-row {
        flex-direction: row;
    }
    
    .sm\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.hover\:bg-gray-800:hover {
    background-color: #1f2937;
}

.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

.hover\:text-white:hover {
    color: #fff;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover\:text-purple-600:hover {
    color: #9333ea;
}

.hover\:text-purple-800:hover {
    color: #6b21a8;
}

.text-purple-600 {
    color: #9333ea;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-400 {
    color: #9ca3af;
}

.object-cover {
    object-fit: cover;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.hidden {
    display: none;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.h-full {
    height: 100%;
}

.w-3 {
    width: 0.75rem;
}

.h-3 {
    height: 0.75rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.h-48 {
    height: 12rem;
}

.border-2 {
    border-width: 2px;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-400 {
    border-color: #9ca3af;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-black {
    border-color: #000;
}

.bg-black {
    background-color: #000;
}

.bg-white {
    background-color: #fff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-purple-600 {
    background-color: #9333ea;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.bg-green-500 {
    background-color: #22c55e;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

/* 文章列表新样式 */
.cursor-article-list-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cursor-article-item-new {
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.cursor-article-item-new:hover {
    border-color: #9ca3af;
}

.cursor-article-image-new {
    margin-bottom: 1rem;
}

.cursor-article-image-new img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.cursor-article-content-new h2 a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cursor-article-content-new h2 a:hover {
    color: #6366f1;
}

/* 单页内容样式 */
.cursor-single-content {
    max-width: 800px;
    margin: 0 auto;
}

.cursor-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
}

.cursor-content-body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #000;
}

.cursor-content-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: #000;
}

.cursor-content-body p {
    margin-bottom: 1rem;
}

.cursor-content-body ul,
.cursor-content-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.cursor-content-body li {
    margin-bottom: 0.5rem;
}

.cursor-content-body code {
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace;
    font-size: 0.875rem;
    color: #e83e8c;
}

.cursor-content-body pre {
    background: #111827;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cursor-content-body pre code {
    background: transparent;
    color: #4ade80;
    padding: 0;
}

/* 功能特性页面样式 */
.cursor-features-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.cursor-features-page .space-y-32 > * + * {
    margin-top: 8rem;
}

.cursor-features-page .aspect-video {
    aspect-ratio: 16 / 9;
}

/* 企业版页面样式 */
.cursor-enterprise-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

/* 定价页面样式 */
.cursor-pricing-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.cursor-billing-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
}

.cursor-billing-toggle.bg-white,
.cursor-billing-toggle.cursor-billing-active {
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* 定价页面功能列表样式 */
.cursor-pricing-page ul.space-y-3 li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.cursor-pricing-page ul.space-y-3 li:last-child {
    margin-bottom: 0;
}

.cursor-pricing-page .icon-check {
    color: #16a34a;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.cursor-pricing-page .icon-check:before {
    content: "✓";
    font-size: 1rem;
    font-weight: bold;
}

/* 更新日志页面样式 */
.cursor-changelog-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.cursor-changelog-page .border-l-4 {
    border-left-width: 4px;
    border-left-color: #e5e7eb;
    padding-left: 1.5rem;
}

.cursor-changelog-page .space-y-12 > * + * {
    margin-top: 3rem;
}

/* 下载列表页面样式 */
.cursor-download-link {
    transition: color 0.3s ease;
}

.cursor-download-link:hover {
    color: #9333ea;
}

.cursor-download-dropdown {
    position: relative;
}

.cursor-download-menu {
    min-width: 200px;
    max-width: 300px;
}

.cursor-download-menu a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cursor-download-menu a:hover {
    background-color: #f9fafb;
}

.cursor-download-menu a:last-child {
    border-bottom: none;
}

.cursor-download-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0;
    font-size: 0.875rem;
}

/* 响应式 */
@media (max-width: 767px) {
    body {
        padding-top: 64px;
    }
    
    .cursor-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cursor-hero-new {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .cursor-features-grid-new,
    .cursor-pricing-grid-new,
    .cursor-blog-grid-new {
        grid-template-columns: 1fr;
    }
    
    .cursor-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cursor-demo-new,
    .cursor-features-new,
    .cursor-download-new,
    .cursor-pricing-new,
    .cursor-blog-new {
        padding: 3rem 1rem;
    }
    
    .text-5xl {
        font-size: 2.25rem;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-3xl {
        font-size: 1.75rem;
    }
    
    .text-2xl {
        font-size: 1.5rem;
    }
    
    .cursor-features-page,
    .cursor-enterprise-page,
    .cursor-pricing-page,
    .cursor-changelog-page {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .cursor-features-page .space-y-32 > * + * {
        margin-top: 4rem;
    }
    
    .cursor-changelog-page .space-y-12 > * + * {
        margin-top: 2rem;
    }
}

