/* ==================== Base Styles ==================== */
:root {
    --primary-color: #0068b5;
    --primary-hover: #004a86;
    --secondary-color: #00a3d9;
    --accent-color: #76d6ff;
    --text-primary: #0d1b2a;
    --text-secondary: #425466;
    --text-light: #aab8c6;
    --bg-primary: #f7fbff;
    --bg-secondary: #eaf2f9;
    --bg-dark: #041e42;
    --border-color: rgba(4, 30, 66, 0.12);
    --shadow-sm: 0 10px 24px rgba(4, 30, 66, 0.06);
    --shadow-md: 0 18px 40px rgba(4, 30, 66, 0.1);
    --shadow-lg: 0 24px 52px rgba(4, 30, 66, 0.14);
    --shadow-xl: 0 34px 72px rgba(4, 30, 66, 0.18);
    --radius-sm: 0.5rem;
    --radius-md: 0.875rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.75rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(243, 179, 61, 0.12), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, #f9f3e8 100%);
    line-height: 1.6;
    padding-top: 60px;
}

/* ==================== Navbar ==================== */
.navbar {
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 6px 18px rgba(23, 33, 33, 0.06);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.brand-icon {
    font-size: 1.25rem;
}

.navbar-nav > li > a {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 15px 20px;
    transition: color 0.2s ease;
}

.navbar-nav > li > a:hover {
    color: var(--primary-color) !important;
}

/* Make navbar download link always display white text (higher specificity than .navbar-nav > li > a) */
.navbar-nav > li > a.btn-download {
    color: #ffffff !important;
}

.btn-download {
    background: linear-gradient(135deg, #0c402f 0%, #316ede 100%);
    color: #ffffff !important;                 /* 白色文字，保证清晰（覆盖 navbar 全局规则） */
    font-weight: 600;
    border-radius: var(--radius-md);
    margin: 10px 15px;
    padding: 8px 20px !important;
    transition: all 0.2s ease;
    box-shadow: 0 8px 18px rgba(18, 61, 140, 0.25); /* 与背景同色系阴影 */
    border: none;                    /* 去除默认边框 */
    cursor: pointer;
}

.btn-download:hover {
    background: linear-gradient(135deg, #123d8c 0%, #1a4fb0 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(18, 61, 140, 0.35);
    color: #ffffff;
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 56px 0 88px;
    color: #fff7eb;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(243, 179, 61, 0.24), transparent 22%),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.1), transparent 18%),
        linear-gradient(135deg, #173233 0%, #214b4d 52%, #d7b27d 160%);
}

.hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    bottom: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.88fr);
    gap: 24px;
    align-items: start;
}

.hero-content,
.hero-sidecard {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 36px 34px;
    border-radius: 28px;
    background: rgba(255, 248, 232, 0.07);
    border: 1px solid rgba(255, 248, 232, 0.12);
    box-shadow: var(--shadow-lg);
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.95rem;
    border: 1px solid rgba(255, 248, 232, 0.22);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: rgba(255, 248, 232, 0.08);
}

.hero-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}


.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    max-width: 32em;
}

.hero-description {
    font-size: 1.125rem;
    max-width: 44em;
    margin: 0 0 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.hero-buttons .btn-primary {
    background: var(--secondary-color);
    color: #fff7eb;
    border: none;
    box-shadow: 0 12px 22px rgba(200, 92, 61, 0.24);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #b64e32;
    color: #fff7eb;
}

.hero-buttons .btn-outline {
    background: transparent;
    color: #fff7eb;
    border: 2px solid rgba(255, 248, 232, 0.42);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 248, 232, 0.08);
    border-color: #fff7eb;
    color: #fff7eb;
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-platforms {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.hero-metric {
    min-width: 132px;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-lg);
    background: rgba(23, 33, 33, 0.18);
    border: 1px solid rgba(255, 248, 232, 0.12);
    backdrop-filter: blur(10px);
}

.hero-metric strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
}

.hero-metric span {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.95rem;
    opacity: 0.92;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 248, 232, 0.12);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 248, 232, 0.12);
}

.hero-sidecard {
    padding: 28px 26px;
    border-radius: 28px;
    background: rgba(255, 250, 240, 0.92);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
}

.hero-sidecard-kicker {
    margin: 0 0 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.hero-sidecard h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    line-height: 1.15;
}

.hero-sidecard-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.hero-sidecard-list li + li {
    margin-top: 0.7rem;
}

.hero-sidecard-actions {
    margin-top: 1.4rem;
}

.hero-sidecard .btn-default {
    border-radius: 14px;
    border-color: rgba(23, 33, 33, 0.12);
    font-weight: 600;
}

.hero-sidecard .btn-link {
    color: var(--primary-color);
    font-weight: 700;
}

.hero-sidecard .btn-link:hover,
.hero-sidecard .btn-link:focus {
    color: var(--primary-hover);
    text-decoration: none;
}

/* ==================== Section Styles ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ==================== Features Section ==================== */
.features {
    padding: 80px 0;
    background: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 229, 0.9));
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 107, 92, 0.24);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(30, 107, 92, 0.1);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.product-list li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.product-actions .btn {
    border-radius: var(--radius-md);
    font-weight: 600;
}

.product-actions .btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.product-actions .btn-primary,
.product-actions .btn-outline {
    padding: 0.7rem 1rem;
}

.product-note {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==================== Feature Map Section ==================== */

.feature-map {
    padding: 80px 0;
    background:
        radial-gradient(circle at top right, rgba(243, 179, 61, 0.18), transparent 20%),
        linear-gradient(180deg, #173233 0%, #214b4d 100%);
    color: white;
}

.feature-map .section-title,
.feature-map .section-subtitle {
    color: white;
}

.feature-map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.map-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 248, 232, 0.08);
    border: 1px solid rgba(255, 248, 232, 0.12);
    box-shadow: var(--shadow-md);
}

.map-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.map-card p,
.map-card li {
    color: rgba(255, 255, 255, 0.8);
}

.map-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
}

/* ==================== Workflow Section ==================== */

.workflow-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(245, 239, 229, 0.82) 100%);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.workflow-card {
    background: rgba(255, 253, 248, 0.95);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.workflow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.workflow-card h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.workflow-card p {
    color: var(--text-secondary);
}

.workflow-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* ==================== Config Section ==================== */

.config-section {
    padding: 80px 0;
    background: transparent;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.config-card {
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.config-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.config-list {
    display: grid;
    gap: 0.9rem;
}

.config-list div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.config-list div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.config-list strong {
    color: var(--text-primary);
}

.config-list span {
    color: var(--text-secondary);
    text-align: right;
}

.shortcut-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shortcut-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.9rem;
    border-radius: 999px;
    background: rgba(30, 107, 92, 0.1);
    color: #19493f;
    font-weight: 500;
}

.shortcut-chip b {
    font-weight: 700;
}

/* ==================== Download Section ==================== */
.download {
    padding: 80px 0;
    background: transparent;
}

.download-overview {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 18px;
    align-items: center;
    padding: 24px 26px;
    margin-bottom: 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 229, 0.92));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.download-overview-kicker {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.download-overview h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
}

.download-overview p {
    margin: 0;
    color: var(--text-secondary);
}

.download-overview-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.download-overview-actions .btn {
    border-radius: 999px;
    font-weight: 700;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.download-card {
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 229, 0.9));
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.download-card:hover {
    border-color: rgba(30, 107, 92, 0.24);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.download-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-links li {
    margin-bottom: 0.5rem;
}

.download-links a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.download-links a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.download-note {
    text-align: center;
    color: var(--text-secondary);
}

.download-note a {
    color: var(--primary-color);
}

/* ==================== Use Cases Section ==================== */
.use-cases {
    padding: 80px 0;
    background: transparent;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.use-case {
    background: rgba(255, 253, 248, 0.96);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.use-case h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.use-case p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== CTA Section ==================== */
.cta {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(243, 179, 61, 0.24), transparent 24%),
        linear-gradient(135deg, #173233 0%, #214b4d 54%, #d7b27d 160%);
    color: #fff7eb;
    text-align: center;
}

.cta h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
}

.cta-buttons .btn-primary {
    background: var(--secondary-color);
    color: #fff7eb;
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 248, 232, 0.44);
    color: #fff7eb;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    color: #fff7eb;
}

.footer-copyright {
    font-size: 0.9rem;
}

/* ==================== Product Detail Page ==================== */

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 2rem;
    align-items: start;
    margin: 2rem 0 3rem;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 229, 0.92));
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.product-hero h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    letter-spacing: -0.04em;
}

.product-hero .lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.product-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.product-summary-card,
.detail-card,
.detail-panel {
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.product-summary-card {
    padding: 1.75rem;
}

.product-summary-card h3,
.detail-card h3,
.detail-panel h3 {
    margin-top: 0;
}

.product-summary-card ul,
.detail-card ul,
.detail-panel ul {
    padding-left: 1.2rem;
}

.product-section {
    margin-bottom: 3rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-card {
    padding: 1.5rem;
}

.detail-card p,
.detail-panel p,
.detail-card li,
.detail-panel li,
.compact-release-list li {
    color: var(--text-secondary);
}

.detail-panel {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-panel-accent {
    background: linear-gradient(135deg, rgba(216, 239, 232, 0.8) 0%, rgba(255, 253, 248, 0.96) 100%);
}

.product-side-panel {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.compact-release-list {
    margin-bottom: 0;
}

.product-hero-hardware .product-summary-card {
    border-color: rgba(6, 182, 212, 0.2);
}

/* ==================== AuraTerm Product Page ==================== */

.auraterm-product-page {
    padding: 22px 0 48px;
}

.auraterm-product-hero,
.product-section-block {
    margin-bottom: 24px;
}

.auraterm-product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(243, 179, 61, 0.28), transparent 32%),
        linear-gradient(135deg, #173233 0%, #214b4d 48%, #eadbc3 145%);
    box-shadow: var(--shadow-lg);
}

.auraterm-product-hero::after {
    content: '';
    position: absolute;
    inset: auto -70px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.auraterm-product-copy,
.auraterm-product-side {
    position: relative;
    z-index: 1;
}

.product-kicker,
.product-section-kicker,
.product-side-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-kicker {
    color: rgba(255, 248, 232, 0.8);
}

.auraterm-product-copy h1,
.product-section-header h2,
.product-spotlight-card h2,
.product-detail-panel h3,
.product-delivery-panel h3 {
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.03em;
}

.auraterm-product-copy h1 {
    margin: 0;
    color: #fffaf0;
    font-size: 52px;
    line-height: 1;
}

.product-lead {
    max-width: 36em;
    margin: 18px 0 0;
    color: rgba(255, 248, 232, 0.94);
    font-size: 20px;
    line-height: 1.6;
}

.product-description {
    max-width: 44em;
    margin: 14px 0 0;
    color: rgba(255, 248, 232, 0.88);
    line-height: 1.85;
}

.auraterm-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.auraterm-product-actions .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.auraterm-product-actions .btn-primary:hover,
.auraterm-product-actions .btn-primary:focus {
    background: #b64e32;
    border-color: #b64e32;
    color: #fff7eb;
}

.auraterm-product-actions .btn-default {
    background: rgba(255, 248, 232, 0.1);
    border-color: rgba(255, 248, 232, 0.18);
    color: #fff7eb;
}

.auraterm-product-actions .btn-default:hover,
.auraterm-product-actions .btn-default:focus {
    background: rgba(255, 248, 232, 0.16);
    border-color: rgba(255, 248, 232, 0.3);
    color: #fff7eb;
}

.auraterm-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.auraterm-product-tags .tag {
    background: rgba(255, 248, 232, 0.12);
    border: 1px solid rgba(255, 248, 232, 0.14);
    color: #fff7eb;
}

.auraterm-product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.auraterm-stat-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 248, 232, 0.1);
    border: 1px solid rgba(255, 248, 232, 0.14);
    color: #fff7eb;
}

.auraterm-stat-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 248, 232, 0.72);
}

.auraterm-stat-card strong {
    font-size: 28px;
}

.product-spotlight-card,
.product-section-block,
.auraterm-capability-card,
.auraterm-workflow-card,
.product-detail-panel,
.product-delivery-panel {
    backdrop-filter: blur(4px);
}

.product-spotlight-card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow-md);
}

.product-side-kicker,
.product-section-kicker {
    color: var(--secondary-color);
}

.product-spotlight-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 30px;
}

.product-release-highlight {
    padding: 14px 16px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: rgba(216, 239, 232, 0.7);
}

.auraterm-product-page .release-pill,
.platform-release-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(200, 92, 61, 0.12);
    color: #9f4128;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-release-highlight p {
    margin: 10px 0 0;
    color: var(--text-secondary);
}

.product-focus-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-focus-list li + li {
    margin-top: 0.6rem;
}

.product-side-actions {
    margin-top: 18px;
}

.product-side-actions .btn + .btn {
    margin-top: 10px;
}

.product-section-block {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 239, 229, 0.92));
    border: 1px solid rgba(23, 33, 33, 0.08);
    box-shadow: var(--shadow-md);
}

.product-section-accent {
    background: linear-gradient(180deg, rgba(216, 239, 232, 0.42), rgba(255, 253, 248, 0.96));
}

.product-section-header {
    margin-bottom: 22px;
}

.product-section-header h2 {
    margin: 0;
    font-size: 36px;
}

.product-section-header p:last-child {
    max-width: 48em;
    margin: 10px 0 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.auraterm-capability-grid,
.auraterm-workflow-grid,
.auraterm-delivery-grid,
.auraterm-dual-grid {
    display: grid;
    gap: 18px;
}

.auraterm-capability-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.auraterm-capability-card,
.auraterm-workflow-card,
.product-detail-panel,
.product-delivery-panel {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(23, 33, 33, 0.08);
    box-shadow: var(--shadow-sm);
}

.capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: #fff7eb;
    font-weight: 700;
}

.auraterm-capability-card h3,
.auraterm-workflow-card h3,
.product-detail-panel h3,
.product-delivery-panel h3 {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: 26px;
}

.auraterm-capability-card p,
.auraterm-workflow-card p,
.product-detail-panel p,
.product-delivery-panel p,
.platform-highlight-item p,
.compact-release-list li,
.product-scene-list li {
    color: var(--text-secondary);
    line-height: 1.75;
}

.auraterm-capability-card ul,
.product-scene-list {
    margin: 0;
    padding-left: 1.2rem;
}

.auraterm-capability-card li + li,
.product-scene-list li + li {
    margin-top: 0.5rem;
}

.auraterm-workflow-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.auraterm-dual-grid,
.auraterm-delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.platform-highlight-list {
    display: grid;
    gap: 12px;
}

.platform-highlight-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(23, 33, 33, 0.08);
    background: #ffffff;
}

.platform-highlight-item strong {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    color: var(--text-primary);
}

.platform-highlight-item p {
    margin: 8px 0 0;
    word-break: break-word;
}

.platform-highlight-date {
    flex-shrink: 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.platform-highlight-item.platform-windows {
    border-left: 4px solid #0d5bd1;
}

.platform-highlight-item.platform-macos {
    border-left: 4px solid #7f8894;
}

.platform-highlight-item.platform-linux {
    border-left: 4px solid #d28a1e;
}

.product-version-card {
    padding: 16px 18px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(216, 239, 232, 0.65);
}

.product-version-card strong {
    display: block;
    margin-top: 10px;
    font-size: 28px;
}

.product-version-card p {
    margin: 8px 0 0;
    word-break: break-word;
}

.compact-release-list {
    display: grid;
    gap: 8px;
    margin-bottom: 0;
}

.product-version-actions {
    margin-top: 16px;
}

.product-version-actions .btn + .btn {
    margin-top: 10px;
}

/* ==================== Hardware Product Page ==================== */

.hardware-product-page {
    padding: 22px 0 48px;
}

.hardware-product-hero,
.hardware-product-page .product-section-block {
    margin-bottom: 24px;
}

.hardware-product-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.9fr);
    gap: 24px;
    padding: 34px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(243, 179, 61, 0.26), transparent 30%),
        linear-gradient(135deg, #173233 0%, #29504a 44%, #ecd8b3 150%);
    box-shadow: var(--shadow-lg);
}

.hardware-product-hero::after {
    content: '';
    position: absolute;
    inset: auto -90px -90px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.hardware-product-copy,
.hardware-product-side {
    position: relative;
    z-index: 1;
}

.hardware-product-copy h1,
.hardware-spotlight-card h2,
.hardware-spec-card h3,
.hardware-entry-card strong {
    font-family: Georgia, 'Times New Roman', serif;
}

.hardware-product-copy h1 {
    margin: 0;
    color: #fffaf0;
    font-size: 50px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.hardware-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hardware-product-actions .btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hardware-product-actions .btn-primary:hover,
.hardware-product-actions .btn-primary:focus {
    background: #b64e32;
    border-color: #b64e32;
    color: #fff7eb;
}

.hardware-product-actions .btn-default {
    background: rgba(255, 248, 232, 0.1);
    border-color: rgba(255, 248, 232, 0.18);
    color: #fff7eb;
}

.hardware-product-actions .btn-default:hover,
.hardware-product-actions .btn-default:focus {
    background: rgba(255, 248, 232, 0.16);
    border-color: rgba(255, 248, 232, 0.3);
    color: #fff7eb;
}

.hardware-product-tags,
.hardware-pair-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hardware-product-tags {
    margin-top: 22px;
}

.hardware-product-tags .tag {
    background: rgba(255, 248, 232, 0.12);
    border: 1px solid rgba(255, 248, 232, 0.14);
    color: #fff7eb;
}

.hardware-product-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.hardware-stat-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 248, 232, 0.1);
    border: 1px solid rgba(255, 248, 232, 0.14);
    color: #fff7eb;
}

.hardware-stat-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 248, 232, 0.72);
}

.hardware-stat-card strong {
    font-size: 28px;
}

.hardware-spotlight-card,
.hardware-spec-card,
.hardware-entry-card {
    backdrop-filter: blur(4px);
}

.hardware-spotlight-card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 250, 240, 0.94);
    box-shadow: var(--shadow-md);
}

.hardware-spotlight-card h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 30px;
    letter-spacing: -0.03em;
}

.hardware-focus-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hardware-focus-list li + li {
    margin-top: 0.6rem;
}

.hardware-side-actions {
    margin-top: 18px;
}

.hardware-side-actions .btn + .btn {
    margin-top: 10px;
}

.hardware-spec-grid,
.hardware-workflow-grid,
.hardware-dual-grid,
.hardware-entry-grid {
    display: grid;
    gap: 18px;
}

.hardware-spec-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hardware-spec-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(23, 33, 33, 0.08);
    box-shadow: var(--shadow-sm);
}

.hardware-spec-card h3 {
    margin-top: 14px;
    margin-bottom: 12px;
    font-size: 26px;
}

.hardware-spec-card p,
.hardware-spec-card li,
.wire-map span,
.hardware-entry-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.hardware-spec-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.hardware-spec-card li + li {
    margin-top: 0.5rem;
}

.wire-map {
    display: grid;
    gap: 10px;
}

.wire-map div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(23, 33, 33, 0.08);
}

.wire-map div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.wire-map strong {
    color: var(--text-primary);
}

.hardware-workflow-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.hardware-dual-grid,
.hardware-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hardware-pair-points {
    margin-top: 14px;
}

.hardware-entry-card {
    padding: 16px 18px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: rgba(216, 239, 232, 0.65);
}

.hardware-entry-card strong {
    display: block;
    margin-top: 10px;
    font-size: 26px;
    line-height: 1.2;
    color: var(--text-primary);
}

.hardware-entry-card p {
    margin: 8px 0 0;
}

/* ==================== Responsive ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-shell,
    .download-overview {
        grid-template-columns: 1fr;
    }

    .auraterm-product-hero,
    .auraterm-dual-grid,
    .auraterm-delivery-grid,
    .hardware-product-hero,
    .hardware-dual-grid,
    .hardware-entry-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .feature-map-grid,
    .workflow-grid,
    .config-grid,
    .download-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .hero-metric {
        min-width: 140px;
    }

    .hero-content,
    .hero-sidecard,
    .product-hero {
        padding: 20px;
    }

    .auraterm-product-hero,
    .product-section-block,
    .auraterm-capability-card,
    .auraterm-workflow-card,
    .product-detail-panel,
    .product-delivery-panel,
    .hardware-spec-card,
    .hardware-spotlight-card {
        padding: 18px;
    }

    .auraterm-product-copy h1,
    .product-section-header h2,
    .hardware-product-copy h1 {
        font-size: 32px;
    }

    .auraterm-product-stats,
    .auraterm-capability-grid,
    .auraterm-workflow-grid,
    .hardware-product-stats,
    .hardware-spec-grid,
    .hardware-workflow-grid {
        grid-template-columns: 1fr;
    }

    .platform-highlight-item {
        flex-direction: column;
    }

    .wire-map div {
        flex-direction: column;
    }

    .config-list div {
        flex-direction: column;
    }

    .config-list span {
        text-align: left;
    }

    .product-hero {
        grid-template-columns: 1fr;
    }
}

/* ==================== Analytics ==================== */
.analytics-page {
    padding: 2rem 0 3rem;
}

.analytics-header {
    margin-bottom: 2rem;
}

.analytics-header h1 {
    margin-bottom: 0.5rem;
}

.analytics-subtitle {
    color: var(--text-secondary);
    max-width: 720px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.analytics-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

.analytics-card h3,
.analytics-panel h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.analytics-metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.analytics-hint {
    color: var(--text-secondary);
    margin: 0;
}

.analytics-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.analytics-panel {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

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

.analytics-table th,
.analytics-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}

.analytics-table th {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.92rem;
}

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

.analytics-empty {
    color: var(--text-light);
    margin: 0;
}

.analytics-bar-list {
    display: grid;
    gap: 0.75rem;
}

.analytics-bar-row {
    display: grid;
    grid-template-columns: 88px 1fr 48px;
    align-items: center;
    gap: 0.75rem;
}

.analytics-bar-label {
    color: var(--text-secondary);
    font-variant-numeric: tabular-nums;
}

.analytics-bar-track {
    background: var(--bg-secondary);
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
}

.analytics-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.analytics-bar-value {
    font-weight: 600;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 767px) {
    .analytics-bar-row {
        grid-template-columns: 72px 1fr 40px;
        gap: 0.5rem;
    }

    .analytics-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ==================== Legacy Styles (for compatibility) ==================== */
.profile-thumbnail {
    position: absolute;
}
.profile-header {
    min-height: 260px;
    margin-left: 280px;
}
div.post-tabs {
    margin-top: 16px;
}
ul.posts {
    list-style-type: none;
    padding: 0px;
    margin: 16px 0px 0px 0px;
    border-top: 1px solid #e0e0e0;
}
div.post-tabs ul.posts {
    margin: 0px;
    border-top: none;
}
ul.posts li.post {
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}
ul.posts li.post:hover {
    background-color: #f0f0f0;
}
div.post-date {
    float: right;
}
div.post-author {
    font-weight: bold;
}
div.post-thumbnail {
    position: absolute;
}
div.post-content {
    margin-left: 48px;
    min-height: 48px;
}
div.post-footer {
    text-align: right;
}
ul.comments {
    list-style-type: none;
    padding: 0px;
    margin: 16px 0px 0px 0px;
}
ul.comments li.comment {
    margin-left: 32px;
    padding: 8px;
    border-bottom: 1px solid #e0e0e0;
}
ul.comments li.comment:nth-child(1) {
    border-top: 1px solid #e0e0e0;
}
ul.comments li.comment:hover {
    background-color: #f0f0f0;
}
div.comment-date {
    float: right;
}
div.comment-author {
    font-weight: bold;
}
div.comment-thumbnail {
    position: absolute;
}
div.comment-content {
    margin-left: 48px;
    min-height: 48px;
}
div.comment-form {
    margin: 16px 0px 16px 32px;
}
div.pagination {
    width: 100%;
    text-align: right;
    padding: 0px;
    margin: 0px;
}
div.flask-pagedown-preview {
    margin: 10px 0px 10px 0px;
    border: 1px solid #e0e0e0;
    padding: 4px;
}
div.flask-pagedown-preview h1 {
    font-size: 140%;
}
div.flask-pagedown-preview h2 {
    font-size: 130%;
}
div.flask-pagedown-preview h3 {
    font-size: 120%;
}
.post-body h1 {
    font-size: 140%;
}
.post-body h2 {
    font-size: 130%;
}
.post-body h3 {
    font-size: 120%;
}
.table.followers tr {
    border-bottom: 1px solid #e0e0e0;
}

.promo-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    border-radius: 10px;
}

.promo-hero .btn {
    margin-right: 8px;
    margin-top: 8px;
}

.promo-grid {
    margin-bottom: 16px;
}

.promo-card {
    min-height: 250px;
}

/* ==================== Intel-Inspired Theme Overrides ==================== */

body {
    color: var(--text-primary);
    background:
        radial-gradient(circle at top left, rgba(118, 214, 255, 0.2), transparent 24%),
        radial-gradient(circle at 82% 8%, rgba(0, 103, 181, 0.1), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #edf4fb 42%, #f7fbff 100%);
}

a {
    color: var(--primary-color);
}

a:hover,
a:focus {
    color: var(--primary-hover);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.btn:focus {
    transform: translateY(-1px);
}

.btn-primary,
.btn-success {
    background: linear-gradient(135deg, #0068b5 0%, #00508f 100%);
    border-color: #00508f;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(0, 104, 181, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-success:hover,
.btn-success:focus {
    background: linear-gradient(135deg, #005a9d 0%, #003f72 100%);
    border-color: #003f72;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 104, 181, 0.28);
}

.btn-default {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(0, 104, 181, 0.18);
    color: var(--text-primary);
    box-shadow: 0 8px 20px rgba(4, 30, 66, 0.05);
}

.btn-default:hover,
.btn-default:focus {
    background: #ffffff;
    border-color: rgba(0, 104, 181, 0.34);
    color: var(--primary-color);
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
}

.btn-link:hover,
.btn-link:focus {
    color: var(--primary-hover);
    text-decoration: none;
}

.form-control,
.dropdown-menu,
.panel,
.analytics-card,
.analytics-panel {
    border-color: rgba(4, 30, 66, 0.12);
    box-shadow: 0 10px 24px rgba(4, 30, 66, 0.04);
}

.form-control {
    border-radius: 14px;
}

.form-control:focus {
    border-color: rgba(0, 104, 181, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 104, 181, 0.12);
}

.alert {
    border: 1px solid rgba(0, 104, 181, 0.14);
    border-radius: 18px;
}

.alert-warning {
    background: rgba(0, 163, 217, 0.08);
    color: var(--text-primary);
}

.navbar {
    background: rgba(249, 252, 255, 0.94);
    border-bottom: 1px solid rgba(4, 30, 66, 0.08);
    box-shadow: 0 10px 26px rgba(4, 30, 66, 0.06);
}

.navbar-brand,
.footer-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.brand-mark {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 4px;
    border-radius: 4px;
    background: linear-gradient(135deg, #00a3d9 0%, #0068b5 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 6px 12px rgba(0, 104, 181, 0.18);
}

.brand-mark::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.92);
    clip-path: polygon(0 0, 68% 0, 68% 32%, 100% 32%, 100% 100%, 0 100%);
}

.navbar-nav > li > a {
    color: var(--text-secondary) !important;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > .open > a,
.navbar-nav > .open > a:hover,
.navbar-nav > .open > a:focus {
    color: var(--primary-color) !important;
    background: transparent !important;
}

.navbar-toggle {
    border-color: rgba(0, 104, 181, 0.18);
}

.navbar-toggle .icon-bar {
    background-color: var(--primary-color);
}

.btn-download {
    background: linear-gradient(135deg, #0068b5 0%, #003f72 100%);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 104, 181, 0.24);
}

.btn-download:hover,
.btn-download:focus {
    background: linear-gradient(135deg, #005a9d 0%, #002f57 100%);
    color: #ffffff !important;
    box-shadow: 0 16px 32px rgba(0, 104, 181, 0.3);
}

.hero,
.cta,
.auraterm-product-hero,
.hardware-product-hero {
    color: #eff7ff;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 16% 18%, rgba(118, 214, 255, 0.34), transparent 18%),
        radial-gradient(circle at 82% 14%, rgba(0, 163, 217, 0.26), transparent 22%),
        linear-gradient(135deg, #041e42 0%, #003c71 56%, #0068b5 100%);
    background-size: 120px 120px, 120px 120px, auto, auto, auto;
    background-position: 0 0, 0 0, center, center, center;
}

.hero::after,
.auraterm-product-hero::after,
.hardware-product-hero::after {
    background: rgba(118, 214, 255, 0.14);
}

.hero-content,
.hero-sidecard,
.feature-card,
.workflow-card,
.config-card,
.download-overview,
.download-card,
.use-case,
.product-section-block,
.auraterm-capability-card,
.auraterm-workflow-card,
.product-detail-panel,
.product-delivery-panel,
.hardware-spec-card,
.hardware-spotlight-card,
.hardware-entry-card,
.product-spotlight-card,
.product-summary-card,
.detail-card,
.detail-panel {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 245, 252, 0.96));
    border-color: rgba(0, 104, 181, 0.1);
}

.hero-content {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-kicker,
.product-kicker,
.release-kicker,
.release-entry-kicker {
    color: rgba(118, 214, 255, 0.96);
    border-color: rgba(118, 214, 255, 0.28);
    background: rgba(118, 214, 255, 0.1);
}

.hero-title,
.section-title,
.hero-sidecard h2,
.download-overview h3,
.cta h2,
.product-hero h1,
.auraterm-product-copy h1,
.product-section-header h2,
.product-spotlight-card h2,
.product-detail-panel h3,
.product-delivery-panel h3,
.hardware-product-copy h1,
.hardware-spotlight-card h2,
.hardware-spec-card h3,
.hardware-entry-card strong {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.hero-title {
    font-size: 4.5rem;
}

.hero-subtitle,
.product-lead,
.release-lead {
    color: rgba(239, 247, 255, 0.94);
}

.hero-description,
.product-description {
    color: rgba(223, 238, 251, 0.9);
}

.platform-badge,
.hero-metric,
.auraterm-stat-card,
.hardware-stat-card {
    background: rgba(3, 22, 49, 0.28);
    border-color: rgba(118, 214, 255, 0.18);
    color: #eff7ff;
}

.hero-sidecard,
.product-spotlight-card,
.hardware-spotlight-card {
    box-shadow: 0 22px 46px rgba(4, 30, 66, 0.14);
}

.hero-sidecard-kicker,
.product-side-kicker,
.product-section-kicker,
.download-overview-kicker,
.release-section-kicker,
.release-command-os {
    color: var(--primary-color);
}

.feature-card:hover,
.download-card:hover,
.use-case:hover,
.workflow-card:hover,
.auraterm-capability-card:hover,
.auraterm-workflow-card:hover,
.hardware-spec-card:hover {
    border-color: rgba(0, 104, 181, 0.24);
    box-shadow: 0 22px 46px rgba(4, 30, 66, 0.14);
}

.tag,
.shortcut-chip,
.release-pill,
.auraterm-product-page .release-pill,
.platform-release-pill {
    background: rgba(0, 104, 181, 0.08);
    color: var(--primary-color);
}

.feature-map {
    background:
        radial-gradient(circle at 85% 18%, rgba(118, 214, 255, 0.22), transparent 18%),
        linear-gradient(180deg, #041e42 0%, #003c71 100%);
}

.map-card {
    background: rgba(240, 247, 255, 0.08);
    border-color: rgba(118, 214, 255, 0.18);
}

.workflow-section,
.config-section,
.download,
.use-cases {
    background: transparent;
}

.workflow-step,
.capability-icon {
    background: linear-gradient(135deg, #00a3d9 0%, #0068b5 100%);
    color: #ffffff;
}

.download-overview,
.product-version-card,
.hardware-entry-card,
.detail-panel-accent,
.product-section-accent {
    background: linear-gradient(180deg, rgba(236, 245, 252, 0.98), rgba(220, 236, 248, 0.96));
}

.download-links a,
.download-note a,
.release-api-link {
    color: var(--primary-color);
}

.download-links a:hover,
.download-note a:hover,
.release-api-link:hover {
    color: var(--primary-hover);
}

.cta {
    background:
        radial-gradient(circle at 18% 24%, rgba(118, 214, 255, 0.22), transparent 20%),
        linear-gradient(135deg, #041e42 0%, #003c71 52%, #005ea6 100%);
}

.cta-buttons .btn-outline,
.hero-buttons .btn-outline {
    border-color: rgba(239, 247, 255, 0.42);
    color: #eff7ff;
    font-weight: 700;
}

.cta-buttons .btn-outline:hover,
.hero-buttons .btn-outline:hover {
    background: #008be2;
    border-color: #008be2;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 139, 226, 0.35);
}

.footer {
    background:
        linear-gradient(180deg, #03162f 0%, #041e42 100%);
    color: #d4e6f5;
}

.footer-links a,
.footer-copyright {
    color: #c2d9eb;
}

.footer-links a:hover {
    color: #ffffff;
}

.page-header {
    border-bottom-color: rgba(0, 104, 181, 0.14);
}

.nav-tabs {
    border-bottom-color: rgba(0, 104, 181, 0.14);
}

.nav-tabs > li > a {
    border-radius: 16px 16px 0 0;
    color: var(--text-secondary);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border-color: rgba(0, 104, 181, 0.14);
    border-bottom-color: transparent;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.92);
}

.pagination > li > a,
.pagination > li > span {
    border-color: rgba(0, 104, 181, 0.12);
    color: var(--primary-color);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

ul.posts,
ul.comments,
.table.followers tr,
div.flask-pagedown-preview {
    border-color: rgba(0, 104, 181, 0.12);
}

ul.posts li.post,
ul.comments li.comment {
    border-bottom-color: rgba(0, 104, 181, 0.1);
}

ul.posts li.post:hover,
ul.comments li.comment:hover {
    background-color: rgba(0, 104, 181, 0.05);
}

.analytics-bar-track {
    background: rgba(0, 104, 181, 0.1);
}

.analytics-bar-fill {
    background: linear-gradient(90deg, #0068b5, #00a3d9);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}
