/* Dolfinscribe — generic transcription-app landing. Standalone static site
   for CETACEAN NATION LLC (dolfinscribe.com). Intentionally unrelated in code
   and branding to the dolfinspeak (Harambe) site. */
:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --ink: #0f1720;
  --muted: #56636f;
  --line: #e4e8ec;
  --brand: #1f7a8c;
  --brand-dark: #155e6c;
  --radius: 14px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.btn {
  display: inline-block; background: var(--brand); color: #fff; font-weight: 600;
  padding: 0.75rem 1.4rem; border-radius: 999px; border: 0; cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--brand); border: 1px solid var(--line); }
.btn--ghost:hover { background: var(--bg-soft); }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 0.55rem; font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.logo:hover { text-decoration: none; }
.logo-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--brand); display: grid; place-items: center; color: #fff; font-size: 15px; }
.nav { display: flex; align-items: center; gap: 1.5rem; }
.nav a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--ink); text-decoration: none; }
/* the nav CTA is a filled button — keep its text white (override the muted/ink nav link color) */
.nav a.btn { color: #fff; }
.nav a.btn:hover { color: #fff; text-decoration: none; }
@media (max-width: 720px) { .nav a:not(.btn) { display: none; } }

/* hero */
.hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4rem); text-align: center; }
.hero h1 { font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem); line-height: 1.08; letter-spacing: -0.02em; max-width: 16ch; margin: 0 auto 1.1rem; }
.hero p.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); color: var(--muted); max-width: 60ch; margin: 0 auto 2rem; }
.hero .cta-row { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero .note { margin-top: 1rem; color: var(--muted); font-size: 0.9rem; }

/* sections */
section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; border-top: 1px solid var(--line); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.section-head p { color: var(--muted); }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; color: var(--brand); margin-bottom: 0.6rem; }

/* feature grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.card h3 { font-size: 1.15rem; margin-bottom: 0.45rem; }
.card p { color: var(--muted); font-size: 0.97rem; }
.card .ic { font-size: 1.6rem; margin-bottom: 0.6rem; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 1.25rem; }
.step .num { width: 34px; height: 34px; border-radius: 999px; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; margin-bottom: 0.7rem; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: start; }
@media (max-width: 860px) { .pricing { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.75rem; background: var(--bg); }
.plan.featured { border-color: var(--brand); box-shadow: 0 8px 30px rgba(31,122,140,0.12); }
.plan h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.plan .price { font-size: 2.2rem; font-weight: 700; letter-spacing: -0.02em; margin: 0.5rem 0 0.25rem; }
.plan .price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.plan .sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.1rem; }
.plan ul { list-style: none; margin: 0 0 1.4rem; }
.plan li { padding: 0.35rem 0 0.35rem 1.5rem; position: relative; color: var(--ink); font-size: 0.95rem; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.plan .btn { width: 100%; text-align: center; }

/* faq */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1rem 0; }
.faq summary { font-weight: 600; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--muted); }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); margin-top: 0.6rem; }

/* contact / about */
.about { background: var(--bg-soft); }
.about .wrap { max-width: 760px; text-align: center; }
.about p { color: var(--muted); margin-top: 0.8rem; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 2.5rem 0; color: var(--muted); font-size: 0.9rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.site-footer nav { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.site-footer nav a { color: var(--muted); }

/* legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.legal h1 { font-size: 2rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.legal .updated { color: var(--muted); margin-bottom: 2rem; }
.legal h2 { font-size: 1.25rem; margin: 2rem 0 0.6rem; }
.legal p, .legal li { color: var(--ink); margin-bottom: 0.8rem; }
.legal ul { padding-left: 1.3rem; }
.legal a.back { display: inline-block; margin-bottom: 1.5rem; }
