:root {
  --dark-teal: #095858;
  --teal: #0d6e6e;
  --teal-light: #e8f4f4;
  --orange: #e8821a;
  --bg: #fafaf8;
  --section: #f2f2ef;
  --white: #ffffff;
  --ink: #111110;
  --text: #3d3d3a;
  --muted: #78786e;
  --border: #e8e8e4;
  --shadow: 0 18px 50px rgba(9, 88, 88, 0.12);
  --lift: 0 24px 70px rgba(17, 17, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(118deg, rgba(232, 130, 26, 0.1) 0 9%, transparent 9% 24%, rgba(13, 110, 110, 0.08) 24% 31%, transparent 31% 100%),
    repeating-linear-gradient(150deg, rgba(9, 88, 88, 0.035) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #fffdfa 0%, var(--bg) 44%, #f6f6f1 100%);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(9, 88, 88, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 88, 88, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 78%);
}

body::after {
  position: fixed;
  top: 12%;
  right: -11%;
  z-index: -2;
  width: min(52vw, 680px);
  height: 72vh;
  background:
    linear-gradient(135deg, rgba(232, 130, 26, 0.12), transparent 38%),
    repeating-linear-gradient(45deg, rgba(9, 88, 88, 0.09) 0 2px, transparent 2px 24px);
  clip-path: polygon(18% 0, 100% 7%, 86% 100%, 0 84%);
  content: "";
  opacity: 0.72;
}

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

.wrap {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

h1,
h2,
h3,
.logo {
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-teal);
  font-size: 1.26rem;
  font-weight: 900;
  white-space: nowrap;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--dark-teal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.dot {
  color: var(--orange);
}

.logo-p {
  color: var(--white);
  font-weight: 900;
}

.logo-dot {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a,
.footer-links a {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 160ms ease;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.nav-cta,
.primary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  padding: 12px 22px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  border: 1px solid var(--dark-teal);
  background: transparent;
  color: var(--dark-teal);
  box-shadow: none;
}

.nav-cta:hover {
  background: var(--dark-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.primary-button:hover,
.store-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  padding: 78px 0 88px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 34px;
  right: 42%;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(9, 88, 88, 0.16);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.46);
  content: "";
  transform: rotate(18deg);
}

.hero::after {
  position: absolute;
  bottom: 44px;
  left: -64px;
  z-index: -1;
  width: min(42vw, 430px);
  height: 190px;
  border: 1px solid rgba(9, 88, 88, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(232, 130, 26, 0.18) 42% 48%, transparent 48%),
    repeating-linear-gradient(90deg, rgba(13, 110, 110, 0.12) 0 2px, transparent 2px 30px),
    rgba(255, 255, 255, 0.48);
  content: "";
  transform: rotate(-5deg);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 16px;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.25rem);
  font-weight: 900;
  line-height: 0.98;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: 1.24rem;
  line-height: 1.62;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.proof-panel {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.proof-panel span {
  border: 1px solid rgba(9, 88, 88, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 244, 244, 0.72)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(17, 17, 16, 0.05);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 13px 14px;
}

.store-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--dark-teal);
  color: var(--white);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button:hover {
  background: var(--teal);
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.store-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffc27b;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 28px 18px 22px;
  z-index: -2;
  border-radius: 44px;
  background:
    linear-gradient(135deg, rgba(9, 88, 88, 0.14), rgba(232, 130, 26, 0.14)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.58) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(135deg, rgba(9, 88, 88, 0.08) 0 2px, transparent 2px 30px);
  content: "";
  transform: rotate(-3deg);
}

.market-orbit {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.market-orbit span {
  position: absolute;
  display: block;
  border: 1px solid rgba(9, 88, 88, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(232, 244, 244, 0.58)),
    rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 50px rgba(9, 88, 88, 0.1);
}

.market-orbit span:nth-child(1) {
  top: 12px;
  right: 80px;
  width: 76px;
  height: 76px;
  transform: rotate(12deg);
}

.market-orbit span:nth-child(2) {
  top: 168px;
  left: 34px;
  width: 72px;
  height: 58px;
  background:
    repeating-linear-gradient(90deg, rgba(232, 130, 26, 0.3) 0 8px, transparent 8px 16px),
    rgba(255, 255, 255, 0.58);
  transform: rotate(-18deg);
}

.market-orbit span:nth-child(3) {
  right: 26px;
  bottom: 172px;
  width: 92px;
  height: 44px;
  transform: rotate(-13deg);
}

.market-orbit span:nth-child(4) {
  bottom: 22px;
  left: 96px;
  width: 114px;
  height: 114px;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(232, 130, 26, 0.22) 48% 56%, transparent 56%),
    rgba(232, 244, 244, 0.76);
  transform: rotate(26deg);
}

.market-orbit span:nth-child(5) {
  top: 94px;
  right: 8px;
  width: 22px;
  height: 122px;
  border-radius: 999px;
  background: rgba(9, 88, 88, 0.12);
}

.phone {
  width: min(100%, 330px);
  border-radius: 34px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12), transparent 32%),
    var(--dark-teal);
  padding: 12px;
  box-shadow: 0 30px 90px rgba(9, 88, 88, 0.26);
}

.phone-main {
  margin-inline: auto;
}

.phone-screen {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(232, 130, 26, 0.12) 0 20%, transparent 20% 100%),
    repeating-linear-gradient(90deg, rgba(9, 88, 88, 0.04) 0 1px, transparent 1px 26px),
    var(--bg);
  padding: 18px;
}

.app-proof {
  position: relative;
  background: #f5f5f0;
  color: var(--ink);
  font-size: 0.9rem;
}

.home-proof {
  padding: 0 0 72px;
}

.proof-top,
.merchant-top {
  display: flex;
  min-height: 86px;
  align-items: flex-start;
  justify-content: space-between;
  background: #095858;
  color: var(--white);
  padding: 18px 18px 0;
}

.proof-top strong,
.merchant-top strong,
.profile-head strong {
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 900;
}

.proof-top strong span,
.merchant-top strong span,
.profile-head strong span {
  color: var(--orange);
}

.proof-top div {
  display: flex;
  gap: 16px;
}

.proof-top i,
.merchant-top i {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.proof-search {
  position: relative;
  margin: -31px 14px 14px;
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 17, 16, 0.07);
  color: #9a9a92;
  padding: 15px 17px;
}

.proof-banner {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.16), transparent 74px),
    radial-gradient(circle at 78% 92%, rgba(255, 255, 255, 0.12), transparent 84px),
    linear-gradient(135deg, #9f4700, #e8821a);
  color: var(--white);
  margin: 0 14px 16px;
  padding: 20px;
}

.proof-banner small {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(17, 17, 16, 0.22);
  color: #ffe4bd;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 6px 9px;
  text-transform: uppercase;
}

.proof-banner h2,
.proof-banner h3 {
  position: relative;
  z-index: 1;
  margin: 10px 0 6px;
  font-size: 1.5rem;
  line-height: 0.98;
}

.proof-banner p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.proof-banner b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.77rem;
  padding: 9px 13px;
}

.proof-banner em {
  position: absolute;
  right: 24px;
  top: 54px;
  width: 72px;
  height: 58px;
  background:
    linear-gradient(135deg, #d9f5ff 0 28%, #78c7f5 28% 52%, #1776c8 52% 100%);
  clip-path: polygon(50% 0, 100% 34%, 76% 100%, 23% 100%, 0 34%);
  transform: rotate(6deg);
}

.proof-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 10px;
}

.proof-category span {
  color: var(--ink);
  font-weight: 900;
}

.proof-category a {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.proof-product {
  width: 134px;
  min-height: 214px;
  margin-left: 14px;
  overflow: hidden;
  border: 1px solid #e5ded5;
  border-radius: 11px;
  background: var(--white);
}

.proof-product i {
  display: grid;
  height: 98px;
  place-items: center;
  background: #fff3e6;
}

.proof-product i::before {
  width: 34px;
  height: 28px;
  border: 3px solid #7fb3bf;
  border-top: 0;
  border-radius: 5px 5px 10px 10px;
  content: "";
}

.proof-product p,
.proof-product strong,
.proof-product small {
  display: block;
  margin-inline: 10px;
}

.proof-product p {
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 0.78rem;
}

.proof-product strong {
  font-size: 0.9rem;
}

.proof-product small {
  width: max-content;
  margin-top: 10px;
  border-radius: 4px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.62rem;
  font-weight: 900;
  padding: 5px 7px;
}

.proof-tabs {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -8px 34px rgba(9, 88, 88, 0.16);
  padding: 12px 14px;
}

.proof-tabs span {
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 8px;
  border: 2px solid #a5aaa1;
}

.proof-tabs b {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 18px;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(13, 110, 110, 0.32);
  color: var(--white);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-size: 1.05rem;
}

.proof-tabs b::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.app-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.app-shot-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 88, 88, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 244, 244, 0.64)),
    var(--white);
  box-shadow: 0 24px 70px rgba(9, 88, 88, 0.11);
  padding: 18px;
}

.app-shot-card::before {
  position: absolute;
  top: -52px;
  right: -38px;
  width: 170px;
  height: 170px;
  border-radius: 38px;
  background:
    repeating-linear-gradient(45deg, rgba(232, 130, 26, 0.18) 0 2px, transparent 2px 18px),
    rgba(232, 244, 244, 0.5);
  content: "";
  transform: rotate(18deg);
}

.app-shot-card > h3,
.app-shot-card > p {
  position: relative;
}

.app-shot-card > h3 {
  margin: 18px 4px 0;
  font-size: 1.5rem;
}

.app-shot-card > p {
  margin: 8px 4px 2px;
  color: var(--text);
  line-height: 1.55;
}

.shot-phone {
  position: relative;
  width: min(100%, 274px);
  height: 520px;
  margin-inline: auto;
  overflow: hidden;
  border: 10px solid var(--dark-teal);
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(9, 88, 88, 0.18);
}

.shot-phone.home-proof {
  padding-bottom: 68px;
}

.profile-proof,
.merchant-proof {
  padding: 0 0 72px;
}

.profile-head {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  padding: 18px 16px 8px;
  text-align: center;
}

.profile-head a {
  width: 16px;
  height: 16px;
  border-bottom: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  transform: rotate(45deg);
}

.avatar-proof {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin: 10px auto 14px;
  border: 3px solid #c8d9da;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--teal);
}

.avatar-proof strong {
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
}

.avatar-proof i {
  position: absolute;
  right: 2px;
  bottom: 4px;
  width: 25px;
  height: 25px;
  border: 3px solid #f5f5f0;
  border-radius: 999px;
  background: var(--teal);
}

.profile-proof h3,
.profile-proof p {
  margin: 0;
  text-align: center;
}

.profile-proof h3 {
  font-size: 1.35rem;
}

.profile-proof p {
  color: var(--text);
  font-size: 0.78rem;
}

.setting-group {
  overflow: hidden;
  margin: 18px 13px 0;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 17, 16, 0.05);
}

.setting-group span {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 12px 14px 12px 48px;
}

.setting-group span:last-child {
  border-bottom: 0;
}

.setting-group span::before {
  position: absolute;
  left: 13px;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: var(--teal-light);
  content: "";
}

.setting-group b {
  color: var(--muted);
  font-weight: 500;
}

.merchant-proof {
  background: #f4f5f0;
}

.merchant-top {
  min-height: 66px;
  align-items: center;
  padding: 0 16px;
}

.merchant-proof > p,
.merchant-proof > h3,
.merchant-proof h4 {
  margin-inline: 14px;
}

.merchant-proof > p {
  margin-top: 18px;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.78rem;
}

.merchant-proof > h3 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.45rem;
}

.merchant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 0 14px 22px;
}

.merchant-actions b,
.merchant-actions span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 900;
}

.merchant-actions b {
  background: var(--teal);
  color: var(--white);
}

.merchant-actions span {
  border: 1px solid #ddd9d0;
  background: var(--white);
  color: var(--teal);
}

.merchant-proof h4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.merchant-proof h4 a {
  color: var(--teal);
  font-size: 0.72rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 14px 22px;
}

.metric-row span {
  min-height: 76px;
  border: 1px solid #e3ded5;
  border-radius: 10px;
  background: #fff5e8;
  color: var(--muted);
  font-size: 0.68rem;
  padding: 26px 9px 9px;
}

.metric-row span:first-child {
  background: var(--teal-light);
}

.metric-row span:last-child {
  background: #f2f2ed;
}

.metric-row b {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.merchant-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 14px;
}

.merchant-products span {
  overflow: hidden;
  border: 1px solid #e1ddd5;
  border-radius: 10px;
  background: var(--white);
}

.merchant-products i {
  display: block;
  height: 86px;
  background: #eeeeea;
}

.merchant-products b,
.merchant-products strong {
  display: block;
  margin: 10px 10px 0;
  font-size: 0.72rem;
}

.merchant-products strong {
  margin-top: 6px;
  font-size: 0.84rem;
}

.phone-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  color: var(--dark-teal);
}

.phone-top i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--orange);
}

.app-hero-card {
  border-radius: 12px;
  background: var(--teal-light);
  padding: 18px;
}

.app-hero-card span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-hero-card h2 {
  margin: 6px 0 0;
  font-size: 1.75rem;
  line-height: 1.05;
}

.fake-search {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.fake-search b,
.fake-search em {
  display: block;
  height: 34px;
  border-radius: 999px;
}

.fake-search b {
  flex: 1;
  background: var(--white);
}

.fake-search em {
  width: 58px;
  background: var(--orange);
}

.category-river {
  display: flex;
  gap: 8px;
  margin: 14px -18px 0 0;
  overflow: hidden;
}

.category-river span {
  flex: none;
  border: 1px solid rgba(9, 88, 88, 0.14);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark-teal);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 10px;
}

.product-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.product-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 12px;
}

.product-list i,
.product-list em {
  flex: none;
  border-radius: 12px;
}

.product-list i {
  width: 50px;
  height: 50px;
  background: var(--section);
}

.product-list p {
  flex: 1;
  margin: 0;
}

.product-list b,
.product-list span {
  display: block;
  height: 10px;
  border-radius: 999px;
}

.product-list b {
  width: 80%;
  background: var(--border);
}

.product-list span {
  width: 46%;
  margin-top: 9px;
  background: var(--teal-light);
}

.product-list em {
  width: 34px;
  height: 34px;
  background: var(--teal-light);
}

.float-card {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.float-card span,
.float-card p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.float-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.float-card-left {
  top: 42px;
  left: 0;
  width: 194px;
}

.float-card-right {
  right: 0;
  bottom: 54px;
  width: 220px;
}

.mini-map {
  height: 78px;
  margin-top: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbe9df, var(--teal-light));
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 0;
}

.trust-grid span {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(232, 244, 244, 0.95), rgba(255, 255, 255, 0.8)),
    var(--bg);
  color: var(--dark-teal);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-weight: 900;
  padding: 16px;
  text-align: center;
}

.section {
  position: relative;
  padding: 86px 0;
  isolation: isolate;
}

.section::after {
  position: absolute;
  top: 34px;
  right: max(12px, calc((100vw - 1180px) / 2));
  z-index: -1;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(13, 110, 110, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(232, 130, 26, 0.16) 44% 52%, transparent 52%),
    repeating-linear-gradient(0deg, rgba(9, 88, 88, 0.08) 0 2px, transparent 2px 18px);
  content: "";
  opacity: 0.72;
  transform: rotate(9deg);
}

.section:nth-of-type(odd)::after {
  right: auto;
  left: max(12px, calc((100vw - 1180px) / 2));
  transform: rotate(-9deg);
}

.section-alt {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(232, 130, 26, 0.09) 0 14%, transparent 14% 56%, rgba(9, 88, 88, 0.08) 56% 66%, transparent 66%),
    repeating-linear-gradient(135deg, rgba(9, 88, 88, 0.055) 0 2px, transparent 2px 34px),
    var(--section);
}

.section-alt::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(255, 255, 255, 0.52) 30% 30.5%, transparent 30.5% 100%),
    linear-gradient(60deg, transparent 0 62%, rgba(9, 88, 88, 0.08) 62% 62.5%, transparent 62.5% 100%);
  content: "";
}

.section-alt > .wrap {
  position: relative;
}

.owner-strip {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px auto 0;
}

.owner-strip span {
  border-radius: 999px;
  background: var(--dark-teal);
  color: var(--white);
  font-weight: 900;
  padding: 10px 14px;
}

.section-white {
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-head h2,
.business-cta h2,
.final-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
}

.section-head p:not(.eyebrow),
.business-cta p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 16px;
  margin-top: 46px;
}

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

.benefit,
.preview-grid article {
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
    var(--white);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(17, 17, 16, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit:hover,
.preview-grid article:hover {
  border-color: rgba(13, 110, 110, 0.36);
  transform: translateY(-4px);
}

.benefit i {
  display: block;
  width: 48px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.benefit h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  font-weight: 800;
  padding: 16px;
}

.feature-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: none;
  border-radius: 999px;
  background: var(--orange);
}

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

.small-phone {
  width: 100%;
}

.small-phone .phone-screen {
  min-height: 470px;
}

.drop {
  margin-top: 54px;
}

.compact {
  padding: 16px;
}

.compact-list article:nth-child(3) {
  display: none;
}

.map-preview {
  position: relative;
  height: 370px;
  overflow: hidden;
  border-radius: 16px;
  background: #dbe9df;
}

.map-preview b,
.map-preview i,
.map-preview em {
  position: absolute;
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.map-preview b {
  top: 34px;
  left: 25px;
  width: 96px;
  height: 62px;
}

.map-preview i {
  right: 24px;
  bottom: 42px;
  width: 110px;
  height: 76px;
}

.map-preview em {
  top: 148px;
  right: 28px;
  width: 76px;
  height: 58px;
}

.map-preview strong {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: var(--shadow);
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px;
}

.steps {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  padding: 26px;
}

.steps.dark {
  background: var(--dark-teal);
  color: var(--white);
}

.steps h3 {
  margin: 0;
  font-size: 1.55rem;
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.steps.dark ol {
  grid-template-columns: repeat(3, 1fr);
}

.steps li {
  min-height: 96px;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-weight: 900;
  padding: 16px;
}

.steps.dark li {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.steps span {
  display: block;
  margin-bottom: 10px;
  color: #a65408;
  font-size: 0.84rem;
}

.steps.dark span {
  color: #ffc27b;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.preview-grid article span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-light);
  color: var(--dark-teal);
  font-weight: 900;
}

.preview-grid h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.1;
}

.preview-grid p {
  min-height: 44px;
  margin: 9px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.preview-grid b {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.86rem;
  padding: 12px;
}

.preview-grid b::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: none;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--orange);
}

.business-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(118deg, rgba(232, 130, 26, 0.22) 0 14%, transparent 14% 70%, rgba(232, 244, 244, 0.12) 70% 84%, transparent 84%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 28px),
    var(--dark-teal);
  color: var(--white);
  padding: 82px 0;
}

.business-cta::before {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 56px;
  content: "";
  transform: rotate(22deg);
}

.business-cta .eyebrow {
  color: #ffc27b;
}

.business-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.faq-list {
  margin-top: 44px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

details {
  border-bottom: 1px solid var(--border);
  padding: 22px;
}

details:last-child {
  border-bottom: 0;
}

details[open] {
  background: rgba(232, 244, 244, 0.48);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--dark-teal);
  text-align: center;
  line-height: 32px;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--text);
  line-height: 1.65;
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(232, 244, 244, 0.9), rgba(250, 250, 248, 0.92)),
    repeating-linear-gradient(90deg, rgba(9, 88, 88, 0.07) 0 2px, transparent 2px 32px),
    var(--section);
  padding: 82px 0;
  text-align: center;
}

.center {
  justify-content: center;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  padding: 42px 0;
}

.footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  max-width: 460px;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.copyright {
  margin: 0;
  border-top: 1px solid var(--border);
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.mobile-sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 20;
  display: none;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  background: rgba(9, 88, 88, 0.92);
  box-shadow: var(--lift);
  padding: 10px;
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta a {
  flex: 1;
  border-radius: 16px;
  background: var(--orange);
  color: var(--ink);
  font-family: "Nunito", "DM Sans", Arial, sans-serif;
  font-weight: 900;
  padding: 13px 12px;
  text-align: center;
}

.mobile-sticky-cta a:first-child {
  background: var(--white);
  color: var(--dark-teal);
}

@media (max-width: 1040px) {
  .hero,
  .feature-showcase,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero::before {
    display: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .float-card {
    display: none;
  }

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

  .app-shot-grid {
    grid-template-columns: 1fr;
  }

  .app-shot-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 24px;
  }

  .app-shot-card .shot-phone {
    grid-row: 1 / span 2;
  }

  .app-shot-card > h3 {
    align-self: end;
    margin-top: 0;
  }

  .app-shot-card > p {
    align-self: start;
    grid-column: 2;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    border-bottom: 1px solid rgba(9, 88, 88, 0.1);
    background: rgba(250, 250, 248, 0.78);
    box-shadow: 0 10px 30px rgba(17, 17, 16, 0.05);
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
    min-height: 66px;
    padding-block: 10px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 8px;
    padding: 2px 0 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    border: 1px solid rgba(9, 88, 88, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: rgba(17, 17, 16, 0.72);
    font-size: 0.82rem;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .trust-grid,
  .feature-list,
  .phone-pair,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .app-shot-card {
    display: block;
  }

  .app-shot-card .shot-phone {
    grid-row: auto;
  }

  .app-shot-card > h3 {
    margin-top: 18px;
  }

  .app-shot-card > p {
    grid-column: auto;
  }

  .drop {
    margin-top: 0;
  }

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

  .market-orbit span:nth-child(1),
  .market-orbit span:nth-child(3),
  .market-orbit span:nth-child(5) {
    display: none;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  body {
    background:
      radial-gradient(circle at 18% 8%, rgba(232, 130, 26, 0.12), transparent 15rem),
      linear-gradient(118deg, rgba(232, 130, 26, 0.08) 0 22%, transparent 22% 100%),
      repeating-linear-gradient(135deg, rgba(9, 88, 88, 0.032) 0 1px, transparent 1px 26px),
      #fbfaf6;
  }

  body::before {
    background-size: 30px 30px;
    opacity: 0.54;
  }

  body::after {
    top: 18%;
    right: -42%;
    width: 84vw;
    height: 58vh;
    opacity: 0.5;
  }

  .site-header {
    background: rgba(250, 250, 248, 0.82);
    backdrop-filter: blur(22px) saturate(150%);
  }

  .nav {
    flex-wrap: nowrap;
    min-height: 62px;
    padding-block: 8px;
  }

  .logo {
    gap: 9px;
    font-size: 1.18rem;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    box-shadow: 0 12px 28px rgba(9, 88, 88, 0.2);
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    border-color: rgba(9, 88, 88, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 28px rgba(17, 17, 16, 0.06);
    font-size: 0.88rem;
    padding: 9px 14px;
  }

  .hero {
    gap: 32px;
    padding: 42px 0 46px;
  }

  .section,
  .business-cta,
  .final-cta {
    padding-block: 66px;
  }

  body {
    padding-bottom: 86px;
  }

  .hero::after {
    left: -84px;
    bottom: 140px;
    width: 360px;
    height: 220px;
    border-radius: 34px;
    background:
      linear-gradient(125deg, rgba(255, 255, 255, 0.2), rgba(232, 130, 26, 0.12)),
      repeating-linear-gradient(135deg, rgba(9, 88, 88, 0.08) 0 1px, transparent 1px 22px);
    transform: rotate(-10deg);
  }

  .pill {
    max-width: 100%;
    border-color: rgba(9, 88, 88, 0.12);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 34px rgba(17, 17, 16, 0.05);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    padding: 10px 14px;
  }

  h1 {
    max-width: 12ch;
    margin-top: 24px;
    font-size: clamp(2.45rem, 11.5vw, 3.15rem);
    line-height: 1.01;
  }

  .lead {
    max-width: 34ch;
    margin-top: 20px;
    color: rgba(17, 17, 16, 0.74);
    font-size: 1.02rem;
    line-height: 1.58;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 26px;
    width: 100%;
  }

  .final-cta .button-row {
    grid-template-columns: 1fr;
  }

  .primary-button {
    width: 100%;
  }

  .store-button {
    min-height: 56px;
    justify-content: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 10px 12px;
  }

  .store-button small {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .store-icon {
    width: 34px;
    height: 34px;
  }

  .primary-button {
    justify-content: center;
  }

  .proof-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .proof-panel span {
    border-radius: 14px;
    font-size: 0.82rem;
    padding: 12px 13px;
  }

  .card-grid.five,
  .preview-grid,
  .steps ol,
  .steps.dark ol {
    grid-template-columns: 1fr;
  }

  .shot-phone {
    width: min(100%, 280px);
    height: 500px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    display: flex;
    right: max(12px, calc((100vw - 430px) / 2));
    bottom: 10px;
    left: max(12px, calc((100vw - 430px) / 2));
    border-radius: 24px;
    background: rgba(9, 88, 88, 0.86);
    box-shadow: 0 18px 50px rgba(9, 88, 88, 0.28);
    padding: 9px;
  }

  .mobile-sticky-cta a {
    border-radius: 17px;
    padding: 14px 12px;
  }
}

@media (max-width: 380px) {
  .logo {
    font-size: 1.02rem;
  }

  .nav-cta {
    font-size: 0.8rem;
    padding-inline: 11px;
  }

  h1 {
    font-size: clamp(2.18rem, 11.8vw, 2.6rem);
  }

  .button-row {
    grid-template-columns: 1fr;
  }
}
