/* Docklane site — midnight brand, system fonts, no JS */
:root {
  --bg: #14171e;
  --bg-raised: #1c212c;
  --tile-top: #252b3b;
  --cream: #f3f0ea;
  --cream-dim: rgba(243, 240, 234, 0.66);
  --cream-faint: rgba(243, 240, 234, 0.38);
  --line: rgba(243, 240, 234, 0.12);
  --accent: #e8467c;
  --radius: 16px;
  --maxw: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
header { position: sticky; top: 0; z-index: 10; backdrop-filter: blur(14px); background: rgba(20, 23, 30, 0.82); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; text-decoration: none; margin-right: auto; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav a:not(.brand) { text-decoration: none; color: var(--cream-dim); font-size: 15px; }
.nav a:hover { color: var(--cream); }
.lang { border: 1px solid var(--line); border-radius: 8px; padding: 3px 10px; font-size: 13px !important; }

/* Hero */
.hero { padding: 88px 0 40px; text-align: center; }
.hero .dots { display: flex; gap: 18px; justify-content: center; margin-bottom: 28px; }
.hero .dots span { width: 12px; height: 12px; border-radius: 50%; background: var(--cream); opacity: .9; }
.hero .dots span:nth-child(1) { transform: translateY(8px); opacity: .55; }
.hero .dots span:nth-child(3) { transform: translateY(4px); opacity: .7; }
h1 { font-size: clamp(34px, 6vw, 58px); line-height: 1.12; letter-spacing: -0.02em; }
.hero p.lead { margin: 20px auto 0; max-width: 640px; font-size: 20px; color: var(--cream-dim); }
.cta-row { margin: 34px 0 10px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 12px; text-decoration: none; font-weight: 600; font-size: 16px; }
.btn-primary { background: var(--cream); color: #14171e; }
.btn-primary:hover { background: #fff; }
.btn-ghost { border: 1px solid var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream-faint); }
.price-hint { color: var(--cream-faint); font-size: 14px; }
.hero-shot { margin: 44px auto 0; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }

/* Sections */
section { padding: 72px 0; border-top: 1px solid var(--line); }
.kicker { color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.015em; margin: 10px 0 14px; }
.section-lead { color: var(--cream-dim); max-width: 620px; font-size: 18px; }
.feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: center; }
.feature.flip { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.feature.flip .copy { order: 2; }
.feature img { border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.45); }
.feature ul { margin-top: 16px; list-style: none; }
.feature li { padding-left: 26px; position: relative; margin-bottom: 10px; color: var(--cream-dim); }
.feature li::before { content: "●"; position: absolute; left: 0; color: var(--accent); font-size: 11px; top: 5px; }
.term { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 14.5px; background: #0d0f14; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; margin-top: 18px; color: var(--cream-dim); overflow-x: auto; white-space: nowrap; }
.term b { color: #6fd18a; font-weight: 600; }

/* Grid of small features */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card { background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.card h3 { font-size: 17px; margin-bottom: 6px; }
.card p { color: var(--cream-dim); font-size: 15px; }

/* Pricing */
.pricing-box { margin-top: 36px; background: linear-gradient(180deg, var(--tile-top), var(--bg-raised)); border: 1px solid var(--line); border-radius: 20px; padding: 40px; text-align: center; max-width: 460px; margin-left: auto; margin-right: auto; }
.pricing-box .price { font-size: 54px; font-weight: 800; letter-spacing: -0.02em; }
.pricing-box .per { color: var(--cream-faint); margin-bottom: 18px; }
.pricing-box ul { list-style: none; margin: 18px 0 26px; color: var(--cream-dim); font-size: 15px; }
.pricing-box li { margin: 6px 0; }

/* FAQ */
details { border-top: 1px solid var(--line); padding: 18px 0; }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 600; font-size: 17px; list-style: none; display: flex; justify-content: space-between; }
summary::after { content: "+"; color: var(--cream-faint); }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; color: var(--cream-dim); max-width: 700px; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 36px 0 48px; color: var(--cream-faint); font-size: 14px; }
footer .wrap { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
footer a { color: var(--cream-faint); }
footer a:hover { color: var(--cream); }
footer .spacer { margin-right: auto; }

@media (max-width: 800px) {
  .feature, .feature.flip { grid-template-columns: 1fr; }
  .feature.flip .copy { order: 0; }
  .grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
}

/* Subpages */
.crumbs { font-size: 13px; color: var(--cream-faint); padding-top: 26px; }
.crumbs a { color: var(--cream-faint); text-decoration: none; }
.crumbs a:hover { color: var(--cream); }
.page-hero { padding: 40px 0 12px; border-top: none; }
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); line-height: 1.15; letter-spacing: -0.02em; max-width: 800px; }
.page-hero .lead { margin-top: 16px; max-width: 680px; font-size: 19px; color: var(--cream-dim); }
/* `wrap prose` used to collapse the container to 720px and then centre it, so the
   body text sat further right than the heading above it. Keep the container on the
   page grid and constrain the children instead, which lines both up on the left. */
.prose { max-width: var(--maxw); }
.prose > * { max-width: 720px; }
.prose p { margin: 14px 0; color: var(--cream-dim); }
.prose h2 { margin-top: 44px; }
.steps { counter-reset: step; margin: 28px 0; list-style: none; max-width: 720px; }
.steps li { position: relative; padding-left: 58px; margin: 24px 0; }
.steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px; width: 38px; height: 38px; border-radius: 50%; background: var(--bg-raised); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); }
.steps h3 { margin-bottom: 4px; font-size: 18px; }
.steps p { color: var(--cream-dim); }
.linkrow { margin-top: 24px; }
.linkrow a { color: var(--accent); font-weight: 600; text-decoration: none; }
.linkrow a:hover { text-decoration: underline; }
.shot { border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.45); margin: 32px 0; }
.note { background: var(--bg-raised); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 10px; padding: 14px 18px; color: var(--cream-dim); font-size: 15px; margin: 22px 0; max-width: 720px; }
