/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  background: var(--accent);
  color: #061018;
  font-weight: 600;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 1rem;
}

/* ClutterDock marketing site — Warp-inspired pricing layout */
:root {
  --bg: #070a10;
  --bg-elevated: #0e1420;
  --bg-card: #121a28;
  --bg-card-hover: #172234;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f3f6fb;
  --text-muted: #9aa7bb;
  --text-dim: #6a768c;
  --accent: #6ec0ff;
  --accent-soft: rgba(110, 192, 255, 0.14);
  --accent-strong: #4aaef5;
  --gold: #e4c48a;
  --gold-soft: rgba(228, 196, 138, 0.14);
  --pink: #ff6bb5;
  --green: #4ade9b;
  --yellow: #f5c542;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

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

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

::selection {
  background: rgba(91, 184, 255, 0.35);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Background glow */
.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(110, 192, 255, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 15%, rgba(228, 196, 138, 0.07), transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 45%, rgba(74, 222, 155, 0.05), transparent 50%),
    var(--bg);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 15, 23, 0.82);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: var(--accent);
  color: #061018;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.nav-cta:hover {
  background: #7ec8ff;
  transform: translateY(-1px);
}

/* Layout */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.section-kicker {
  display: inline-flex;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.4vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
  font-weight: 650;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.hero-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #eef4ff;
}

.hero-premium h1 {
  font-size: clamp(2.55rem, 6.2vw, 3.85rem);
  max-width: 14ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-premium .lead {
  max-width: 640px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.85rem;
  margin-top: 2rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.trust-strip .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-dim);
  opacity: 0.7;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

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

.cost-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), var(--bg-card));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.cost-stat {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.cost-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.cost-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.callout-panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.75rem 1.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(228, 196, 138, 0.22);
  background:
    radial-gradient(ellipse 80% 100% at 0% 0%, rgba(228, 196, 138, 0.08), transparent 55%),
    var(--bg-card);
}

.callout-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.callout-panel p {
  margin: 0 0 0.85rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.callout-panel p:last-child {
  margin-bottom: 0;
}

.callout-punch {
  color: var(--text) !important;
  font-size: 1.05rem !important;
}

.callout-punch em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

.premium-compare {
  margin-bottom: 0.35rem;
}

.solution-grid {
  margin-top: 2rem;
}

.need-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.need-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.need-num {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.15rem;
}

.need-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.need-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.diff-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.diff-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.9rem;
}

.diff-table th,
.diff-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}

.diff-table thead th {
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.02);
}

.diff-table tbody th {
  color: var(--text);
  font-weight: 600;
  width: 22%;
}

.diff-table tbody tr:last-child th,
.diff-table tbody tr:last-child td {
  border-bottom: none;
}

.diff-table .highlight-col {
  background: rgba(110, 192, 255, 0.07);
  color: var(--text);
}

.diff-table thead .highlight-col {
  color: var(--accent);
}

.diff-footnote {
  margin: 1rem auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.principles-band {
  padding: 2.5rem 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(110, 192, 255, 0.1), transparent 65%),
    var(--bg-card);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.principles-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.principles-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.cta-premium h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  line-height: 1.2;
}

.cta-premium .hero-serif {
  display: inline;
}

.section-sm {
  padding: 3rem 0;
}

/* Hero */
.hero {
  text-align: center;
  padding: 4.5rem 0 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.hero .lead {
  margin: 0 auto;
  max-width: 540px;
  color: var(--text-muted);
  font-size: 1.12rem;
}

.badge-one-time {
  display: inline-flex;
  margin-top: 1.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.badge-one-time strong {
  color: var(--green);
  font-weight: 600;
}

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.45rem 1.45rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.plan:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.plan.recommended {
  border-color: rgba(91, 184, 255, 0.45);
  background: linear-gradient(180deg, rgba(91, 184, 255, 0.1) 0%, var(--bg-card) 42%);
  box-shadow: 0 0 0 1px rgba(91, 184, 255, 0.15), var(--shadow);
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #061018;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-name {
  margin: 0.15rem 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 0.6rem 0 0.25rem;
}

.plan-price .amount {
  font-size: 2.35rem;
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1;
}

.plan-price .period {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.plan-intro {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin: 0 0 0.85rem;
  min-height: 1.2em;
}

.plan-desc {
  margin: 0 0 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  min-height: 2.8em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #061018;
}

.btn-primary:hover {
  background: #7ec8ff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  color: var(--text);
}

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

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.plan .btn {
  width: 100%;
  margin-bottom: 1.25rem;
}

.plan-includes {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-list .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-list .limited {
  color: var(--text-dim);
}

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  position: sticky;
  top: 0;
}

.compare-table th:not(:first-child),
.compare-table td:not(:first-child) {
  text-align: center;
  width: 18%;
}

.compare-table tbody th {
  font-weight: 500;
  color: var(--text-muted);
}

.compare-table .group-row th {
  padding-top: 1.15rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(91, 184, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.compare-table tr:last-child td,
.compare-table tr:last-child th {
  border-bottom: none;
}

.compare-table .yes {
  color: var(--green);
  font-weight: 600;
}

.compare-table .no {
  color: var(--text-dim);
}

.compare-table .muted {
  color: var(--text-dim);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

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

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  background: var(--accent-soft);
}

.pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.pillar p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Privacy / trust */
.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

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

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.trust-card.highlight {
  background: linear-gradient(145deg, rgba(91, 184, 255, 0.12), var(--bg-card) 60%);
  border-color: rgba(91, 184, 255, 0.25);
}

.trust-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.trust-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.trust-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--text-dim);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .answer {
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-item .answer p {
  margin: 0;
}

/* Download */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.download-card.recommended {
  border-color: rgba(91, 184, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(91, 184, 255, 0.12), var(--shadow);
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.download-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.download-card p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.download-card .btn {
  width: 100%;
}

.code-hint {
  margin-top: 0.85rem;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  color: var(--text-dim);
  overflow-x: auto;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(91, 184, 255, 0.12), transparent 70%),
    var(--bg-card);
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Landing hero extras */
.landing-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.landing-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 3.6rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.landing-hero .lead {
  margin: 0 auto 1.75rem;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.landing-hero .lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-visual {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  box-shadow: var(--shadow);
}

/* Real product icon */
.hero-product {
  margin: 0 auto 2rem;
  max-width: 220px;
}

.hero-product img {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border-radius: 40px;
  box-shadow: 0 24px 64px rgba(91, 184, 255, 0.28);
}

/* Abstract clutter → clean concept (not a screenshot) */
.concept-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .concept-compare {
    grid-template-columns: 1fr;
  }
  .concept-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

.concept-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem 1.5rem;
  text-align: left;
}

.concept-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.concept-label-before {
  color: #ff9a9a;
  background: rgba(255, 107, 107, 0.12);
}

.concept-label-after {
  color: var(--accent);
  background: var(--accent-soft);
}

.concept-title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  font-weight: 650;
}

.concept-desc {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.concept-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 0 0.25rem;
}

.concept-note {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* Abstract messy tiles */
.clutter-pile {
  position: relative;
  height: 140px;
  margin: 0 auto;
  max-width: 260px;
}

.clutter-pile .tile {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  opacity: 0.92;
}

.clutter-pile .t1 { left: 8%; top: 42%; background: #5b9dff; transform: rotate(-12deg); }
.clutter-pile .t2 { left: 22%; top: 18%; background: #ff6b6b; transform: rotate(8deg); }
.clutter-pile .t3 { left: 38%; top: 38%; background: #3dd68c; transform: rotate(-4deg); }
.clutter-pile .t4 { left: 54%; top: 12%; background: #f5c542; transform: rotate(14deg); }
.clutter-pile .t5 { left: 68%; top: 36%; background: #a78bfa; transform: rotate(-18deg); }
.clutter-pile .t6 { left: 12%; top: 68%; background: #ff8fab; transform: rotate(6deg); }
.clutter-pile .t7 { left: 30%; top: 62%; background: #38bdf8; transform: rotate(-10deg); }
.clutter-pile .t8 { left: 48%; top: 58%; background: #fb923c; transform: rotate(16deg); }
.clutter-pile .t9 { left: 64%; top: 70%; background: #4ade80; transform: rotate(-6deg); }
.clutter-pile .t10 { left: 78%; top: 52%; background: #e879f9; transform: rotate(10deg); }
.clutter-pile .t11 { left: 4%; top: 28%; background: #94a3b8; transform: rotate(20deg); }
.clutter-pile .t12 { left: 82%; top: 22%; background: #60a5fa; transform: rotate(-14deg); }
.clutter-pile .t13 { left: 42%; top: 8%; background: #f472b6; transform: rotate(-8deg); }
.clutter-pile .t14 { left: 58%; top: 42%; background: #34d399; transform: rotate(4deg); }
.clutter-pile .t15 { left: 24%; top: 40%; background: #fbbf24; transform: rotate(-20deg); }

/* Abstract clean stacks */
.stack-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.stack-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.stack-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.stack-dots {
  display: flex;
  gap: 0.28rem;
}

.stack-dots i {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.55;
}

.stack-row:nth-child(1) .stack-dots i { background: #5bb8ff; }
.stack-row:nth-child(2) .stack-dots i { background: #ff6bb5; }
.stack-row:nth-child(3) .stack-dots i { background: #3dd68c; }
.stack-row:nth-child(4) .stack-dots i { background: #f5c542; }

.story-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .story-steps {
    grid-template-columns: 1fr;
  }
}

.story-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.story-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.story-step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.story-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-meta {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

.footer-domains {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-domains a {
  color: var(--accent);
  text-decoration: none;
}

.footer-domains a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-visual img {
  margin: 0 auto;
  width: 160px;
  height: 160px;
  border-radius: 36px;
  box-shadow: 0 20px 60px rgba(91, 184, 255, 0.25);
}

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* 4-up why/who grids look better 2×2 */
.why-grid,
#who .feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 800px) {
  .why-grid,
  #who .feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-brand .brand {
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: var(--max);
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.5rem 1rem;
    background: rgba(11, 15, 23, 0.96);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.65rem 0;
  }

  .nav-links .nav-cta {
    margin-top: 0.35rem;
    justify-content: center;
  }
}

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

.note {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Coming soon */
.coming-soon-band h2 {
  letter-spacing: -0.03em;
}

/* Long-form product copy */
.prose-block {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.prose-block p {
  margin: 0 0 1rem;
}

.prose-block em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

.prose-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.prose-list li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.prose-list strong {
  color: var(--text);
  font-weight: 600;
}

.why-grid {
  margin-top: 0.5rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.help-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.help-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.help-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.help-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
