/* ============================================================
   DBsoftware – stylesheet
   ============================================================ */

:root {
    --bg: #07070d;
    --bg-elevated: #0d0d18;
    --surface: #11111c;
    --surface-2: #161624;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --text: #f5f5fa;
    --text-muted: #9999a8;
    --text-dim: #6b6b7d;

    --accent: #6366f1;
    --accent-2: #06b6d4;
    --accent-3: #a78bfa;

    --gradient: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-soft: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, monospace;

    --container: 1200px;

    --easing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ LOGIN GATE ============ */
/* När html.locked är satt: dölj allt utom login-gaten. */
html.locked,
html.locked body {
    overflow: hidden !important;
    height: 100vh;
}

html.locked body > *:not(.login-gate) {
    display: none !important;
}

.login-gate {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: #07070d;
    overflow-y: auto;
}

html.locked .login-gate {
    display: flex;
}

.login-gate::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.2), transparent 50%);
    pointer-events: none;
}

.login-card {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: rgba(17, 17, 28, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 40px 36px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(99, 102, 241, 0.15);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f5f5fa;
}

.login-card.shake {
    animation: shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(4px); }
    30%, 50%, 70% { transform: translateX(-8px); }
    40%, 60% { transform: translateX(8px); }
}

.login-logo {
    margin: 0 auto 16px;
}

.login-card h1 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.login-sub {
    text-align: center;
    color: #9999a8;
    font-size: 14px;
    margin: 0 0 24px;
}

.login-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9999a8;
    margin-top: 12px;
}

.login-card input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: #f5f5fa;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    outline: none;
}

.login-card input:focus {
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.login-error {
    margin: 12px 0 0;
    padding: 10px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    color: #fca5a5;
    font-size: 13px;
    text-align: center;
}

.login-submit {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s var(--easing);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ============ BACKGROUND DECOR ============ */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    top: 30%;
    left: -150px;
}

/* ============ LAYOUT ============ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-alt {
    background:
        linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.04) 50%, transparent 100%);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.section-head h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s var(--easing);
    background: rgba(7, 7, 13, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(7, 7, 13, 0.85);
    border-bottom-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.logo-mark {
    display: inline-flex;
}

.nav {
    display: flex;
    gap: 36px;
    margin-left: auto;
    margin-right: 24px;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient);
    transition: width 0.25s var(--easing);
}

.nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s var(--easing);
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(7, 7, 13, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s var(--easing);
    pointer-events: none;
}

.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-muted);
}

.mobile-menu a:hover {
    background: var(--surface);
    color: var(--text);
}

.mobile-menu .btn {
    margin-top: 8px;
    justify-content: center;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--easing);
    border: 1px solid transparent;
    white-space: nowrap;
    line-height: 1;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-glow), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4), 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.btn-ghost {
    color: var(--text);
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin: 0 auto 28px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s var(--easing);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(99, 102, 241, 0.1), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s var(--easing);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    opacity: 1;
}

.service-featured {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, var(--surface) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--gradient);
    color: white;
    border-radius: 100px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--icon-color) 12%, transparent);
    color: var(--icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid color-mix(in srgb, var(--icon-color) 25%, transparent);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 15px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.service-list li {
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--accent-2);
    border-bottom: 2px solid var(--accent-2);
    transform: rotate(-45deg);
}

/* ============ PRODUCT CARD ============ */
.product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
}

.product-content {
    position: relative;
    z-index: 1;
}

.product-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 100px;
    color: #34d399;
}

.product-tag .dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

.product-tag-soon {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.25);
    color: #fbbf24;
}

.product-tag-soon .dot {
    background: #f59e0b;
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6);
    animation: pulse-soon 2s infinite;
}

@keyframes pulse-soon {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.product-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    line-height: 1;
}

.product-tagline {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 16px;
    font-weight: 500;
}

.product-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 15px;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.pill {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
}

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

.product-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.feature strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.feature span {
    font-size: 13px;
    color: var(--text-dim);
}

/* ============ MOCKUP ============ */
.product-visual {
    position: relative;
    z-index: 1;
}

.mockup {
    background: #0a0a14;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1500px) rotateY(-6deg) rotateX(2deg);
    transition: transform 0.5s var(--easing);
}

.product-card:hover .mockup {
    transform: perspective(1500px) rotateY(-3deg) rotateX(1deg);
}

.mockup-bar {
    background: #14141f;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}

.mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-bar span:nth-child(1) { background: #ff5f56; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #27c93f; }

.mockup-body {
    display: grid;
    grid-template-columns: 60px 1fr;
    height: 280px;
}

.mockup-sidebar {
    background: #0d0d18;
    border-right: 1px solid var(--border);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.mockup-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 8px;
}

.mockup-nav-item {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

.mockup-nav-item.active {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.mockup-main {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mockup-header {
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    width: 60%;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-card {
    height: 60px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.mockup-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.05));
    border-color: rgba(99, 102, 241, 0.3);
}

.mockup-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 8px;
}

.mockup-chart .bar {
    flex: 1;
    background: var(--gradient);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    animation: barRise 1.5s var(--easing) backwards;
}

.mockup-chart .bar:nth-child(1) { animation-delay: 0.1s; }
.mockup-chart .bar:nth-child(2) { animation-delay: 0.2s; }
.mockup-chart .bar:nth-child(3) { animation-delay: 0.3s; }
.mockup-chart .bar:nth-child(4) { animation-delay: 0.4s; }
.mockup-chart .bar:nth-child(5) { animation-delay: 0.5s; }
.mockup-chart .bar:nth-child(6) { animation-delay: 0.6s; }
.mockup-chart .bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes barRise {
    from { height: 0; opacity: 0; }
}

/* ============ FOUNDERS ============ */
.founders-intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: -32px auto 32px;
    font-size: 1rem;
}

.shared-skills {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.shared-skills-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.shared-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.founders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.founder-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.founder-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all 0.3s var(--easing);
}

.founder-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.founder-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--avatar-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.founder-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 14px;
    color: var(--accent-2);
    margin-bottom: 16px;
    font-weight: 500;
}

.founder-bio {
    color: var(--text-muted);
    font-size: 15px;
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.value {
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-soft);
    color: var(--accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.value h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============ CONTACT ============ */
.section-contact {
    padding-bottom: 140px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15), transparent 70%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 16px 0 20px;
    line-height: 1.1;
}

.contact-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 36px;
}

.contact-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.contact-meta {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 36px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}

.contact-meta > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.contact-meta a:hover {
    color: var(--accent-2);
}

/* ============ FOOTER ============ */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    background: rgba(7, 7, 13, 0.6);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 14px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--easing), transform 0.7s var(--easing);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 1fr;
        padding: 36px;
        gap: 36px;
    }

    .founders {
        grid-template-columns: 1fr;
    }

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

    .contact-card {
        padding: 60px 32px;
    }
}

@media (max-width: 768px) {
    .nav, .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .product-card {
        padding: 28px;
    }

    .product-title {
        font-size: 2.25rem;
    }

    .contact-meta {
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}
