:root {
  --bg: #f4f7f5;
  --surface: #ffffff;
  --ink: #102b27;
  --muted: #5c7671;
  --line: #e3ebe8;
  --brand: #0d9488;
  --brand-deep: #0a5c55;
  --brand-soft: #e7f4f1;
  --shadow: 16, 43, 39;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1815; --surface: #12231f; --ink: #e9f2ef; --muted: #93aaa4;
    --line: #21362f; --brand: #2dd4bf; --brand-deep: #5eead4; --brand-soft: #14312b; --shadow: 0,0,0;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--font-sans); line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.topbar .row { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto;
  background: #fff; padding: 3px; object-fit: contain; box-shadow: 0 1px 3px rgba(var(--shadow), .16);
}
.topbar .nav-cta {
  font-weight: 600; font-size: .9rem; color: var(--brand-deep);
  border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; transition: border-color .2s, background .2s;
}
.topbar .nav-cta:hover { border-color: var(--brand); background: var(--brand-soft); }

.hero { text-align: center; padding: 74px 0 20px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .74rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand-deep); background: var(--brand-soft); padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.35rem); line-height: 1.08; letter-spacing: -0.025em;
  font-weight: 800; margin: 0 auto 18px; max-width: 15ch; text-wrap: balance;
}
.hero h1 .accent { color: var(--brand); }
.hero p.lede { font-size: 1.12rem; color: var(--muted); max-width: 56ch; margin: 0 auto; text-wrap: balance; }

.pricing { padding: 48px 0 24px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(var(--shadow), .04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(var(--shadow), .12); }
.card .tier { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.card .price { font-family: var(--font-serif); font-weight: 700; margin: 14px 0 2px; letter-spacing: -0.01em; }
.card .price .amount { font-size: 3.1rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.card .price .per { font-family: var(--font-sans); font-size: .95rem; font-weight: 500; color: var(--muted); }
.card .free {
  display: inline-block; margin: 6px 0 20px; font-size: .82rem; font-weight: 700;
  color: var(--brand-deep); background: var(--brand-soft); padding: 5px 12px; border-radius: 999px;
}
.card ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.card li { position: relative; padding-left: 30px; font-size: .95rem; color: var(--ink); }
.card li::before { content: ""; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; border-radius: 50%; background: var(--brand-soft); }
.card li::after { content: "\2713"; position: absolute; left: 0; top: 2px; width: 19px; height: 19px; display: grid; place-items: center; font-size: 12px; font-weight: 800; color: var(--brand); }
.card .cta {
  margin-top: auto; text-align: center; font-weight: 700; font-size: .96rem;
  padding: 13px 18px; border-radius: 11px; border: 1px solid var(--brand);
  color: var(--brand-deep); background: transparent; transition: background .2s, color .2s, transform .1s;
}
.card .cta:hover { background: var(--brand-soft); }
.card .cta:active { transform: translateY(1px); }

.card.featured {
  background: linear-gradient(160deg, var(--brand), var(--brand-deep));
  border-color: transparent; color: #eafaf7; transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(var(--shadow), .22);
}
.card.featured:hover { transform: translateY(-16px); }
.card.featured .tier { color: rgba(255,255,255,.82); }
.card.featured .price .amount { color: #fff; }
.card.featured .price .per { color: rgba(255,255,255,.8); }
.card.featured .free { color: #0a5c55; background: #eafaf7; }
.card.featured li { color: #eafaf7; }
.card.featured li::before { background: rgba(255,255,255,.18); }
.card.featured li::after { color: #fff; }
.card.featured .cta { background: #fff; color: var(--brand-deep); border-color: #fff; }
.card.featured .cta:hover { background: #eafaf7; }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--bg); font-size: .7rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}

.includes { padding: 40px 0 10px; }
.includes-inner {
  border: 1px dashed var(--line); border-radius: 16px; padding: 26px 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; justify-content: center;
  background: color-mix(in srgb, var(--surface) 60%, transparent);
}
.includes-inner .label { font-weight: 700; color: var(--muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.includes-inner .item { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; color: var(--ink); }
.includes-inner .item .tick { color: var(--brand); font-weight: 800; }

footer { margin-top: 64px; background: var(--surface); border-top: 1px solid var(--line); }
footer .frow { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; padding: 44px 0 30px; }
footer h3 { font-size: 1.05rem; margin: 0 0 14px; letter-spacing: -0.01em; }
footer .contact-list { display: flex; flex-direction: column; gap: 10px; }
footer .cline { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); font-size: .96rem; }
footer .cline a { color: var(--ink); font-weight: 600; }
footer .cline a:hover { color: var(--brand); }
footer .cico { width: 34px; height: 34px; border-radius: 9px; flex: 0 0 auto; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-deep); }
footer .foot-brand { max-width: 320px; }
footer .foot-brand p { color: var(--muted); font-size: .95rem; margin: 10px 0 0; }
footer .foot-links { display: flex; gap: 18px; margin-top: 14px; font-size: .9rem; }
footer .foot-links a { color: var(--brand-deep); font-weight: 600; }
footer .foot-links a:hover { text-decoration: underline; }
.copyright { border-top: 1px solid var(--line); padding: 18px 0; text-align: center; color: var(--muted); font-size: .85rem; }

@media (max-width: 860px) {
  .grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .card.featured { transform: none; }
  .card.featured:hover { transform: translateY(-6px); }
  .hero { padding-top: 54px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ---- Customer homepage sections ---- */
.hero .cta-row { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.btn-primary { background: var(--brand); color: #fff; padding: 13px 26px; border-radius: 12px; font-weight: 700; transition: background .2s, transform .1s; }
.btn-primary:hover { background: var(--brand-deep); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { border: 1px solid var(--line); padding: 13px 24px; border-radius: 12px; font-weight: 600; color: var(--brand-deep); transition: background .2s, border-color .2s; }
.btn-ghost:hover { background: var(--brand-soft); border-color: var(--brand); }
.soon { display: inline-block; margin-top: 16px; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--muted); }

.section { padding: 60px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); letter-spacing: -0.02em; margin: 0 0 10px; text-wrap: balance; }
.section-head p { color: var(--muted); margin: 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.section.alt .step { background: var(--bg); }
.step .num { width: 38px; height: 38px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-deep); font-weight: 800; display: grid; place-items: center; margin-bottom: 15px; font-variant-numeric: tabular-nums; }
.step h3 { margin: 0 0 6px; font-size: 1.12rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.cat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 24px; text-align: center; }
.cat .ico { font-size: 1.9rem; line-height: 1; }
.cat h3 { margin: 12px 0 5px; font-size: 1.05rem; }
.cat p { margin: 0; color: var(--muted); font-size: .9rem; }

.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0 0 8px; font-size: 1.1rem; letter-spacing: -0.01em; }
.faq-item p { margin: 0; color: var(--muted); }
.faq-item p a { color: var(--brand-deep); font-weight: 600; }

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