/* Auto-compiled from template assets */

/* From: /approot/watch/assets/css/style.css */
/* InstanceIO Design System — Monospace/Industrial direction */

:root {
  /* --- Surfaces --- */
  --surface: #0c0c0c;
  --surface-dim: #060606;
  --surface-raised: #141414;
  --surface-overlay: #1a1a1a;
  --outline: rgba(255,255,255,0.08);
  --outline-strong: rgba(255,255,255,0.16);

  /* --- Text --- */
  --text-primary: #e8e4de;
  --text-secondary: #8a8680;
  --text-tertiary: #5c5955;

  /* --- Accent: single teal, used sparingly --- */
  --accent: #45dec4;
  --accent-dim: rgba(69,222,196,0.12);
  --accent-hover: #38b8a2;

  /* --- Status (functional only) --- */
  --error: #e85c4a;
  --success: #45dec4;

  /* --- Typography --- */
  --font-display: 'JetBrains Mono', ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  /* --- Spacing (tighter, denser) --- */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 40px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* --- Border Radius (sharp) --- */
  --radius: 2px;

  /* --- Motion --- */
  --duration-fast: 100ms;
  --duration-normal: 180ms;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  background-color: var(--surface);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 { font-size: 40px; }
h2 { font-size: 24px; }
h3 { font-size: 16px; font-weight: 500; }

p { max-width: 60ch; }

/* Links */
a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

a:hover { color: var(--accent-hover); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Buttons */
.btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--outline-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--duration-fast) ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover { text-decoration: none; }

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: #0c0c0c;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #0c0c0c;
}

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--outline-strong);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Layout */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container--narrow {
  max-width: 720px;
}

.container--wide {
  max-width: 1200px;
}

/* Utility */
.mono { font-family: var(--font-display); }
.text-secondary { color: var(--text-secondary); }
.text-accent { color: var(--accent); }

@media (max-width: 768px) {
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
  .container { padding: 0 var(--space-lg); }
}


