:root {
  --ink: #151617;
  --paper: #f4efe6;
  --paper-2: #e9e1d2;
  --panel: #fffaf0;
  --muted: #69635a;
  --green: #0d6b5e;
  --green-2: #073f38;
  --amber: #f2b84b;
  --coral: #d9644a;
  --blue: #4f6d9a;
  --line: rgba(21, 22, 23, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21,22,23,.045) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, var(--paper), #f8f4ec 48%, #efe6d7);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

.hero {
  min-height: 790px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(13,107,94,.18), transparent 27rem),
    linear-gradient(135deg, #fbf6ed 0%, #efe4d4 58%, #d8e0d8 100%);
  border-bottom: 2px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  right: -90px;
  top: 130px;
  width: 48vw;
  min-width: 480px;
  height: 480px;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 42% 58% 63% 37% / 48% 35% 65% 52%;
  transform: rotate(-8deg);
  opacity: .78;
}

.hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
  opacity: .18;
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  position: relative;
  z-index: 4;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 14px;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 250, 240, .78);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 5px 5px 0 rgba(21,22,23,.18);
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 11px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.nav-links a:hover,
.nav-links a:first-child {
  color: #fff;
  background: var(--green);
}

.hero-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 575px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 48px 0 92px;
}

.pill {
  width: max-content;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 8px 12px;
  color: var(--green-2);
  background: #dce9df;
  border: 2px solid var(--ink);
  border-radius: 12px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(21,22,23,.16);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: .94;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 88px);
}

h2 {
  font-size: clamp(34px, 4.8vw, 60px);
}

h1 span,
h2 span {
  color: var(--green);
}

.hero-copy p,
.section-head p,
.center-cta p,
.final-cta p,
.footer p,
.service-card p,
.feature-card p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 36px;
  font-size: 17px;
}

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

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 26px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .9px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-ghost {
  color: var(--ink);
  background: var(--panel);
}

.btn-small {
  min-height: 46px;
  padding: 0 22px;
  font-size: 11px;
}

.btn-wide {
  width: 100%;
  min-height: 44px;
  margin-top: 10px;
}

.hero-visual {
  min-height: 470px;
  position: relative;
  display: grid;
  place-items: center;
}

.dashboard-mock {
  width: min(470px, 100%);
  min-height: 350px;
  position: relative;
  padding: 18px;
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 14px 14px 0 var(--ink);
  transform: rotate(2deg);
}

.mock-header {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--green-2);
  border: 2px solid var(--ink);
  border-radius: 18px;
}

.mock-header span {
  width: 11px;
  height: 11px;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.mock-body {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding-top: 16px;
}

.mock-sidebar {
  display: grid;
  gap: 12px;
}

.mock-sidebar i {
  height: 48px;
  background: #e4efe8;
  border: 2px solid var(--ink);
  border-radius: 16px;
}

.mock-sidebar i:nth-child(2) {
  background: #f8dda6;
}

.mock-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mock-stat,
.mock-line,
.mock-bars {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff5df;
}

.mock-stat {
  min-height: 76px;
}

.mock-stat.wide {
  grid-column: span 2;
  background: var(--coral);
}

.mock-line {
  grid-column: span 2;
  min-height: 34px;
  background: #dce9df;
}

.mock-bars {
  grid-column: span 2;
  height: 94px;
  padding: 14px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.mock-bars i {
  flex: 1;
  min-height: 22px;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 10px 10px 6px 6px;
}

.mock-bars i:nth-child(2) { height: 62px; background: var(--green); }
.mock-bars i:nth-child(3) { height: 42px; background: var(--amber); }
.mock-bars i:nth-child(4) { height: 70px; background: var(--coral); }
.mock-bars i:nth-child(5) { height: 52px; background: var(--green-2); }

.platform-badge {
  position: absolute;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 22px;
  box-shadow: 7px 7px 0 var(--ink);
  font-weight: 900;
}

.badge-one {
  top: 28px;
  left: 18px;
  background: var(--blue);
  transform: rotate(-10deg);
}

.badge-two {
  right: 20px;
  top: 68px;
  background: var(--coral);
  transform: rotate(12deg);
}

.badge-three {
  left: 80px;
  bottom: 6px;
  background: var(--green);
  transform: rotate(8deg);
}

.trust {
  width: min(1180px, calc(100% - 40px));
  margin: -34px auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 3;
}

.trust span {
  padding: 18px 18px;
  color: var(--ink);
  background: var(--panel);
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: 6px 6px 0 rgba(21,22,23,.2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .9px;
}

.trust span::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 10px;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.section {
  padding: 110px 20px;
  position: relative;
}

.section-intro {
  background:
    linear-gradient(135deg, rgba(79,109,154,.18), transparent 36%),
    var(--paper-2);
  border-bottom: 2px solid var(--ink);
}

.section-head {
  width: min(1080px, 100%);
  margin: 0 auto 64px;
}

.split-head {
  display: grid;
  grid-template-columns: 82px 1fr .85fr;
  align-items: end;
  gap: 38px;
  text-align: left;
}

.tools-head {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 34px;
  align-items: start;
}

.tools-head p {
  grid-column: 2;
  max-width: 620px;
  margin: 22px 0 0;
}

.section-number {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 6px 6px 0 var(--ink);
  font-weight: 900;
}

.section-head p {
  margin: 0;
  font-size: 15px;
}

.small-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr 1.15fr;
  gap: 18px;
}

.service-card,
.feature-card {
  background: var(--panel);
  border: 2px solid var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 8px 8px 0 rgba(21,22,23,.18);
}

.service-card:nth-child(1) {
  grid-row: span 2;
  background: #dce9df;
}

.service-card:nth-child(2) {
  background: #fff5df;
}

.service-card:nth-child(3) {
  grid-row: span 2;
  background: #e0e7f3;
}

.service-card:nth-child(4) {
  background: #f5d3c9;
}

.service-card:hover,
.feature-card:hover {
  transform: translate(4px, 4px);
  box-shadow: 3px 3px 0 rgba(21,22,23,.28);
}

.feature-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 245px;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 8px 8px 0 rgba(21,22,23,.15);
}

.feature-card:nth-child(1),
.feature-card:nth-child(6) {
  grid-column: span 5;
  background: #fff5df;
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  grid-column: span 7;
  background: #dce9df;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4) {
  grid-column: span 6;
  background: #e0e7f3;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--ink);
}

.service-card:nth-child(2) .icon,
.feature-card:nth-child(3) .icon {
  background: var(--blue);
}

.service-card:nth-child(4) .icon,
.feature-card:nth-child(4) .icon {
  background: var(--coral);
}

.icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.feature-card h3,
.center-cta h3,
.footer h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
}

.service-card p,
.feature-card p {
  margin: 0;
  font-size: 13px;
}

.service-card a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card a::after {
  content: "->";
  margin-left: 8px;
}

.center-cta {
  width: min(1080px, 100%);
  margin: 70px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  text-align: left;
  color: #fff;
  background: var(--green-2);
  border: 2px solid var(--ink);
  border-radius: 30px;
  box-shadow: 10px 10px 0 var(--ink);
}

.center-cta h3 {
  margin-bottom: 8px;
  font-size: 30px;
}

.center-cta p {
  margin: 0;
  color: rgba(255,255,255,.76);
}

.center-cta .btn-primary {
  background: var(--amber);
  color: var(--ink);
}

.final-cta {
  padding: 105px 20px;
  background:
    linear-gradient(90deg, rgba(13,107,94,.16), transparent 42%),
    #fbf6ed;
}

.final-panel {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 62px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: #e0e7f3;
  border: 2px solid var(--ink);
  border-radius: 34px;
  box-shadow: 12px 12px 0 var(--ink);
}

.final-panel .pill {
  margin-left: 0;
}

.final-panel h2,
.final-panel p {
  grid-column: 1;
}

.final-panel .actions {
  grid-column: 2;
  grid-row: 1 / span 3;
  flex-direction: column;
}

.final-cta p {
  max-width: 610px;
  margin: 24px 0 0;
}

.footer {
  padding: 64px 20px 32px;
  color: #fff;
  background: var(--green-2);
  border-top: 2px solid var(--ink);
}

.footer-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr .8fr 1.2fr;
  gap: 58px;
}

.footer .brand,
.footer p,
.footer a:not(.brand) {
  color: #fff;
}

.footer .brand-mark {
  color: var(--ink);
  background: var(--amber);
}

.footer p {
  margin: 18px 0 12px;
  font-size: 13px;
  opacity: .78;
}

.footer h3 {
  color: var(--amber);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  font-size: 13px;
  opacity: .86;
}

.footer a:not(.brand)::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 10px;
  background: var(--amber);
  border-radius: 50%;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.socials span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--amber);
  border: 2px solid var(--ink);
  border-radius: 11px;
}

.copyright {
  width: min(1080px, 100%);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-shell,
  .split-head,
  .tools-head,
  .center-cta,
  .final-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .split-head,
  .tools-head {
    text-align: center;
  }

  .hero-copy p,
  .pill,
  .section-number {
    margin-left: auto;
    margin-right: auto;
  }

  .tools-head p {
    grid-column: 1;
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: -80px;
  }

  .trust,
  .small-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(1),
  .service-card:nth-child(3) {
    grid-row: auto;
  }

  .feature-card:nth-child(n) {
    grid-column: span 6;
  }

  .center-cta,
  .final-panel {
    text-align: center;
  }

  .final-panel .actions {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .nav {
    flex-direction: column;
    padding: 22px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 900px;
  }

  .hero-shell,
  .trust {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .actions,
  .btn {
    width: 100%;
  }

  .hero-visual {
    transform: scale(.82);
  }

  .trust,
  .small-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card:nth-child(n) {
    grid-column: span 1;
  }

  .section {
    padding: 78px 16px;
  }

  .center-cta,
  .final-panel {
    padding: 28px;
    border-radius: 24px;
  }

  .copyright {
    flex-direction: column;
    text-align: center;
  }
}
