:root {
    --bg-top: #000;
    --bg-mid: #050d1c;
    --bg-bottom: #0a1428;
    --card-fill: rgba(255, 255, 255, 0.04);
    --card-fill-strong: rgba(255, 255, 255, 0.06);
    --card-border: rgba(255, 255, 255, 0.14);
    --card-border-hover: rgba(255, 255, 255, 0.28);
    --text: #fff;
    --text-secondary: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.48);
    --accent: #5ac8fa;
    --accent-deep: #0a84ff;
    --accent-glow: rgba(90, 200, 250, 0.18);
    --accent-warm: #ff9500;
}

/* Subtle ambient glow at top-right of viewport */
body::before {
    content: "";
    position: fixed;
    top: -180px;
    right: -180px;
    width: 540px;
    height: 540px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    pointer-events: none;
    z-index: -1;
}
body::after {
    content: "";
    position: fixed;
    bottom: -240px;
    left: -240px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(10, 132, 255, 0.10), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: linear-gradient(to bottom, var(--bg-top), var(--bg-bottom)) fixed;
    background-color: var(--bg-top);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro", system-ui, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

main { max-width: 1080px; margin: 0 auto; padding: 96px 32px 120px; }

/* Hero */
.hero {
    text-align: center;
    padding: 24px 0 96px;
}
.hero .mark {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    display: block;
    animation: markFadeIn 1.0s ease-out;
}
.hero .brand {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 22px;
    animation: brandFadeIn 0.9s ease-out 0.15s both;
}
.hero .brand .accent {
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero .tagline {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.5;
    animation: brandFadeIn 0.9s ease-out 0.30s both;
}
.hero .pillars {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
    animation: brandFadeIn 0.9s ease-out 0.45s both;
}
.hero .pillars span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    padding: 0 28px;
    border-right: 1px solid var(--card-border);
}
.hero .pillars span:last-child {
    border-right: none;
}

@keyframes markFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes brandFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section */
section.block {
    margin: 96px 0 64px;
}
section.block .label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
    text-align: center;
}
section.block h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    text-align: center;
}
section.block p.section-lede {
    font-size: 19px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
    line-height: 1.55;
}

/* Product grid */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 32px;
}
.product {
    background: var(--card-fill);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 32px 28px;
    transition: border-color 0.2s ease;
}
.product:hover {
    border-color: var(--card-border-hover);
}
.product .stage {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
}
.product h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}
.product .summary {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.55;
}
.product .meta {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
.product a.link {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
}

/* People */
.person {
    background: var(--card-fill);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 36px 32px;
    max-width: 720px;
    margin: 0 auto;
}
.person h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
}
.person .title {
    font-size: 15px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.person p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
}

/* AI section */
.ai-pillar {
    background: var(--card-fill);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 32px 32px;
    margin-top: 24px;
}
.ai-pillar h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}
.ai-pillar p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Contact */
.contact {
    text-align: center;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid var(--card-border);
}
.contact h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.contact p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 16px 48px;
    color: var(--text-muted);
    font-size: 13px;
}
footer p { margin-bottom: 8px; }

@media (max-width: 700px) {
    .hero .brand { font-size: 40px; }
    .hero .tagline { font-size: 18px; }
    section.block h2 { font-size: 30px; }
    section.block p.section-lede { font-size: 17px; }
    main { padding: 64px 20px 80px; }
}
