:root {
  --ink: #17212B;
  --muted: #5C696D;
  --paper: #F6FAF7;
  --surface: #EAF2EE;
  --panel: #FFFFFF;
  --green: #237A70;
  --green-dark: #195F57;
  --blue: #416BAD;
  --accent: #F2A65A;
  --border: #CFDCD6;
  --shadow: 0 22px 60px rgba(23, 32, 42, 0.13);
  --shadow-soft: 0 12px 34px rgba(23, 32, 42, 0.09);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
:focus-visible { outline: 3px solid rgba(242, 166, 90, 0.9); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 250, 247, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}
.brand-link img,
.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus {
  color: var(--ink);
  background: var(--surface);
}
.nav-links .nav-cta {
  background: var(--green);
  color: #fff;
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
  background: var(--green-dark);
  color: #fff;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}
.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
}
.hero--home {
  position: relative;
  width: 100%;
  min-height: min(760px, calc(100vh - 72px));
  max-width: none;
  overflow: hidden;
  margin: 0;
  padding: 78px max(24px, calc((100vw - var(--max)) / 2)) 86px;
  background: #111D23;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,29,35,0.98) 0%, rgba(17,29,35,0.92) 42%, rgba(17,29,35,0.38) 100%);
  z-index: 0;
}
.hero--home .hero-copy,
.hero--home .hero-media {
  position: relative;
  z-index: 1;
}
.hero--home .eyebrow {
  color: #9BE0D4;
}
.hero--home .hero-lede,
.hero--home .hero-note,
.hero--home .shot figcaption {
  color: rgba(255,255,255,0.78);
}
.hero--home .secondary-action {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.hero:not(.hero--home) {
  min-height: auto;
  grid-template-columns: minmax(0, 760px);
  padding-bottom: 56px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { letter-spacing: 0; }
h1 {
  max-width: 920px;
  margin: 0;
  font-size: 5.15rem;
  line-height: 0.98;
}
h2 {
  margin: 0;
  font-size: 3.15rem;
  line-height: 1.04;
}
h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}
p {
  max-width: 68ch;
}
.hero-lede {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.26rem;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.primary-action,
.secondary-action,
.text-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.primary-action {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
}
.primary-action:hover,
.primary-action:focus {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.secondary-action {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
}
.secondary-action:hover,
.secondary-action:focus {
  border-color: rgba(35, 122, 112, 0.45);
  transform: translateY(-1px);
}
.text-action {
  min-height: auto;
  padding: 0;
  color: var(--green);
}
.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 800;
}
.shot {
  margin: 0;
}
.shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
}
.shot__image {
  display: block;
  width: 100%;
  height: auto;
  overflow: clip;
  border: 1px solid rgba(207, 220, 214, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.shot--desktop .shot__image { aspect-ratio: 3 / 2; }
.shot--mobile {
  max-width: 320px;
  margin: 0 auto;
}
.shot--mobile .shot__image {
  aspect-ratio: 9 / 16;
  border-radius: 28px;
}
.hero-media .shot__image { aspect-ratio: 16 / 10; }
.status-strip,
.section,
.final-cta,
.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}
.status-strip {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.status-strip p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.status-strip strong {
  color: var(--ink);
}
.section {
  padding: 96px 0;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.08rem;
}
.card-grid,
.pricing-cards,
.link-grid,
.shot-grid {
  display: grid;
  gap: 16px;
}
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.shot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card,
.price-card,
.link-grid a,
.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23, 32, 42, 0.03);
}
.info-card,
.price-card,
.link-grid a {
  padding: 24px;
}
.info-card,
.price-card {
  min-height: 100%;
}
.info-card p,
.price-card p {
  color: var(--muted);
}
.price-card--highlight {
  border-color: rgba(35, 122, 112, 0.4);
  box-shadow: var(--shadow);
}
.price {
  margin: 12px 0;
  color: var(--ink) !important;
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1;
}
.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1rem;
}
.product-story {
  display: grid;
  gap: 72px;
}
.story-block,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 52px;
  align-items: center;
}
.story-block {
  padding-top: 52px;
  border-top: 1px solid var(--border);
}
.story-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.story-block:nth-child(even) > div {
  order: 2;
}
.use-cases,
.feature-band {
  background: var(--surface);
}
.pricing-teaser,
.pricing-page {
  border-top: 1px solid var(--border);
}
.table-wrap {
  margin-top: 28px;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
}
caption {
  margin-bottom: 10px;
  color: var(--muted);
  text-align: left;
  font-weight: 800;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}
th {
  color: var(--ink);
  background: var(--surface);
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}
.prose {
  max-width: 820px;
}
.prose h2 {
  margin-top: 42px;
  font-size: 2.15rem;
}
.prose h2:first-child {
  margin-top: 0;
}
.prose p {
  color: var(--muted);
  font-size: 1.08rem;
}
.section-link {
  margin-top: 22px;
}
.final-cta {
  margin-bottom: 84px;
  padding: 60px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}
.final-cta .eyebrow {
  color: #92D6C8;
}
.final-cta p {
  color: rgba(255,255,255,0.78);
}
.final-cta .primary-action {
  margin-top: 16px;
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.site-footer {
  padding: 46px 0 56px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.footer-top p,
.footer-bottom {
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.footer-grid nav {
  display: grid;
  gap: 8px;
  align-content: start;
}
.footer-grid a,
.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
}
.footer-grid a:hover,
.footer-grid a:focus,
.footer-bottom a:hover,
.footer-bottom a:focus {
  color: var(--ink);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 4.1rem;
  }
  h2 {
    font-size: 2.6rem;
  }
  .hero,
  .story-block,
  .split {
    grid-template-columns: 1fr;
  }
  .hero--home {
    min-height: auto;
    padding-top: 72px;
  }
  .hero--home::before {
    background: rgba(17,29,35,0.9);
  }
  .story-block:nth-child(even) > div {
    order: 0;
  }
  .card-grid,
  .pricing-cards,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .nav-shell {
    width: min(var(--max), calc(100% - 28px));
    min-height: 66px;
  }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { display: flex; }
  .nav-links a {
    padding: 13px 12px;
    color: var(--ink);
  }
  h1 {
    font-size: 2.58rem;
    line-height: 1.02;
  }
  h2 {
    font-size: 2.05rem;
    line-height: 1.08;
  }
  .hero-lede {
    margin-top: 16px;
    font-size: 1rem;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }
  .hero-note {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  .hero {
    min-height: auto;
    padding: 62px 0 52px;
    gap: 34px;
  }
  .hero--home {
    padding: 36px 20px 30px;
    gap: 24px;
  }
  .hero--home .shot figcaption {
    display: none;
  }
  .hero-media .shot__image {
    max-width: 320px;
    margin: 0 auto;
  }
  .section { padding: 68px 0; }
  .card-grid,
  .pricing-cards,
  .link-grid,
  .shot-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    display: grid;
  }
  .primary-action,
  .secondary-action {
    width: 100%;
  }
  .shot figcaption {
    font-size: 0.9rem;
  }
  .shot--mobile {
    max-width: 280px;
  }
  .final-cta {
    padding: 34px 22px;
    margin-bottom: 44px;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 420px) {
  h1 {
    font-size: 2.28rem;
  }
  h2 {
    font-size: 1.85rem;
  }
  .nav-links {
    left: 10px;
    right: 10px;
  }
}
@media (max-width: 360px), (max-width: 420px) and (max-height: 740px) {
  .hero--home {
    min-height: auto;
    padding-bottom: 28px;
  }
  .hero--home .hero-copy {
    max-width: 100%;
  }
  .hero--home .hero-media {
    position: absolute;
    right: -128px;
    bottom: -12px;
    width: 265px;
    opacity: 0.1;
    pointer-events: none;
  }
  .hero--home .hero-media .shot__image {
    width: 100%;
    max-width: none;
    box-shadow: none;
  }
}
