/* fishbAIt solutions — marketing site
   Plain static CSS, no build step. Colors come straight from the logo:
   sky blue (line & hook), navy (wordmark), red (the "AI"). Light theme only —
   the navy wordmark does not read on dark backgrounds, so the site stays light. */

:root {
  color-scheme: light;

  --blue: #0d94fe;
  --blue-dark: #0a76cc;
  --blue-soft: #e6f3ff;
  --blue-tint: #f4f9ff;
  --navy: #053179;
  --navy-deep: #06224f;
  --red: #ea0417;

  --ink: #0f1f3d;
  --ink-2: #3b4a66;
  --ink-3: #66748f;
  --line: #dfe6f1;
  --bg: #ffffff;
  --bg-alt: #f5f9ff;

  --ok: #14833b;
  --ok-bg: #e7f6ec;
  --warn: #9a5b00;
  --warn-bg: #fff4dc;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 12px 32px rgba(5, 49, 121, 0.10);
  --shadow-sm: 0 2px 8px rgba(5, 49, 121, 0.08);

  --font-head: "Quicksand", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1120px;
  --gutter: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-deep);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.2rem; color: var(--ink-2); }
.muted { color: var(--ink-3); }
.small { font-size: 0.92rem; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--navy); color: #fff; padding: 10px 14px; border-radius: 6px;
}
.skip-link:focus { left: 8px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 780px; }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 76px;
}
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-2); font-weight: 500; padding: 8px 12px; border-radius: 8px;
  font-size: 0.98rem;
}
.nav a:hover { background: var(--blue-tint); color: var(--navy); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav .btn { margin-left: 8px; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  width: 44px; height: 44px; cursor: pointer; padding: 0; color: var(--navy);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 4px auto; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px var(--gutter) 16px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 10px; font-size: 1.05rem; }
  .nav .btn { margin: 8px 0 0; text-align: center; }
  .brand__logo { height: 44px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; font-weight: 600; font-family: var(--font-body);
  padding: 12px 22px; border-radius: 10px; border: 2px solid transparent;
  font-size: 1rem; line-height: 1.2; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--blue-tint); }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); }
.btn--lg { padding: 15px 28px; font-size: 1.08rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Sections ---------- */

.section { padding: 72px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-deep); color: #e9f0ff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy .lead { color: #c9d8f5; }
.section--tight { padding: 48px 0; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.kicker {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-dark); margin-bottom: 12px;
}
.section--navy .kicker { color: #7fc4ff; }

@media (max-width: 700px) { .section { padding: 52px 0; } }

/* ---------- Hero ---------- */

.hero {
  padding: 64px 0 56px;
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(13, 148, 254, 0.14), transparent 60%),
    radial-gradient(600px 300px at -10% 110%, rgba(5, 49, 121, 0.08), transparent 60%),
    var(--bg);
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero .lead { margin-bottom: 26px; max-width: 560px; }
.hero__note { margin-top: 22px; font-size: 0.95rem; color: var(--ink-3); max-width: 540px; }

@media (max-width: 900px) {
  .hero { padding: 40px 0 44px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Match card (illustration) ---------- */

.match-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 22px 24px 20px; font-size: 0.95rem;
  position: relative;
}
.match-card__tag {
  position: absolute; top: -12px; left: 20px;
  background: var(--navy); color: #fff; font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600; padding: 4px 10px; border-radius: 999px;
}
.match-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin: 6px 0 4px; }
.match-card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; color: var(--navy-deep); line-height: 1.25; }
.match-card__meta { color: var(--ink-3); font-size: 0.88rem; margin-bottom: 14px; }
.score {
  flex: none; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: var(--ok-bg); color: var(--ok);
  font-weight: 700; line-height: 1;
}
.score b { font-size: 1.2rem; }
.score small { font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; }
.match-card h4 { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 8px; }
.reasons { list-style: none; margin: 0 0 12px; padding: 0; }
.reasons li { padding: 5px 0 5px 28px; position: relative; color: var(--ink-2); }
.reasons li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--ok-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%2314833b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 10.5l3.2 3L15 7'/%3E%3C/svg%3E") center/13px no-repeat;
}
.reasons li.concern::before {
  background: var(--warn-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%239a5b00' stroke-width='2.4' stroke-linecap='round' d='M10 5v6M10 14.5v.5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.reasons li.concern { color: var(--warn); }
.match-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.match-card__actions span {
  font-size: 0.85rem; font-weight: 600; padding: 7px 12px; border-radius: 8px; border: 1px solid var(--line); color: var(--ink-2);
}
.match-card__actions span:first-child { background: var(--blue); border-color: var(--blue); color: #fff; }
.match-card__foot { margin-top: 12px; font-size: 0.78rem; color: var(--ink-3); }

/* ---------- Grids & cards ---------- */

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card--flat { box-shadow: none; }
.section--navy .card { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.14); box-shadow: none; color: #dbe6fb; }
.section--navy .card h3 { color: #fff; }

.icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--blue-soft); color: var(--blue-dark);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.icon svg { width: 24px; height: 24px; }
.section--navy .icon { background: rgba(13, 148, 254, 0.25); color: #9fd3ff; }

/* Numbered steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; padding: 26px 24px 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 14px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* Two-question strip */
.questions { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 28px; }
.question {
  font-family: var(--font-head); font-weight: 700; font-size: 1.45rem; color: var(--navy-deep);
  padding: 26px 28px; border-left: 5px solid var(--blue); background: #fff; border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-sm); line-height: 1.3;
}
@media (max-width: 700px) { .questions { grid-template-columns: 1fr; } .question { font-size: 1.25rem; } }

/* Brand: the "AI" in fishbAIt is red, as in the logo (applied by the build step in text nodes) */
.ai { color: var(--red); }
.section--navy .ai, .cta-band .ai { color: #ff6b73; }   /* lightened on navy so the two letters stay legible */

/* Pull quote */
.pull {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  color: var(--navy-deep); line-height: 1.3; margin: 0 0 16px;
}
.pull .accent { color: var(--blue); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  font-weight: 500; font-size: 0.95rem; color: var(--ink-2);
}

/* Check list */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { position: relative; padding: 6px 0 6px 32px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%230a76cc' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M5 10.5l3.2 3L15 7'/%3E%3C/svg%3E") center/14px no-repeat;
}
.section--navy .checks li::before { background-color: rgba(13, 148, 254, 0.3); }

/* Pipeline */
.pipeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pipeline li {
  display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
}
.pipeline li b { font-family: var(--font-head); color: var(--blue-dark); font-size: 0.95rem; padding-top: 2px; }

/* Coverage table */
.table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); background: var(--bg-alt); }
.table tr:last-child td { border-bottom: 0; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.status { display: inline-block; font-size: 0.8rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.status--on { background: var(--ok-bg); color: var(--ok); }
.status--soon { background: var(--warn-bg); color: var(--warn); }

/* Notice / callout */
.callout {
  border: 1px solid var(--line); border-left: 5px solid var(--navy); background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 22px 0;
}
.callout--blue { border-left-color: var(--blue); }
.callout p:last-child { margin-bottom: 0; }

/* Split layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.split > *, .grid > *, .steps > * { min-width: 0; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 44px 18px 0; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--navy-deep);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 14px; font-size: 1.6rem; line-height: 1; color: var(--blue); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 0 20px; color: var(--ink-2); max-width: 760px; }

/* ---------- Forms ---------- */

.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; color: var(--navy-deep); }
.field .hint { font-weight: 400; color: var(--ink-3); font-size: 0.85rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; padding: 11px 13px; border: 1px solid #c9d3e3; border-radius: 10px;
  background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 3px solid rgba(13, 148, 254, 0.25); outline-offset: 0; }
.field textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.9rem; color: var(--ink-3); }
.form-status { display: none; margin-top: 4px; padding: 14px 16px; border-radius: 10px; background: var(--blue-soft); color: var(--navy-deep); }
.form-status.is-visible { display: block; }

/* Contact details */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.contact-list svg { width: 22px; height: 22px; color: var(--blue-dark); margin-top: 3px; }
.contact-list b { display: block; color: var(--navy-deep); }

/* ---------- Legal pages ---------- */

.legal { max-width: 800px; }
.legal h1 { font-size: 2.2rem; }
.legal h2 { font-size: 1.45rem; margin-top: 2em; }
.legal h3 { font-size: 1.1rem; margin-top: 1.5em; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul, .legal ol { padding-left: 1.4em; }
.legal li { margin-bottom: 0.4em; }
.legal .meta { color: var(--ink-3); font-size: 0.95rem; margin-bottom: 28px; }
.legal .shout { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.legal address { font-style: normal; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0 0 24px; padding: 0; list-style: none; font-size: 0.95rem; }

/* ---------- CTA band ---------- */

.cta-band { background: linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #0a4fb0); color: #fff; padding: 64px 0; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #d6e4ff; }
.cta-band .btn--primary { background: #fff; color: var(--navy); border-color: #fff; }
.cta-band .btn--primary:hover { background: var(--blue-soft); border-color: var(--blue-soft); }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.cta-band .btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* ---------- Footer ---------- */

.site-footer { border-top: 1px solid var(--line); background: #fff; padding: 48px 0 28px; font-size: 0.95rem; color: var(--ink-2); }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--ink-2); }
.site-footer a:hover { color: var(--navy); }
.site-footer address { font-style: normal; line-height: 1.6; }
.site-footer .brand__logo { height: 56px; margin-bottom: 14px; }
.site-footer .legal-line { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-3); }
.site-footer .legal-line p { margin-bottom: 6px; }
@media (max-width: 900px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .cols { grid-template-columns: 1fr; } }

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; }
.center { text-align: center; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
  a { color: inherit; text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
