:root {
  color-scheme: light;
  --canvas: #f7f8f4;
  --canvas-warm: #fff8ed;
  --ink: #12140f;
  --body: #50564b;
  --muted: #7c8276;
  --hairline: #dfe3d8;
  --white: #fff;
  --night: #070806;
  --night-panel: #10130e;
  --night-soft: #1a1f17;
  --on-night: #f7f8f4;
  --red: #e5462f;
  --red-deep: #b73424;
  --citrus: #f5a331;
  --botanical: #7ccf86;
  --mint: #7bd7c5;
  --cream: #f1dfbd;
  --blue: #4d76ff;
  --shadow: 0 20px 60px rgba(18, 20, 15, 0.08);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 14px;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 14px auto 0;
  align-items: center;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  border: 1px solid rgba(223, 227, 216, 0.9);
  border-radius: 8px;
  background: rgba(247, 248, 244, 0.88);
  box-shadow: 0 18px 60px rgba(18, 20, 15, 0.08);
  padding: 10px 12px 10px 16px;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 19px;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.site-nav a,
.text-link {
  border-radius: 8px;
  color: var(--body);
  font-size: 14px;
  font-weight: 720;
  padding: 10px 12px;
}

.site-nav a:hover,
.text-link:hover {
  background: #fff;
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 820;
  padding: 13px 21px;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 34px rgba(229, 70, 47, 0.23);
}

.button-primary:hover {
  background: #ff583e;
}

.button-secondary {
  border-color: var(--hairline);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(229, 70, 47, 0.3);
  color: var(--red-deep);
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  align-items: center;
  gap: 48px;
  grid-template-columns: 0.48fr 0.52fr;
  padding: 54px 0 72px;
}

.hero-copy {
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  font-size: 74px;
  font-weight: 860;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--body);
  font-size: 20px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.compatibility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.compatibility span,
.request-points span {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: #fff;
  color: var(--body);
  font-size: 13px;
  font-weight: 720;
  padding: 9px 12px;
}

.hero-visual {
  position: relative;
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 28px 90px rgba(18, 20, 15, 0.2);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 8, 6, 0.04), rgba(7, 8, 6, 0.46));
  pointer-events: none;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: grid;
  max-width: 250px;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 8, 6, 0.78);
  color: var(--on-night);
  padding: 16px;
  backdrop-filter: blur(16px);
}

.hero-card span {
  color: var(--botanical);
  font-weight: 900;
}

.hero-card strong {
  font-size: 18px;
}

.hero-card small {
  color: rgba(247, 248, 244, 0.74);
  line-height: 1.45;
}

.card-top {
  top: 24px;
  right: 24px;
}

.card-bottom {
  bottom: 24px;
  left: 24px;
}

.trust-row {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 28px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
}

.trust-row,
.trust-row div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trust-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.trust-row div {
  flex-wrap: wrap;
}

.trust-row span {
  color: var(--ink);
  font-weight: 780;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  font-size: 46px;
  font-weight: 830;
  line-height: 1.08;
}

.section-head p:not(.eyebrow),
.request-copy p,
.document-copy p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.68;
}

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

.comparison-card,
.profile-cards article,
.flow-grid article,
.tool-grid article,
.lead-form,
.document-grid article {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.comparison-card {
  overflow: hidden;
}

.comparison-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.comparison-card h3,
.comparison-card p,
.comparison-card .tag {
  margin-right: 24px;
  margin-left: 24px;
}

.comparison-card .tag {
  margin-top: 24px;
}

.tag {
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.18;
}

.comparison-card p:last-child {
  margin-bottom: 28px;
  color: var(--body);
  line-height: 1.62;
}

.dark-suite {
  background:
    linear-gradient(135deg, rgba(229, 70, 47, 0.16), transparent 36%),
    var(--night);
  color: var(--on-night);
  padding: 98px max(24px, calc((100vw - 1180px) / 2)) 104px;
}

.dark-suite .section-head p:not(.eyebrow) {
  color: rgba(247, 248, 244, 0.72);
}

.dark-suite .eyebrow {
  color: var(--botanical);
}

.suite-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.suite-tab {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 248, 244, 0.72);
  cursor: pointer;
  font-weight: 790;
  padding: 10px 15px;
}

.suite-tab.is-active,
.suite-tab:hover {
  border-color: transparent;
  background: var(--red);
  color: #fff;
}

.suite-showcase {
  display: grid;
  gap: 26px;
  grid-template-columns: 0.88fr 1.12fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.suite-copy {
  align-self: center;
  padding: 24px;
}

.suite-copy h3 {
  margin-bottom: 14px;
  font-size: 38px;
  line-height: 1.12;
}

.suite-copy p:not(.tag),
.suite-copy li {
  color: rgba(247, 248, 244, 0.75);
  line-height: 1.68;
}

.suite-copy ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.suite-copy li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--botanical);
}

.suite-showcase img {
  width: 100%;
  height: 470px;
  border-radius: 8px;
  object-fit: cover;
}

.profile-cards {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-cards article {
  background: var(--night-panel);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  padding: 22px;
}

.dot {
  display: block;
  width: 13px;
  height: 13px;
  margin-bottom: 20px;
  border-radius: 999px;
}

.dot.citrus {
  background: var(--citrus);
}

.dot.cream {
  background: var(--cream);
}

.dot.mint {
  background: var(--mint);
}

.dot.botanical {
  background: var(--botanical);
}

.profile-cards h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.profile-cards p {
  margin-bottom: 0;
  color: rgba(247, 248, 244, 0.68);
  line-height: 1.6;
}

.collaboration {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1fr;
}

.flow-grid {
  display: grid;
  gap: 14px;
}

.flow-grid article {
  padding: 26px;
}

.flow-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-weight: 920;
}

.flow-grid h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.flow-grid p {
  margin-bottom: 0;
  color: var(--body);
  line-height: 1.62;
}

.tools {
  padding-top: 70px;
}

.tool-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tool-grid article {
  overflow: hidden;
}

.tool-grid img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.tool-grid h3 {
  margin: 24px 22px 10px;
  font-size: 24px;
}

.tool-grid p {
  margin: 0 22px 26px;
  color: var(--body);
  line-height: 1.62;
}

.documents {
  display: grid;
  align-items: center;
  gap: 52px;
  background: var(--canvas-warm);
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  grid-template-columns: 0.82fr 1fr;
}

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

.document-grid article {
  min-height: 150px;
  box-shadow: none;
  padding: 24px;
}

.document-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
}

.document-grid span {
  color: var(--body);
  line-height: 1.55;
}

.request-section {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 0.76fr 1fr;
}

.request-copy {
  position: sticky;
  top: 112px;
}

.request-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.lead-form {
  padding: 26px;
}

.form-row {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label span,
.doc-checks legend {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 790;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(229, 70, 47, 0.52);
  box-shadow: 0 0 0 3px rgba(229, 70, 47, 0.1);
}

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

.doc-checks {
  display: grid;
  gap: 10px 14px;
  margin: 0 0 14px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doc-checks legend {
  padding: 0 6px;
}

.doc-checks label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--body);
  font-size: 13px;
  line-height: 1.45;
}

.doc-checks input,
.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  accent-color: var(--red);
}

.consent {
  margin: 14px 0 16px;
}

.consent span {
  margin-bottom: 0;
  color: var(--body);
  font-size: 12px;
  font-weight: 620;
}

.form-submit {
  width: 100%;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-status {
  display: none;
  margin-top: 14px;
  border: 1px solid rgba(124, 207, 134, 0.42);
  border-radius: 8px;
  background: rgba(124, 207, 134, 0.13);
  color: #1d4c25;
  font-size: 13px;
  line-height: 1.55;
  padding: 12px;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(229, 70, 47, 0.38);
  background: rgba(229, 70, 47, 0.1);
  color: var(--red-deep);
}

.footer {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--hairline);
  padding: 34px 0 52px;
}

.footer div {
  display: grid;
  gap: 5px;
}

.footer span {
  color: var(--muted);
  font-size: 14px;
}

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

.footer a {
  color: var(--body);
  font-weight: 720;
}

.page-hero {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  align-items: center;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 78px 0 70px;
}

.page-hero > div {
  max-width: 650px;
}

.page-hero h1 {
  font-size: 64px;
}

.page-hero p:not(.eyebrow) {
  color: var(--body);
  font-size: 19px;
  line-height: 1.68;
}

.page-hero img {
  width: 100%;
  height: 520px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 90px rgba(18, 20, 15, 0.16);
}

.page-hero-dark {
  width: auto;
  max-width: none;
  margin: 34px 0 0;
  background:
    linear-gradient(135deg, rgba(229, 70, 47, 0.18), transparent 36%),
    var(--night);
  color: var(--on-night);
  padding: 80px max(24px, calc((100vw - 1180px) / 2));
}

.page-hero-dark p:not(.eyebrow) {
  color: rgba(247, 248, 244, 0.74);
}

.page-hero-dark .eyebrow {
  color: var(--botanical);
}

.contact-hero {
  padding-bottom: 42px;
}

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

.catalog-grid article {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  grid-template-columns: 0.82fr 1fr;
}

.catalog-grid img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.catalog-grid article > div {
  padding: 26px;
}

.catalog-grid h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.16;
}

.catalog-grid p:not(.tag),
.catalog-grid li {
  color: var(--body);
  line-height: 1.62;
}

.catalog-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-grid li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--red);
}

.service-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  min-height: 280px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
}

.service-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 920;
}

.service-grid h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.16;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--body);
  line-height: 1.62;
}

.service-docs {
  margin-top: 20px;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: 0.76fr 1fr;
  padding-top: 54px;
}

.contact-direct {
  margin-top: 28px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.contact-direct h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-direct p {
  margin-bottom: 8px;
  color: var(--body);
}

.contact-direct a,
.form-note a,
.card-body a {
  color: var(--red-deep);
  font-weight: 760;
}

.cta-band {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px;
}

.cta-band h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 34px;
}

.section-tight {
  max-width: 940px;
}

.card-body {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 34px;
}

.card-body h2 {
  margin: 28px 0 10px;
  font-size: 26px;
}

.card-body h2:first-child {
  margin-top: 0;
}

.card-body p,
.card-body li {
  color: var(--body);
  line-height: 1.68;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 4px;
    border: 1px solid var(--hairline);
    border-radius: 8px;
    background: #fff;
    justify-self: end;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav,
  .nav-actions {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .site-header.is-open .site-nav {
    flex-wrap: wrap;
  }

  .site-header.is-open .nav-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .page-hero,
  .collaboration,
  .documents,
  .contact-layout,
  .request-section {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 780px;
    font-size: 58px;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 760px;
  }

  .hero-visual img {
    min-height: 460px;
  }

  .profile-cards,
  .service-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 24px);
    margin-top: 10px;
  }

  .hero,
  .page-hero,
  .section,
  .trust-row,
  .cta-band,
  .footer {
    width: calc(100% - 24px);
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding: 44px 0 54px;
  }

  .page-hero {
    gap: 28px;
    padding: 44px 0 48px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.04;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy p:not(.eyebrow),
  .section-head p:not(.eyebrow),
  .request-copy p,
  .document-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .button,
  .site-header.is-open .nav-actions,
  .site-header.is-open .nav-actions .button {
    width: 100%;
  }

  .button {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-visual img {
    min-height: 360px;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin: 10px;
  }

  .hero-visual::after {
    display: none;
  }

  .trust-row,
  .trust-row div {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .dark-suite,
  .documents {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .comparison-grid,
  .catalog-grid,
  .catalog-grid article,
  .suite-showcase,
  .profile-cards,
  .service-grid,
  .flow-grid,
  .tool-grid,
  .document-grid,
  .contact-layout,
  .form-row.two,
  .doc-checks {
    grid-template-columns: 1fr;
  }

  .comparison-card img,
  .catalog-grid img,
  .tool-grid img,
  .page-hero img,
  .suite-showcase img {
    height: 260px;
    min-height: 260px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .cta-band .button {
    width: 100%;
  }

  .suite-copy {
    padding: 12px;
  }

  .suite-copy h3 {
    font-size: 29px;
  }

  .lead-form {
    padding: 18px;
  }

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