:root {
  --ink: #102f2a;
  --ink-strong: #08251f;
  --muted: #60736c;
  --green: #15803d;
  --green-bright: #22c55e;
  --green-dark: #0b5134;
  --surface: #ffffff;
  --surface-soft: #f2f7f4;
  --surface-mint: #e7f4ec;
  --line: #dce7e1;
  --line-strong: #c9dbd1;
  --orange: #d98b1b;
  --blue: #2b7b91;
  --shadow: 0 24px 70px rgba(10, 54, 39, .12);
  --shadow-soft: 0 10px 35px rgba(10, 54, 39, .08);
  --radius-lg: 24px;
  --radius-md: 16px;
  color: var(--ink);
  background: #f8fbf9;
  font: 16px/1.6 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 3%, rgba(34, 197, 94, .09), transparent 26rem),
    linear-gradient(#f8fbf9 0 980px, #fff 980px);
  color: var(--ink);
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 5px;
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 760;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  font-weight: 740;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin-bottom: 20px;
}

.wrap,
.header-inner,
.footer-inner {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.skip {
  position: fixed;
  z-index: 100;
  top: -100px;
  left: 20px;
  padding: 12px 18px;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.skip:focus {
  top: 14px;
}

:focus-visible {
  outline: 3px solid #e7a53b;
  outline-offset: 4px;
}

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(201, 219, 209, .8);
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  position: relative;
  display: block;
  width: 116px;
  height: 84px;
  flex: 0 0 auto;
  overflow: hidden;
}

.logo img {
  position: absolute;
  top: -26px;
  left: -8px;
  width: 132px;
  height: 132px;
  max-width: none;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header nav a {
  color: #355149;
  font-size: .9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .18s ease;
}

.header nav a:hover {
  color: var(--green);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 21px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: white;
  font-size: .92rem;
  font-weight: 720;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(21, 128, 61, .16);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 11px 28px rgba(15, 91, 55, .22);
}

.button.outline {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, .7);
  box-shadow: none;
  color: var(--ink);
}

.button.outline:hover {
  border-color: var(--green);
  background: var(--surface-mint);
  color: var(--green-dark);
}

.small-button {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 9px;
  font-size: .86rem;
}

.text-link {
  color: var(--ink);
  font-size: .93rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--green);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: .77rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 118px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(350px, .82fr) minmax(590px, 1.38fr);
  align-items: center;
  gap: clamp(44px, 6vw, 85px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-points {
  display: grid;
  gap: 9px;
  margin: 34px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #526a61;
  font-size: .88rem;
  list-style: none;
}

.hero-points li::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-mint);
  color: var(--green);
  content: "✓";
  font-size: .7rem;
  font-weight: 800;
}

.product-showcase {
  position: relative;
  min-height: 600px;
}

.showcase-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px 5px;
  color: #476159;
  font-size: .76rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.showcase-label small {
  margin-left: auto;
  color: #83948d;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: none;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, .12);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid #c9d9d1;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(-.7deg);
  transform-origin: center;
}

.browser-bar {
  display: grid;
  grid-template-columns: 72px 1fr 30px;
  height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid #e1e9e4;
  background: #f6f8f7;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2ddd7;
}

.browser-dots i:first-child {
  background: #e8a9a4;
}

.browser-dots i:nth-child(2) {
  background: #ebc77f;
}

.browser-dots i:last-child {
  background: #8fcea5;
}

.browser-address {
  justify-self: center;
  width: min(250px, 88%);
  padding: 5px 12px;
  border: 1px solid #e1e8e4;
  border-radius: 7px;
  background: white;
  color: #809087;
  font-size: .64rem;
  text-align: center;
}

.browser-lock {
  color: #8ba097;
  text-align: right;
}

.app-shell {
  display: grid;
  min-height: 505px;
  grid-template-columns: 145px 1fr;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  padding: 20px 12px 16px;
  background: #0c3b2d;
  color: #c9ded5;
  font-size: .66rem;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 8px 19px;
  color: white;
  font-size: .92rem;
  font-weight: 760;
  letter-spacing: -.02em;
}

.app-brand > span,
.mobile-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(145deg, #2acb69, #0e7541);
  color: white;
  font-size: .72rem;
  font-weight: 850;
}

.workspace {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 9px 9px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  color: #e2eee9;
}

.workspace b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  font-size: .58rem;
}

.app-nav {
  display: grid;
  gap: 3px;
}

.app-nav span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 7px;
}

.app-nav span.active {
  background: #176344;
  color: white;
}

.app-nav i {
  width: 15px;
  color: #90b5a5;
  font-style: normal;
  font-weight: 760;
  text-align: center;
}

.app-nav .active i {
  color: #b8f0ca;
}

.app-nav.secondary {
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.app-content {
  overflow: hidden;
  padding: 21px 22px 0;
  background: #f5f8f6;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.app-topline small {
  color: #789087;
  font-size: .54rem;
  font-weight: 720;
  letter-spacing: .1em;
}

.app-topline h2 {
  margin: 2px 0 0;
  font-size: 1.25rem;
  letter-spacing: -.035em;
}

.app-profile {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #536c63;
  font-size: .63rem;
}

.app-profile span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #dff1e6;
  color: var(--green);
  font-size: .58rem;
  font-weight: 800;
}

.welcome-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 18px;
  border-radius: 11px;
  background: linear-gradient(105deg, #0a4b32, #168248);
  color: white;
  box-shadow: 0 8px 22px rgba(6, 72, 43, .13);
}

.welcome-card > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.welcome-card strong {
  font-size: .9rem;
}

.welcome-card span {
  color: #d5eee0;
  font-size: .62rem;
}

.welcome-card .mock-button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 7px;
  background: rgba(255, 255, 255, .14);
  color: white;
  font-size: .59rem;
  font-weight: 700;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.dashboard-stats article {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border: 1px solid #e1e9e4;
  border-radius: 9px;
  background: white;
}

.dashboard-stats article > div {
  min-width: 0;
}

.stat-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 800;
}

.stat-icon.green {
  background: #e1f4e8;
  color: #148346;
}

.stat-icon.blue {
  background: #e3f1f5;
  color: var(--blue);
}

.stat-icon.orange {
  background: #fff0db;
  color: var(--orange);
}

.stat-icon.mint {
  background: #e3f6ed;
  color: #1a9a59;
}

.dashboard-stats small,
.dashboard-stats strong {
  display: block;
  white-space: nowrap;
}

.dashboard-stats small {
  overflow: hidden;
  color: #71857c;
  font-size: .5rem;
  text-overflow: ellipsis;
}

.dashboard-stats strong {
  margin-top: 1px;
  color: #173a30;
  font-size: .91rem;
}

.inventory-card {
  overflow: hidden;
  border: 1px solid #dfe8e3;
  border-radius: 10px 10px 0 0;
  background: white;
}

.inventory-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid #e5ece8;
}

.inventory-head > div {
  display: flex;
  flex-direction: column;
}

.inventory-head strong {
  font-size: .72rem;
}

.inventory-head span {
  color: #82928a;
  font-size: .5rem;
}

.search-field {
  min-width: 128px;
  padding: 6px 8px;
  border: 1px solid #e1e9e4;
  border-radius: 6px;
  background: #fafcfb;
}

.inventory-table {
  font-size: .57rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr .68fr 1.15fr;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid #edf1ef;
  color: #61756d;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f4137;
}

.table-row b {
  font-size: .59rem;
}

.table-head {
  min-height: 30px;
  background: #fafcfb;
  color: #81928a;
  font-size: .5rem;
  font-weight: 700;
}

.table-head > span:first-child {
  color: #81928a;
}

.item-avatar {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: #e3f4e9;
  color: #177642;
  font-size: .49rem;
  font-style: normal;
  font-weight: 820;
}

.item-avatar.blue-bg {
  background: #e7f1f5;
  color: #26778c;
}

.item-avatar.amber-bg {
  background: #fff2de;
  color: #a66a16;
}

.status {
  display: inline-flex;
  padding: 4px 6px;
  border-radius: 999px;
  font-size: .48rem;
  font-style: normal;
  font-weight: 720;
}

.status.lent {
  background: #fff1d9;
  color: #9c6514;
}

.status.ready {
  background: #e3f5e9;
  color: #137441;
}

.phone-frame {
  position: absolute;
  z-index: 3;
  right: -14px;
  bottom: -30px;
  width: 232px;
  padding: 5px;
  border: 1px solid rgba(39, 74, 62, .86);
  border-radius: 37px;
  background: linear-gradient(145deg, #29433a 0%, #091511 48%, #1a2e27 100%);
  box-shadow:
    0 30px 70px rgba(7, 39, 29, .2),
    0 8px 22px rgba(7, 39, 29, .14),
    inset 0 0 0 1px rgba(255, 255, 255, .12);
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 10px;
  left: 50%;
  width: 54px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 999px;
  background: #07100d;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  min-height: 418px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 31px;
  background: #f5f8f6;
}

.mobile-top {
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 5px;
  background: white;
  color: #5b7067;
  font-size: .56rem;
}

.mobile-top b {
  color: #1f3d34;
  font-size: .67rem;
}

.mobile-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-size: .6rem;
}

.mobile-content {
  padding: 15px 14px 16px;
}

.back {
  color: var(--green);
  font-size: .54rem;
  font-weight: 700;
}

.mobile-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 11px;
}

.mobile-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: #dff2e6;
  color: var(--green);
  font-size: .67rem;
  font-weight: 800;
}

.mobile-title h3 {
  margin: 0 0 3px;
  font-size: .9rem;
}

.mobile-title span {
  display: block;
  color: #71837b;
  font-size: .49rem;
}

.mobile-status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: #fff0d6;
  color: #9e6410;
  font-size: .49rem;
  font-weight: 750;
}

.mobile-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin: 13px 0;
}

.mobile-amounts > div {
  padding: 9px 10px;
  border: 1px solid #e0e9e4;
  border-radius: 9px;
  background: white;
}

.mobile-amounts small,
.mobile-amounts strong {
  display: block;
}

.mobile-amounts small {
  color: #70837a;
  font-size: .46rem;
}

.mobile-amounts strong {
  color: #15392e;
  font-size: .82rem;
}

.mobile-info {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid #e0e9e4;
  border-radius: 9px;
  background: white;
}

.mobile-info small {
  color: #809189;
  font-size: .43rem;
  letter-spacing: .08em;
}

.mobile-info b {
  font-size: .58rem;
}

.mobile-action {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 9px;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: white;
  font-size: .57rem;
  font-weight: 750;
  text-align: center;
}

.mobile-action.mobile-secondary {
  background: white;
  color: var(--green);
}

.section {
  padding: 105px 0;
}

.functions {
  border-top: 1px solid var(--line);
  background: white;
}

.section-intro {
  display: grid;
  grid-template-columns: 1.3fr .75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  z-index: 2;
  background: #fbfdfc;
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.feature-number {
  position: absolute;
  top: 31px;
  right: 30px;
  color: #9aaba4;
  font-size: .75rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.feature-symbol {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 43px;
  place-items: center;
  border-radius: 13px;
  background: var(--surface-mint);
  color: var(--green);
  font-size: 1.05rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: .94rem;
}

.plan-tag {
  align-self: flex-start;
  margin-top: auto;
  padding: 5px 9px;
  border-radius: 6px;
  background: #eef6f1;
  color: var(--green);
  font-size: .7rem;
  font-weight: 720;
}

.pricing {
  background:
    radial-gradient(circle at 6% 20%, rgba(34, 197, 94, .07), transparent 24rem),
    #f6faf7;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 16px;
}

.plan {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 8px 30px rgba(20, 67, 50, .04);
}

.plan.featured {
  border-color: #8fc9a7;
  background: white;
  box-shadow: var(--shadow-soft);
}

.plan-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.plan-top > p {
  min-height: 50px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.price {
  margin: 28px 0 25px;
  color: var(--ink-strong);
  font-size: 3.3rem;
  font-weight: 760;
  letter-spacing: -.055em;
  line-height: 1;
}

.price > span {
  margin-right: 4px;
  font-size: .78rem;
  letter-spacing: .03em;
}

.price small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: 0;
}

.plan ul {
  display: grid;
  gap: 12px;
  margin: 0 0 30px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  color: #3d5850;
  font-size: .9rem;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 24px;
}

.plan li::before {
  position: absolute;
  top: .13em;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-mint);
  color: var(--green);
  content: "✓";
  font-size: .62rem;
  font-weight: 900;
}

.full-button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .82rem;
  text-align: right;
}

.security-section {
  padding: 0 0 105px;
  background: #f6faf7;
}

.security-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 75px;
  padding: 62px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 93% 8%, rgba(61, 204, 111, .18), transparent 18rem),
    #0d3b2e;
  color: white;
  box-shadow: 0 25px 65px rgba(5, 47, 32, .16);
}

.security-copy h2 {
  color: white;
}

.security-copy > p:not(.eyebrow) {
  max-width: 530px;
  color: #c7dbd2;
}

.eyebrow.light {
  color: #6cdf96;
}

.light-link {
  color: white;
}

.light-link:hover {
  color: #7be49f;
}

.security-facts {
  display: grid;
  align-content: center;
}

.security-facts article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.security-facts article:last-child {
  border-bottom: 0;
}

.security-facts article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  color: #86e5a6;
  font-size: .67rem;
  font-weight: 800;
}

.security-facts strong {
  color: white;
  font-size: .95rem;
}

.security-facts p {
  margin: 3px 0 0;
  color: #afc9bd;
  font-size: .83rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding: 95px 0;
}

.contact > div {
  max-width: 690px;
}

.contact h2 {
  margin-bottom: 14px;
}

.contact p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
}

.contact-button {
  flex: 0 0 auto;
}

footer {
  border-top: 1px solid var(--line);
  background: white;
  padding: 52px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 34px;
}

.footer-brand strong {
  color: var(--ink-strong);
  font-size: 1.8rem;
  letter-spacing: -.05em;
}

.footer-inner p {
  margin: 5px 0;
  color: var(--muted);
  font-size: .84rem;
}

.footer-label {
  display: block;
  margin-bottom: 9px;
  color: #7a8d85;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-inner > div a {
  font-size: .91rem;
  font-weight: 670;
}

.footer-inner nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-self: end;
  font-size: .84rem;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 18px !important;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}

.legal {
  max-width: 820px;
  padding-top: 75px;
  padding-bottom: 95px;
}

.legal h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  overflow-wrap: anywhere;
}

.legal h2 {
  margin: 40px 0 15px;
  font-size: 1.45rem;
}

.legal p {
  color: #425c54;
}

.legal a {
  overflow-wrap: anywhere;
}

.note {
  color: var(--muted) !important;
  font-size: .86rem;
}

.screenshot-showcase {
  min-height: 615px;
}

.screenshot-browser {
  background: #eef4f0;
}

.screenshot-window {
  position: relative;
  height: 505px;
  overflow: hidden;
  background: #eef4f0;
}

.desktop-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.desktop-caption {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: rgba(8, 37, 31, .82);
  color: white;
  font-size: .65rem;
  font-weight: 740;
  letter-spacing: .04em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.desktop-caption {
  right: 17px;
  bottom: 17px;
  padding: 6px 10px;
}

.phone-shot-frame .phone-screen {
  position: relative;
  min-height: 418px;
  background: #f4f8f5;
}

.phone-shot-frame {
  width: 232px;
}

.phone-real-screen {
  display: flex;
  flex-direction: column;
}

.phone-app-header {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 8px;
  padding: 27px 12px 10px;
  border-bottom: 1px solid #e1e9e4;
  background: white;
}

.phone-app-header > span:nth-child(2) {
  min-width: 0;
  flex: 1;
}

.phone-app-header small,
.phone-app-header strong {
  display: block;
}

.phone-app-header small {
  margin-bottom: 1px;
  color: #779087;
  font-size: .43rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.phone-app-header strong {
  overflow: hidden;
  color: #173b30;
  font-size: .66rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.phone-back {
  display: grid;
  width: 24px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green);
  font-size: 1.12rem;
  font-weight: 650;
}

.phone-menu {
  align-self: center;
  color: #799087;
  font-size: .62rem;
  letter-spacing: .04em;
}

.phone-shot {
  display: block;
  width: 100%;
  height: auto;
}

.workflow-section {
  padding: 100px 0;
  border-top: 1px solid var(--line);
  background: white;
}

.workflow-intro {
  margin-bottom: 42px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfdfc;
}

.workflow-steps article {
  position: relative;
  min-height: 275px;
  padding: 34px;
}

.workflow-steps article + article {
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 44px;
  color: #91a49c;
  font-size: .72rem;
  font-weight: 780;
  letter-spacing: .11em;
}

.step-icon {
  position: absolute;
  top: 29px;
  right: 30px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--surface-mint);
  color: var(--green);
  font-weight: 820;
}

.workflow-steps h3 {
  margin-bottom: 13px;
}

.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
    gap: 38px;
  }

  .product-showcase {
    min-height: 555px;
  }

  .phone-frame {
    right: -4px;
    width: 210px;
  }

  .phone-screen {
    min-height: 384px;
  }

  .app-shell {
    min-height: 465px;
    grid-template-columns: 126px 1fr;
  }

  .app-content {
    padding-inline: 16px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-stats article {
    padding-block: 8px;
  }

  .table-row {
    grid-template-columns: 1.35fr .85fr .65fr 1.1fr;
  }

  .security-panel {
    gap: 50px;
    padding: 50px;
  }
}

@media (max-width: 900px) {
  body {
    background:
      radial-gradient(circle at 85% 2%, rgba(34, 197, 94, .09), transparent 24rem),
      #f8fbf9;
  }

  .header nav {
    gap: 18px;
  }

  .header nav a:last-child {
    display: none;
  }

  .hero {
    padding-top: 65px;
  }

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

  .hero-copy {
    max-width: 680px;
  }

  .hero-points {
    grid-template-columns: repeat(3, auto);
    justify-content: start;
    gap: 20px;
  }

  .product-showcase {
    width: min(760px, 94%);
    min-height: 590px;
    margin: 16px auto 0;
  }

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

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

  .plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
  }

  .plan-top,
  .price {
    grid-column: 1;
  }

  .plan ul {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-content: start;
    margin-bottom: 0;
  }

  .plan .full-button {
    grid-column: 1 / -1;
    margin-top: 24px;
  }

  .plan-top > p {
    min-height: 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .security-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .wrap,
  .header-inner,
  .footer-inner {
    width: 90%;
  }

  .header-inner {
    min-height: 86px;
    gap: 12px;
  }

  .logo {
    width: 105px;
    height: 78px;
  }

  .logo img {
    top: -25px;
    left: -8px;
    width: 122px;
    height: 122px;
  }

  .header nav {
    display: none;
  }

  .hero {
    padding: 52px 0 80px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-showcase {
    width: 100%;
    min-height: 0;
    padding-bottom: 0;
  }

  .showcase-label small {
    display: none;
  }

  .browser-frame {
    transform: none;
  }

  .browser-bar {
    grid-template-columns: 50px 1fr 20px;
    height: 38px;
    padding-inline: 10px;
  }

  .app-shell {
    display: block;
    min-height: 420px;
  }

  .app-sidebar {
    display: none;
  }

  .app-content {
    min-height: 420px;
    padding: 17px 13px 0;
  }

  .welcome-card {
    align-items: flex-start;
  }

  .welcome-card .mock-button {
    display: none;
  }

  .dashboard-stats {
    grid-template-columns: 1fr 1fr;
  }

  .inventory-head .search-field {
    display: none;
  }

  .table-row {
    grid-template-columns: 1.5fr .8fr 1.1fr;
    padding-inline: 10px;
  }

  .table-row > span:nth-child(2) {
    display: none;
  }

  .phone-frame {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(248px, 78%);
    margin: -34px auto 0;
  }

  .phone-screen {
    min-height: 440px;
  }

  .section {
    padding: 75px 0;
  }

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

  .feature-card {
    min-height: 260px;
  }

  .plan {
    display: flex;
    padding: 28px;
  }

  .plan ul {
    margin-bottom: 28px;
  }

  .plan .full-button {
    margin-top: auto;
  }

  .pricing-note {
    text-align: left;
  }

  .security-section {
    padding-bottom: 75px;
  }

  .security-panel {
    width: 100%;
    gap: 30px;
    padding: 46px 5%;
    border-radius: 0;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding: 75px 0;
  }

  .contact-button {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-inner nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-self: start;
    gap: 18px;
  }

  .legal {
    padding-top: 55px;
    padding-bottom: 75px;
  }
}

@media (max-width: 420px) {
  .button {
    padding-inline: 17px;
  }

  .small-button {
    padding-inline: 13px;
  }

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

  .browser-address {
    width: 100%;
  }

  .dashboard-stats article {
    gap: 6px;
    padding-inline: 8px;
  }

  .stat-icon {
    width: 25px;
    height: 25px;
  }

  .table-row {
    grid-template-columns: 1.25fr .7fr;
  }

  .table-row > span:nth-child(3) {
    display: none;
  }
}

@media (max-width: 900px) {
  .workflow-section {
    padding: 82px 0;
  }

  .workflow-steps article {
    padding: 28px;
  }
}

@media (max-width: 700px) {
  .screenshot-window {
    height: 420px;
  }

  .desktop-shot {
    object-position: 45% top;
  }

  .phone-shot-frame .phone-screen {
    min-height: 435px;
  }

  .phone-shot {
    width: 100%;
  }

  .workflow-section {
    padding: 75px 0;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps article {
    min-height: 225px;
  }

  .workflow-steps article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
