/* ==========================================================================
   VAIZO Corporate Site  — Design Tokens & Styles
   2026-04-24 v2
   ========================================================================== */

/* Tokens */
:root {
  /* Colors */
  --color-bg-primary: #0a0a0a;       /* Dark sections */
  --color-bg-surface: #ffffff;       /* Light sections */
  --color-bg-subtle: #f5f5f5;        /* Extra light / CTA */
  --color-text-on-dark: #ffffff;
  --color-text-on-light: #0a0a0a;
  --color-text-muted: #666666;
  --color-border: #e5e5e5;
  --color-border-dark: rgba(255,255,255,0.12);

  /* Typography */
  --font-sans: "Inter", "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --font-jp: "Noto Sans JP", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-x-d: 40px;
  --container-x-m: 20px;

  --section-y-d: 160px;
  --section-y-m: 100px;

  --radius: 8px;
  --radius-sm: 6px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-on-light);
  background: var(--color-bg-surface);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, p, dl, dd, ul, ol { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease), opacity var(--duration) var(--ease); }
button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-x-d);
  width: 100%;
}
@media (max-width: 768px) {
  .container { padding: 0 var(--container-x-m); }
}

/* Utilities */
.pc-only { display: inline; }
@media (max-width: 768px) { .pc-only { display: none; } }
.arrow { display: inline-block; margin-left: 2px; transition: transform var(--duration) var(--ease); }
.ext-mark { font-size: 0.85em; opacity: 0.7; }

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--color-text-on-light);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-on-light);
}
.nav a:hover { opacity: 0.6; }
.nav .btn-primary { color: var(--color-text-on-dark); }
.nav .btn-primary:hover { opacity: 1; }
.nav-external { display: inline-flex; align-items: center; gap: 4px; }
.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--color-text-on-light);
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
}
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--container-x-m) 40px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    transition: transform 300ms var(--ease);
  }
  .nav.open { transform: translateY(0); }
  .nav a { font-size: 16px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease),
              transform var(--duration) var(--ease),
              border-color var(--duration) var(--ease);
  white-space: nowrap;
}
.btn:hover .arrow { transform: translateX(2px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* Primary on light bg: black fill */
.btn-primary {
  background: var(--color-text-on-light);
  color: var(--color-text-on-dark);
}
.btn-primary:hover { background: #222; }

/* Primary on dark bg: white fill */
.btn-primary-inverse {
  background: var(--color-text-on-dark);
  color: var(--color-text-on-light);
}
.btn-primary-inverse:hover { background: #e8e8e8; }

/* Ghost on light */
.btn-ghost {
  background: transparent;
  color: var(--color-text-on-light);
  border: 1px solid var(--color-text-on-light);
}
.btn-ghost:hover { background: var(--color-text-on-light); color: var(--color-text-on-dark); }

/* Ghost on dark */
.btn-ghost-light {
  background: transparent;
  color: var(--color-text-on-dark);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.btn-group-center { justify-content: center; }

/* ==========================================================================
   Sections (general)
   ========================================================================== */
.section {
  padding: var(--section-y-d) 0;
  position: relative;
}
@media (max-width: 768px) { .section { padding: var(--section-y-m) 0; } }
.section-light { background: var(--color-bg-surface); color: var(--color-text-on-light); }
.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-on-dark);
  overflow: hidden;
}
.section-dark canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  pointer-events: none;
}
.section-dark .container { position: relative; z-index: 1; }
.section-subtle { background: var(--color-bg-subtle); color: var(--color-text-on-light); }

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}
.section-label-light { color: rgba(255,255,255,0.5); }
.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 16px;
  max-width: 820px;
}
.section-title-light { color: var(--color-text-on-dark); }
.section-lead {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-title { font-size: 28px; }
  .section-lead { margin-bottom: 48px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: var(--color-bg-primary);
  color: var(--color-text-on-dark);
  overflow: hidden;
  padding: 100px 0 160px;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 900px) {
  .hero-title { font-size: 48px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 80px 0 120px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 16px; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: 48px;
  overflow: hidden;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 768px) { .scroll-indicator { display: none; } }

/* ==========================================================================
   Business — 3 cards
   ========================================================================== */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .business-grid { grid-template-columns: 1fr; }
}
.biz-card {
  display: block;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
  height: 100%;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border-color: var(--color-text-on-light);
}
.biz-card-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.biz-card-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.biz-card-tagline {
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-on-light);
  margin-bottom: 16px;
  line-height: 1.5;
}
.biz-card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  flex-grow: 1;
}
.biz-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-on-light);
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--duration) var(--ease);
}
.biz-card:hover .biz-card-link { gap: 8px; }

/* ==========================================================================
   V/AIBOU difference
   ========================================================================== */
.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.difference-copy {
  padding-top: 8px;
}
.difference-copy h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.difference-copy p {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-muted);
  max-width: 640px;
}
.difference-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.difference-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg-surface);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-on-light);
  line-height: 1.5;
}
.proof-list {
  display: grid;
  gap: 0;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.proof-list div {
  padding: 24px;
  border-bottom: 1px solid var(--color-border);
}
.proof-list div:last-child {
  border-bottom: 0;
}
.proof-list dt {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-on-light);
  margin-bottom: 8px;
}
.proof-list dd {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-muted);
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.agent-card {
  min-height: 260px;
  padding: 28px 24px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.agent-card-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.agent-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
}
.agent-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--color-text-muted);
}
.usecase-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.usecase-strip div {
  padding: 28px 24px;
  border-right: 1px solid var(--color-border);
}
.usecase-strip div:last-child {
  border-right: 0;
}
.usecase-number {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.usecase-strip p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text-on-light);
}
@media (max-width: 1024px) {
  .difference-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .agent-grid,
  .usecase-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .usecase-strip div:nth-child(2) {
    border-right: 0;
  }
  .usecase-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }
}
@media (max-width: 600px) {
  .difference-copy h3 {
    font-size: 22px;
  }
  .difference-copy p {
    font-size: 15px;
  }
  .proof-list div {
    padding: 22px 20px;
  }
  .agent-grid,
  .usecase-strip {
    grid-template-columns: 1fr;
  }
  .agent-card {
    min-height: auto;
    padding: 24px 20px;
  }
  .usecase-strip div,
  .usecase-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }
  .usecase-strip div:last-child {
    border-bottom: 0;
  }
}

/* ==========================================================================
   Why VAIZO
   ========================================================================== */
.why-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.why-inner .section-title { margin: 0 auto 80px; }

.cycle-figure {
  margin: 0 auto 120px;
  max-width: 800px;
}
.cycle-svg { width: 100%; height: auto; }
.cycle-node circle {
  fill: rgba(255,255,255,0.04);
  stroke: rgba(255,255,255,0.4);
  stroke-width: 1;
  transition: fill 400ms var(--ease);
}
.cycle-node:hover circle { fill: rgba(255,255,255,0.1); }
.cycle-node text {
  fill: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-sans);
}
.cycle-node .cycle-node-sub {
  font-size: 12px;
  font-weight: 400;
  fill: rgba(255,255,255,0.6);
}
.cycle-center {
  fill: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cycle-caption {
  margin-top: 40px;
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
}
.cycle-caption-em {
  color: var(--color-text-on-dark);
  font-weight: 500;
}

.why-statement { max-width: 720px; margin: 0 auto; }
.why-statement-headline {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--color-text-on-dark);
}
.why-statement-body {
  font-size: 17px;
  line-height: 2;
  color: rgba(255,255,255,0.75);
}
@media (max-width: 768px) {
  .cycle-figure { margin-bottom: 80px; }
  .why-statement-headline { font-size: 22px; }
  .why-statement-body { font-size: 15px; }
}

/* ==========================================================================
   Company at a glance
   ========================================================================== */
.company-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .company-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.company-item {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}
.company-item dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.company-item dd {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-on-light);
}
.company-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
  display: inline-block;
  margin-top: 4px;
}
.role-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  padding: 2px 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: 0.1em;
  font-family: var(--font-sans);
}
.company-cta { text-align: left; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap var(--duration) var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ==========================================================================
   Closing CTA
   ========================================================================== */
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-mission {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  color: var(--color-text-on-light);
}
.closing-sub {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .closing-mission { font-size: 22px; }
  .closing-sub { font-size: 15px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--color-bg-primary);
  color: var(--color-text-on-dark);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-mission {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.5);
  max-width: 360px;
}
.footer-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-dark);
  font-size: 12px;
}
.footer-copy { color: rgba(255,255,255,0.4); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  border: 1px solid var(--color-border-dark);
  border-radius: 50%;
  transition: color var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.footer-social a:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ==========================================================================
   Page Hero (lower pages)
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.page-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.page-hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--color-text-on-dark);
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 768px) {
  .page-hero { padding: 80px 0 60px; }
  .page-hero-title { font-size: 32px; }
  .page-hero-sub { font-size: 15px; }
}

/* Narrow container for long-form content */
.about-narrow { max-width: 720px; margin: 0 auto; }

.about-body {
  font-size: 17px;
  line-height: 2;
  color: var(--color-text-on-light);
  margin-bottom: 28px;
}
.mission-statement {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: -0.005em;
  margin: 40px 0 48px;
  color: var(--color-text-on-light);
}
@media (max-width: 768px) {
  .about-body { font-size: 16px; }
  .mission-statement { font-size: 20px; }
}

.about-signature {
  margin-top: 48px;
  font-size: 17px;
  font-weight: 600;
}
.about-signature span {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 14px;
}

/* ==========================================================================
   Business detail page
   ========================================================================== */
.biz-detail .section-title { margin-bottom: 8px; }
.biz-detail-tagline {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}
.biz-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .biz-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}
.biz-detail-body p { font-size: 17px; line-height: 2; margin-bottom: 28px; }
.biz-detail-list {
  margin: 0 0 40px;
  padding-left: 0;
  list-style: none;
}
.biz-detail-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  line-height: 1.7;
}
.biz-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 1px;
  background: var(--color-text-on-light);
}
.biz-detail-aside {
  padding: 32px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius);
  position: sticky;
  top: 96px;
}
.section-subtle .biz-detail-aside { background: var(--color-bg-surface); }
.aside-list dt {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.aside-list dd {
  margin: 0 0 20px;
  font-size: 15px;
  font-weight: 500;
}
.aside-list dd:last-child { margin-bottom: 0; }

/* ==========================================================================
   Values grid
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}
.value-item {
  padding: 32px 24px;
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.section-light .value-item { background: var(--color-bg-subtle); border-color: transparent; }
.value-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  font-family: var(--font-sans);
}
.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-item p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-text-muted);
}

/* ==========================================================================
   Company table / Legal doc
   ========================================================================== */
.company-table { margin: 40px 0; }
.company-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}
.company-row dt {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}
.company-row dd {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 700px) {
  .company-row { grid-template-columns: 1fr; gap: 4px; }
}

.legal-doc h1 { margin-bottom: 48px; }
.legal-doc h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 40px 0 12px;
}
.legal-doc p, .legal-doc ul {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-on-light);
  margin-bottom: 16px;
}
.legal-doc ul { padding-left: 1.5em; list-style: disc; }
.legal-doc li { margin-bottom: 6px; }
.legal-meta {
  margin-top: 48px;
  font-size: 13px;
  color: var(--color-text-muted);
  text-align: right;
}

/* ==========================================================================
   News list
   ========================================================================== */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.news-item:first-child { padding-top: 0; }
.news-date {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-right: 16px;
  font-family: var(--font-sans);
}
.news-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-on-light);
  padding: 2px 8px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  margin-bottom: 12px;
  vertical-align: middle;
}
.news-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
.news-excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

/* ==========================================================================
   Contact grid
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  display: block;
  padding: 28px 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--color-text-on-light);
}
.contact-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 16px; }

/* ==========================================================================
   Contact Form
   ========================================================================== */
.form-narrow { max-width: 720px; margin: 0 auto; }
.contact-form { margin-top: 48px; }
.form-row { margin-bottom: 28px; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 0;
}
.form-grid-2 > .form-row { margin-bottom: 28px; }
@media (max-width: 700px) {
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-on-light);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.required {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c0392b;
  margin-left: 6px;
  vertical-align: 0.1em;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-on-light);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-text-on-light);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
}
select.form-control {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23666' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 44px;
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-consent { padding-top: 8px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-on-light);
  cursor: pointer;
  line-height: 1.7;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-text-on-light);
  flex-shrink: 0;
}
.checkbox-label a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-submit {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.form-fallback {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}
.form-fallback a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   Footer brand (left column wrapper)
   ========================================================================== */
.footer-brand { /* layout container, sized by parent grid */ }

/* ==========================================================================
   Local concept: VAIZO HORIZON / warp tunnel homepage
   ========================================================================== */
.warp-home {
  --warp-bg: #050608;
  --warp-panel: rgba(12, 14, 22, 0.86);
  --warp-panel-solid: #0c0e16;
  --warp-line: rgba(146, 160, 190, 0.22);
  --warp-line-strong: rgba(255, 255, 255, 0.42);
  --warp-text: #f7f7fb;
  --warp-muted: rgba(226, 229, 240, 0.68);
  --warp-dim: rgba(226, 229, 240, 0.48);
  --warp-amber: #d99a38;
  --warp-cyan: #7bd6ff;
  --warp-violet: #a783ff;
  background: var(--warp-bg);
  color: var(--warp-text);
}

.warp-home > header,
.warp-home > section,
.warp-home > footer {
  position: relative;
  z-index: 1;
}

.warp-home::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 32%, rgba(123, 214, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #07080c 0%, #11101a 42%, #050608 100%);
}

.warp-home::after,
.warp-scanlines {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: screen;
  opacity: 0.34;
}

.warp-scanlines {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}

.warp-home .header {
  background: rgba(5, 6, 8, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: var(--warp-text);
  z-index: 100;
}

.warp-home .logo,
.warp-home .nav a {
  color: var(--warp-text);
}

.warp-home .menu-toggle span {
  background: var(--warp-text);
}

.warp-home .nav .btn-primary {
  background: var(--warp-amber);
  color: #090806;
}

.warp-home .hero {
  min-height: calc(100svh - 72px);
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.12), rgba(5, 6, 8, 0.92)),
    var(--warp-bg);
  isolation: isolate;
}

.warp-home #hero-canvas {
  opacity: 0.72;
  filter: contrast(1.1) saturate(1.05);
}

.warp-home .hero::before,
.warp-home .hero::after {
  content: "";
  position: absolute;
  inset: 8% -8% auto;
  height: 72%;
  z-index: 1;
  pointer-events: none;
}

.warp-home .hero::before {
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(123, 214, 255, 0.08) 12.2% 12.4%, transparent 12.6% 100%),
    linear-gradient(90deg, transparent 0 84%, rgba(217, 154, 56, 0.12) 84.2% 84.5%, transparent 84.8% 100%);
  opacity: 0.9;
}

.warp-home .hero::after {
  inset: auto -10% 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 8, 0.86));
}

.warp-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  border: 1px solid rgba(180, 190, 220, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.warp-orbit-outer {
  width: min(118vw, 1320px);
  aspect-ratio: 1;
  border-color: rgba(217, 154, 56, 0.34);
  animation: warpRotate 46s linear infinite;
}

.warp-orbit-mid {
  width: min(72vw, 760px);
  aspect-ratio: 1;
  border-color: rgba(123, 214, 255, 0.2);
  animation: warpRotate 32s linear infinite reverse;
}

.warp-orbit-inner {
  width: min(42vw, 440px);
  aspect-ratio: 1;
  border-color: rgba(167, 131, 255, 0.26);
  animation: warpPulse 4.8s ease-in-out infinite;
}

.warp-singularity {
  position: absolute;
  left: 64%;
  top: 54%;
  z-index: 1;
  width: clamp(120px, 18vw, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #020204;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(217, 154, 56, 0.08),
    0 0 80px rgba(167, 131, 255, 0.28);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.warp-streak {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 2;
  width: min(84vw, 880px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), var(--warp-amber), transparent);
  transform: translate(-50%, -50%) rotate(-18deg);
  filter: drop-shadow(0 0 14px rgba(217, 154, 56, 0.5));
  opacity: 0.76;
  pointer-events: none;
}

.warp-hud {
  position: absolute;
  top: 40px;
  left: max(28px, calc((100vw - var(--container-max)) / 2 + 40px));
  right: max(28px, calc((100vw - var(--container-max)) / 2 + 40px));
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  pointer-events: none;
}

.warp-hud-brand {
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}

.warp-hud-brand span {
  margin-left: 0.38em;
  color: var(--warp-amber);
}

.warp-hud-metrics {
  display: grid;
  gap: 6px;
  text-align: right;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0.12em;
}

.warp-hud-metrics div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 14px;
  align-items: baseline;
}

.warp-hud-metrics dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.warp-hud-metrics dd {
  color: var(--warp-text);
  font-size: 13px;
}

.warp-progress {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 24px;
  transform: translateY(-50%);
}

.warp-progress::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.warp-progress a {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(5, 6, 8, 0.82);
  color: transparent;
}

.warp-progress a span {
  position: absolute;
  right: 32px;
  color: rgba(255, 255, 255, 0);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  transition: color 180ms var(--ease);
}

.warp-progress a.active {
  border-color: var(--warp-amber);
  background: var(--warp-amber);
  box-shadow: 0 0 18px rgba(217, 154, 56, 0.5);
}

.warp-progress a.active span,
.warp-progress a:hover span {
  color: rgba(255, 255, 255, 0.84);
}

.warp-home .hero-inner {
  z-index: 4;
  max-width: 840px;
  padding-top: 86px;
}

.hero-kicker {
  margin-bottom: 26px;
  color: var(--warp-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.28em;
}

.warp-home .hero-title {
  max-width: 760px;
  color: var(--warp-text);
  text-shadow: 0 0 28px rgba(123, 214, 255, 0.14);
}

.warp-home .hero-sub {
  max-width: 560px;
  color: var(--warp-muted);
}

.warp-mission-panel {
  width: min(100%, 560px);
  margin-top: 34px;
  padding: 22px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--warp-violet);
  background: linear-gradient(180deg, rgba(16, 18, 30, 0.86), rgba(8, 9, 14, 0.78));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.warp-panel-label {
  margin-bottom: 8px;
  color: var(--warp-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.24em;
}

.warp-mission-panel strong {
  display: block;
  color: var(--warp-text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.warp-mission-panel span {
  display: block;
  margin-top: 8px;
  color: var(--warp-muted);
  font-size: 14px;
  line-height: 1.7;
}

.warp-home .section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.warp-home .section-light,
.warp-home .section-subtle {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.94), rgba(12, 13, 20, 0.96)),
    var(--warp-bg);
  color: var(--warp-text);
}

.warp-home .section-dark {
  background:
    linear-gradient(180deg, rgba(8, 9, 15, 0.94), rgba(5, 6, 8, 0.98)),
    var(--warp-bg);
}

.warp-home .section-label {
  color: var(--warp-amber);
}

.warp-home .section-title,
.warp-home .section-title-light {
  color: var(--warp-text);
}

.warp-home .section-lead,
.warp-home .difference-copy p,
.warp-home .biz-card-desc,
.warp-home .proof-list dd,
.warp-home .agent-card p,
.warp-home .usecase-strip p,
.warp-home .company-item dt,
.warp-home .company-sub,
.warp-home .closing-sub {
  color: var(--warp-muted);
}

.warp-home .business-grid {
  gap: 18px;
}

.warp-home .biz-card,
.warp-home .agent-card,
.warp-home .proof-list div,
.warp-home .company-item,
.warp-home .usecase-strip div {
  position: relative;
  overflow: hidden;
  background: var(--warp-panel);
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--warp-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.warp-home .biz-card::before,
.warp-home .agent-card::before,
.warp-home .proof-list div::before,
.warp-home .company-item::before,
.warp-home .usecase-strip div::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(123, 214, 255, 0.16), transparent 18%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 7px);
  opacity: 0.24;
}

.warp-home .biz-card:hover {
  border-color: rgba(217, 154, 56, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(217, 154, 56, 0.16);
}

.warp-home .biz-card-title,
.warp-home .biz-card-tagline,
.warp-home .biz-card-link,
.warp-home .difference-copy h3,
.warp-home .proof-list dt,
.warp-home .agent-card h3,
.warp-home .company-item dd,
.warp-home .closing-mission {
  color: var(--warp-text);
}

.warp-home .biz-card-link {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.warp-home .difference-tags span {
  color: var(--warp-text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.warp-home .cycle-figure {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at center, rgba(123, 214, 255, 0.1), transparent 44%),
    var(--warp-panel-solid);
}

.warp-home .company-grid {
  border-color: rgba(255, 255, 255, 0.1);
}

.warp-home .company-cta .link-arrow,
.warp-home .footer-links a:hover {
  color: var(--warp-amber);
}

.warp-home .btn-primary {
  background: var(--warp-amber);
  color: #090806;
}

.warp-home .btn-ghost,
.warp-home .btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--warp-text);
}

.warp-home .btn-ghost:hover,
.warp-home .btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--warp-text);
}

.warp-home .footer {
  background: #050608;
  border-top-color: rgba(255, 255, 255, 0.1);
}

@supports selector(html:has(body.warp-home)) {
  html:has(body.warp-home) {
    scroll-padding-top: 72px;
    scroll-snap-type: y proximity;
  }
}

body.warp-home {
  --flight-progress: 0;
  --warp-intensity: 0;
  scroll-snap-type: y proximity;
}

.flight-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 900px;
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 214, 255, 0.08), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(217, 154, 56, 0.08), transparent 20%),
    #050608;
}

.flight-stage::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(123, 214, 255, 0.16) 18deg, transparent 42deg, rgba(217, 154, 56, 0.12) 78deg, transparent 118deg, transparent 360deg);
  opacity: 0.16;
  transform: rotate(calc(var(--flight-progress) * 220deg)) scale(calc(1 + var(--warp-intensity) * 0.22));
}

.flight-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 9%, rgba(255, 255, 255, 0.18) 10%, transparent 12%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 24%);
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 180ms linear, transform 520ms cubic-bezier(0.17, 0.67, 0.21, 1);
}

.warp-home.is-warping .flight-stage::after {
  opacity: 0.42;
  transform: scale(2.4);
}

.flight-starfield,
.flight-grid {
  position: absolute;
  inset: 0;
}

.flight-starfield {
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 82%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 30%, rgba(255, 255, 255, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 64%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px);
  opacity: 0.7;
  transform: translate3d(0, 0, 0) scale(calc(1 + var(--warp-intensity) * 0.34));
}

.flight-grid {
  left: 50%;
  top: 50%;
  width: 110vmax;
  height: 110vmax;
  border: 1px solid rgba(123, 214, 255, 0.08);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 8%, rgba(255, 255, 255, 0.08) 8.1% 8.2%, transparent 8.3% 16%),
    repeating-conic-gradient(from 20deg, rgba(255, 255, 255, 0.08) 0deg 0.4deg, transparent 0.6deg 18deg);
  opacity: 0.3;
  transform: translate(-50%, -50%) rotate(calc(var(--flight-progress) * 130deg)) scale(calc(1 + var(--warp-intensity) * 0.28));
}

.flight-comet {
  position: absolute;
  left: 0;
  top: 0;
  width: min(56vw, 620px);
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.84), rgba(217, 154, 56, 0.86), transparent);
  filter: drop-shadow(0 0 16px rgba(217, 154, 56, 0.52));
  opacity: 0.8;
  transform: translate3d(-20vw, 78vh, 0) rotate(-16deg);
}

.flight-speedlines {
  position: absolute;
  inset: -10%;
  opacity: 0.2;
  transform: scale(calc(0.94 + var(--warp-intensity) * 0.5));
  background:
    repeating-conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg 7deg,
      rgba(255, 255, 255, 0.32) 7.2deg 7.55deg,
      transparent 7.8deg 14deg
    );
  mask-image: radial-gradient(circle at 50% 50%, transparent 0 10%, #000 13%, #000 54%, transparent 72%);
}

.warp-home.is-warping .flight-speedlines {
  opacity: 0.78;
  animation: povSpeedPulse 650ms cubic-bezier(0.17, 0.67, 0.2, 1);
}

.flight-reticle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(calc(0.86 + var(--warp-intensity) * 0.24));
}

.flight-reticle::before,
.flight-reticle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
}

.flight-reticle::before {
  width: 1px;
  height: 122%;
}

.flight-reticle::after {
  width: 122%;
  height: 1px;
}

.flight-planet {
  --planet-a: #5a6b89;
  --planet-b: #10141d;
  --planet-glow: rgba(123, 214, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(118px, 18vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(50vw, 50vh, 0) translate(-50%, -50%) scale(0.2);
  transform-origin: center;
  transition: opacity 140ms linear, filter 140ms linear;
  will-change: transform, opacity, filter;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.72), transparent 0 10%, transparent 22%),
    radial-gradient(circle at 65% 70%, rgba(0, 0, 0, 0.42), transparent 46%),
    linear-gradient(135deg, var(--planet-a), var(--planet-b));
  box-shadow:
    inset -22px -28px 46px rgba(0, 0, 0, 0.54),
    0 0 42px var(--planet-glow);
}

.flight-planet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 142%;
  height: 36%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.flight-planet::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 26% 58%, rgba(255, 255, 255, 0.16), transparent 0 12%, transparent 24%),
    radial-gradient(circle at 64% 34%, rgba(255, 255, 255, 0.12), transparent 0 10%, transparent 22%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.flight-planet span {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 56%, var(--planet-glow) 58%, transparent 70%);
  opacity: 0.56;
}

.flight-planet.active {
  opacity: 1;
  filter: saturate(1.12) contrast(1.05);
}

.warp-home.is-warping .flight-planet.active {
  box-shadow:
    inset -22px -28px 46px rgba(0, 0, 0, 0.54),
    0 0 78px var(--planet-glow);
}

.flight-planet-origin {
  --planet-a: #28364f;
  --planet-b: #080b14;
  --planet-glow: rgba(123, 214, 255, 0.34);
}

.flight-planet-business {
  --planet-a: #d99a38;
  --planet-b: #2d1908;
  --planet-glow: rgba(217, 154, 56, 0.42);
}

.flight-planet-vaibou {
  --planet-a: #7bd6ff;
  --planet-b: #102f4b;
  --planet-glow: rgba(123, 214, 255, 0.5);
}

.flight-planet-cycle {
  --planet-a: #a783ff;
  --planet-b: #20133c;
  --planet-glow: rgba(167, 131, 255, 0.48);
}

.flight-planet-base {
  --planet-a: #f2f4f8;
  --planet-b: #3c4658;
  --planet-glow: rgba(255, 255, 255, 0.32);
}

.flight-planet-contact {
  --planet-a: #f2b95d;
  --planet-b: #4f2115;
  --planet-glow: rgba(242, 185, 93, 0.56);
}

.warp-home .hero,
.warp-home > section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: opacity 360ms ease, transform 520ms cubic-bezier(0.17, 0.67, 0.21, 1), filter 360ms ease;
}

.warp-home.is-warping > section {
  filter: blur(1.8px);
  opacity: 0.72;
  transform: scale(0.985);
}

.warp-home.is-warping > section.is-active-flight {
  filter: blur(0);
  opacity: 1;
  transform: scale(1);
}

.warp-home > section {
  min-height: calc(100svh - 72px);
}

.warp-home .section {
  display: flex;
  align-items: center;
}

.warp-home .section > .container {
  position: relative;
  z-index: 2;
}

.warp-home .section-light,
.warp-home .section-subtle {
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.78), rgba(5, 6, 8, 0.9));
}

.warp-home .section-dark {
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.72), rgba(5, 6, 8, 0.92));
}

.contact-dock-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  text-align: left;
}

.warp-home .contact-dock {
  min-height: calc(100svh + 340px);
  align-items: flex-start;
  padding-top: clamp(112px, 14vh, 156px);
  padding-bottom: 220px;
}

.contact-dock-copy .section-label {
  margin-bottom: 18px;
}

.contact-console {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--warp-amber);
  background: linear-gradient(180deg, rgba(13, 15, 23, 0.88), rgba(5, 6, 8, 0.82));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.contact-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(217, 154, 56, 0.12), transparent 28%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 7px);
}

.contact-console-top,
.contact-console-list,
.contact-console-actions {
  position: relative;
  z-index: 1;
}

.contact-console-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--warp-dim);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.contact-console-list {
  display: grid;
  gap: 18px;
}

.contact-console-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-console-list dt {
  margin-bottom: 8px;
  color: var(--warp-amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-console-list dd {
  color: var(--warp-muted);
  font-size: 15px;
  line-height: 1.8;
}

.contact-console-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

@keyframes warpRotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes warpPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.72; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.38; }
}

@keyframes povSpeedPulse {
  0% {
    transform: scale(0.8) rotate(0deg);
    opacity: 0.18;
  }
  38% {
    transform: scale(1.55) rotate(10deg);
    opacity: 0.88;
  }
  100% {
    transform: scale(2.05) rotate(18deg);
    opacity: 0.08;
  }
}

@media (max-width: 900px) {
  .warp-hud {
    top: 28px;
    display: block;
  }
  .warp-hud-metrics {
    display: none;
  }
  .warp-progress {
    display: none;
  }
  .warp-home .nav {
    background: rgba(5, 6, 8, 0.98);
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }
  .contact-dock-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .warp-home .hero {
    min-height: 100svh;
    padding: 96px 0 96px;
  }
  .warp-home .hero-inner {
    padding-top: 64px;
  }
  .hero-kicker {
    letter-spacing: 0.16em;
  }
  .warp-singularity {
    left: 68%;
    top: 62%;
    width: 150px;
  }
  .warp-streak {
    top: 62%;
    width: 92vw;
  }
  .warp-orbit-outer {
    width: 132vw;
  }
  .warp-orbit-mid {
    width: 92vw;
  }
  .warp-orbit-inner {
    width: 58vw;
  }
  .warp-mission-panel {
    padding: 18px;
  }
  .warp-home > section {
    min-height: 100svh;
  }
  .warp-home .section {
    align-items: flex-start;
    padding-top: 92px;
    padding-bottom: 92px;
  }
  .flight-planet {
    width: clamp(86px, 34vw, 170px);
  }
  .flight-grid {
    width: 150vmax;
    height: 150vmax;
    opacity: 0.22;
  }
  .flight-reticle {
    width: 72vw;
  }
  .flight-speedlines {
    inset: -24%;
  }
  .contact-console-top {
    flex-direction: column;
    gap: 6px;
  }
  .contact-console-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .warp-home .contact-dock {
    min-height: calc(100svh + 220px);
    padding-top: 96px;
    padding-bottom: 160px;
  }
}

/* ==========================================================================
   Position list (Careers page)
   ========================================================================== */
.position-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.position-item {
  padding: 32px;
  background: var(--color-bg-subtle);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.position-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.position-item p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   Founders (About page)
   ========================================================================== */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .founders-grid { grid-template-columns: 1fr; gap: 72px; }
}
.founder-card { display: flex; flex-direction: column; }
.founder-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 28px;
  background: var(--color-bg-subtle);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
  transition: transform 600ms var(--ease);
}
.founder-card:hover .founder-photo img { transform: scale(1.02); }
.founder-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.founder-name {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
}
.founder-name-en {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-left: 10px;
  letter-spacing: 0.04em;
  vertical-align: 0.15em;
}
.founder-bio {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text-on-light);
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
:focus-visible {
  outline: 2px solid #4a90e2;
  outline-offset: 4px;
}
.section-dark :focus-visible { outline-color: #ffffff; }
