@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

.w-webflow-badge {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

:root {
  --bg: #f5f8f7;
  --bg-soft: #edf3f2;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --panel-muted: rgba(11, 98, 108, 0.05);
  --line: rgba(20, 78, 89, 0.12);
  --line-strong: rgba(8, 170, 150, 0.24);
  --text: #13262d;
  --text-soft: rgba(19, 38, 45, 0.76);
  --text-muted: rgba(19, 38, 45, 0.46);
  --accent: #10baa3;
  --accent-2: #4aa7f2;
  --accent-soft: rgba(16, 186, 163, 0.1);
  --shadow-lg: 0 24px 56px rgba(34, 74, 84, 0.08);
  --shadow-md: 0 14px 34px rgba(34, 74, 84, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(16, 186, 163, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 14%, rgba(74, 167, 242, 0.08), transparent 20rem),
    linear-gradient(180deg, #fbfdfd 0%, #f4f8f8 36%, #eef4f3 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

code {
  padding: 0.16rem 0.38rem;
  border: 1px solid rgba(20, 78, 89, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.9em;
}

.hidden {
  display: none !important;
}

.anchor-mark {
  position: relative;
  top: -96px;
}

.site-shell {
  position: relative;
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
  padding: 18px 0 58px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site-brand img {
  width: 44px;
  height: 44px;
}

.site-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-brand-subtitle {
  color: var(--text-muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(16, 186, 163, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.site-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.menu-toggle-line {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle-line::before,
.menu-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle-line::before {
  top: -6px;
}

.menu-toggle-line::after {
  top: 6px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #6de9d7 100%);
  color: #082126;
  box-shadow: 0 10px 24px rgba(16, 186, 163, 0.18);
}

.button-secondary {
  border-color: rgba(20, 78, 89, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
}

.button-tertiary {
  border-color: rgba(20, 78, 89, 0.12);
  background: transparent;
  color: var(--text-soft);
}

.button.small {
  min-height: 42px;
  padding-inline: 15px;
  font-size: 0.82rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 13px;
  border: 1px solid rgba(16, 186, 163, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #8ef4ff 100%);
  box-shadow: 0 0 16px rgba(56, 240, 209, 0.68);
}

.section {
  position: relative;
  margin-top: 30px;
  padding: 34px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.section + .section {
  border-top: 1px solid rgba(137, 178, 189, 0.12);
}

.section::after {
  display: none;
}

.section-copy {
  max-width: 640px;
}

.section-copy h2,
.page-hero-copy h1,
.policy-head h1 {
  margin: 16px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.section-copy p,
.page-hero-copy p,
.tile-caption,
.compact-copy,
.policy-note,
.footer-brand p,
.mini-copy,
.download-note,
.page-status,
.research-summary,
.research-body p,
.timeline-item p,
.policy-article p,
.policy-article li {
  color: var(--text-soft);
  line-height: 1.7;
}

.chip-row,
.meta-row,
.tile-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.meta-chip,
.mini-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(20, 78, 89, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-shell {
  display: grid;
  gap: 28px;
  justify-items: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: none;
  margin: 18px auto 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.hero-copy h1 em {
  color: #0ea895;
  font-style: normal;
}

.hero-copy .compact-copy {
  max-width: 34rem;
  margin: 18px auto 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1120px;
  min-height: 0;
  padding-top: 10px;
}

.hero-copy .chip-row {
  justify-content: center;
}

.pc-scene {
  position: relative;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.pc-frame {
  position: relative;
  padding: 18px 18px 26px;
  border: 1px solid rgba(12, 33, 43, 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, #111b26 0%, #0b1219 100%);
  box-shadow: 0 30px 70px rgba(24, 64, 78, 0.22);
}

.pc-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 8px 16px;
}

.pc-dots {
  display: inline-flex;
  gap: 8px;
}

.pc-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(239, 251, 253, 0.22);
}

.pc-address {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(239, 251, 253, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

.pc-screen {
  position: relative;
  overflow: hidden;
  padding: 28px 28px 24px;
  border-radius: 28px;
  border: 1px solid rgba(178, 208, 210, 0.8);
  background: linear-gradient(180deg, #f8fbfb 0%, #eef6f4 100%);
}

.pc-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(16, 186, 163, 0.14), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(74, 167, 242, 0.12), transparent 28%);
  pointer-events: none;
}

.pc-screen-search {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.pc-screen .search-track {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 186, 163, 0.34);
  box-shadow: 0 16px 34px rgba(16, 186, 163, 0.12);
}

.pc-screen .search-line {
  background: rgba(16, 186, 163, 0.16);
}

.pc-screen .mode-chip {
  background: rgba(10, 22, 28, 0.94);
  color: #eefbfd;
}

.screen-widget-card {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid rgba(93, 126, 134, 0.18);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 23, 29, 0.97), rgba(8, 15, 19, 0.99));
  box-shadow: 0 28px 56px rgba(6, 18, 23, 0.18);
}

.screen-dock {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  margin: 20px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(93, 126, 134, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 23, 29, 0.97), rgba(8, 15, 19, 0.99));
  box-shadow: 0 24px 50px rgba(6, 18, 23, 0.16);
}

.pc-stand {
  width: 160px;
  height: 32px;
  margin: 0 auto;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, #b9c8d2 0%, #8ba0ad 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.pc-base {
  width: 360px;
  height: 22px;
  margin: 6px auto 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(139, 160, 173, 0.6) 0%, rgba(139, 160, 173, 0.18) 48%, transparent 76%);
}

.stage-glow {
  position: absolute;
  inset: 10% auto auto 14%;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 186, 163, 0.12), transparent 70%);
  filter: blur(10px);
}

.stage-glow.is-blue {
  inset: auto 4% 0 auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(74, 167, 242, 0.12), transparent 72%);
}

.top-search,
.app-frame,
.widget-dock,
.feature-visual {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 23, 29, 0.94), rgba(8, 15, 19, 0.96));
  box-shadow: 0 20px 42px rgba(6, 18, 23, 0.18);
}

.page-card,
.feed-card,
.timeline-item,
.policy-card,
.download-card,
.price-card {
  border: 1px solid rgba(20, 78, 89, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.top-search {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 590px);
  padding: 14px;
  border-radius: 24px;
}

.search-track {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border: 2px solid rgba(56, 240, 209, 0.66);
  border-radius: 999px;
  background: rgba(4, 18, 20, 0.92);
  box-shadow: inset 0 0 0 1px rgba(56, 240, 209, 0.08);
}

.search-lines {
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
}

.search-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(56, 240, 209, 0.14);
}

.search-line.is-wide {
  width: 74%;
}

.search-line.is-short {
  width: 42%;
}

.mode-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(9, 26, 30, 0.94);
  color: var(--text);
  font-weight: 700;
}

.mode-chip::before {
  content: "↺";
  color: var(--accent);
}

.app-frame {
  position: absolute;
  top: 112px;
  left: 0;
  right: 78px;
  padding: 22px;
  border-radius: 30px;
}

.frame-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.frame-tab,
.signal {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(137, 178, 189, 0.16);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame-tab.is-accent,
.signal {
  border-color: rgba(56, 240, 209, 0.24);
  background: rgba(56, 240, 209, 0.12);
  color: #c8fff7;
}

.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(137, 178, 189, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.status-copy {
  display: grid;
  gap: 9px;
  flex: 1 1 auto;
  max-width: 260px;
}

.frame-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.72fr);
  gap: 16px;
}

.panel,
.floating-panel {
  padding: 18px;
  border: 1px solid rgba(137, 178, 189, 0.14);
  border-radius: 24px;
  background: rgba(6, 14, 17, 0.86);
}

.panel h3,
.page-card h3,
.feed-card h3,
.price-card h3,
.download-card h3,
.tile-head h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.chat-bubble,
.code-board,
.task-stack,
.mini-stream {
  padding: 16px;
  border: 1px solid rgba(137, 178, 189, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.chat-bubble {
  color: var(--text);
  line-height: 1.58;
}

.chat-bubble.is-ghost {
  display: grid;
  gap: 10px;
}

.chat-bubble.is-user {
  width: fit-content;
  max-width: 72%;
  margin: 14px 0 0 auto;
  background: rgba(56, 240, 209, 0.18);
}

.chat-bubble.is-compact {
  min-width: 132px;
}

.compose-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(137, 178, 189, 0.14);
  border-radius: 22px;
  background: rgba(2, 11, 14, 0.76);
}

.input-ghost {
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
}

.send-orb {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #7fffe4 100%);
  color: #041014;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.send-orb::before {
  content: "↗";
}

.signal-copy {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.ghost-line,
.dock-input-line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ghost-line.is-accent,
.dock-input-line.is-accent {
  background: rgba(56, 240, 209, 0.28);
}

.ghost-line.is-wide,
.dock-input-line.is-wide {
  width: 86%;
}

.ghost-line.is-mid,
.dock-input-line.is-mid {
  width: 64%;
}

.ghost-line.is-short,
.dock-input-line.is-short {
  width: 42%;
}

.code-board {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.code-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.code-line.is-accent {
  background: rgba(56, 240, 209, 0.3);
}

.code-line.is-short {
  width: 58%;
}

.code-line.is-mid {
  width: 78%;
}

.widget-dock {
  position: absolute;
  right: 0;
  bottom: 14px;
  width: min(100%, 630px);
  padding: 10px 12px;
  border-radius: 28px;
}

.dock-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dock-orb {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(149, 88, 255, 0.4), rgba(53, 98, 255, 0.3));
  border: 1px solid rgba(146, 178, 224, 0.18);
  box-shadow: inset 0 0 18px rgba(93, 57, 255, 0.42);
}

.dock-pill {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(137, 178, 189, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.dock-pill.is-active {
  background: #f5fffd;
  color: #041014;
}

.dock-pill.is-grow {
  flex: 1 1 auto;
  justify-content: space-between;
  color: #d5fff5;
  background: rgba(21, 169, 149, 0.14);
  border-color: rgba(56, 240, 209, 0.22);
}

.dock-input {
  display: grid;
  gap: 7px;
  min-width: 148px;
  flex: 1 1 auto;
}

.dock-input-line {
  height: 8px;
}

.dock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  width: 18px;
  height: 18px;
}

.dock-grid span {
  border: 1.5px solid currentColor;
  border-radius: 3px;
}

.feature-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-stack,
.card-grid,
.download-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.feature-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-tile,
.page-card,
.download-card,
.price-card,
.feed-card,
.policy-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(20, 78, 89, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.tile-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 186, 163, 0.14);
  background: rgba(16, 186, 163, 0.08);
  color: #0b7e72;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-visual {
  min-height: 240px;
  padding: 18px;
  border-radius: 24px;
}

.solve-visual .code-board {
  margin-top: 0;
}

.solve-result {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(56, 240, 209, 0.12);
  color: #d8fff9;
  font-weight: 700;
}

.live-visual {
  display: grid;
  gap: 14px;
}

.live-pulse {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(56, 240, 209, 0.45);
  animation: pulseRing 2.2s ease-out infinite;
}

.mini-stream {
  display: grid;
  gap: 10px;
}

.stream-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.stream-line.is-accent {
  width: 74%;
  background: rgba(56, 240, 209, 0.3);
}

.stream-line.is-short {
  width: 52%;
}

.comp-visual {
  display: grid;
  gap: 14px;
}

.task-stack {
  display: grid;
  gap: 12px;
}

.task-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.task-bar strong {
  font-size: 0.92rem;
}

.task-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(56, 240, 209, 0.16);
  color: #dcfff9;
  font-size: 0.8rem;
  font-weight: 800;
}

.task-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.task-progress span {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  animation: progressFlow 3.4s ease-in-out infinite;
}

.tile-caption {
  margin-top: 14px;
  font-size: 0.94rem;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card.is-featured {
  border-color: rgba(16, 186, 163, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 251, 0.96)),
    linear-gradient(135deg, rgba(16, 186, 163, 0.06), transparent);
}

.plan-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 16px 0;
}

.plan-price strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.plan-price span {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.mini-list,
.policy-article ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li,
.policy-article li {
  position: relative;
  padding-left: 16px;
}

.mini-list li::before,
.policy-article li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(56, 240, 209, 0.42);
}

.download-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.download-card,
.price-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download-note {
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 22px;
  margin-top: 30px;
  padding: 26px 0 10px;
  border-top: 1px solid rgba(137, 178, 189, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand {
  max-width: 340px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: var(--accent);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.56fr);
  gap: 16px;
  align-items: stretch;
}

.page-hero-copy,
.page-hero-side,
.page-card,
.feed-card,
.policy-card {
  padding: 22px;
  border-radius: 24px;
}

.page-hero-copy,
.page-hero-side {
  border: 1px solid rgba(20, 78, 89, 0.1);
  background: rgba(255, 255, 255, 0.88);
}

.page-hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.page-hero-copy p {
  max-width: 34rem;
  margin: 14px 0 0;
}

.page-hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.content-shell {
  display: grid;
  gap: 16px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card p,
.feed-card p {
  margin: 12px 0 0;
}

.timeline,
.research-feed {
  display: grid;
  gap: 14px;
}

.timeline-item,
.feed-card {
  padding: 20px;
  border-radius: 24px;
}

.timeline-meta {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-entry-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.research-body {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.page-status {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.page-status.is-error {
  border-color: rgba(255, 121, 146, 0.24);
  color: #ffd5df;
}

.policy-shell {
  display: grid;
  gap: 16px;
}

.policy-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.policy-head p {
  max-width: 38rem;
  margin: 0;
  color: var(--text-soft);
}

.policy-card {
  padding: 24px;
}

.policy-article {
  display: grid;
  gap: 18px;
}

.policy-article h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.36rem;
  letter-spacing: -0.04em;
}

.section-divider {
  height: 1px;
  background: var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.anim-float {
  animation: floatY 7s ease-in-out infinite;
}

.anim-float-alt {
  animation: floatYAlt 9s ease-in-out infinite;
}

.anim-dock {
  animation: dockBob 8s ease-in-out infinite;
}

.anim-glow {
  animation: glowPulse 3.4s ease-in-out infinite;
}

.anim-blink {
  animation: blinkSoft 1.8s ease-in-out infinite;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatYAlt {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@keyframes dockBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes blinkSoft {
  0%,
  100% {
    opacity: 0.42;
  }

  50% {
    opacity: 1;
  }
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 240, 209, 0.45);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(56, 240, 209, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(56, 240, 209, 0);
  }
}

@keyframes progressFlow {
  0% {
    width: 34%;
  }

  50% {
    width: 76%;
  }

  100% {
    width: 46%;
  }
}

@media (max-width: 1080px) {
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 0;
  }

  .pc-screen {
    padding: 24px 22px 22px;
  }

  .feature-stack,
  .card-grid,
  .download-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: left;
  }

  .site-actions .button {
    display: none;
  }

  .section {
    padding: 22px 0;
  }

  .hero-stage {
    min-height: 0;
  }

  .pc-frame {
    padding: 14px 14px 22px;
    border-radius: 28px;
  }

  .pc-screen {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .screen-widget-card {
    margin-top: 24px;
    padding: 18px;
  }

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

  .screen-dock {
    width: 100%;
  }

  .dock-row {
    flex-wrap: wrap;
  }

  .dock-pill.is-grow {
    flex-basis: 100%;
  }

  .pc-address {
    max-width: 62%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pc-stand {
    width: 110px;
    height: 24px;
  }

  .pc-base {
    width: 220px;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 18px), var(--container));
  }

  .hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(2.6rem, 13vw, 4.5rem);
    white-space: normal;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 18px 0;
  }

  .page-hero-copy,
  .page-hero-side,
  .feature-tile,
  .page-card,
  .feed-card,
  .download-card,
  .price-card,
  .policy-card {
    padding: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .chip-row,
  .meta-row {
    gap: 8px;
  }

  .chip,
  .meta-chip,
  .mini-chip {
    width: 100%;
    justify-content: center;
  }

  .research-entry-header {
    flex-direction: column;
  }

  .pc-topbar {
    padding: 2px 2px 12px;
  }

  .screen-widget-card {
    padding: 16px;
    border-radius: 22px;
  }

  .pc-screen {
    padding: 14px 14px 18px;
  }

  .pc-stand {
    width: 80px;
    height: 18px;
  }

  .pc-base {
    width: 160px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
