:root {
  --ink: #101923;
  --soft-ink: #243444;
  --muted: #657383;
  --line: #dce5ed;
  --brand: #0a9f70;
  --brand-dark: #06724f;
  --blue: #2457c5;
  --gold: #d89216;
  --rose: #b94c72;
  --panel: #ffffff;
  --wash: #f4f8fb;
  --night: #101b25;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--wash);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 12% 8%, rgba(10, 159, 112, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(36, 87, 197, 0.13), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #eef5f8 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(220, 229, 237, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

nav a,
.nav-cta,
.button {
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease,
    background 160ms ease;
}

nav a:hover {
  color: var(--brand-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  color: #ffffff;
  background: var(--night);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 540px);
  align-items: center;
  gap: clamp(30px, 5vw, 86px);
  min-height: calc(100vh - 69px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(58px, 9vw, 112px);
  line-height: 0.9;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.hero-text {
  max-width: 680px;
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
}

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

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--blue));
  box-shadow: 0 16px 36px rgba(10, 159, 112, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 8px 11px;
  color: var(--soft-ink);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.phone-showcase {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-showcase::before {
  position: absolute;
  top: 28px;
  right: clamp(10px, 5vw, 42px);
  width: 110px;
  height: 32px;
  content: "Live";
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(10, 159, 112, 0.3);
}

.phone-device {
  width: min(100%, 382px);
  min-height: 690px;
  padding: 14px;
  background:
    linear-gradient(145deg, #101923, #26384a) padding-box,
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(10, 159, 112, 0.36))
      border-box;
  border: 1px solid transparent;
  border-radius: 38px;
  box-shadow: 0 30px 86px rgba(16, 25, 35, 0.28);
}

.phone-speaker {
  width: 74px;
  height: 6px;
  margin: 6px auto 12px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.phone-screen {
  min-height: 630px;
  padding: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 251, 0.98)),
    #ffffff;
  border-radius: 28px;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-top img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.panel-top strong,
.panel-top span {
  display: block;
}

.panel-top strong {
  font-size: 16px;
}

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

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

.preview-stat {
  position: relative;
  min-height: 92px;
  padding: 12px 10px;
  background: #f5f8fb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.preview-stat strong,
.preview-stat span,
.preview-stat em {
  display: block;
}

.preview-stat strong {
  padding-right: 46px;
  font-size: 20px;
  line-height: 1;
}

.preview-stat span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.preview-stat em {
  position: absolute;
  top: 10px;
  right: 8px;
  padding: 3px 6px;
  color: var(--brand-dark);
  background: rgba(10, 159, 112, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
}

.workflow-list {
  margin-top: 16px;
}

.workflow-list div {
  position: relative;
  padding: 11px 0 11px 24px;
  border-top: 1px solid var(--line);
}

.workflow-list strong,
.workflow-list small {
  display: block;
}

.workflow-list small {
  color: var(--muted);
}

.status-dot {
  position: absolute;
  top: 17px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.status-dot.green {
  background: var(--brand);
}

.status-dot.blue {
  background: var(--blue);
}

.status-dot.gold {
  background: var(--gold);
}


.section {
  padding: clamp(58px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.82);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 32px;
}

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

.module-grid article,
.pricing-grid article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 25, 35, 0.06);
}

.module-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--brand), var(--blue));
  border-radius: 999px;
}

.module-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: #ffffff;
  background: var(--night);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.module-grid p,
.pricing-grid p,
.automation-band p,
.contact-section p {
  color: var(--muted);
}

.automation-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(58px, 8vw, 102px) clamp(18px, 5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(10, 159, 112, 0.16), transparent 45%),
    linear-gradient(120deg, #101b25, #172b3c);
}

.automation-band .eyebrow,
.automation-band p {
  color: #bfe9da;
}

.automation-band ul {
  align-self: center;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.automation-band li {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.automation-band li:last-child {
  border-bottom: 0;
}

.price {
  margin-bottom: 14px;
  color: var(--brand-dark);
  font-size: 34px;
  font-weight: 950;
}

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

.pricing-grid article {
  min-height: 190px;
}

.pricing-grid .featured {
  border-color: rgba(10, 159, 112, 0.48);
  box-shadow: 0 22px 56px rgba(10, 159, 112, 0.16);
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(10, 159, 112, 0.15), rgba(36, 87, 197, 0.08)),
    #eef8f4;
}

.contact-section div {
  max-width: 760px;
}

.contact-phone {
  margin-bottom: 0;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #ffffff;
  background: #101820;
  font-size: 14px;
}

footer strong,
footer span {
  display: block;
}

footer span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.66);
}

footer a {
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav-cta {
    width: max-content;
  }

  .hero,
  .automation-band {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .module-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 54px;
  }
}
