/* ---------------------------------------------------------------------------
   Aaych LLC — site styles
   Aaych brand: black, white, purple. Monochrome logo, Montserrat.
   Venture tiles carry their own product branding (e.g. Plotter's orange).
--------------------------------------------------------------------------- */

:root {
  --bg: #0a0a0d;
  --panel: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(167, 139, 250, 0.55);
  --ink: #f5f4f7;
  --ink-dim: #a3a1ad;
  --ink-faint: #67656f;
  --accent: #a78bfa;
  --grad-a: #a78bfa;
  --grad-b: #7c3aed;
  --display: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

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

html { scroll-behavior: smooth; }

::selection { background: rgba(124, 58, 237, 0.45); }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 70% 45% at 50% -8%, rgba(124, 58, 237, 0.14), transparent),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
}

main { flex: 1; width: 100%; max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* Header ------------------------------------------------------------------ */

.site-header {
  max-width: 1060px;
  margin: 0 auto;
  padding: 26px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-decoration: none;
}

.header-contact {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-contact:hover { color: var(--accent); }

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

.hero { padding: 84px 0 68px; max-width: 700px; }

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.3rem, 5.8vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.grad-text {
  background: linear-gradient(100deg, var(--grad-a), var(--grad-b));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede { color: var(--ink-dim); font-size: 1.05rem; max-width: 540px; }

/* Venture cards ----------------------------------------------------------- */

.ventures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding-bottom: 100px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 48px rgba(124, 58, 237, 0.18);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.app-icon svg { width: 32px; height: 32px; }

/* Plotter's own brand colors, scoped to its product tile */
.icon-live {
  background: linear-gradient(135deg, #f79e52, #ee5a64);
  box-shadow: 0 0 28px rgba(238, 90, 100, 0.3);
}

.icon-soon {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
}

.icon-soon svg { opacity: 0.45; }

.card h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.card p { color: var(--ink-dim); font-size: 0.9rem; line-height: 1.55; }

.card-link {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--accent);
}

.card-link .arrow { display: inline-block; transition: transform 0.2s ease; }

a.card:hover .card-link .arrow { transform: translate(2px, -2px); }

.card-link.muted { color: var(--ink-faint); }

.status {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.status-live {
  color: var(--accent);
  border: 1px solid rgba(167, 139, 250, 0.4);
  background: rgba(124, 58, 237, 0.1);
}

.status-soon { color: var(--ink-faint); border: 1px solid var(--border); }

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

.site-footer { border-top: 1px solid var(--border); }

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
}

.copyright { color: var(--ink-faint); font-size: 0.8rem; }

.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }

.footer-links a {
  color: var(--ink-dim);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Legal pages ------------------------------------------------------------- */

.legal { max-width: 720px; padding: 40px 0 96px; }

.legal h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.legal .effective {
  font-family: var(--mono);
  color: var(--ink-faint);
  font-size: 0.78rem;
  margin-bottom: 40px;
}

.legal h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 40px 0 12px;
}

.legal p, .legal li { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 12px; }

.legal ul { padding-left: 22px; margin-bottom: 16px; }

.legal li { margin-bottom: 6px; }

.legal a { color: var(--accent); }

.legal strong { color: var(--ink); font-weight: 600; }

.back-home {
  display: inline-block;
  margin-bottom: 40px;
  font-family: var(--mono);
  color: var(--ink-faint);
  font-size: 0.78rem;
  text-decoration: none;
}

.back-home:hover { color: var(--accent); }
