:root {
  --ink: #171526;
  --muted: #686979;
  --paper: #f7f8f5;
  --white: #fff;
  --aqua: #35d7c5;
  --green: #5be79c;
  --violet: #8267ef;
  --line: #dedfe3;
  --navy: #181526;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input, textarea { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid rgba(23,21,38,.11);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  font-weight: 600;
  letter-spacing: -.03em;
}
.brand span { line-height: 1.05; }
.brand strong { display: block; }
.brand-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center 36%;
  border-radius: 50%;
  mix-blend-mode: multiply;
}
nav { display: flex; gap: 32px; margin-left: auto; }
nav a { color: #4d4e5a; font-size: 14px; text-decoration: none; }
nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(23,21,38,.14);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(23,21,38,.2); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-outline { color: var(--ink); background: transparent; border: 1px solid var(--ink); box-shadow: none; }
.section { width: min(1180px, calc(100% - 40px)); margin: auto; }

.hero {
  min-height: 735px;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  align-items: center;
  gap: 54px;
  padding: 76px 0 82px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #636471;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 22px; height: 2px; background: var(--aqua); }
h1, h2, h3 { font-family: Manrope, sans-serif; }
h1 {
  margin: 0;
  font-size: clamp(46px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -.058em;
}
h1 em, h2 em { color: var(--violet); font-style: normal; }
.hero-lede {
  max-width: 590px;
  margin: 26px 0 32px;
  color: #5d5e6b;
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 30px; }
.text-link { font-size: 14px; font-weight: 700; text-underline-offset: 5px; }
.text-link span { margin-left: 5px; color: var(--violet); }
.hero-proof { display: flex; gap: 34px; margin-top: 48px; }
.hero-proof div { display: flex; flex-direction: column; padding-right: 30px; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border: 0; }
.hero-proof strong { font: 700 20px Manrope, sans-serif; }
.hero-proof span { color: var(--muted); font-size: 11px; }

.dashboard-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid #d7d8df;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 36px 70px rgba(39,35,63,.18), 0 4px 16px rgba(39,35,63,.08);
  transform: rotate(1deg);
}
.dashboard-shell::before {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(53,215,197,.11);
  content: "";
  filter: blur(5px);
}
.dashboard-topbar { height: 45px; padding: 0 16px; display: flex; align-items: center; gap: 14px; background: #1d192c; color: #fff; font-size: 11px; }
.dashboard-topbar > span { margin: auto; opacity: .76; }
.dashboard-topbar small { padding: 3px 9px; color: #4ee1a7; background: rgba(78,225,167,.1); border-radius: 20px; font-size: 9px; text-transform: uppercase; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #6e687b; }
.window-dots i:first-child { background: var(--violet); }
.dashboard-body { position: relative; padding: 25px; background: #fbfbfd; }
.dash-heading { display: flex; align-items: center; justify-content: space-between; }
.dash-heading small, .insight-card small { color: #9a9aa5; font-size: 8px; letter-spacing: .12em; }
.dash-heading h2 { margin: 4px 0 0; font-size: 20px; }
.dash-heading button { padding: 8px 11px; border: 1px solid #e4e4e9; border-radius: 7px; background: #fff; color: #656573; font-size: 9px; }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; margin: 21px 0 12px; }
.metric-grid article, .chart-card, .insight-card { border: 1px solid #e7e7ec; background: white; border-radius: 10px; }
.metric-grid article { padding: 13px; }
.metric-grid span { display: block; color: #858591; font-size: 9px; }
.metric-grid strong { display: block; margin: 6px 0 3px; font: 700 20px Manrope, sans-serif; }
.metric-grid small { font-size: 8px; }
.up { color: #20a579; }
.down { color: #df745f; }
.chart-card { padding: 14px 14px 0; }
.chart-label { display: flex; justify-content: space-between; font-size: 9px; font-weight: 700; }
.chart-label small { color: #93939e; font-weight: 400; }
.chart-label i { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--violet); }
.chart-label i:last-of-type { background: var(--aqua); }
.chart-card svg { display: block; width: 100%; margin-top: 4px; }
.grid-lines path { stroke: #efeff2; stroke-width: 1; }
.target-line { fill: none; stroke: var(--aqua); stroke-width: 2; stroke-dasharray: 5 5; }
.area-line { fill: url("#chart-fill"); fill: rgba(130,103,239,.08); }
.actual-line { fill: none; stroke: var(--violet); stroke-width: 3; stroke-linecap: round; }
.insight-card { display: flex; gap: 12px; margin-top: 12px; padding: 14px; }
.insight-icon { display: grid; place-items: center; flex: 0 0 34px; height: 34px; border-radius: 8px; color: var(--violet); background: #f0edff; }
.insight-card strong { display: block; margin: 4px 0; font-size: 11px; }
.insight-card p { margin: 0; color: #7a7a86; font-size: 8px; line-height: 1.45; }

.problem-strip { padding: 25px 20px; color: white; background: var(--navy); text-align: center; }
.problem-strip p { margin: 0; color: #c9c7d0; }
.problem-strip strong { color: var(--aqua); }

.deliverables { padding: 115px 0 125px; }
.section-intro { max-width: 720px; }
.section-intro h2 { margin: 0; font-size: clamp(38px, 4.3vw, 57px); line-height: 1.08; letter-spacing: -.05em; }
.section-intro > p:last-child { max-width: 600px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 56px; }
.feature-grid article { position: relative; min-height: 270px; padding: 28px 25px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.57); transition: transform .2s, border-color .2s; }
.feature-grid article:hover { transform: translateY(-4px); border-color: var(--aqua); }
.feature-number { position: absolute; top: 22px; right: 22px; color: #aaaab2; font-size: 11px; }
.feature-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; color: var(--violet); background: #eeebff; font-size: 23px; }
.feature-grid h3 { margin: 44px 0 12px; font-size: 19px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.products { padding: 0 0 125px; }
.product-intro { margin-bottom: 48px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.product-card { min-height: 480px; padding: 36px; border: 1px solid var(--line); border-radius: 21px; background: white; box-shadow: 0 18px 45px rgba(39,35,63,.08); }
.field-product { color: white; border-color: #2d293d; background: var(--navy); }
.product-topline { display: flex; justify-content: space-between; color: #9696a1; font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.product-topline b { font: 600 11px Manrope,sans-serif; }
.product-card h3 { margin: 38px 0 13px; font-size: 40px; letter-spacing: -.05em; }
.product-card > p { max-width: 510px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.field-product > p { color: #bbb9c4; }
.product-card ul { margin: 28px 0 38px; padding: 0; list-style: none; color: #555662; font-size: 13px; line-height: 2.15; }
.field-product ul { color: #ceccd5; }
.product-card li::before { content: "✓"; margin-right: 10px; color: var(--aqua); font-weight: 700; }
.product-actions { display: flex; align-items: center; gap: 22px; }
.field-button { color: var(--navy); background: var(--aqua); }
.kernel-foundation { display: flex; align-items: center; gap: 17px; margin-top: 16px; padding: 20px 24px; border: 1px solid #d9d9df; border-radius: 13px; background: rgba(255,255,255,.55); }
.kernel-icon { display: grid; place-items: center; flex: 0 0 39px; height: 39px; border-radius: 9px; color: white; background: var(--violet); font: 700 17px Manrope,sans-serif; }
.kernel-foundation strong, .kernel-foundation span { display: block; }
.kernel-foundation strong { font: 700 13px Manrope,sans-serif; }
.kernel-foundation span { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.process { padding-bottom: 120px; }
.process-card { padding: 74px; color: white; background: var(--navy); border-radius: 28px; box-shadow: 0 25px 60px rgba(24,21,38,.17); }
.inverse h2 em { color: var(--aqua); }
.inverse .eyebrow { color: #a9a7b2; }
.process ol { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 62px 0 0; padding: 0; list-style: none; counter-reset: step; }
.process li { position: relative; padding: 0 42px 0 0; counter-increment: step; }
.process li:not(:last-child) { border-right: 1px solid #3c384c; margin-right: 42px; }
.process li::before { content: "0" counter(step); display: block; margin-bottom: 28px; color: var(--aqua); font: 700 13px Manrope,sans-serif; }
.process li span { color: #9693a1; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.process li strong { display: block; margin: 8px 0 12px; font: 700 23px Manrope,sans-serif; }
.process li p { margin: 0; color: #b9b7c1; font-size: 14px; line-height: 1.6; }

.pricing { padding-bottom: 120px; }
.price-card { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 60px; margin-top: 48px; padding: 42px 46px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.price-card p { margin: 0 0 8px; color: var(--violet); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.price-card strong { display: block; font: 700 29px Manrope,sans-serif; }
.price-card > div span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.price-card ul { margin: 0; padding: 0; list-style: none; color: #565762; font-size: 13px; line-height: 2; }
.price-card li::before { content: "✓"; margin-right: 10px; color: #20af80; font-weight: 700; }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding: 75px; margin-bottom: 70px; border-radius: 25px; background: #e8f6f2; }
.contact h2 { margin: 0 0 17px; font-size: clamp(36px,4vw,52px); line-height: 1.08; letter-spacing: -.05em; }
.contact > div > p:last-child { color: #606a69; line-height: 1.65; }
.contact form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact label { color: #474b50; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.contact input, .contact textarea { width: 100%; margin-top: 7px; padding: 14px; border: 1px solid #cdded9; border-radius: 8px; outline: none; background: rgba(255,255,255,.78); color: var(--ink); text-transform: none; letter-spacing: 0; resize: vertical; }
.contact input:focus, .contact textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 3px rgba(130,103,239,.1); }
.full { grid-column: 1 / -1; }
.form-status { min-height: 20px; margin: 0; color: #397463; font-size: 13px; }

footer { width: min(1180px, calc(100% - 40px)); margin: auto; padding: 0 0 38px; display: flex; align-items: center; gap: 34px; color: var(--muted); }
footer .brand { color: var(--ink); }
footer .brand-mark { width: 42px; height: 42px; }
footer p { margin-left: auto; }
footer small { padding-left: 34px; border-left: 1px solid var(--line); }

@media (max-width: 940px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .dashboard-shell { max-width: 680px; transform: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .price-card { grid-template-columns: 1fr 1fr; }
  .price-card .button { grid-column: 1 / -1; }
  .contact { grid-template-columns: 1fr; gap: 35px; padding: 48px; }
}
@media (max-width: 650px) {
  .site-header { width: min(100% - 28px, 1180px); height: 72px; }
  .site-header .button { display: none; }
  .section { width: min(100% - 28px, 1180px); }
  .hero { gap: 44px; padding: 55px 0 65px; }
  h1 { font-size: 44px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .text-link { text-align: center; }
  .hero-proof { gap: 15px; }
  .hero-proof div { padding-right: 14px; }
  .hero-proof strong { font-size: 19px; }
  .dashboard-body { padding: 15px; }
  .metric-grid strong { font-size: 15px; }
  .deliverables { padding: 80px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 220px; }
  .feature-grid h3 { margin-top: 30px; }
  .products { padding-bottom: 80px; }
  .product-card { min-height: auto; padding: 28px 22px; }
  .product-actions { align-items: stretch; flex-direction: column; }
  .product-actions .text-link { text-align: center; }
  .kernel-foundation { align-items: flex-start; }
  .process { padding-bottom: 80px; }
  .process-card { padding: 48px 26px; }
  .process ol { grid-template-columns: 1fr; gap: 38px; }
  .process li:not(:last-child) { padding-bottom: 38px; margin-right: 0; border-right: 0; border-bottom: 1px solid #3c384c; }
  .pricing { padding-bottom: 80px; }
  .price-card { grid-template-columns: 1fr; gap: 30px; padding: 30px 24px; }
  .price-card .button { grid-column: auto; }
  .contact { width: 100%; margin-bottom: 50px; padding: 52px 22px; border-radius: 0; }
  .contact form { grid-template-columns: 1fr; }
  .contact label { grid-column: 1; }
  footer { flex-wrap: wrap; }
  footer p { width: 100%; margin: 0; }
  footer small { padding-left: 0; border: 0; }
}
