/* =============================================================
   NOVA — Futuristic Corporate Template
   Concept: 2030年の企業サイト / Glassmorphism / 浮遊感
============================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
    --bg:           #fafafa;
    --bg-dark:      #07080f;
    --bg-dark-2:    #0c0e1a;
    --indigo:       #4f46e5;
    --indigo-light: #6366f1;
    --sky:          #0ea5e9;
    --sky-light:    #38bdf8;
    --white:        #ffffff;
    --text:         #09090b;
    --text-mid:     #3f3f46;
    --text-muted:   #71717a;
    --border:       #e4e4e7;
    --border-glass: rgba(255,255,255,0.5);

    --grad:         linear-gradient(135deg, var(--indigo), var(--sky));
    --grad-text:    linear-gradient(135deg, var(--indigo) 0%, var(--sky) 100%);
    --grad-soft:    linear-gradient(135deg, rgba(79,70,229,.06), rgba(14,165,233,.06));

    --font-display: 'Syne', 'Inter', sans-serif;
    --font:         'Inter', 'Noto Sans JP', sans-serif;

    --max-w:        1160px;
    --pad-x:        64px;
    --section-y:    120px;
    --radius-lg:    24px;
    --radius:       16px;
    --radius-sm:    10px;

    --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section   { padding: var(--section-y) 0; }

/* ── Typography ─────────────────────────────────────────── */
.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--indigo);
    padding: 5px 14px;
    background: rgba(79,70,229,0.06);
    border: 1px solid rgba(79,70,229,0.15);
    border-radius: 50px;
    margin-bottom: 24px;
}
.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--grad);
    border-radius: 50%;
}
.section-tag.white {
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}
.section-tag.white::before { background: rgba(255,255,255,0.5); }

.display-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text);
}
.display-title.white { color: var(--white); }

.body-lead {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    line-height: 1.85;
    font-weight: 300;
}
.body-lead.white { color: rgba(255,255,255,0.6); }

/* ── Glass Components ────────────────────────────────────── */
.glass {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow:
        0 8px 40px rgba(79,70,229,0.06),
        0 1px 0 rgba(255,255,255,0.9) inset;
    border-radius: var(--radius-lg);
}
.glass-dark {
    background: rgba(12,14,26,0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
    border-radius: var(--radius-lg);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 10px;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
    background: var(--grad);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(79,70,229,0.35);
}
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(79,70,229,0.45);
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.btn-glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.8);
    color: var(--text);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-outline-grad {
    background: transparent;
    border: 1.5px solid var(--indigo);
    color: var(--indigo);
    position: relative;
    overflow: hidden;
}
.btn-outline-grad::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}
.btn-outline-grad:hover { color: var(--white); border-color: transparent; }
.btn-outline-grad:hover::before { opacity: 1; }
.btn-outline-grad span { position: relative; z-index: 1; }

/* ── Background Orbs ─────────────────────────────────────── */
.orb-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
.orb-indigo {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(79,70,229,.14), transparent 70%);
}
.orb-sky {
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(14,165,233,.1), transparent 70%);
}

/* ── Floating Animation ──────────────────────────────────── */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes floatYSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-10px) rotate(0.5deg); }
}
.float { animation: floatY 7s ease-in-out infinite; }
.float-delay-1 { animation-delay: 1.5s; }
.float-delay-2 { animation-delay: 3s; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1080px;
    z-index: 200;
    background: rgba(250,250,250,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 0 rgba(255,255,255,0.8) inset;
    transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled {
    background: rgba(250,250,250,0.92);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 1px 0 rgba(255,255,255,0.9) inset;
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}
.site-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s var(--ease);
}
.site-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { font-size: 0.82rem; padding: 8px 20px; border-radius: 8px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero .orb-indigo { top: -200px; right: -100px; }
.hero .orb-sky    { bottom: -150px; left: -100px; }

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px var(--pad-x) 100px;
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,70,229,0.07);
    border: 1px solid rgba(79,70,229,0.18);
    border-radius: 50px;
    padding: 6px 14px 6px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--indigo);
    margin-bottom: 28px;
}
.badge-dot {
    width: 20px; height: 20px;
    background: var(--grad);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: white;
}
.badge-new {
    background: var(--grad);
    color: white;
    font-size: 0.6rem;
    padding: 2px 7px;
    border-radius: 50px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: var(--text);
    margin-bottom: 28px;
}

.hero-desc {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px 20px;
}
.trust-item {
    display: flex; align-items: center; gap: 6px;
}
.trust-item::before {
    content: '✓';
    font-size: 0.7rem;
    color: var(--indigo);
    font-weight: 700;
}

/* Hero Right: Product Preview Card */
.hero-visual { position: relative; }
.hero-product-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}
.product-chrome {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.6);
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dot  {
    width: 10px; height: 10px; border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }
.chrome-url {
    flex: 1;
    background: rgba(0,0,0,0.05);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

/* Mockup Dashboard Layout */
.mockup-body {
    display: flex;
    height: 360px;
}
.mockup-sidebar {
    width: 64px;
    background: rgba(248,248,252,0.8);
    border-right: 1px solid rgba(0,0,0,0.05);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.sidebar-item {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(0,0,0,0.04);
    display: flex; align-items: center; justify-content: center;
}
.sidebar-item.active {
    background: var(--grad);
}
.sidebar-item svg {
    width: 16px; height: 16px;
    stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
}
.sidebar-item.active svg { stroke: white; }
.sidebar-item:not(.active) svg { stroke: #9ca3af; fill: none; }

.mockup-content {
    flex: 1;
    padding: 18px;
    overflow: hidden;
    background: rgba(250,250,252,0.8);
}
.mockup-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.mockup-title-sm {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
}
.live-badge {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.62rem; font-weight: 600; color: #10b981;
}
.live-dot {
    width: 6px; height: 6px;
    background: #10b981; border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* Chart */
.mockup-chart {
    background: white;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}
.chart-label {
    font-size: 0.6rem; color: var(--text-muted); margin-bottom: 8px;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}
.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, rgba(79,70,229,0.15), rgba(79,70,229,0.05));
    transition: height 0.6s var(--ease-out);
}
.bar.highlight {
    background: linear-gradient(to top, var(--indigo), var(--sky));
}

/* KPI Cards */
.mockup-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.kpi-card {
    background: white;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,0.04);
}
.kpi-label { font-size: 0.55rem; color: var(--text-muted); margin-bottom: 4px; }
.kpi-value { font-size: 0.9rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.kpi-change { font-size: 0.55rem; color: #10b981; font-weight: 600; margin-top: 2px; }

/* Floating mini cards on hero */
.hero-float-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.float-mini-card {
    position: absolute;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.9);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
}
.float-mini-card-1 { top: -20px; left: -40px; color: #10b981; }
.float-mini-card-2 { bottom: 20px; right: -20px; color: var(--indigo); }

/* ── Product Section ─────────────────────────────────────── */
.product { background: var(--bg-dark); overflow: hidden; }

.product .orb-indigo { top: -100px; left: -100px; opacity: 0.8; }
.product .orb-sky    { bottom: -100px; right: -100px; opacity: 0.7; }

.product-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-label  { margin-bottom: 12px; }
.product-title  { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.04em; color: var(--white); margin-bottom: 24px; }
.product-desc   { font-size: 1rem; color: rgba(255,255,255,0.55); line-height: 1.9; font-weight: 300; margin-bottom: 36px; }
.product-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.product-point  {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}
.pp-icon {
    width: 24px; height: 24px; flex-shrink: 0;
    background: rgba(79,70,229,0.25);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.pp-icon svg { width: 12px; height: 12px; stroke: var(--sky-light); fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* Product Mockup (right side) */
.product-mockup-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.product-screen {
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.product-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.screen-overlay-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad);
}

/* Floating stat cards on product mockup */
.product-stat-cards {
    position: absolute;
    pointer-events: none;
}
.p-stat-card {
    position: absolute;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
}
.p-stat-card-1 {
    top: -18px; right: -18px;
    background: rgba(12,14,26,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 0.72rem;
}
.p-stat-num { font-size: 1.3rem; font-weight: 900; letter-spacing: -0.04em; }
.p-stat-num.gradient { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.p-stat-label { font-size: 0.62rem; color: rgba(255,255,255,0.45); font-weight: 400; }

/* Product bottom row */
.product-mini-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.product-mini-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pmc-val { font-size: 1.1rem; font-weight: 900; color: white; letter-spacing: -0.03em; }
.pmc-label { font-size: 0.62rem; color: rgba(255,255,255,0.35); font-weight: 400; }

/* ── Features ────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    padding: 32px;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(79,70,229,0.1), 0 1px 0 rgba(255,255,255,0.9) inset;
}

.feature-icon-wrap {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(14,165,233,0.08));
    border: 1px solid rgba(79,70,229,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.feature-icon-wrap svg {
    width: 22px; height: 22px;
    stroke: var(--indigo);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round; stroke-linejoin: round;
}

.feature-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--indigo); margin-bottom: 8px; }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.85; }

/* ── Technology ──────────────────────────────────────────── */
.technology { background: var(--bg-dark); overflow: hidden; }
.technology .orb-indigo { top: 50%; left: -200px; transform: translateY(-50%); }
.technology .orb-sky    { top: 50%; right: -200px; transform: translateY(-50%); }

.tech-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}
.tech-stat {
    background: rgba(12,14,26,0.85);
    backdrop-filter: blur(20px);
    padding: 32px;
    text-align: center;
    transition: background 0.2s var(--ease);
}
.tech-stat:hover { background: rgba(79,70,229,0.1); }
.tech-stat-value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 8px;
}
.tech-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; }

.tech-text .section-tag  { margin-bottom: 20px; }
.tech-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -0.04em; margin-bottom: 20px;
}
.tech-desc { font-size: 0.95rem; color: rgba(255,255,255,0.5); line-height: 1.9; margin-bottom: 32px; }

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tech-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tech-badge:hover { background: rgba(79,70,229,0.15); border-color: rgba(79,70,229,0.3); color: white; }
.tech-badge-dot { width: 6px; height: 6px; background: var(--grad); border-radius: 50%; flex-shrink: 0; }

/* ── Team ────────────────────────────────────────────────── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.team-card {
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(79,70,229,0.1), 0 1px 0 rgba(255,255,255,0.9) inset;
}

.team-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    position: relative;
}
.team-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.avatar-fallback {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}
.team-name    { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.team-role    { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; }
.team-links   { display: flex; justify-content: center; gap: 10px; }
.team-link    { width: 28px; height: 28px; background: rgba(0,0,0,0.04); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.6rem; transition: background 0.2s; }
.team-link:hover { background: rgba(79,70,229,0.1); }
.team-link svg { width: 13px; height: 13px; stroke: var(--text-muted); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Recruitment ─────────────────────────────────────────── */
.recruitment-hero {
    text-align: center;
    margin-bottom: 72px;
}
.recruitment-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text);
    margin-bottom: 20px;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.job-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}
.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(79,70,229,0.1), 0 1px 0 rgba(255,255,255,0.9) inset;
}

.job-dept {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--indigo);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.job-title { font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 12px; letter-spacing: -0.02em; }
.job-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; flex: 1; }
.job-meta  { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.job-meta-item {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.72rem; color: var(--text-muted); font-weight: 500;
}
.job-meta-item::before { content: ''; width: 4px; height: 4px; background: var(--text-muted); border-radius: 50%; }
.job-meta-item:first-child::before { display: none; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.job-tag  { font-size: 0.68rem; font-weight: 600; color: var(--text-muted); background: rgba(0,0,0,0.04); padding: 3px 10px; border-radius: 50px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.benefit-card {
    padding: 28px 24px;
    text-align: center;
}
.benefit-icon  { font-size: 1.8rem; margin-bottom: 12px; }
.benefit-title { font-size: 0.88rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.benefit-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-wrap {
    max-width: 680px;
    margin: 0 auto;
}
.contact-form-card {
    padding: 52px;
}
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.72rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.05em; }
.required { color: var(--indigo); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0,0,0,0.02);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a1a1aa; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 4px rgba(79,70,229,0.1);
    background: white;
}
.form-status {
    font-size: 0.85rem; font-weight: 600;
    padding: 12px 16px; border-radius: 10px; display: none;
}
.form-status.success { display: block; background: #d1fae5; color: #065f46; }
.form-status.error   { display: block; background: #fee2e2; color: #991b1b; }
.btn-submit-full { width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; border-radius: 10px; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); padding: 72px 0 40px; }
.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    align-items: start;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 36px;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 12px; display: inline-block; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: 0.82rem; color: rgba(255,255,255,0.45); font-weight: 400; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ── Mobile Menu ─────────────────────────────────────────── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 190;
    background: rgba(250,250,250,0.97);
    backdrop-filter: blur(24px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu .logo { position: absolute; top: 28px; left: 32px; }
.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 900;
    color: rgba(0,0,0,0.5); letter-spacing: -0.03em;
    transition: color 0.2s; padding: 8px 0;
}
.mobile-nav-link:hover { color: var(--text); }
.mobile-nav-cta { margin-top: 16px; font-size: 0.95rem; }

/* ── Reveal ──────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── Section Spacing ─────────────────────────────────────── */
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .display-title { margin-bottom: 16px; }
.section-header-center .body-lead { margin: 0 auto; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
    :root { --pad-x: 40px; --section-y: 96px; }
    .hero-inner       { grid-template-columns: 1fr; }
    .hero-visual      { display: none; }
    .tech-inner       { grid-template-columns: 1fr; }
    .tech-stats       { grid-template-columns: repeat(4,1fr); }
    .features-grid    { grid-template-columns: repeat(2, 1fr); }
    .team-grid        { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid    { grid-template-columns: repeat(2, 1fr); }
    .product-inner    { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
    :root { --pad-x: 24px; --section-y: 72px; }
    .site-nav, .header-actions { display: none; }
    .menu-toggle { display: flex; }
    .hero-title { font-size: 3.2rem; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; }
    .features-grid  { grid-template-columns: 1fr; }
    .jobs-grid      { grid-template-columns: 1fr; }
    .team-grid      { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid  { grid-template-columns: 1fr; }
    .tech-stats     { grid-template-columns: repeat(2, 1fr); }
    .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
    .form-row       { grid-template-columns: 1fr; }
    .contact-form-card { padding: 32px 24px; }
}

@media (max-width: 480px) {
    :root { --pad-x: 16px; }
    .hero-title { font-size: 2.5rem; }
    .team-grid  { grid-template-columns: 1fr 1fr; }
    .site-header { top: 10px; width: calc(100% - 24px); }
}
