﻿/* SELA / DaTamoon Brand Styles — v1.0 */

@font-face {
    font-family: 'TT Supermolot Neue';
    src: url('fonts/TT Supermolot Neue Trial Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Supermolot Neue';
    src: url('fonts/TT Supermolot Neue Trial Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Supermolot Neue';
    src: url('fonts/TT Supermolot Neue Trial Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Supermolot Neue';
    src: url('fonts/TT Supermolot Neue Trial DemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Supermolot Neue';
    src: url('fonts/TT Supermolot Neue Trial Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Discoduck';
    src: url('fonts/discoduckv2ei.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

:root {
    --pastel-indigo: #7767FE;
    --pastel-gray-blue: #5EAED1;
    --pastel-gray: #C2C2CC;
    --dark-gray: #404040;
    --very-dark-gray: #1C1C1C;
    --validation-green: #42FF9E;
    --coral-red: #FF6B6B;

    --primary-color: var(--pastel-indigo);
    --secondary-color: var(--pastel-gray-blue);
    --accent-green: var(--validation-green);
    --text-primary: var(--very-dark-gray);
    --text-secondary: var(--dark-gray);
    --text-muted: #6B6B78;
    --bg-primary: #FFFFFF;
    --bg-secondary: #F7F7FA;
    --bg-dark: var(--very-dark-gray);
    --border-color: #E4E4EA;
    --brand-gradient: linear-gradient(135deg, #7767FE 0%, #5EAED1 55%, #C2C2CC 100%);

    --shadow-sm: 0 2px 8px rgba(28, 28, 28, 0.06);
    --shadow-md: 0 8px 24px rgba(28, 28, 28, 0.1);
    --shadow-lg: 0 16px 48px rgba(119, 103, 254, 0.15);

    --font-primary: 'TT Supermolot Neue', system-ui, sans-serif;
    --font-display: 'Discoduck', var(--font-primary);
    --font-datamoon: 'Anta', var(--font-primary);

    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --nav-height: 5rem;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    height: var(--nav-height);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-brand .logo img {
    max-height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-contact:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.language-selector {
    position: relative;
}

.lang-toggle {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    font-size: 1.1rem;
    transition: border-color 0.2s;
}

.lang-toggle:hover {
    border-color: var(--primary-color);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 10rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 100;
}

.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: background 0.2s;
}

.lang-menu a:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--very-dark-gray);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #6556e8;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(119, 103, 254, 0.08);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-height) + 3rem) 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--pastel-indigo);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--pastel-gray-blue);
    bottom: 10%;
    left: -80px;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--pastel-gray);
    top: 40%;
    right: 20%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-datamoon);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--primary-color);
    background: rgba(119, 103, 254, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--very-dark-gray);
}

.hero-title .gradient-text,
.gradient-text {
    font-family: var(--font-display);
    font-style: italic;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-triangle {
    position: absolute;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 1;
    z-index: 0;
}

.triangle-node {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.triangle-node.holder { top: 0; left: 50%; transform: translateX(-50%); }
.triangle-node.issuer { bottom: 0; left: 0; }
.triangle-node.verifier { bottom: 0; right: 0; }

.trust-video {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
}

.triangle-connections {
    display: none;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--very-dark-gray);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Problem Section */
.problem-section {
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-card.solution {
    border-color: var(--validation-green);
    background: linear-gradient(135deg, rgba(66, 255, 158, 0.06) 0%, rgba(119, 103, 254, 0.04) 100%);
}

.problem-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-text > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--brand-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.security-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.security-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.security-card:hover {
    border-color: var(--primary-color);
}

.security-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--brand-gradient);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.security-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.security-card p {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Products */
.products-section {
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
    color: inherit;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.product-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(119, 103, 254, 0.04) 0%, rgba(94, 174, 209, 0.06) 100%);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(119, 103, 254, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.product-features li {
    font-size: 0.825rem;
    color: var(--text-muted);
    padding-left: 1.25rem;
    position: relative;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--validation-green);
    border-radius: 50%;
}

/* Technology */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
}

.tech-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.tech-icon {
    width: 3rem;
    height: 3rem;
    background: var(--brand-gradient);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.tech-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Contact */
.contact-section {
    background: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-datamoon);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--very-dark-gray);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--very-dark-gray);
    color: var(--pastel-gray);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-brand .logo img {
    max-height: 3.5rem;
    width: auto;
    margin: 0 auto 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--pastel-gray);
    opacity: 0.85;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(194, 194, 204, 0.15);
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.875rem;
}

.patent-badge {
    background: rgba(119, 103, 254, 0.2);
    border: 1px solid rgba(119, 103, 254, 0.4);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
}

.patent-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--pastel-indigo);
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
}

.social-icon:hover {
    background: rgba(119, 103, 254, 0.3);
}

.social-icon-img {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) invert(1);
}

/* Product pages */
.product-page { padding: calc(var(--nav-height) + 3rem) 0 4rem; }
.product-hero { text-align: center; margin-bottom: 4rem; }
.product-hero-icon { font-size: 5rem; margin-bottom: 2rem; }
.product-hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; color: var(--text-primary); }
.product-hero .product-tag { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(66, 255, 158, 0.12); color: var(--primary-color); border-radius: 2rem; font-size: 1rem; font-weight: 600; margin-bottom: 2rem; }
.product-hero p { font-size: 1.25rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto; line-height: 1.8; }
.product-content { max-width: 900px; margin: 0 auto; }
.product-section { margin-bottom: 4rem; }
.product-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--text-primary); }
.product-section p { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.feature-box { background: var(--bg-secondary); padding: 1.5rem; border-radius: var(--radius-md); border: 2px solid var(--border-color); transition: all 0.3s; }
.feature-box:hover { border-color: var(--primary-color); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-box h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-primary); }
.feature-box p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary-color); text-decoration: none; font-weight: 600; margin-bottom: 2rem; transition: gap 0.3s; }
.back-link:hover { gap: 1rem; }

/* Company homepage */
.hero-company .container {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-content--centered {
    max-width: 720px;
    margin: 0 auto;
}

.hero-content--centered .hero-description {
    margin-left: auto;
    margin-right: auto;
}

.hero-content--centered .hero-cta {
    justify-content: center;
}

.about-company-section {
    background: var(--bg-secondary);
}

.about-company-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-company-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.about-label {
    display: inline-block;
    font-family: var(--font-datamoon);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-company-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.value-number {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.products-grid--company {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.product-card--company {
    display: flex;
    flex-direction: column;
}

.product-card-header {
    margin-bottom: 0.5rem;
}

.product-card--company h3 {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.product-link {
    margin-top: auto;
    padding-top: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.team-section {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.team-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--brand-gradient);
    margin: 0 auto 1.25rem;
}

.team-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.press-section {
    background: var(--bg-secondary);
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.press-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
}

.press-item time {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.press-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.press-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.press-item code {
    font-size: 0.85em;
    background: var(--bg-secondary);
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.press-contact {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
}

.press-contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-logo-invert {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Product one-pagers */
.product-onepager-hero {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.product-onepager-hero .product-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(119, 103, 254, 0.1);
    color: var(--primary-color);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.product-onepager-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-onepager-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.product-onepager-lead {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.product-onepager-content {
    max-width: 860px;
    margin: 0 auto;
}

.pillars-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.pillar-item strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.pillar-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-features--inline {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-features--inline li {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    padding-left: 1rem;
}

.product-features--inline li::before {
    display: none;
}

.product-cta-banner {
    text-align: center;
    background: linear-gradient(135deg, rgba(119, 103, 254, 0.08) 0%, rgba(94, 174, 209, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.product-cta-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-cta-banner p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.product-section code {
    font-size: 0.9em;
    background: var(--bg-secondary);
    padding: 0.1em 0.35em;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero .container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .security-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
