:root {
  color-scheme: light;
  --bg: #f6f8f8;
  --surface: #ffffff;
  --surface-soft: #eef6f4;
  --surface-blue: #edf4ff;
  --ink: #121826;
  --muted: #596473;
  --line: #dce5e7;
  --line-strong: #c5d3d6;
  --teal: #0f766e;
  --teal-dark: #0b4f4a;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --blue: #1d4ed8;
  --gold: #d29216;
  --shadow: 0 24px 60px rgba(18, 24, 38, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.6 "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(15, 118, 110, 0.08) 0 34%, transparent 34% 100%),
    linear-gradient(180deg, #fbfdfd 0%, var(--bg) 38%, #ffffff 100%);
}

body,
button,
input,
textarea,
select {
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 8px;
  z-index: 20;
  transform: translateY(calc(-100% - 16px));
  padding: 10px 14px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 229, 231, 0.84);
  background: rgba(251, 253, 253, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: var(--ink);
  text-decoration: none;
}

.brand__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.16);
}

.brand__name,
.brand__line {
  display: block;
}

.brand__name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.brand__line {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.site-nav a {
  color: #344054;
}

.site-nav a:hover,
.button:hover {
  transform: translateY(-1px);
}

.site-nav svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.nav-cta {
  color: #ffffff !important;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(18, 24, 38, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 56px;
  padding: 54px 0 46px;
}

.hero__copy {
  max-width: 560px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  font-weight: 800;
}

h1 {
  font-size: 62px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 20px;
}

.lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button--primary {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.24);
}

.button--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button--secondary {
  color: #ffffff;
  background: var(--teal);
  border-color: var(--teal);
}

.button--secondary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button--ghost {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line-strong);
}

.button--light {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #344054;
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.hero__visual {
  min-width: 0;
}

.product-frame,
.shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-frame--hero {
  position: relative;
}

.product-frame__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}

.product-frame__bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.product-frame__bar span:first-child {
  background: var(--orange);
}

.product-frame__bar span:nth-child(2) {
  background: var(--gold);
}

.product-frame__bar span:nth-child(3) {
  background: var(--teal);
}

.product-frame img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: left top;
  background: #ffffff;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.hero-proof div {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  font-size: 13px;
  line-height: 1.25;
}

.hero-proof span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-strip__grid div {
  min-width: 0;
  padding: 24px 20px;
  border-left: 1px solid var(--line);
}

.proof-strip__grid div:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.proof-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 78px 0;
}

.section--band {
  width: 100%;
  background: linear-gradient(180deg, #10202e 0%, #14283a 100%);
}

.section--pricing {
  border-block: 1px solid var(--line);
}

.section__intro {
  max-width: 720px;
}

.section__intro--wide {
  max-width: 820px;
}

.section__intro p:not(.section-label) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.section-label {
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.workflow-card,
.price-card,
.capability-card,
.value-item,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.workflow-card {
  padding: 24px;
}

.workflow-card h3,
.price-card h3,
.value-item h3 {
  margin-top: 12px;
}

.workflow-card p,
.price-card p,
.value-item p,
.capability-card span,
.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 800;
}

.section--split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: start;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
}

.value-mark {
  width: 12px;
  height: 56px;
  margin-top: 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--orange), var(--teal));
}

.capability-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: start;
}

.section--band .section-label {
  color: #fbc48d;
}

.section--band h2,
.section--band .section__intro p {
  color: #ffffff;
}

.section--band .section__intro p:not(.section-label) {
  color: #c9d7dc;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.capability-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.capability-card strong,
.capability-card span {
  display: block;
}

.capability-card strong {
  color: #ffffff;
}

.capability-card span {
  color: #c9d7dc;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 34px;
}

.shot--large {
  grid-row: span 2;
}

.shot img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: left top;
  background: #ffffff;
}

.shot--large img {
  height: 620px;
}

figcaption {
  padding: 13px 14px 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.price-card {
  padding: 24px;
}

.price-card--featured {
  border-color: rgba(249, 115, 22, 0.45);
  background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
  box-shadow: 0 20px 44px rgba(249, 115, 22, 0.12);
}

.price {
  margin-top: 16px;
  color: var(--ink) !important;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

.faq-list p {
  padding: 0 22px 20px;
}

.intake-hero {
  align-items: center;
}

.intake-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(15, 118, 110, 0.58);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-hint {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.summary {
  display: block;
  overflow: auto;
  min-height: 130px;
  margin: 22px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d8e4ea;
  background: #0d1626;
  font: 13px/1.6 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  white-space: pre-wrap;
}

.final-cta {
  padding: 64px 0;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal-dark), #15233b 58%, #261a14 100%);
}

.final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  font-size: 42px;
}

.final-cta p {
  max-width: 650px;
  margin-top: 14px;
  color: #d9e3e6;
  font-size: 18px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

@media (max-width: 1020px) {
  .site-header__inner,
  .final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .section--split,
  .capability-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .proof-strip__grid,
  .workflow-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip__grid div:nth-child(3) {
    border-left: 0;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .shot--large {
    grid-row: auto;
  }

  .shot--large img,
  .shot img {
    height: 360px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: static;
  }

  .site-header__inner {
    min-height: 70px;
    padding: 14px 0;
    gap: 12px;
    align-items: center;
    flex-direction: row;
  }

  .brand {
    min-width: 0;
  }

  .brand__line {
    display: none;
  }

  .site-nav {
    width: auto;
    display: flex;
    flex: 0 0 auto;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }

  .site-nav a {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .nav-cta {
    white-space: nowrap;
  }

  .hero {
    padding: 22px 0 20px;
    gap: 20px;
  }

  .hero__copy {
    max-width: none;
  }

  h1 {
    font-size: 34px;
  }

  h2,
  .final-cta h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 18px;
  }

  .lead,
  .section__intro p:not(.section-label),
  .final-cta p {
    font-size: 16px;
  }

  .lead {
    margin-top: 18px;
    line-height: 1.55;
  }

  .hero__actions,
  .final-cta__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .product-frame img {
    height: 180px;
  }

  .signal-list {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .hero-proof,
  .proof-strip__grid,
  .workflow-grid,
  .pricing-grid,
  .capability-grid,
  .intake-form {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .proof-strip__grid div,
  .proof-strip__grid div:first-child,
  .proof-strip__grid div:nth-child(3) {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .proof-strip__grid div:first-child {
    border-top: 0;
  }

  .section {
    padding: 52px 0;
  }

  .value-item {
    padding: 18px;
  }

  .shot img,
  .shot--large img {
    height: 250px;
  }

  .price {
    font-size: 36px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
