/* Mostly Hostly — implementation of "Mostly Hostly Website.dc.html".
   One static page, no build step. Visual system ported verbatim from the
   Claude Design canvas (oklch palette, Space Grotesk + IBM Plex Sans). */

:root {
  --ink:      oklch(17% 0.012 240);
  --ink2:     oklch(24% 0.012 240);
  --cream:    oklch(97% 0.006 240);
  --paper:    oklch(99% 0.003 240);
  --amber:    oklch(72% 0.19 142);
  --amberDark:oklch(46% 0.13 142);
  --dim:      oklch(82% 0.09 142);
  --coral:    oklch(66% 0.17 27);
  --line:     oklch(90% 0.006 240);
  --muted:    oklch(45% 0.01 240);

  --wrap: 1200px;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Space Grotesk', var(--sans);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

@keyframes fadeUp   { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatSlow{ 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes dotFlash { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-amber   { background: var(--amber); color: var(--ink); }
.btn-ink     { background: var(--ink);   color: var(--cream); }
.btn-outline { border-color: var(--line); color: var(--ink); }

.btn-nav  { font-size: 14.5px; padding: 10px 20px; }
.btn-hero { font-size: 16px;   padding: 14px 26px; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--cream) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 110px; }
.brand svg { display: block; }
.brand-word {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em; width: 110px; text-align: center;
}
.brand-word .accent { color: var(--amber); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  display: flex; align-items: center; gap: 56px; flex-wrap: wrap;
  padding-top: 76px; padding-bottom: 60px;
}
.hero-copy { flex: 1 1 420px; min-width: 320px; animation: fadeUp .7s ease both; }
.hero-visual { flex: 1 1 380px; min-width: 300px; animation: fadeUp .8s .1s ease both; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600; color: var(--amberDark);
  margin-bottom: 22px;
}
.eyebrow .pip { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

.hero h1 {
  font-size: clamp(34px, 5vw, 54px); line-height: 1.06; font-weight: 700;
  margin: 0 0 20px;
}
.hero-sub {
  font-size: 18px; line-height: 1.6; color: var(--muted);
  max-width: 480px; margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* dark mock cards (hero + console) */
.mock {
  background: var(--ink); border-radius: 20px; padding: 20px;
  box-shadow: 0 30px 60px -20px oklch(24% 0.045 262 / 35%);
}
.mock--float { animation: floatSlow 6s ease-in-out infinite; }
.mock-dots { display: flex; gap: 6px; margin-bottom: 16px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mock-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 4px; border-bottom: 1px solid var(--ink2);
}
.mock-row .left { display: flex; align-items: center; gap: 10px; }
.mock-row .site { color: var(--cream); font-size: 14.5px; font-weight: 500; }
.mock-row .status { color: var(--muted); font-size: 12.5px; }
.mock-row .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.strip-inner {
  display: flex; gap: 36px; flex-wrap: wrap; justify-content: space-between;
  padding-top: 28px; padding-bottom: 28px;
}
.strip-item { display: flex; align-items: center; gap: 10px; flex: 1 1 200px; }
.strip-item .badge {
  width: 34px; height: 34px; border-radius: 9px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.strip-item span.label { font-size: 14.5px; font-weight: 500; color: var(--ink); }

/* ---------- section scaffolding ---------- */
.section { padding-top: 90px; padding-bottom: 90px; }
.section-head { max-width: 560px; margin: 0 auto 56px; text-align: center; }
.section-head.wide { max-width: 600px; }
.kicker {
  font-size: 13.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 10px; color: var(--amberDark);
}
.section-head h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; margin: 0 0 14px; }
.section-head h2:last-child { margin-bottom: 0; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; line-height: 1.6; }

.icon { width: 20px; height: 20px; display: block; color: var(--ink); }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px; }
.step .n { font-family: var(--display); font-size: 32px; font-weight: 700; color: var(--amber); margin-bottom: 14px; }
.step h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ---------- feature grid ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature { padding: 26px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); }
.feature .badge {
  width: 40px; height: 40px; border-radius: 10px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 6px; }
.feature p { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- bar-owner add-ons (dark) ---------- */
.bar { background: var(--ink); padding: 90px 0; }
.bar .section-head h2 { color: var(--cream); }
.bar .section-head p { color: oklch(80% 0.02 262); }
.bar .kicker { color: var(--amber); }
.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.addon { background: var(--ink2); border-radius: 18px; padding: 32px; border: 1px solid oklch(38% 0.045 262); }
.addon .badge {
  width: 44px; height: 44px; border-radius: 11px; background: var(--amber);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.addon .badge .icon { color: var(--ink); }
.addon h3 { color: var(--cream); font-size: 19px; font-weight: 600; margin: 0 0 8px; }
.addon p { color: oklch(78% 0.02 262); font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.addon a { color: var(--amber); font-weight: 600; font-size: 14.5px; }

/* ---------- pricing ---------- */
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px; max-width: 820px; margin: 0 auto;
}
.plan { background: var(--paper); border: 2px solid var(--line); border-radius: 20px; padding: 34px; }
.plan.hi { border-color: var(--amber); }
.plan h3 { font-size: 18px; font-weight: 600; margin: 0 0 6px; }
.plan .tagline { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 22px; }
.plan .price b { font-family: var(--display); font-size: 38px; font-weight: 700; }
.plan .price b.price-sm { font-size: 22px; }
.plan .price span { color: var(--muted); font-size: 14.5px; }
.plans-foot { max-width: 620px; margin: 34px auto 0; text-align: center; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.plan .feat { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: 14.5px; color: var(--ink); }
.plan .feat .check { color: var(--amberDark); font-weight: 700; }
.plan .cta { display: block; text-align: center; margin-top: 20px; padding: 13px; border-radius: 100px; font-size: 15px; font-weight: 600; }

/* ---------- about ---------- */
.about { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-inner { max-width: 800px; margin: 0 auto; padding: 90px 24px; text-align: center; }
.about-inner .kicker { margin-bottom: 14px; }
.about-inner h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; margin: 0 0 20px; }
.about-inner p { font-size: 17px; line-height: 1.75; color: var(--muted); margin: 0; }

/* ---------- login preview ---------- */
.login { display: flex; gap: 56px; align-items: center; flex-wrap: wrap; }
.login-copy { flex: 1 1 380px; min-width: 300px; }
.login-copy h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; margin: 0 0 16px; }
.login-copy > p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 20px; max-width: 440px; }
.roles { display: flex; gap: 22px; flex-wrap: wrap; }
.role { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; }
.role .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.login-visual { flex: 1 1 380px; min-width: 300px; }
.console-tabs { display: flex; gap: 10px; margin-bottom: 20px; }
.console-tabs .on { background: var(--amber); color: var(--ink); font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 100px; }
.console-tabs .off { color: var(--muted); font-size: 12.5px; font-weight: 600; padding: 6px 14px; }
.console .mock-row .status { color: oklch(72% 0.13 145); font-weight: 600; }

/* ---------- contact (dark) ---------- */
.contact { background: var(--ink); padding: 90px 0; }
.contact-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 700; color: var(--cream); margin: 0 0 14px; }
.contact-inner > p { color: oklch(80% 0.02 262); font-size: 16px; margin: 0 0 34px; }
.contact-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.contact-form input, .contact-form textarea {
  padding: 14px 16px; border-radius: 10px; border: 1px solid var(--ink2);
  background: var(--ink2); color: var(--cream); font-size: 15px; font-family: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: oklch(62% 0.02 262); }
.contact-form button {
  background: var(--amber); color: var(--ink); font-weight: 700; font-size: 15.5px;
  padding: 14px; border-radius: 100px; border: none; cursor: pointer; margin-top: 6px;
}
.contact-done {
  background: var(--ink2); border-radius: 16px; padding: 30px;
  color: var(--cream); font-size: 16px; font-weight: 600;
}
[hidden] { display: none !important; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--paper); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; padding-top: 36px; padding-bottom: 36px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand span { font-family: var(--display); font-weight: 700; font-size: 15px; }
.footer-brand .accent { color: var(--amber); }
.footer-inner .copy { font-size: 13.5px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .section { padding-top: 64px; padding-bottom: 64px; }
  .hero { padding-top: 48px; }
}
