/* DumbCo — shared styles
   Intentionally minimal. Fast. No frameworks. No trackers. No nonsense. */

:root {
  --bg: #0b0c0f;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.085);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --faint: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.12);

  --accent: #c8ff6a; /* subtle green */
  --accent-2: #b6a6ff; /* optional purple hint */
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  height: 100%;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(200, 255, 106, 0.08) 0%, rgba(200, 255, 106, 0.00) 70%),
    radial-gradient(900px 700px at 110% 10%, rgba(182, 166, 255, 0.10) 0%, rgba(182, 166, 255, 0.00) 70%),
    radial-gradient(800px 600px at 50% 120%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.00) 70%),
    var(--bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

body {
  min-height: 100%;
  background: transparent;
}

/* Accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  border: 1px solid var(--line);
}
.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Layout */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.container.narrow {
  width: min(780px, calc(100% - 48px));
}

.page {
  padding-bottom: 32px;
}

.section {
  padding: 56px 0;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 48px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 12, 15, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(200, 255, 106, 1), rgba(182, 166, 255, 1));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.10), 0 10px 22px rgba(0, 0, 0, 0.45);
}

.brand-name {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

/* Typography */
.kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.headline {
  margin: 0 0 14px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 720;
}

.lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.section-title {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 680;
}

.body {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.tiny {
  font-size: 13px;
  color: var(--muted);
}

.micro {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}
.dot {
  margin: 0 6px;
  color: var(--faint);
}

.soft-underline {
  position: relative;
  display: inline-block;
}
.soft-underline::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.14em;
  height: 0.38em;
  border-radius: 999px;
  background: rgba(200, 255, 106, 0.16);
  z-index: -1;
}

/* Buttons & links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  color: var(--text);
  font-weight: 620;
  letter-spacing: -0.01em;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.btn.primary {
  border-color: rgba(200, 255, 106, 0.30);
  background: rgba(200, 255, 106, 0.12);
}
.btn.primary:hover {
  border-color: rgba(200, 255, 106, 0.48);
  background: rgba(200, 255, 106, 0.16);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.text-link {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2px;
}
.text-link:hover {
  border-bottom-color: rgba(200, 255, 106, 0.45);
}

/* Hero */
.hero {
  padding-top: 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-panel .panel-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top,
.panel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.panel-bottom {
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pill {
  font-size: 12px;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.pill.subtle {
  color: var(--muted);
}

.panel-body {
  padding: 26px 16px 22px;
}

.big {
  font-size: 22px;
  font-weight: 720;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.dots span {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}
.dots span:nth-child(2) {
  background: rgba(200, 255, 106, 0.28);
}
.dots span:nth-child(3) {
  background: rgba(182, 166, 255, 0.26);
}

/* Cards & grids */
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.40);
  padding: 18px;
}

.card-title {
  margin: 0 0 10px;
  font-weight: 720;
  letter-spacing: -0.02em;
  font-size: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mini {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}
.mini-k {
  font-weight: 650;
  font-size: 13px;
}
.mini-v {
  font-size: 13px;
  margin-top: 4px;
}

/* Bullets */
.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets li {
  margin: 6px 0;
}

/* Quote */
.quote {
  margin: 14px 0 10px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
}

/* Callout / Promise */
.callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(200, 255, 106, 0.18);
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(200, 255, 106, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.promise {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text);
}
.promise-strong {
  font-weight: 740;
}

/* Form */
.form {
  margin-top: 18px;
}
.form-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0 8px;
}
input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}
input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.42);
}
input[type="email"]:focus {
  border-color: rgba(200, 255, 106, 0.40);
  box-shadow: 0 0 0 4px rgba(200, 255, 106, 0.10);
}

/* Inline links */
.inline-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 24px;
  background: rgba(0, 0, 0, 0.18);
}
.footer-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.footer-right {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.site-footer a:hover {
  color: var(--text);
}
.footer-bottom {
  padding-top: 14px;
}

/* Prose (manifesto) */
.prose {
  color: var(--muted);
  font-size: 16px;
}
.prose p {
  margin: 0 0 14px;
}
.prose h2 {
  margin: 26px 0 10px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.prose ul {
  margin: 10px 0 16px;
  padding-left: 18px;
}
.prose li {
  margin: 6px 0;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.promise-list span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  letter-spacing: 0.01em;
}

.panel-card--tv {
  padding: 18px;
}

.panel-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.panel-badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.panel-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.tv-graphic {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.02);
  padding: 14px;
}

.tv-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

.panel-copy .big {
  margin-bottom: 8px;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.spec {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.sep {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}

.fine {
  font-size: 13px;
  line-height: 1.45;
}

/* Motion: subtle + respectful */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    animation: fadeIn 700ms ease both;
  }
  .delay-1 {
    animation-delay: 120ms;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .callout {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

