:root {
  color-scheme: light;
  --green: #087443;
  --deep-green: #063b2a;
  --deepest-green: #03271d;
  --mint: #e3f5eb;
  --mint-strong: #c9ecd9;
  --cream: #f8fbf9;
  --ink: #10201a;
  --muted: #5b6c64;
  --border: #d8e7de;
  --orange: #e99a43;
  --shadow: 0 24px 70px rgba(6, 59, 42, .12);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button, a { font: inherit; }
img { max-width: 100%; }
a { color: var(--green); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(233, 154, 67, .8);
  outline-offset: 4px;
}
.shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--deepest-green);
  transform: translateY(-180%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Shared navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 24px 20px;
  border: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}
.nav {
  width: min(1100px, 100%);
  min-height: 0;
  margin: 0 auto;
  padding: 8px 12px 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(0, 51, 34, .08), inset 0 1px 0 rgba(255, 255, 255, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--deep-green);
  text-decoration: none;
}
.brand-logo { width: 138px; height: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a,
.secondary-link {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--deep-green);
  background: var(--mint);
  transform: translateY(-1px);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.primary-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(8, 116, 67, .16);
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nav-links a { padding: 8px 16px; color: var(--muted); font-weight: 650; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--deep-green); background: rgba(0, 51, 34, .06); }
.primary-cta { min-height: 42px; padding: 0 17px; font-size: .9rem; }
.primary-cta:hover, .button:hover {
  color: #fff;
  background: var(--deep-green);
  box-shadow: 0 14px 28px rgba(8, 116, 67, .22);
  transform: translateY(-2px);
}
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--deep-green);
  background: #fff;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.menu-icon, .menu-icon::before, .menu-icon::after {
  width: 19px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease;
}
.menu-icon { position: relative; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.mobile-menu[open] .menu-icon { background: transparent; }
.mobile-menu[open] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.mobile-menu[open] .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(280px, calc(100vw - 32px));
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow);
}
.mobile-menu-panel a {
  padding: 13px 14px;
  border-radius: 12px;
  color: var(--deep-green);
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu-panel a:hover { background: var(--mint); }

/* Shared page sections */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 132px) 0 92px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 10%, rgba(201, 236, 217, .92), transparent 34%), linear-gradient(145deg, var(--mint), var(--cream) 68%);
}
.hero::after {
  content: "";
  width: 340px;
  height: 340px;
  position: absolute;
  right: -160px;
  top: 150px;
  border: 1px solid rgba(8, 116, 67, .12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--deep-green); line-height: 1.1; letter-spacing: -.035em; text-wrap: balance; }
h1 { max-width: 760px; margin: 0 0 22px; font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { margin: 0 0 14px; font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { margin: 0 0 8px; font-size: 1.15rem; }
p { text-wrap: pretty; }
.lede { max-width: 680px; margin: 0; color: var(--muted); font-size: clamp(1.04rem, 2vw, 1.2rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button.secondary { color: var(--green); background: rgba(255, 255, 255, .64); box-shadow: none; }
.button.secondary:hover { color: var(--deep-green); background: #fff; }
.hero-card {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(216, 231, 222, .92);
  border-radius: 30px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}
.product-icon { width: 74px; height: 74px; display: block; margin-bottom: 25px; border-radius: 21px; box-shadow: 0 12px 26px rgba(6, 59, 42, .18); }
.hero-card p { margin: 0; color: var(--muted); }
.hero-visual { position: relative; min-height: 620px; display: grid; place-items: center; isolation: isolate; }
.hero-visual-halo { position: absolute; width: min(620px, 100%); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(201, 236, 217, .9) 0%, rgba(227, 245, 235, .48) 46%, rgba(227, 245, 235, 0) 72%); }
.hero-phones { position: relative; z-index: 1; width: min(680px, 112%); max-width: none; filter: drop-shadow(0 30px 34px rgba(6, 59, 42, .18)); }
.hero-float-card { position: absolute; right: 2%; bottom: 8%; z-index: 2; display: flex; align-items: center; gap: 10px; padding: 13px 16px; border: 1px solid rgba(216, 231, 222, .9); border-radius: 16px; background: rgba(255, 255, 255, .88); box-shadow: 0 16px 34px rgba(6, 59, 42, .13); backdrop-filter: blur(12px); }
.hero-float-card strong, .hero-float-card small { display: block; }
.hero-float-card strong { color: var(--deep-green); font-size: .85rem; }
.hero-float-card small { margin-top: 2px; color: var(--muted); font-size: .72rem; white-space: nowrap; }
.hero-float-dot { width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(8, 116, 67, .12); }
.section { padding: clamp(68px, 9vw, 104px) 0; }
.section.alt { background: #eef8f2; }
.section-intro { max-width: 700px; margin: 0 0 32px; color: var(--muted); font-size: 1.04rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card { padding: 25px; border: 1px solid var(--border); border-radius: 20px; background: #fff; box-shadow: 0 12px 32px rgba(16, 24, 32, .045); }
.card p { margin: 0; color: var(--muted); }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step-number { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .85rem; font-weight: 850; }
.notice { margin: 24px 0; padding: 16px 18px; border-left: 4px solid var(--orange); border-radius: 10px; color: #5d471f; background: #fff7e8; }

/* Legal and support pages */
.article { max-width: 840px; padding: 150px 0 104px; }
.article h1 { font-size: clamp(2.55rem, 6vw, 4.6rem); }
.article h2 { margin-top: 46px; font-size: clamp(1.55rem, 3vw, 2rem); }
.article h3 { margin-top: 28px; }
.article p, .article li { color: #364840; }
.article ul, .article ol { padding-left: 24px; }
.article table { width: 100%; display: block; overflow-x: auto; border-collapse: collapse; margin: 20px 0; background: #fff; }
.article th, .article td { min-width: 160px; padding: 12px; border: 1px solid var(--border); text-align: left; vertical-align: top; }
.faq { display: grid; gap: 12px; }
.faq details { padding: 18px 20px; border: 1px solid var(--border); border-radius: 16px; background: #fff; }
.faq summary { cursor: pointer; color: var(--deep-green); font-weight: 760; }
.faq p { margin: 12px 0 0; color: var(--muted); }

/* Shared footer */
.site-footer { padding: 40px 20px 24px; background: transparent; }
.footer-card { width: 100%; max-width: 1100px; margin: 0 auto; padding: 48px 56px 32px; border-radius: 32px; color: #fff; background: #0b3d2c; box-shadow: 0 20px 40px rgba(11, 61, 44, .15); }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 32px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo { display: inline-flex; align-items: center; color: #fff; font-size: 28px; font-weight: 800; letter-spacing: -.02em; text-decoration: none; }
.footer-logo img { display: none; }
.footer-logo .logo-accent { color: var(--orange); }
.footer-tagline { margin: 0; color: #a3c4b5; font-size: 1rem; }
.footer-nav { display: flex; gap: 48px; }
.footer-nav .nav-column { display: flex; gap: 24px; }
.footer-nav a { color: #a3c4b5; font-size: .95rem; font-weight: 500; text-decoration: none; transition: color .2s ease, transform .2s ease; }
.footer-nav a:hover { color: #fff; transform: translateY(-2px); }
.footer-divider { height: 1px; margin: 32px 0 0; border: 0; background: rgba(255, 255, 255, .1); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-top: 22px; }
.copyright { margin: 0; color: #799d8d; font-size: .85rem; }
.footer-app-link { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; color: #fff; background: rgba(255, 255, 255, .1); font-size: .9rem; font-weight: 650; text-decoration: none; transition: background .2s ease; }
.footer-app-link:hover { color: #fff; background: rgba(255, 255, 255, .2); }

/* App download page */
.download-page { background: var(--cream); }
.download-hero { padding: 150px 0 86px; background: radial-gradient(circle at 18% 8%, rgba(201, 236, 217, .9), transparent 32%), linear-gradient(150deg, var(--mint), var(--cream) 67%); }
.download-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: clamp(38px, 8vw, 100px); align-items: center; }
.download-badge { width: 104px; height: 104px; display: grid; place-items: center; margin-bottom: 26px; border: 1px solid rgba(8, 116, 67, .14); border-radius: 30px; background: rgba(255, 255, 255, .78); box-shadow: 0 18px 34px rgba(6, 59, 42, .12); }
.download-badge img { width: 72px; height: 72px; border-radius: 21px; }
.download-hero h1 { max-width: 680px; font-size: clamp(2.7rem, 6vw, 5rem); }
.download-lede { max-width: 620px; margin: 0; color: var(--muted); font-size: 1.12rem; }
.store-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 520px; margin-top: 30px; }
.store-button { min-height: 68px; display: flex; align-items: center; gap: 12px; padding: 12px 17px; border: 1px solid var(--deep-green); border-radius: 16px; color: #fff; background: var(--deep-green); text-decoration: none; box-shadow: 0 14px 28px rgba(6, 59, 42, .16); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.store-button:hover { color: #fff; background: var(--green); box-shadow: 0 18px 34px rgba(6, 59, 42, .2); transform: translateY(-2px); }
.store-button svg { flex: 0 0 auto; }
.store-button span { display: grid; gap: 1px; line-height: 1.15; }
.store-button small { color: #b9d7c8; font-size: .7rem; font-weight: 650; }
.store-button strong { color: #fff; font-size: 1rem; }
.download-note { max-width: 560px; margin: 18px 0 0; color: #6d7d75; font-size: .88rem; }
.download-visual { position: relative; min-height: 430px; display: grid; place-items: center; }
.download-orbit { position: absolute; width: min(100%, 530px); aspect-ratio: 1; border: 1px solid rgba(8, 116, 67, .16); border-radius: 50%; }
.download-orbit::before, .download-orbit::after { content: ""; position: absolute; border: 1px solid rgba(8, 116, 67, .1); border-radius: 50%; }
.download-orbit::before { inset: 10%; }
.download-orbit::after { inset: 22%; }
.download-panel { position: relative; width: min(100%, 320px); padding: 32px 26px 28px; border: 1px solid rgba(216, 231, 222, .92); border-radius: 30px; background: rgba(255, 255, 255, .9); box-shadow: var(--shadow); text-align: center; }
.download-panel::before { content: ""; width: 54px; height: 5px; display: block; margin: -8px auto 24px; border-radius: 99px; background: var(--mint-strong); }
.download-panel img { width: 96px; height: 96px; margin-bottom: 20px; border-radius: 27px; box-shadow: 0 16px 28px rgba(6, 59, 42, .16); }
.download-panel h2 { margin-bottom: 8px; font-size: 1.65rem; }
.download-panel p { margin: 0; color: var(--muted); }
.download-benefits { padding: 76px 0 88px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 30px; }
.benefit-card { padding: 24px; border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.benefit-card .benefit-icon { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 13px; color: var(--green); background: var(--mint); font-weight: 850; }
.benefit-card p { margin: 0; color: var(--muted); }

/* Invitation fallback */
.invite-page { min-height: 100vh; background: linear-gradient(180deg, var(--mint) 0%, var(--cream) 36%); }
.invite-main { min-height: calc(100vh - 260px); display: grid; place-items: center; padding: 150px 0 72px; }
.invite-card { width: min(100%, 500px); padding: clamp(28px, 6vw, 46px); border: 1px solid var(--border); border-radius: 28px; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow); text-align: center; }
.invite-card .product-icon { margin: 0 auto 22px; }
.invite-card h1 { margin-bottom: 12px; font-size: clamp(2.2rem, 8vw, 3.6rem); }
.invite-card p { margin: 0 0 24px; color: var(--muted); }
.invite-card .invite-actions { display: grid; gap: 12px; }
.invite-card .invite-actions a { width: 100%; }
.invite-card small { display: block; margin-top: 20px; color: #718078; line-height: 1.5; }

@media (max-width: 860px) {
  .shell { width: min(100% - 36px, 680px); }
  .site-header { padding: 16px 14px; }
  .nav { width: 100%; padding: 8px 10px 8px 18px; }
  .nav-links, .secondary-link { display: none; }
  .nav-actions { margin-left: auto; }
  .mobile-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; order: 2; }
  .hero-phones { width: min(700px, 120%); margin: 0 -10%; }
  .hero-float-card { right: 5%; bottom: 4%; }
  .download-layout { grid-template-columns: 1fr; }
  .download-visual { min-height: 360px; order: -1; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .footer-card { padding: 38px 32px 28px; }
}

@media (max-width: 600px) {
  .shell { width: min(100% - 32px, 520px); }
  .site-header { padding: 12px 10px; }
  .nav { gap: 10px; padding-left: 14px; }
  .brand-logo, .footer-logo img { width: 122px; }
  .primary-cta { min-height: 40px; padding: 0 13px; font-size: .82rem; }
  .hero { padding: 116px 0 70px; }
  .hero::after { display: none; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.2rem); }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .button { width: 100%; }
  .section { padding: 66px 0; }
  .hero-visual { min-height: 360px; margin-top: 4px; }
  .hero-phones { width: 122%; margin: 0 -11%; }
  .hero-float-card { right: 0; bottom: 1%; padding: 10px 12px; }
  .hero-float-card small { font-size: .66rem; }
  .hero-card, .card { border-radius: 18px; }
  .download-hero { padding: 118px 0 64px; }
  .download-badge { width: 84px; height: 84px; margin-bottom: 20px; border-radius: 24px; }
  .download-badge img { width: 60px; height: 60px; border-radius: 17px; }
  .download-visual { min-height: 300px; }
  .download-panel { width: min(100%, 280px); }
  .download-orbit { width: 300px; }
  .store-actions { grid-template-columns: 1fr; }
  .footer-card { padding: 32px 24px; border-radius: 24px; }
  .footer-top { flex-direction: column; }
  .footer-nav .nav-column { flex-direction: column; gap: 16px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .invite-main { padding: 118px 0 64px; }
}

@media (max-width: 390px) {
  .primary-cta { min-height: 38px; padding: 0 11px; font-size: .78rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* =========================================================
   TRUSS HOMEPAGE PRODUCT UI REFRESH
   ========================================================= */

:root {
  --truss-green: #006d3b;
  --truss-green-deep: #064b2e;
  --truss-green-dark: #073c29;
  --truss-green-soft: #dfece4;

  --truss-gold: #e2b84f;
  --truss-gold-soft: #f6e8bd;

  --truss-cream: #f5f1e8;
  --truss-cream-light: #fbfaf6;

  --truss-ink: #10231a;
  --truss-copy: #44584e;
  --truss-muted: #738178;

  --truss-border: rgba(14, 69, 45, 0.12);

  --truss-radius-sm: 16px;
  --truss-radius: 24px;
  --truss-radius-lg: 36px;
  --truss-radius-xl: 48px;

  --truss-shadow:
    0 30px 80px rgba(10, 46, 31, 0.12);

  --truss-shadow-phone:
    0 35px 70px rgba(0, 0, 0, 0.28);
}


/* ---------------------------------------
   GLOBAL SECTION POLISH
--------------------------------------- */

.section {
  position: relative;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 64px;
}

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

.section-heading h2,
.feature-copy h2,
.customer-copy h2,
.download-copy h2,
.showcase-copy h2 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0 0 16px;

  color: var(--truss-green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";

  width: 24px;
  height: 2px;

  background: currentColor;
  border-radius: 999px;
}

.eyebrow.light {
  color: #dff3e7;
}

.section-intro {
  color: var(--truss-copy);
  line-height: 1.75;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.trust-how {
  padding-top: 120px;
  padding-bottom: 128px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(0, 109, 59, 0.07),
      transparent 40%
    ),
    var(--truss-cream-light);
}

.trust-how .section-heading h2 {
  max-width: 680px;
  margin: 0 auto 22px;

  color: var(--truss-ink);
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.trust-how .section-intro {
  max-width: 680px;
  margin: 0 auto;

  font-size: 1.06rem;
}

.trust-process {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: center;

  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  position: relative;

  min-height: 330px;
  padding: 34px;

  background: #fff;

  border: 1px solid var(--truss-border);
  border-radius: var(--truss-radius-lg);

  box-shadow:
    0 20px 60px rgba(19, 55, 38, 0.07);

  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.process-step:hover {
  transform: translateY(-6px);

  box-shadow:
    0 28px 70px rgba(19, 55, 38, 0.12);
}

.process-number {
  position: absolute;
  top: 24px;
  right: 26px;

  color: rgba(0, 109, 59, 0.13);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.process-icon {
  display: grid;
  place-items: center;

  width: 58px;
  height: 58px;

  margin-bottom: 52px;

  color: var(--truss-green);

  background: var(--truss-green-soft);
  border-radius: 18px;
}

.process-icon svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 0 0 12px;

  color: var(--truss-ink);
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 0;

  color: var(--truss-copy);
  line-height: 1.7;
}

.process-line {
  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(0, 109, 59, 0.1),
      rgba(0, 109, 59, 0.65),
      rgba(0, 109, 59, 0.1)
    );
}


/* =========================================================
   DARK PRODUCT SHOWCASE
   ========================================================= */

.product-showcase {
  min-height: 760px;
  padding: 130px 0;

  color: #fff;

  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(45, 132, 83, 0.34),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 15%,
      rgba(226, 184, 79, 0.09),
      transparent 24%
    ),
    #061d14;
}

.showcase-shell {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: center;
}

.showcase-copy {
  position: relative;
  z-index: 4;

  max-width: 520px;
}

.showcase-copy h2 {
  margin: 0 0 28px;

  color: white;
  font-size: clamp(3rem, 5vw, 5rem);
}

.showcase-copy h2 span {
  color: var(--truss-gold);
}

.showcase-copy > p {
  max-width: 480px;
  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.75;
}

.showcase-points {
  display: grid;
  gap: 14px;
}

.showcase-point {
  display: flex;
  align-items: center;
  gap: 13px;

  color: rgba(255, 255, 255, 0.88);
}

.checkmark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;

  width: 26px;
  height: 26px;

  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}


/* ---------------------------------------
   PHONE MOCKUPS
--------------------------------------- */

.phones-stage {
  position: relative;

  min-height: 580px;
}

.phone {
  position: relative;

  width: 280px;

  padding: 8px;

  background:
    linear-gradient(
      145deg,
      #252a29,
      #050807 62%,
      #3d4340
    );

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 44px;

  box-shadow: var(--truss-shadow-phone);

  transform: translateZ(0);
}

.phone::after {
  content: "";

  position: absolute;
  inset: 3px;

  pointer-events: none;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
}

.phone-screen {
  position: relative;

  overflow: hidden;

  width: 100%;
  aspect-ratio: 9 / 19.4;

  background: #f7f5ee;
  border-radius: 36px;
}

.phone-screen img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;

  width: 84px;
  height: 22px;

  background: #050706;
  border-radius: 999px;

  transform: translateX(-50%);
}

.phone-front {
  position: absolute;
  z-index: 3;
  top: 4px;
  left: 12%;

  transform: rotate(-5deg);
}

.phone-back {
  position: absolute;
  z-index: 2;
  top: 65px;
  right: 4%;

  transform: rotate(9deg) scale(0.94);
}

.glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(30px);
}

.glow-one {
  top: 80px;
  left: 15%;

  width: 260px;
  height: 260px;

  background: rgba(17, 112, 65, 0.2);
}

.glow-two {
  right: 5%;
  bottom: 65px;

  width: 190px;
  height: 190px;

  background: rgba(225, 184, 79, 0.13);
}

.floating-chip {
  position: absolute;
  z-index: 6;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 17px;

  color: var(--truss-ink);

  background: rgba(255, 255, 255, 0.94);

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.24);

  backdrop-filter: blur(12px);
}

.floating-chip small {
  display: block;

  margin-bottom: 2px;

  color: var(--truss-muted);
  font-size: 0.67rem;
}

.floating-chip strong {
  display: block;

  font-size: 0.83rem;
}

.chip-icon {
  display: grid;
  place-items: center;

  width: 33px;
  height: 33px;

  color: var(--truss-green);
  font-weight: 800;

  background: var(--truss-green-soft);
  border-radius: 11px;
}

.status-dot {
  width: 11px;
  height: 11px;

  background: #12a65c;

  border-radius: 50%;

  box-shadow:
    0 0 0 5px rgba(18, 166, 92, 0.12);
}

.chip-balance {
  top: 96px;
  right: 0;
}

.chip-status {
  bottom: 70px;
  left: 0;
}


/* =========================================================
   MERCHANT SECTION
   ========================================================= */

.merchants-section {
  padding: 140px 0;

  background:
    linear-gradient(
      180deg,
      #fbfaf6 0%,
      #f3f0e7 100%
    );
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 100px;
  align-items: center;
}

.feature-copy h2 {
  max-width: 620px;
  margin: 0 0 24px;

  color: var(--truss-ink);
  font-size: clamp(2.8rem, 4.8vw, 4.5rem);
}

.feature-copy > .section-intro {
  max-width: 570px;
  margin-bottom: 42px;

  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 4px;
}

.feature-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;

  padding: 25px 0;

  border-bottom: 1px solid var(--truss-border);
}

.feature-symbol {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  color: var(--truss-green);
  font-size: 0.7rem;
  font-weight: 800;

  background: var(--truss-green-soft);
  border-radius: 13px;
}

.feature-row h3 {
  margin: 1px 0 5px;

  color: var(--truss-ink);
  font-size: 1.04rem;
}

.feature-row p {
  max-width: 510px;
  margin: 0;

  color: var(--truss-copy);
  font-size: 0.91rem;
  line-height: 1.65;
}


/* ---------------------------------------
   MERCHANT VISUAL
--------------------------------------- */

.merchant-visual {
  position: relative;
}

.visual-card {
  position: relative;

  overflow: hidden;

  min-height: 700px;
  padding: 36px;

  background:
    linear-gradient(
      145deg,
      #0b5d37,
      #073d28
    );

  border-radius: 42px;

  box-shadow: var(--truss-shadow);
}

.visual-card::before {
  content: "";

  position: absolute;
  right: -80px;
  bottom: -80px;

  width: 300px;
  height: 300px;

  background: rgba(226, 184, 79, 0.12);

  border-radius: 50%;

  filter: blur(2px);
	    z-index: 1;
}


.visual-card-head {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  color: white;
}

.visual-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.visual-card-head h3 {
  margin: 7px 0 0;

  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 11px;

  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.live-pill span {
  width: 7px;
  height: 7px;

  background: #75e4a6;
  border-radius: 50%;
}

.merchant-phone {
  position: absolute;
  left: 50%;
  bottom: -166px;

  width: 360px;

  transform:
    translateX(-50%)
    rotate(-0deg);
	z-index: 0;
}

.visual-card {
  overflow: visible;
}

/* =========================================================
   CUSTOMER SECTION
   ========================================================= */

.merchant-phone-mfja {
    position: absolute;
    left: 50%;
    bottom: -311px;
    width: 332px;
    transform: translateX(-50%) rotate(-0deg);
    z-index: 0;
}

.customer-section {
  padding: 120px 0;

  background: white;
}

.customer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  min-height: 700px;

  background: var(--truss-green-dark);

  border-radius: 48px;

  box-shadow: var(--truss-shadow);
}

.customer-visual {
  position: relative;

  min-height: 700px;

  background:
    radial-gradient(
      circle at 45% 48%,
      rgba(255, 255, 255, 0.14),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #f1ead6,
      #dfd5b8
    );
}

.customer-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 82%);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 116, 67, .13);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.customer-phone-wrap {
  position: absolute;
  inset: 0;

  display: grid;
  place-items: center;
}

.customer-phone {
  width: 300px;

  transform: rotate(5deg);
	margin-left: 24%;
    margin-top: 10%;
}

.customer-float-card {
  position: absolute;
  right: 8%;
  bottom: 18%;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 14px 17px;

  background: rgba(255, 255, 255, 0.93);
  border-radius: 17px;

  box-shadow:
    0 22px 50px rgba(18, 42, 30, 0.18);

  backdrop-filter: blur(10px);
}

.customer-float-card small {
  display: block;

  margin-bottom: 2px;

  color: var(--truss-muted);
  font-size: 0.68rem;
}

.customer-float-card strong {
  color: var(--truss-ink);
  font-size: 0.78rem;
}

.customer-float-icon {
  display: grid;
  place-items: center;

  width: 32px;
  height: 32px;

  color: white;
  font-size: 0.76rem;

  background: var(--truss-green);
  border-radius: 50%;
}

.customer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: clamp(55px, 7vw, 90px);

  color: white;
}

.customer-copy h2 {
  max-width: 520px;
  margin: 0 0 22px;

  color: white;
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
}

.customer-lead {
  max-width: 550px;
  margin: 0 0 34px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 1rem;
  line-height: 1.75;
}

.customer-benefits {
  display: grid;
  gap: 14px;

  margin-bottom: 34px;
}

.customer-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.customer-benefit span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;

  width: 23px;
  height: 23px;

  margin-top: 1px;

  color: var(--truss-green-dark);
  font-size: 0.68rem;
  font-weight: 800;

  background: var(--truss-gold);
  border-radius: 50%;
}

.customer-benefit p {
  margin: 0;

  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.customer-notice {
  max-width: 560px;

  padding: 20px 22px;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.customer-notice strong {
  display: block;

  margin-bottom: 6px;

  color: white;
}

.customer-notice p {
  margin: 0;

  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.6;
}


/* =========================================================
   DOWNLOAD / JAMAICA CTA
   ========================================================= */

.download-section {
  padding: 70px 0 120px;

  background: white;
}

.download-card {
  position: relative;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;

  overflow: hidden;

  min-height: 510px;
  padding: clamp(50px, 7vw, 88px);

  color: white;

  background:
    linear-gradient(
      130deg,
      #006d3b 0%,
      #075333 55%,
      #073f2b 100%
    );

  border-radius: 46px;
}

.download-card::before {
  content: "";

  position: absolute;
  top: -50%;
  right: 10%;

  width: 500px;
  height: 500px;

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.09),
      transparent 63%
    );
}

.download-copy {
  position: relative;
  z-index: 4;

  max-width: 650px;
}

.download-copy h2 {
  margin: 0 0 25px;

  color: white;
  font-size: clamp(3rem, 3.3vw, 3.3rem);
}

.download-copy > p {
  max-width: 570px;
  margin-bottom: 34px;

  color: rgba(255, 255, 255, 0.72);

  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  min-height: 52px;
  padding: 0 21px;

  font-weight: 750;
  text-decoration: none;

  border-radius: 14px;

  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  color: var(--truss-green-dark);

  background: white;
}

.button-ghost {
  color: white;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.download-decoration {
  position: relative;

  min-height: 350px;
}

.trust-ring {
  position: absolute;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.ring-one {
  top: 50%;
  left: 50%;

  width: 260px;
  height: 260px;

  transform: translate(-50%, -50%);
}

.ring-two {
  top: 50%;
  left: 50%;

  width: 360px;
  height: 360px;

  transform: translate(-50%, -50%);
}

.brand-mark {
  position: absolute;
  top: 50%;
  left: 50%;

  display: grid;
  place-items: center;

  width: 150px;
  height: 150px;

  color: var(--truss-green-dark);
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.1em;

  background: var(--truss-gold);
  border-radius: 42px;

  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.18);

  transform:
    translate(-50%, -50%)
    rotate(-8deg);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 0 0 35px;

  background: white;
}

.footer-card {
  padding: 58px 0 28px;

  border-top: 1px solid var(--truss-border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
}

.footer-logo {
  display: inline-block;

  margin-bottom: 14px;

  color: var(--truss-ink);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.logo-accent {
  color: var(--truss-green);
}

.footer-tagline {
  margin: 0 0 10px;

  color: var(--truss-ink);
  font-weight: 650;
}

.footer-description {
  max-width: 440px;
  margin: 0;

  color: var(--truss-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 60px;
}

.nav-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-heading {
  margin-bottom: 4px;

  color: var(--truss-ink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-column a {
  color: var(--truss-muted);
  font-size: 0.87rem;
  text-decoration: none;

  transition: color 160ms ease;
}

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

.footer-divider {
  margin: 52px 0 25px;

  border: 0;
  border-top: 1px solid var(--truss-border);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.copyright {
  margin: 0;

  color: var(--truss-muted);
  font-size: 0.8rem;
}

.footer-app-link {
  color: var(--truss-green);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

  .trust-process {
    grid-template-columns: 1fr;
    gap: 20px;

    max-width: 680px;
  }

  .process-line {
    width: 1px;
    height: 35px;

    margin: -4px auto;

    background:
      linear-gradient(
        180deg,
        rgba(0, 109, 59, 0.1),
        rgba(0, 109, 59, 0.6),
        rgba(0, 109, 59, 0.1)
      );
  }

  .process-step {
    min-height: auto;
  }

  .showcase-shell,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .showcase-copy {
    max-width: 650px;
  }

  .phones-stage {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .feature-layout {
    gap: 70px;
  }

  .customer-card {
    grid-template-columns: 1fr;
  }

  .customer-visual {
    min-height: 650px;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .download-decoration {
    display: none;
  }
}


@media (max-width: 720px) {

  .trust-how,
  .product-showcase,
  .merchants-section,
  .customer-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .process-step {
    padding: 28px;
    border-radius: 28px;
  }

  .process-icon {
    margin-bottom: 34px;
  }

  .showcase-shell {
    gap: 50px;
  }

  .product-showcase {
    min-height: auto;
  }

  .phones-stage {
    min-height: 560px;
  }

  .phone-front {
    left: 2%;

    width: 245px;
  }

  .phone-back {
    right: -8%;

    width: 235px;
  }

  .chip-balance {
    top: 75px;
    right: 0;
  }

  .chip-status {
    bottom: 50px;
    left: 0;
  }

  .visual-card {
    min-height: 580px;
    padding: 28px;
    border-radius: 32px;
  }

  .merchant-phone {
    width: 270px;
  }

  .customer-card {
    border-radius: 32px;
  }

  .customer-visual {
    min-height: 580px;
  }

  .customer-phone {
    width: 250px;
  }

  .customer-copy {
    padding: 50px 28px;
  }

  .customer-float-card {
    right: 5%;
  }

  .download-section {
    padding-bottom: 80px;
  }

  .download-card {
    min-height: auto;
    padding: 52px 28px;

    border-radius: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-nav {
    gap: 30px;
  }

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


@media (max-width: 520px) {

  .phones-stage {
    min-height: 490px;
  }

  .phone-front {
    width: 215px;
  }

  .phone-back {
    top: 55px;
    right: -12%;

    width: 205px;
  }

  .floating-chip {
    padding: 10px 12px;
  }

  .chip-balance {
    top: 45px;
  }

  .chip-status {
    bottom: 25px;
  }

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

  .footer-nav {
    grid-template-columns: 1fr;
  }
}


/* Respect accessibility preferences */
@media (prefers-reduced-motion: reduce) {

  .process-step,
  .button,
  .nav-column a {
    transition: none;
  }

}

/* =========================================================
   TRUSS FIX PATCH — 2026-08-07
   Fixes the missing homepage hero, real app screenshot display,
   product mockup sizing, footer cascade conflicts, and mobile layout.
   ========================================================= */

/* Homepage hero */
.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 112px;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 236, 217, .95), transparent 30%),
    radial-gradient(circle at 66% 86%, rgba(226, 184, 79, .16), transparent 24%),
    linear-gradient(145deg, #f7fbf8 0%, #eef8f2 52%, #fbfaf6 100%);
}

.landing-hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -260px;
  border: 1px solid rgba(8, 116, 67, .13);
  border-radius: 50%;
  pointer-events: none;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

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

.landing-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--deepest-green);
  font-size: clamp(3.35rem, 7.2vw, 6.5rem);
  line-height: .93;
  letter-spacing: -.065em;
}

.landing-hero h1 span {
  color: var(--green);
}

.landing-hero .lede {
  max-width: 620px;
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
  line-height: 1.72;
}

.landing-hero-actions {
  margin-top: 32px;
}

.landing-hero .hero-primary,
.landing-hero .hero-secondary {
  min-height: 54px;
  padding-inline: 22px;
  border-radius: 16px;
}

.landing-hero .hero-primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.landing-hero .hero-primary:hover {
  color: #fff;
  background: var(--deep-green);
  border-color: var(--deep-green);
}

.landing-hero .hero-secondary {
  color: var(--deep-green);
  background: rgba(255,255,255,.68);
  border-color: rgba(8, 116, 67, .18);
  box-shadow: none;
}

.landing-hero .hero-secondary:hover {
  color: var(--deep-green);
  background: #fff;
  border-color: rgba(8, 116, 67, .28);
  box-shadow: 0 12px 28px rgba(6,59,42,.08);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: #456258;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(8,116,67,.11);
  border-radius: 999px;
  font-size: .69rem;
  font-weight: 700;
}



.landing-hero-visual {
  position: relative;
  min-height: 650px;
  perspective: 1400px;
  isolation: isolate;
}

.hero-halo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(580px, 96%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,236,217,.96) 0%, rgba(227,245,235,.58) 50%, rgba(227,245,235,0) 72%);
  border-radius: 50%;
}

.hero-phone {
  position: absolute;
  z-index: 2;
  width: 280px;
  transform-style: preserve-3d;
}

.hero-phone-left {
  left: 6%;
  top: 95px;
  transform: rotate(-8deg) rotateY(10deg) scale(.94);
}

.hero-phone-right {
  right: 5%;
  top: 28px;
  z-index: 3;
  transform: rotate(6deg) rotateY(-8deg);
}

.hero-mini-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(216,231,222,.9);
  border-radius: 17px;
  box-shadow: 0 18px 45px rgba(6,59,42,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-mini-card small,
.hero-mini-card strong {
  display: block;
}

.hero-mini-card small {
  color: var(--muted);
  font-size: .66rem;
  line-height: 1.2;
}

.hero-mini-card strong {
  margin-top: 2px;
  color: var(--deep-green);
  font-size: .8rem;
  line-height: 1.2;
}

.hero-mini-icon {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  color: var(--green);
  background: var(--mint);
  border-radius: 11px;
  font-weight: 850;
}

.hero-mini-dot {
  width: 11px;
  height: 11px;
  background: #18a962;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(24,169,98,.12);
}

.hero-mini-balance {
    left: -120px;
    top: 100px;

}

.hero-mini-status {
  right: 0;
  bottom: 86px;
}

/* Use the polished two-phone asset in the dark product section. */
.mockup-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
}

.product-mockup-image {
  position: relative;
  z-index: 3;
  display: block;
  width: min(760px, 88%);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 34px 44px rgba(0,0,0,.28));
	border-radius: 3em;
}

.product-mockup-image- {    
    position: relative;
    z-index: 3;
    display: block;
    width: min(760px, 70%);
    max-width: none;
    height: auto;
    filter: drop-shadow(0 34px 44px rgba(0, 0, 0, .28));
    border-radius: 3em;
}

.mockup-stage .chip-balance { top: 72px; right: 2%; }
.mockup-stage .chip-status { bottom: 72px; left: 2%; }

/* Decorative Jamaica/gold accent that existed in the markup but had no styles. */
.flag-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 8px;
  background: var(--truss-gold);
  border-radius: 0 0 999px 0;
}

/* Keep the white CTA white on hover instead of inheriting the old global .button:hover. */
.button-light:hover {
  color: var(--truss-green-dark);
  background: #fff8e7;
  border-color: var(--truss-gold);
}

/* Footer: the old stylesheet had stronger selectors from the previous dark footer.
   These explicit overrides prevent dark-on-dark text and horizontal link groups. */
.site-footer .footer-card {
  width: min(1160px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 58px 0 28px;
  color: var(--truss-ink);
  background: #fff;
  border: 0;
  border-top: 1px solid var(--truss-border);
  border-radius: 0;
  box-shadow: none;
}

.site-footer .footer-nav .nav-column {
  display: grid;
  flex-direction: initial;
  align-content: start;
  gap: 11px;
}

.site-footer .footer-logo,
.site-footer .footer-tagline,
.site-footer .footer-heading {
  color: var(--truss-ink);
}

.site-footer .footer-logo .logo-accent {
  color: var(--truss-green);
}

.site-footer .footer-nav a,
.site-footer .copyright,
.site-footer .footer-description {
  color: var(--truss-muted);
}

.site-footer .footer-nav a:hover,
.site-footer .footer-app-link:hover {
  color: var(--truss-green);
  transform: none;
}

.site-footer .footer-app-link {
  color: var(--truss-green);
  background: transparent;
  padding: 0;
}

.site-footer .footer-app-link:hover {
  background: transparent;
}

/* Responsive fix pass */
@media (max-width: 1050px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy {
    max-width: 760px;
  }

  .landing-hero-visual {
    width: min(100%, 680px);
    min-height: 610px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .landing-hero {
    padding: 126px 0 72px;
  }

  .landing-hero-grid {
    gap: 38px;
  }

  .landing-hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
	text-align: center;
  }

  .landing-hero-visual {
    min-height: 510px;
  }

  .hero-phone-left {
    left: -2%;
    top: 85px;
    width: 230px;
  }

  .hero-phone-right {
    right: -3%;
    top: 20px;
    width: 242px;
  }

  .hero-mini-balance {
    top: 34px;
    left: 0;
  }

  .hero-mini-status {
    right: 0;
    bottom: 45px;
  }

  .product-mockup-image {
    width: 116%;
  }

  .site-footer .footer-card {
    width: min(100% - 32px, 680px);
    padding: 44px 0 26px;
  }
}

@media (max-width: 520px) {
  .hero-proof {
    gap: 7px;
  }

  .hero-proof span {
    font-size: .72rem;
  }

  .landing-hero-visual {
    min-height: 440px;
  }

  .hero-phone-left {
    left: -9%;
    top: 78px;
    width: 195px;
  }

  .hero-phone-right {
    right: -10%;
    top: 18px;
    width: 208px;
  }

  .hero-mini-card {
    padding: 9px 11px;
  }

  .hero-mini-card strong {
    font-size: .72rem;
  }

  .hero-mini-card small {
    font-size: .6rem;
  }

  .hero-mini-balance {
    top: 20px;
  }

  .hero-mini-status {
    bottom: 26px;
  }

  .mockup-stage {
    min-height: 390px;
  }

  .mockup-stage .floating-chip {
    display: none;
  }

  .product-mockup-image {
    width: 132%;
  }
}

/* =========================================================
   MOBILE RESPONSIVE HARDENING — 2026-08-07
   Keeps every homepage section inside the viewport from
   320px phones through tablets without changing desktop UI.
   ========================================================= */

html,
body {
  max-width: 100%;
}

img,
svg {
  height: auto;
}

/* Prevent long flex/grid children from forcing horizontal scroll. */
.landing-hero-copy,
.showcase-copy,
.feature-copy,
.customer-copy,
.footer-brand,
.footer-nav,
.nav-column,
.process-step,
.visual-card,
.customer-card,
.download-card {
  min-width: 0;
}

/* The centered customer phone should not rely on desktop-only margins. */
.customer-phone {
  margin-left: 0;
  margin-top: 0;
}

/* The legacy footer rule hides the real logo; explicitly restore it. */
.site-footer .footer-logo img {
  display: block;
  width: 138px;
  height: auto;
}

/* Mobile menu must stay inside the viewport even on 320px screens. */
.mobile-menu-panel {
  max-width: calc(100vw - 24px);
}

@media (max-width: 1050px) {
  .landing-hero-grid,
  .showcase-shell,
  .feature-layout,
  .customer-card,
  .download-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .landing-hero-copy,
  .showcase-copy,
  .feature-copy {
    max-width: 760px;
  }

  .landing-hero-visual {
    width: min(100%, 660px);
    min-height: 590px;
    margin-inline: auto;
  }

  .showcase-shell,
  .feature-layout {
    gap: 64px;
  }

  .customer-visual {
    min-height: 620px;
  }

  .customer-phone {
    width: min(290px, 42vw);
	  margin-top: 16px;
  }

  .download-decoration {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 14px 12px;
  }

  .nav {
    width: 100%;
    gap: 10px;
    padding: 7px 9px 7px 16px;
  }

  .brand-logo {
    width: 122px;
  }

  .landing-hero {
    padding-top: 122px;
    padding-bottom: 76px;
  }

  .landing-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .landing-hero-visual {
    min-height: 540px;
  }

  .hero-phone-left {
    left: 4%;
    top: 82px;
    width: clamp(205px, 36vw, 245px);
  }

  .hero-phone-right {
    right: 4%;
    top: 20px;
    width: clamp(218px, 38vw, 258px);
  }

  .hero-mini-balance {
    left: 0;
    top: 26px;
  }

  .hero-mini-status {
    right: 0;
    bottom: 34px;
  }

  .trust-how,
  .product-showcase,
  .merchants-section,
  .customer-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .product-showcase {
    min-height: 0;
  }

  .mockup-stage {
    min-height: 0;
  }

  .product-mockup-image {
    width: min(100%, 680px);
    margin-inline: auto;
    border-radius: clamp(22px, 5vw, 48px);
  }

  .mockup-stage .floating-chip {
    display: none;
  }

  .visual-card {
    min-height: 640px;
    overflow: hidden;
  }

  .merchant-phone {
    width: min(310px, 48vw);
    bottom: -120px;
  }

  .customer-card {
    border-radius: 36px;
  }

  .customer-visual {
    min-height: 600px;
  }

  .customer-copy {
    padding: 58px clamp(28px, 7vw, 64px);
  }

  .customer-float-card {
    right: 6%;
    bottom: 10%;
  }

  .download-card {
    min-height: 0;
  }

  .site-footer .footer-card {
    width: min(100% - 36px, 680px);
    padding: 42px 0 26px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 620px);
  }

  .landing-hero-grid,
  .showcase-shell,
  .feature-layout {
    gap: 42px;
  }

  .landing-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
    line-height: .96;
  }

  .landing-hero .lede,
  .showcase-copy > p,
  .section-intro,
  .customer-lead,
  .download-copy > p {
    font-size: 1rem;
  }
	
	.lede {text-align: center;}
	

  /* The floating cards look good on desktop but crowd narrow screens. */
  .hero-mini-card {
    display: none;
  }

  .landing-hero-visual {
    min-height: 490px;
  }

  .hero-phone-left {
    left: 2%;
    top: 76px;
    width: min(44vw, 225px);
  }

  .hero-phone-right {
    right: 2%;
    top: 18px;
    width: min(47vw, 238px);
  }

  .trust-how .section-heading h2,
  .showcase-copy h2,
  .feature-copy h2,
  .customer-copy h2,
  .download-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.35rem);
  }

  .process-step {
    min-height: 0;
    padding: 28px;
  }

  .process-icon {
    margin-bottom: 30px;
  }

  .product-showcase {
    padding-block: 86px;
  }

  .product-mockup-image {
    width: 100%;
    max-width: 560px;
  }

  .visual-card {
    min-height: 610px;
    padding: 28px 24px;
    border-radius: 30px;
  }

  .visual-card-head {
    gap: 16px;
  }

  .merchant-phone {
    width: min(275px, 72vw);
    bottom: -108px;
  }

  .customer-visual {
    min-height: 560px;
  }

  .customer-phone {
    width: min(260px, 70vw);
  }

  .customer-float-card {
    right: 20px;
    bottom: 24px;
    max-width: calc(100% - 40px);
  }

  .download-card {
    padding: 52px 28px;
    border-radius: 32px;
  }

  .download-copy h2 br {
    display: none;
  }

  .site-footer .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .site-footer .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 10px 8px;
  }

  .nav {
    padding-left: 12px;
  }

  .brand-logo,
  .site-footer .footer-logo img {
    width: 112px;
  }

  .primary-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: .78rem;
  }

  .landing-hero {
    padding-top: 108px;
    padding-bottom: 32px;
  }

  .landing-hero-actions,
  .actions {
    width: 100%;
  }

  .landing-hero-actions .button,
  .download-card .actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .hero-proof span {
    justify-content: center;
  }

  .landing-hero-visual {
    min-height: 430px;
  }

  .hero-phone-left {
    left: 0;
    top: 68px;
    width: 43vw;
  }

  .hero-phone-right {
    right: 0;
    top: 12px;
    width: 46vw;
  }

  .feature-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .customer-card {
    border-radius: 28px;
  }

  .customer-visual {
    min-height: 520px;
  }

  .customer-phone {
    width: min(245px, 72vw);
  }

  .customer-copy {
    padding: 46px 24px;
  }

  .customer-notice {
    padding: 18px;
  }

  .site-footer .footer-card {
    width: min(100% - 28px, 520px);
  }
	
	.gone {display: none !important;}
}

@media (max-width: 480px) {
  /* At very narrow widths keep the header from becoming wider than the viewport. */
  .nav .primary-cta {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .landing-hero h1 {
    font-size: clamp(2.55rem, 13.2vw, 3.55rem);
  }

  .landing-hero-visual {
    min-height: 390px;
  }

  .hero-phone-left {
    left: 1%;
    top: 62px;
    width: 44vw;
  }

  .hero-phone-right {
    right: 1%;
    top: 10px;
    width: 47vw;
  }

  .visual-card {
    min-height: 570px;
  }

  .merchant-phone {
    width: min(250px, 74vw);
    bottom: -95px;
  }

  .customer-visual {
    min-height: 490px;
  }

  .customer-float-card {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .download-card {
    padding: 46px 22px;
  }

  .site-footer .footer-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

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

@media (max-width: 360px) {
  .shell {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 102px;
  }

  .mobile-menu summary {
    width: 40px;
    height: 40px;
  }

  .landing-hero h1 {
    font-size: 2.5rem;
  }

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

  .hero-phone-left {
    width: 45vw;
  }

  .hero-phone-right {
    width: 48vw;
  }

  .trust-how .section-heading h2,
  .showcase-copy h2,
  .feature-copy h2,
  .customer-copy h2,
  .download-copy h2 {
    font-size: 2.15rem;
  }

  .process-step {
    padding: 24px;
  }

  .visual-card {
    padding-inline: 18px;
  }

  .customer-copy {
    padding-inline: 20px;
  }
}
/* =========================================================
   MOBILE HERO — LAYERED TRUSS SCREEN DECK
   Reference direction: staggered, overlapping category cards.
   Uses the real Truss screens in order: Welcome → Home → Trust.
   ========================================================= */

.mobile-hero-deck {
  display: none;
}

@media (max-width: 768px) {
  /* The desktop two-phone composition gives way to the mobile journey. */
  .landing-hero-visual {
    display: none !important;
  }

  .landing-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .landing-hero-copy {
    max-width: 620px;
    margin-inline: auto;
    text-align: center;
  }

  .landing-hero h1 {
    max-width: 10.5ch;
    margin-inline: auto;
  }

  .landing-hero .lede {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  .landing-hero-actions {
    justify-content: center;
  }

  .mobile-hero-deck {
    position: relative;
    display: block;
    width: min(100%, 620px);
    height: clamp(400px, 118vw, 560px);
    margin: 14px auto 0;
    overflow: hidden;
    isolation: isolate;
  }

  .mobile-hero-deck::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 2%;
    right: 4%;
    bottom: 2%;
    height: 34%;
    background: radial-gradient(ellipse at center, rgba(8, 116, 67, .18), rgba(8, 116, 67, 0) 70%);
    filter: blur(18px);
    pointer-events: none;
  }

  .mobile-hero-card {
    position: absolute;
    top: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 946 / 2048;
    background: #f7faf8;
    border: 1px solid rgba(6, 59, 42, .12);
    border-radius: clamp(22px, 6vw, 34px);
    box-shadow: 0 26px 54px rgba(3, 39, 29, .18);
  }

  .mobile-hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .mobile-hero-card figcaption {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 11px;
    color: var(--deepest-green);
    background: #c6dab6;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(3, 39, 29, .12);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .02em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .mobile-hero-card-welcome {
    z-index: 4;
    left: 0;
    height: 76%;
  }

  .mobile-hero-card-home {
    z-index: 3;
    left: 38%;
    top: 5%;
    height: 63%;
  }

  .mobile-hero-card-trust {
    z-index: 2;
    left: 68%;
    top: 10%;
    height: 55%;
  }

  /* A light edge makes each layer read even when screenshots are white. */
  .mobile-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .62);
  }
}

@media (max-width: 600px) {
  .landing-hero {
    padding-top: 106px;
    padding-bottom: 0px;
  }

  .landing-hero-copy .gone {
    display: none !important;
  }

  .mobile-hero-deck {
    height: clamp(390px, 124vw, 525px);
    margin-top: 8px;
	          margin-bottom: -101px;
  }

  .mobile-hero-card-home {
    left: 48%;
  }

  .mobile-hero-card-trust {
    left: 75%;
  }
}

@media (max-width: 480px) {
  .landing-hero-copy {
    text-align: left;
  }

  .landing-hero h1,
  .landing-hero .lede {
    margin-left: 0;
    margin-right: 0;
            text-align: center;
       
  }

  .landing-hero-actions {
    justify-content: stretch;
  }

  .mobile-hero-deck {
    width: calc(100vw - 24px);
    margin-left: calc((100vw - 24px - 100%) / -2);
    height: clamp(380px, 128vw, 500px);
  }

  .mobile-hero-card figcaption {
    top: 30px;
    right: 1px;
    min-height: 30px;
    padding: 8px 5px;
    font-size: .66rem;
  }
	figcaption.f2 {font-size: .46rem;}
	figcaption.f3 {font-size: .30rem;}

  .mobile-hero-card-home {
    left: 38%;
    top: 5.5%;
    height: 64%;
  }

  .mobile-hero-card-trust {
    left: 69%;
    top: 11%;
    height: 55%;
  }
}

@media (max-width: 360px) {
  .mobile-hero-deck {
    height: 405px;
  }

  .mobile-hero-card-home {
    left: 49%;
  }

  .mobile-hero-card-trust {
    left: 77%;
  }
}

/* =========================================================
   UNIFIED HERO — 2026-08-07
   The layered Welcome → Merchant → Customer deck is now the
   single hero visual on desktop, tablet, and mobile.
   ========================================================= */

/* The old .landing-hero-visual markup has been removed from index.html. */
.mobile-hero-deck {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.mobile-hero-deck::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 2%;
  bottom: 0;
  height: 38%;
  background: radial-gradient(ellipse at center, rgba(8, 116, 67, .2), rgba(8, 116, 67, 0) 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Desktop: the same layered concept, but the screenshots are intentionally
   broader and more editorial than the narrow phone-shaped mobile cards. */
@media (min-width: 1051px) {
  .landing-hero-grid {
    grid-template-columns: minmax(0, .84fr) minmax(610px, 1.16fr);
    gap: clamp(52px, 6vw, 94px);
    align-items: center;
  }

  .mobile-hero-deck {
    width: min(100%, 780px);
    height: 620px;
    margin: 0 auto;
    overflow: hidden;
  }

  .mobile-hero-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #f7faf8;
    border: 1px solid rgba(6, 59, 42, .12);
    border-radius: 30px;
    box-shadow: 0 28px 62px rgba(3, 39, 29, .18);
  }

  .mobile-hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .mobile-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .62);
  }

  .mobile-hero-card figcaption {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 13px;
    color: var(--deepest-green);
    background: #c6dab6;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 999px;
    box-shadow: 0 12px 26px rgba(3, 39, 29, .13);
    font-size: .82rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: .02em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  /* Wider proportions than mobile: 3:4-ish editorial cards rather than
     full phone-screen proportions. The screenshots crop naturally from top. */
  .mobile-hero-card-welcome {
    z-index: 4;
    left: 0;
    top: 0;
    width: 52%;
    height: 590px;
  }

  .mobile-hero-card-home {
    z-index: 3;
    left: 43%;
    top: 34px;
    width: 43%;
    height: 525px;
  }

  .mobile-hero-card-trust {
    z-index: 2;
    left: 72%;
    top: 72px;
    width: 35%;
    height: 455px;
  }
}

/* Tablet/small laptop: retain the unified deck and stack it below the copy. */
@media (min-width: 769px) and (max-width: 1050px) {
  .landing-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .landing-hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .landing-hero h1,
  .landing-hero .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .mobile-hero-deck {
    width: min(100%, 760px);
    height: 580px;
    margin: 4px auto 0;
  }

  .mobile-hero-card {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background: #f7faf8;
    border: 1px solid rgba(6, 59, 42, .12);
    border-radius: 28px;
    box-shadow: 0 26px 56px rgba(3, 39, 29, .18);
  }

  .mobile-hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .mobile-hero-card figcaption {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 12px;
    padding: 9px 11px;
    color: var(--deepest-green);
    background: #c6dab6;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 850;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .mobile-hero-card-welcome {
    z-index: 4;
    left: 0;
    top: 0;
    width: 50%;
    height: 545px;
  }

  .mobile-hero-card-home {
    z-index: 3;
    left: 42%;
    top: 28px;
    width: 42%;
    height: 485px;
  }

  .mobile-hero-card-trust {
    z-index: 2;
    left: 71%;
    top: 60px;
    width: 35%;
    height: 420px;
  }
}

/* Existing <=768px rules below remain the mobile treatment. This patch only
   makes sure the deck is never suppressed by an older desktop default. */
@media (max-width: 768px) {
  .mobile-hero-deck {
    display: block !important;
  }
}

/* =========================================================
   TRUSS HERO CAROUSEL
   Welcome → Merchant → Customer
   ========================================================= */
.mobile-hero-deck { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.truss-hero-carousel {
  --carousel-gap: 22px;
  --carousel-card-width: min(520px, 73vw);
  position: relative;
  width: min(100%, 820px);
  min-width: 0;
  margin: 0 auto;
}

.truss-carousel-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
  border-radius: 34px;
}
.truss-carousel-viewport::-webkit-scrollbar { display: none; }

.truss-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--carousel-gap);
  width: max-content;
  padding: 10px max(10px, calc((100% - var(--carousel-card-width)) / 2)) 24px;
}

.truss-carousel-slide {
  flex: 0 0 var(--carousel-card-width);
  width: var(--carousel-card-width);
  min-width: 0;
  margin: 0;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  opacity: .58;
  transform: scale(.94);
  transform-origin: center;
  transition: opacity .28s ease, transform .28s ease;
}
.truss-carousel-slide.is-active { opacity: 1; transform: scale(1); }

.truss-carousel-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #eef5f0;
  border: 1px solid rgba(6, 59, 42, .12);
  border-radius: 32px;
  box-shadow: 0 28px 62px rgba(3, 39, 29, .18);
}
.truss-carousel-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62);
}
.truss-carousel-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.truss-carousel-image-wrap figcaption {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  color: var(--deepest-green);
  background: #c6dab6;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(3,39,29,.12);
  font-size: .82rem;
  font-weight: 850;
}

.truss-carousel-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: start;
  padding: 18px 10px 0;
}
.truss-carousel-kicker {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--deep-green);
  background: var(--mint);
  border-radius: 11px;
  font-size: .7rem;
  font-weight: 850;
}
.truss-carousel-copy strong { color: var(--ink); font-size: 1rem; line-height: 1.3; }
.truss-carousel-copy > span:last-child { color: var(--muted); font-size: .84rem; line-height: 1.45; }

.truss-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}
.truss-carousel-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--deep-green);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(6,59,42,.08);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.truss-carousel-arrow:hover { color: #fff; background: var(--green); transform: translateY(-2px); }
.truss-carousel-arrow:disabled { opacity: .34; cursor: default; transform: none; }

.truss-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(6,59,42,.08);
  border-radius: 999px;
}
.truss-carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6,59,42,.22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.truss-carousel-dot.is-active { width: 26px; background: var(--green); }

@media (min-width: 1051px) {
  .landing-hero-grid {
    grid-template-columns: minmax(0, .84fr) minmax(610px, 1.16fr);
    gap: clamp(52px, 6vw, 94px);
    align-items: center;
  }
  .truss-hero-carousel {
    --carousel-gap: 26px;
    --carousel-card-width: 500px;
    width: min(100%, 780px);
	  
	      border-radius: 6em;
    mask-image: linear-gradient(to left, #00000000, rgb(0 0 0 / 4%) 2%, rgb(0 0 0 / 10%) 5%, #000000fa 15%);
  }
  .truss-carousel-viewport { border-radius: 36px; }
  .truss-carousel-track { padding-left: 12px; padding-right: 160px; }
  .truss-carousel-slide { scroll-snap-align: start; }
  .truss-carousel-image-wrap { aspect-ratio: 5 / 6; border-radius: 34px; }
}

@media (min-width: 769px) and (max-width: 1050px) {
  .landing-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .landing-hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
  .landing-hero h1, .landing-hero .lede { margin-left: auto; margin-right: auto; }
  .landing-hero-actions, .hero-proof { justify-content: center; }
  .truss-hero-carousel { --carousel-card-width: min(520px, 68vw); width: min(100%, 760px); }
}

@media (max-width: 768px) {
  .landing-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .truss-hero-carousel { --carousel-gap: 14px; --carousel-card-width: min(82vw, 390px); width: 100%; }
  .truss-carousel-viewport {
    width: calc(100vw - 8px);
    margin-left: calc((100vw - 8px - 100%) / -2);
    border-radius: 26px;
  }
  .truss-carousel-track { padding: 8px 38px 18px 18px; }
  .truss-carousel-slide { scroll-snap-align: start; opacity: .72; transform: scale(.965); }
  .truss-carousel-slide.is-active { opacity: 1; transform: scale(1); }
  .truss-carousel-image-wrap { aspect-ratio: 1300 / 1600; border-radius: 26px; }
  .truss-carousel-image-wrap figcaption { top: 13px; right: 13px; min-height: 34px; padding: 0 12px; font-size: .74rem; }
  .truss-carousel-copy { padding: 14px 6px 0; }
  .truss-carousel-controls { margin-top: 2px; }
}

@media (max-width: 480px) {
  .truss-hero-carousel { --carousel-card-width: min(84vw, 350px); }
  .truss-carousel-arrow { width: 42px; height: 42px; }
  .truss-carousel-copy > span:last-child { font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .truss-carousel-viewport { scroll-behavior: auto; }
  .truss-carousel-slide, .truss-carousel-arrow, .truss-carousel-dot { transition: none; }
}

/* =========================================================
   FOOTER V2 — PREMIUM TRUSS FOOTER
   Unique selectors intentionally override the legacy footer cascade.
   ========================================================= */
.footer-v2.site-footer {
  position: relative;
  overflow: hidden;
  padding: 28px 20px 24px;
  background: #ffffff;
}

.footer-v2.site-footer::before {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -180px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(226, 184, 79, .16);
  border-radius: 50%;
  pointer-events: none;
}

.footer-v2.site-footer::after {
  content: "";
  position: absolute;
  right: -110px;
  top: 70px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(226, 184, 79, .10), rgba(226, 184, 79, 0) 68%);
  pointer-events: none;
}

.footer-v2 .footer-v2-wrap {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 68px);
  color: #fff;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .075), transparent 25%),
    linear-gradient(145deg, #073d2b 0%, #03271d 72%);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(3, 39, 29, .16);
}

.footer-v2 .footer-v2-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: end;
}

.footer-v2 .footer-v2-brand-block {
  max-width: 650px;
}

.footer-v2 .footer-v2-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  text-decoration: none;
}

.footer-v2 .footer-v2-logo img {
  display: block !important;
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-v2 .footer-v2-kicker {
  margin: 0 0 12px;
  color: #b7d3c5;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-v2 .footer-v2-title {
  max-width: 620px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.footer-v2 .footer-v2-title span {
  color: #e2b84f;
}

.footer-v2 .footer-v2-description {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, .66) !important;
  font-size: 1rem;
  line-height: 1.75;
}

.footer-v2 .footer-v2-cta {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-v2 .footer-v2-cta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.footer-v2 .footer-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 12px;
  color: #f7edd0;
  background: rgba(226, 184, 79, .11);
  border: 1px solid rgba(226, 184, 79, .2);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 750;
}

.footer-v2 .footer-v2-badge-dot {
  width: 7px;
  height: 7px;
  background: #e2b84f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(226, 184, 79, .1);
}

.footer-v2 .footer-v2-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #073d2b;
  background: #e2b84f;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 850;
}

.footer-v2 .footer-v2-cta > p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 1.06rem;
  line-height: 1.55;
}

.footer-v2 .footer-v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 52px;
  padding: 0 18px 0 20px;
  color: #073d2b;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.footer-v2 .footer-v2-button:hover,
.footer-v2 .footer-v2-button:focus-visible {
  color: #073d2b;
  background: #fff8e7;
  border-color: #e2b84f;
  transform: translateY(-2px);
}

.footer-v2 .footer-v2-button span {
  font-size: 1.15rem;
}

.footer-v2 .footer-v2-nav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, .36fr);
  gap: clamp(36px, 7vw, 90px);
  margin-top: 58px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.footer-v2 .footer-v2-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 30px;
}

.footer-v2 .footer-v2-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-v2 .footer-v2-heading {
  margin: 0 0 7px;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-v2 .footer-v2-column a {
  color: rgba(255, 255, 255, .58) !important;
  font-size: .9rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.footer-v2 .footer-v2-column a:hover,
.footer-v2 .footer-v2-column a:focus-visible {
  color: #fff !important;
  transform: translateX(3px);
}

.footer-v2 .footer-v2-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  align-self: start;
  padding: 19px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
}

.footer-v2 .footer-v2-note-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #e2b84f;
  background: rgba(226, 184, 79, .1);
  border-radius: 13px;
}

.footer-v2 .footer-v2-note-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-v2 .footer-v2-note strong {
  display: block;
  margin: 1px 0 4px;
  color: #fff;
  font-size: .9rem;
}

.footer-v2 .footer-v2-note span:not(.footer-v2-note-icon) {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-size: .79rem;
  line-height: 1.5;
}

.footer-v2 .footer-v2-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-v2 .footer-v2-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .45);
  font-size: .76rem;
}

.footer-v2 .footer-v2-bottom .footer-v2-bottom-tag {
  color: rgba(255, 255, 255, .62);
}

@media (max-width: 920px) {
  .footer-v2 .footer-v2-main,
  .footer-v2 .footer-v2-nav-row {
    grid-template-columns: 1fr;
  }

  .footer-v2 .footer-v2-cta {
    max-width: 560px;
  }

  .footer-v2 .footer-v2-nav-row {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .footer-v2.site-footer {
    padding: 16px 12px 14px;
  }

  .footer-v2 .footer-v2-wrap {
    padding: 34px 24px 24px;
    border-radius: 28px;
  }

  .footer-v2 .footer-v2-logo {
    margin-bottom: 22px;
  }

  .footer-v2 .footer-v2-logo img {
    width: 118px;
  }

  .footer-v2 .footer-v2-title {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
  }

  .footer-v2 .footer-v2-description {
    font-size: .94rem;
  }

  .footer-v2 .footer-v2-cta {
    padding: 20px;
    border-radius: 22px;
  }

  .footer-v2 .footer-v2-cta-top {
    margin-bottom: 26px;
  }

  .footer-v2 .footer-v2-nav-row {
    margin-top: 42px;
    padding-top: 30px;
  }

  .footer-v2 .footer-v2-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 18px;
  }

  .footer-v2 .footer-v2-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-v2 .footer-v2-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .footer-v2 .footer-v2-wrap {
    padding: 30px 20px 22px;
  }

  .footer-v2 .footer-v2-nav {
    grid-template-columns: 1fr;
  }

  .footer-v2 .footer-v2-column:last-child {
    grid-column: auto;
  }

  .footer-v2 .footer-v2-cta > p {
    font-size: .98rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-v2 .footer-v2-button,
  .footer-v2 .footer-v2-column a {
    transition: none;
  }
}


/* =========================================================
   SECTION WIDTH ALIGNMENT — PRODUCT + MERCHANTS
   Keep these two visual sections on the same outer width as
   the customer/download cards and Footer V2 (1160px max).
   ========================================================= */

.product-showcase,
.merchants-section {
  width: min(1160px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  border-radius: 48px;
}

/* Give the boxed sections a little breathing room while keeping
   their internal vertical padding controlled by the existing rules. */
.product-showcase {
  margin-top: 24px;
  margin-bottom: 24px;
}

.merchants-section {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Tablet gutters mirror the existing .shell breakpoint exactly. */
@media (max-width: 860px) {
  .product-showcase,
  .merchants-section {
    width: min(680px, calc(100% - 36px));
    border-radius: 36px;
  }
}

/* Mobile gutters mirror the existing .shell mobile width. */
@media (max-width: 720px) {
  .product-showcase,
  .merchants-section {
    width: min(620px, calc(100% - 32px));
    margin-top: 16px;
    margin-bottom: 16px;
    border-radius: 30px;
  }
}

@media (max-width: 400px) {
  .product-showcase,
  .merchants-section {
    border-radius: 26px;
  }
}
