/* Ocutus marketing site — shared styles.
   Deliberately single-theme (navy + brass, matching the product's own identity) rather than
   light/dark aware: a marketing site benefits from one committed, authoritative look more than
   from theme parity, unlike the workspace app itself. */

:root {
  --ink: #0b1b2e;
  --ink-deep: #06101c;
  --ink-soft: #16283d;
  --brass: #8a6620;
  --brass-light: #d4af6a;
  --bg: #f6f7fa;
  --paper: #ffffff;
  --text-primary: #0f1b2d;
  --text-secondary: #5b6b7d;
  --divider: #e2e6ec;
  --success: #12734a;

  --font-display: "Newsreader", "Georgia", serif;
  --font-body: "Public Sans", "Segoe UI", Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------------------------------------------------------------------- */
/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: inline-block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-cta a.signin {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-brass {
  background: var(--brass);
  color: #fff;
}

.btn-brass:hover {
  background: #745518;
}

.btn-ghost-dark {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--divider);
}

.btn-outline:hover {
  border-color: var(--ink);
}

/* ---------------------------------------------------------------------- */
/* Eyebrow / labels */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

.eyebrow.on-dark {
  color: var(--brass-light);
}

/* ---------------------------------------------------------------------- */
/* Hero */

.hero {
  background: radial-gradient(1200px 480px at 15% -10%, #16283d 0%, var(--ink) 55%, var(--ink-deep) 100%);
  color: #fff;
  padding: 88px 0 96px;
}

.hero-single {
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.14;
  font-weight: 600;
  margin: 14px 0 20px;
  text-wrap: balance;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-light);
}

.hero p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
  max-width: 52ch;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.hero-stat .label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ---------------------------------------------------------------------- */
/* Sections */

section {
  padding: 84px 0;
}

section.alt {
  background: var(--paper);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.section-head {
  max-width: 620px;
  margin: 0 0 44px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 12px 0 10px;
  text-wrap: balance;
  letter-spacing: -0.005em;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 15.5px;
  margin: 0;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ---------------------------------------------------------------------- */
/* Narrative / quote block ("the overloaded processor") */

.narrative {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.narrative blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  border-left: 3px solid var(--brass);
  padding-left: 22px;
}

.narrative blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 13px;
  color: var(--text-secondary);
}

.narrative .copy p {
  color: var(--text-secondary);
  font-size: 15.5px;
  margin: 0 0 16px;
}

.narrative .copy strong {
  color: var(--text-primary);
}

/* ---------------------------------------------------------------------- */
/* Feature grid */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.feature-card .icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(138, 102, 32, 0.1);
  color: var(--brass);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  font-size: 18px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Wipe-everything callout — the peace-of-mind feature, deliberately given its own visual weight */

.wipe-callout {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.wipe-callout h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0 12px;
}

.wipe-callout p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  max-width: 56ch;
  margin: 0;
}

/* ---------------------------------------------------------------------- */
/* Pricing */

.price-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.price-card .discount-tag {
  display: inline-block;
  background: rgba(18, 115, 74, 0.1);
  color: var(--success);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.price-card .amount {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.price-card .amount sup {
  font-size: 22px;
  top: -1.6em;
  margin-right: 4px;
}

.price-card .amount .unit {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.price-card .first-app {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.price-card .first-app strong {
  color: var(--ink);
  font-family: var(--font-mono);
}

.price-card hr {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 28px 0;
}

.price-rows {
  text-align: left;
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14.5px;
}

.price-row .label {
  color: var(--text-secondary);
}

.price-row .value {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.price-faq {
  max-width: 720px;
  margin: 64px auto 0;
  display: grid;
  gap: 22px;
}

.price-faq .qa dt {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.price-faq .qa dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14.5px;
}

/* ---------------------------------------------------------------------- */
/* Trust grid (security page) */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.trust-card {
  background: var(--paper);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
}

.trust-card .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(11, 27, 46, 0.05);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 19px;
}

.trust-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
}

.trust-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

.scope-note {
  background: rgba(138, 102, 32, 0.07);
  border: 1px solid rgba(138, 102, 32, 0.22);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 40px;
}

.scope-note strong {
  color: var(--ink);
}

/* ---------------------------------------------------------------------- */
/* Final CTA band */

.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-deep) 100%);
  color: #fff;
  text-align: center;
  padding: 72px 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.5px;
  margin: 0 0 28px;
}

.cta-band .btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------------- */
/* Footer */

footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 40px 0;
  font-size: 13px;
}

footer .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

footer a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

footer .footer-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .disclaimer {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  max-width: 780px;
}

/* ---------------------------------------------------------------------- */
/* Responsive */

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

  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 34px;
  }

  .wipe-callout {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 32px;
  }

  .nav-links {
    display: none;
  }
}
