/* venus landing page — self-hosted fonts, venus dark palette. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/Inter.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/IBMPlexMono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/IBMPlexMono-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/IBMPlexMono-600.woff2") format("woff2");
}

:root {
  --bg: #0f0f14;
  --bg-2: #101014;
  --panel: #17171d;
  --panel-2: #1c1c24;
  --border: #26262f;
  --text: #e6e6ee;
  --dim: #8a8a99;
  --accent: #e8a87c;
  --venus-brand-color: #e8a87c;
  --accent-2: #f0c19b;
  --green: #98c379;
  --blue: #61afef;
  --red: #e06c75;
  --yellow: #e5c07b;
  --mono: "IBM Plex Mono", "SF Mono", Menlo, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand svg {
  display: block;
}
.venus-wordmark {
  color: var(--venus-brand-color);
}
.get-venus {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}
.get-venus svg {
  display: block;
  vertical-align: middle;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 15, 20, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.nav-links a:not(.btn) {
  color: var(--dim);
}
.nav-links a:not(.btn):hover {
  color: var(--text);
  text-decoration: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #14100c;
}
.btn-primary:hover {
  background: var(--accent-2);
}
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--accent);
}
.btn-sm {
  padding: 8px 14px;
  font-size: 13px;
}

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 40px;
  text-align: center;
}
.pill {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  background: rgba(232, 168, 124, 0.1);
  border: 1px solid rgba(232, 168, 124, 0.28);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 .accent {
  color: var(--accent);
}
.hero .lede {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--dim);
  text-wrap: pretty;
}
.hero .cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .req {
  margin-top: 14px;
  font-size: 13px;
  color: var(--dim);
}

/* ---------- terminal mockup ---------- */
.mock {
  max-width: 760px;
  margin: 52px auto 0;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #0b0b0f;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  text-align: left;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.r {
  background: #e06c75;
}
.dot.y {
  background: #e5c07b;
}
.dot.g {
  background: #98c379;
}
.mock-title {
  margin-left: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--dim);
}
.mock-body {
  padding: 18px 20px 24px;
  font-family: var(--mono);
  font-size: 13.5px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.mock-body .c-prompt {
  color: var(--accent);
}
.mock-body .c-user {
  color: var(--green);
}
.mock-body .c-dir {
  color: var(--blue);
  font-weight: 500;
}
.mock-body .c-dim {
  color: var(--dim);
}
.mock-body .c-y {
  color: var(--yellow);
}
.cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--accent);
  vertical-align: text-bottom;
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ---------- sections ---------- */
section {
  padding: 68px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--dim);
  margin-top: 10px;
  font-size: 17px;
}

/* ---------- features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover {
  border-color: rgba(232, 168, 124, 0.5);
  transform: translateY(-2px);
}
.card .ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 10px;
  color: var(--accent);
  background: rgba(232, 168, 124, 0.1);
  border: 1px solid rgba(232, 168, 124, 0.22);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.card .ic svg {
  width: 22px;
  height: 22px;
  display: block;
}
.card:hover .ic {
  background: rgba(232, 168, 124, 0.16);
  border-color: rgba(232, 168, 124, 0.45);
  color: var(--accent-2);
}
.card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.card p {
  font-size: 14px;
  color: var(--dim);
}

/* ---------- screenshots ---------- */
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.shot {
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: var(--panel);
  overflow: hidden;
}
.shot img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--panel-2);
}
.shot figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--dim);
}

/* ---------- pricing ---------- */
.trial-banner {
  text-align: center;
  background: linear-gradient(0deg, rgba(232, 168, 124, 0.08), rgba(232, 168, 124, 0.08));
  border: 1px solid rgba(232, 168, 124, 0.3);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 34px;
}
.trial-banner strong {
  color: var(--accent);
}
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.plan {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.plan.pro {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.plan .tier {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}
.plan.pro .tier {
  color: var(--accent);
}
.plan .price {
  font-size: 30px;
  font-weight: 800;
  margin: 8px 0 4px;
}
.plan .price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--dim);
}
.plan ul {
  list-style: none;
  margin: 18px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.plan li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
}
.plan li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.plan .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- download ---------- */
.download {
  text-align: center;
}
.download .soon {
  margin-top: 16px;
  font-size: 14px;
  color: var(--dim);
}

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--dim);
  font-size: 14px;
}
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-links a {
  color: var(--dim);
}
.foot-links a:hover {
  color: var(--text);
}
.foot .copy {
  max-width: 460px;
}

/* ---------- CSS product mockups (file manager + palette) ---------- */
.mockups {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}
.mockups .mock {
  margin: 0;
  max-width: none;
}
.fm {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fm-col {
  padding: 6px;
  font-family: var(--mono);
  font-size: 12.5px;
}
.fm-col + .fm-col {
  border-left: 1px solid var(--border);
}
.fm-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  color: var(--text);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.fm-head .fm-path {
  color: var(--dim);
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: rtl;
}
.fm-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 5px;
}
.fm-row .fm-nm {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fm-row .fm-sz {
  color: var(--dim);
  font-variant-numeric: tabular-nums;
}
.fm-row.sel {
  background: rgba(232, 168, 124, 0.16);
}
.fm-xfer {
  padding: 8px 12px;
  border-top: 1px solid var(--border);
  background: var(--panel);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
}

.pal {
  padding: 8px;
  font-family: var(--mono);
}
.pal-input {
  padding: 12px 12px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.pal-input .cursor {
  height: 14px;
  margin-left: 1px;
}
.pal-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text);
}
.pal-row .pal-hint {
  color: var(--dim);
  font-size: 12px;
}
.pal-row.sel {
  background: var(--border);
}

.shots-note {
  text-align: center;
  color: var(--dim);
  font-size: 14px;
  margin: 44px 0 16px;
}
.shots-note code {
  color: var(--accent);
}

/* ---------- pricing / faq page hero ---------- */
.pricing-hero {
  padding: 64px 0 20px;
  text-align: center;
}
.pricing-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pricing-hero .lede {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--dim);
  font-size: clamp(16px, 2.2vw, 19px);
  text-wrap: pretty;
}
.plan .price-alt {
  color: var(--dim);
  font-size: 13px;
  margin: -2px 0 4px;
}
.plan .buy {
  margin-top: 10px;
}
.fineprint {
  text-align: center;
  color: var(--dim);
  font-size: 13px;
  margin-top: 18px;
}

/* ---------- comparison table ---------- */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}
.compare th,
.compare td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.compare thead th {
  color: var(--dim);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare tbody th {
  font-weight: 500;
  color: var(--text);
}
.compare td {
  text-align: center;
  width: 96px;
  font-variant-numeric: tabular-nums;
}
.compare .col-pro {
  color: var(--accent);
}
.compare .y {
  color: var(--accent);
  font-weight: 700;
}
.compare .n {
  color: var(--dim);
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: none;
}

/* ---------- faq ---------- */
.faq {
  max-width: 760px;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--panel);
  margin-bottom: 12px;
}
.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 44px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 20px;
  font-weight: 400;
}
.faq details[open] summary::after {
  content: "−";
}
.faq summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 10px;
}
.faq details > p {
  padding: 0 18px 16px;
  color: var(--dim);
  font-size: 15px;
}
.faq-more {
  text-align: center;
  color: var(--dim);
  margin-top: 24px;
}

@media (max-width: 820px) {
  .features,
  .shots {
    grid-template-columns: 1fr 1fr;
  }
  .plans,
  .mockups {
    grid-template-columns: 1fr;
  }
  .nav-links a:not(.btn) {
    display: none;
  }
}
@media (max-width: 540px) {
  .features,
  .shots {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 0 32px;
  }
  .hero .cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero .cta .btn {
    justify-content: center;
  }
}

/* ---------- accessibility & motion ---------- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}
a:focus-visible,
.btn:focus-visible {
  text-decoration: none;
}

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

/* ---------- doc / prose pages (about, privacy, terms, support) ---------- */
.doc {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--dim);
}
.doc h2 {
  margin-top: 36px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(19px, 2.6vw, 23px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.doc p,
.doc li {
  font-size: 15.5px;
  color: var(--dim);
}
.doc p {
  margin: 12px 0;
}
.doc ul {
  margin: 12px 0;
  padding-left: 22px;
}
.doc li {
  margin: 8px 0;
}
.doc a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
}
.doc a:not(.btn):hover {
  text-decoration: underline;
}
.doc strong {
  color: var(--text);
  font-weight: 600;
}
.doc .updated {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 8px;
}
.doc .btn {
  margin-top: 6px;
}
