:root {
  --ink: #101923;
  --muted: #66717d;
  --line: #dfe5e9;
  --bg: #f7f9fa;
  --white: #ffffff;
  --navy: #0b1722;
  --accent: #2f7d67;
  --accent-dark: #236250;
  --warm: #d89b4a;
  --danger: #ad5b52;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(10, 24, 35, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(980px, calc(100% - 40px)); }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(16,25,35,.08);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Manrope, sans-serif; font-weight: 800; }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: var(--accent); color: white; }
.nav-links { display: flex; gap: 26px; align-items: center; font-weight: 600; font-size: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border: 1px solid var(--accent);
  padding: 13px 18px;
  border-radius: 11px;
  font-weight: 700;
  transition: .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-sm { padding: 10px 14px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--bg); }

.hero {
  padding: 92px 0 74px;
  background:
    radial-gradient(circle at 80% 10%, rgba(47,125,103,.14), transparent 32%),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.eyebrow, .section-label { color: var(--accent); font-weight: 800; font-size: 12px; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(44px, 6vw, 74px); letter-spacing: -.04em; margin-bottom: 24px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.03em; margin-bottom: 18px; }
h3 { font-size: 21px; margin-bottom: 10px; }
.hero-copy { color: var(--muted); font-size: 19px; max-width: 690px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }
.hero-proof div { padding-top: 14px; border-top: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof span { color: var(--muted); font-size: 13px; margin-top: 4px; }

.dashboard-card { background: var(--navy); color: white; border-radius: 24px; padding: 26px; box-shadow: var(--shadow); }
.card-topline { display: flex; justify-content: space-between; align-items: center; font-weight: 700; margin-bottom: 24px; }
.pill { background: rgba(255,255,255,.1); padding: 5px 9px; border-radius: 999px; color: #cbd5dc; font-size: 11px; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric { background: rgba(255,255,255,.06); padding: 18px; border-radius: 14px; }
.metric span { display: block; color: #aebbc4; font-size: 12px; margin-bottom: 5px; }
.metric strong { font-size: 28px; font-family: Manrope, sans-serif; }
.chart-block { margin-top: 22px; padding: 18px; background: rgba(255,255,255,.04); border-radius: 14px; }
.chart-head, .legend { display: flex; justify-content: space-between; gap: 10px; font-size: 12px; color: #aebbc4; }
.bar { display: flex; height: 12px; overflow: hidden; border-radius: 99px; margin: 14px 0 10px; }
.bar .good { width: 71%; background: #50a98d; }
.bar .watch { width: 21%; background: var(--warm); }
.bar .risk { width: 8%; background: var(--danger); }
.recommendation { margin-top: 18px; border-left: 3px solid var(--accent); padding-left: 14px; }
.rec-label { color: #91b9ad; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 800; }
.recommendation p { margin: 6px 0 0; color: #d9e1e6; }

.section { padding: 90px 0; }
.alt { background: var(--bg); }
.problem p, .section-heading-row p, .about-copy p, .contact p, .pilot p { color: var(--muted); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.problem-item { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.problem-item > span { color: var(--accent); font-weight: 800; font-size: 12px; }
.problem-item p { margin-bottom: 0; }
.section-heading-row { display: grid; grid-template-columns: 1fr .8fr; gap: 60px; align-items: end; margin-bottom: 38px; }
.section-heading-row p { margin: 0 0 10px; }

.services-grid { display: grid; grid-template-columns: 1.35fr .825fr .825fr; gap: 20px; }
.service-card { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.service-card.featured { box-shadow: var(--shadow); }
.service-number { color: var(--accent); font-weight: 800; font-size: 12px; margin-bottom: 28px; }
.service-card p, .service-card li { color: var(--muted); }
.service-card ul { margin: 20px 0 0; padding-left: 19px; }
.service-card li { margin: 7px 0; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.step { padding: 28px; border-top: 3px solid var(--accent); background: var(--bg); border-radius: 0 0 var(--radius) var(--radius); }
.step-num { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: white; border: 1px solid var(--line); font-weight: 800; margin-bottom: 36px; }
.step p { color: var(--muted); margin-bottom: 0; }

.dark { background: var(--navy); color: white; }
.light { color: #75b8a3; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.big-copy { color: white !important; font-size: 25px; font-weight: 700; }
.about-copy p { color: #bdc7ce; font-size: 17px; margin-top: 0; }

.pilot { background: #eef5f2; }
.pilot-box { display: grid; grid-template-columns: 1.4fr .6fr; gap: 44px; align-items: center; }
.pilot-price { background: white; border: 1px solid #d7e3df; border-radius: var(--radius); padding: 28px; box-shadow: 0 16px 40px rgba(35,98,80,.08); }
.pilot-price span, .pilot-price small { display: block; color: var(--muted); }
.pilot-price strong { display: block; font-family: Manrope, sans-serif; font-size: 38px; margin: 6px 0; }
.pilot-price .btn { width: 100%; margin-top: 18px; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; }
.contact-form { display: grid; gap: 16px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg); }
.contact-form label { font-weight: 700; font-size: 13px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #cdd6db;
  border-radius: 10px;
  padding: 12px 13px;
  font: inherit;
  background: white;
}
.contact-form textarea { resize: vertical; }
.form-note { margin: 0; font-size: 12px; }

footer { padding: 34px 0; background: #08111a; color: #b9c4cb; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; }
footer .brand { color: white; }

@media (max-width: 900px) {
  .nav-links a:not(.btn) { display: none; }
  .hero-grid, .section-heading-row, .about-grid, .pilot-box, .contact-grid { grid-template-columns: 1fr; }
  .hero-proof, .problem-grid, .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
}

@media (max-width: 600px) {
  .container, .narrow { width: min(100% - 26px, 1180px); }
  .nav { min-height: 66px; }
  .brand { font-size: 14px; }
  .nav-links .btn { display: none; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

/* Accessible type, navigation and small-screen refinements. */
section[id] { scroll-margin-top: 96px; }
:focus-visible { outline: 3px solid #d89b4a; outline-offset: 4px; }
.brand-mark { flex-shrink: 0; }
.hero-grid > *, .contact-grid > * { min-width: 0; }
.pill, .rec-label { font-size: .75rem; }
.metric span, .chart-head, .legend, .contact-form label, .hero-proof span, .footer-row { font-size: .875rem; }
.contact-form input, .contact-form textarea, button { font-size: 1rem; }
.btn:disabled { cursor: not-allowed; opacity: .65; transform: none; }
.card-topline, .legend { flex-wrap: wrap; }
@media (max-width: 600px) { .dashboard-card { padding: 20px; } .section { padding: 60px 0; } .hero-grid { gap: 36px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn { transition: none; } }

/* Stockwise identity and mission. */
.brand { gap: 12px; }
.brand-logo { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.brand-wordmark { display: block; font-size: 1.375rem; line-height: 1.1; letter-spacing: -.035em; }
.brand-descriptor { display: block; margin-top: 5px; font-family: Inter, system-ui, sans-serif; font-size: .75rem; line-height: 1.2; letter-spacing: .19em; text-transform: uppercase; font-weight: 600; }
.about-copy .mission-statement { color: #fff; font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; line-height: 1.5; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #32424e; }
footer .brand-descriptor { color: #b9c4cb; }
@media (max-width: 600px) { .brand-logo { width: 44px; height: 44px; } .brand-wordmark { font-size: 1.2rem; } }

/* SEO hero refinement: retain the original punchy message while making the primary heading descriptive. */
.hero-tagline {
  margin: -8px 0 14px;
  font-family: Manrope, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--ink);
}
@media (max-width: 600px) {
  .hero-tagline { font-size: 24px; margin-top: -4px; }
}
.hero h1 { font-size: clamp(38px, 5vw, 62px); }
@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
}
