@charset "UTF-8";
@import url("/landing.c0155c86.css");

/* Blog and article layouts inherit the main landing-page design system. */

:root {
  --bg-dark: var(--background);
  --bg-surface: var(--surface);
  --bg-surface-hover: var(--surface-hover);
  --border-subtle: var(--border);
  --border-hover: var(--border-strong);
  --accent-linear: var(--accent);
  --accent-linear-hover: var(--accent-strong);
  --accent-glow: rgba(56, 189, 248, 0.11);
  --accent-green: var(--success);
  --accent-blue: var(--accent);
  --text-main: var(--foreground);
  --text-muted: var(--muted);
  --text-dim: var(--dim);
  --font-body: var(--font-sans);
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --radius-xl: 0;

  --transition-fast: 0.15s ease;
  --max-width: var(--container);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

/* Linear Ambient Light */
.glow-bg {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.glow-radial {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 450px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 75%);
  filter: blur(70px);
}

.grid-line-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--border-subtle) 1px, transparent 1px),
    linear-gradient(to bottom, var(--border-subtle) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 65% 45% at 50% 0%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 65% 45% at 50% 0%, #000 60%, transparent 100%);
  pointer-events: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.linear-headline-gradient {
  background: linear-gradient(180deg, var(--text-main) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container & Section Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Linear Header / Navbar */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-height);
  transition: all var(--transition-fast);
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin-inline: auto;
  padding: 0;
  gap: 34px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
}

.logo-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

.nav-menu {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 4px 8px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--bg-surface-hover);
  color: var(--text-main);
}

.cmd-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  font-family: monospace;
  font-size: 0.725rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cmd-badge:hover {
  background: var(--bg-surface-hover);
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn-primary:hover {
  background: #66ccfa;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-hover);
}

.btn-large {
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 70px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.825rem;
  margin-bottom: 1.75rem;
}

.hero-pill-tag {
  color: var(--accent-linear);
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 600;
  max-width: 880px;
  margin: 0 auto 1.5rem auto;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4.5rem;
}

/* Hero Interface Frame (Linear style) */
.hero-frame {
  max-width: 1060px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-frame-img {
  width: 100%;
  display: block;
}

/* Linear Bento Grid Features */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.bento-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface-hover);
}

.bento-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

.bento-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bento-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.col-8 { grid-column: span 8; }
.col-4 { grid-column: span 4; }
.col-6 { grid-column: span 6; }

@media (max-width: 900px) {
  .col-8, .col-4, .col-6 { grid-column: span 12; }
}

/* Workload Showcase Grid */
.workload-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .workload-grid { grid-template-columns: 1fr; }
}

.workload-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-fast);
}

.workload-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface-hover);
}

.workload-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.workload-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-glow);
  color: var(--accent-linear);
  display: flex;
  align-items: center;
  justify-content: center;
}

.workload-title {
  font-size: 1.2rem;
  font-weight: 600;
}

.workload-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.workload-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-main);
}

.workload-item-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-icon {
  color: var(--accent-green);
  flex-shrink: 0;
}

.note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border: 1px solid var(--accent-blue);
  border-radius: 50%;
  color: var(--accent-blue);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.workload-limit {
  color: var(--text-muted);
}

/* Pilot planning */
.pilot-grid {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 850px) {
  .pilot-grid { grid-template-columns: 1fr; padding: 1.25rem; }
}

.pilot-panel {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pilot-panel h3 {
  font-size: 1.25rem;
}

.pilot-panel p,
.pilot-list {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
}

.pilot-list {
  margin-left: 1.2rem;
}

.pilot-list li + li {
  margin-top: 0.65rem;
}

.pilot-panel-accent {
  border-color: var(--accent-linear);
}

.pilot-panel .pilot-label {
  color: var(--accent-linear);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pilot-panel .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* FAQ Rows */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-row {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.faq-a {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.925rem;
  display: none;
  line-height: 1.6;
}

.faq-row.active .faq-a { display: block; }

/* Command Palette Overlay */
.cmd-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.cmd-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cmd-box {
  width: 100%;
  max-width: 560px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  overflow: hidden;
}

.cmd-head {
  display: flex;
  align-items: center;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  gap: 0.75rem;
}

.cmd-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--text-main);
}

.cmd-list {
  list-style: none;
  padding: 0.5rem;
}

.cmd-item {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: pointer;
}

.cmd-item:hover, .cmd-item.selected {
  background: var(--bg-surface-hover);
  color: var(--text-main);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 34px 0 22px;
  background: #06090d;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 0;
  color: var(--text-dim);
}

.footer-bottom a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(154, 168, 189, 0.4);
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--text-main);
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
}

@media (max-width: 860px) {
  .mobile-toggle { display: flex; }

  .navbar .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 36px), var(--container));
  }

  .navbar .nav-menu {
    position: static;
    display: flex;
    max-height: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    overflow: visible;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar .mobile-toggle + .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: 0;
    left: 0;
    width: 100%;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(7, 10, 15, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  .navbar .mobile-toggle + .nav-menu.active {
    max-height: calc(100vh - var(--nav-height));
    border-bottom-color: var(--border-subtle);
    opacity: 1;
    pointer-events: auto;
  }

  .navbar .mobile-toggle + .nav-menu > li > a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.76rem;
  }

  .nav-right { display: none; }
  .logo { font-size: 0.95rem; }
  .hero { padding-top: 130px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .section { padding: 4.5rem 0; }
  .bento-card, .workload-card { padding: 1.5rem; }
  .article-container { padding-top: 110px; }
  .article-title { overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cmd-overlay { padding: 80px 1rem 0; }
}

@media (max-width: 480px) {
  .navbar { top: 0; width: 100%; }
  .navbar .nav-inner { width: min(calc(100% - 32px), var(--container)); }
  .nav-menu:not(.active) { font-size: 0.75rem; gap: 0.6rem; }
  .nav-menu:not(.active) a { font-size: 0.75rem; }
  .hero-pill { align-items: flex-start; flex-direction: column; border-radius: var(--radius-md); }
  .hero-headline { font-size: 2.35rem; }
  .container { padding: 0 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Blog & Article Subsystem (Linear Design System Alignment)
   ========================================================================== */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 1rem 0 1.25rem 0;
  line-height: 1.1;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.badge {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: rgba(56, 189, 248, 0.07);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.blog-meta {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.blog-title a:hover {
  color: var(--accent-linear);
}

.blog-excerpt {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Article Page Layout */
.article-container {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 100px;
}

.article-header {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 2rem;
}

.article-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin: 1rem 0 1.25rem 0;
}

.article-content {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.8;
}

.article-content p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.article-content a:not(.btn) {
  color: var(--text-main);
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.55);
  text-underline-offset: 3px;
}

.article-content a:not(.btn):hover {
  color: var(--accent);
}

.article-content strong {
  color: var(--text-main);
}

.article-content code {
  padding: 0.12em 0.32em;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.82em;
  overflow-wrap: anywhere;
}

.article-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem 0;
  letter-spacing: -0.03em;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.85rem 0;
  letter-spacing: -0.02em;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.75rem 1.5rem;
  color: var(--text-muted);
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content li::marker {
  color: var(--accent);
}

.article-content blockquote {
  border-left: 3px solid var(--accent-linear);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-surface);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--text-main);
}
