/* ─────────────────────────────────────────────────────────
   PatronTip — marketing site styles
   Palette & type from the PatronTip design system (Poppins,
   green #0D8446, gradient #0C713C → #0E8C4A)
   ───────────────────────────────────────────────────────── */

@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; src: url("../fonts/Poppins-Regular.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; src: url("../fonts/Poppins-Medium.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; src: url("../fonts/Poppins-SemiBold.ttf") format("truetype"); font-display: swap; }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; src: url("../fonts/Poppins-Bold.ttf") format("truetype"); font-display: swap; }

:root {
  --pt-green: #0D8446;
  --pt-green-dark: #0C4E3A;
  --pt-green-dartmouth: #0C713C;
  --pt-green-spanish: #0E8C4A;
  --pt-green-600: #15AE5E;
  --pt-green-400: #84FEAE;
  --pt-green-200: #C5FFD9;
  --pt-green-100: #ECFFF2;
  --pt-green-cultured: #F4F8F5;
  --pt-ink: #1A1B1D;
  --pt-fg: #292929;
  --pt-fg-secondary: #757575;
  --pt-fg-tertiary: #5C5C5C;
  --pt-fg-disabled: #A8A8A8;
  --pt-border: #DBDBDB;
  --pt-card-border: #E8ECE6;
  --pt-bg: #F6F6F6;
  --pt-gold: #F39E09;
  --pt-gradient-home: linear-gradient(180deg, #0C713C 0%, #0E8C4A 100%);
  --pt-gradient-logo: linear-gradient(90deg, #15AE5E 0%, #108E3D 50%, #0C4E3A 100%);
  --pt-shadow-card: 0 4px 4px rgba(13, 132, 70, 0.10);
  --pt-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--pt-font);
  color: var(--pt-fg);
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

/* ── Themed scrollbar — slim floating gradient pill ── */
html { scrollbar-width: thin; scrollbar-color: var(--pt-green-600) transparent; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  border: 3px solid transparent; border-radius: 999px;
  background: linear-gradient(180deg, #15AE5E 0%, #0C713C 100%) padding-box;
  transition: background 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #18C56B 0%, #0E8C4A 100%) padding-box;
}
::-webkit-scrollbar-corner { background: transparent; }

a { color: var(--pt-green); }
a:hover { color: var(--pt-green-dartmouth); }

img { display: block; }

.wrap { max-width: 1440px; margin: 0 auto; }

/* ── Keyframes ── */
@keyframes pt-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(13, 132, 70, 0.25); }
  70%  { box-shadow: 0 0 0 22px rgba(13, 132, 70, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 132, 70, 0); }
}
@keyframes pt-float  { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pt-float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pt-ticker     { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes pt-ticker-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes pt-wave { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes pt-shimmer { 0%, 55% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

/* ═══ Nav ═══ */
/* display:contents lets the sticky bar's containing block be the page body,
   so it stays pinned while the announcement bar scrolls away above it. */
.nav { display: contents; }

/* Announcement bar */
.nav-announce {
  position: relative; overflow: hidden;
  background: var(--pt-gradient-logo);
  color: #FFFFFF;
}
.nav-announce::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: pt-shimmer 7s ease-in-out infinite;
}
.nav-announce-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 9px 72px; font-size: 13px; font-weight: 500;
}
.nav-announce-badge {
  background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 2px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-announce-text { color: rgba(255, 255, 255, 0.94); }
.nav-announce-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: #FFFFFF; font-weight: 600; text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45); padding-bottom: 1px;
}
.nav-announce-link:hover { color: #FFFFFF; border-bottom-color: #FFFFFF; }
.nav-announce-link svg { transition: transform 0.25s; }
.nav-announce-link:hover svg { transform: translateX(3px); }
.nav-announce-close {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.12); color: #FFFFFF; transition: background 0.2s;
}
.nav-announce-close:hover { background: rgba(255, 255, 255, 0.26); }
.nav--announce-hidden .nav-announce { display: none; }

/* Sticky bar */
.nav-bar {
  position: sticky; top: 0; z-index: 40;
  background: #FFFFFF;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav-bar--scrolled {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--pt-card-border);
  box-shadow: 0 8px 30px rgba(12, 78, 58, 0.07);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 72px; transition: padding 0.3s ease; }
.nav-bar--scrolled .nav-inner { padding: 11px 72px; }
.nav-logo-link { display: inline-flex; text-decoration: none; }
.nav-logo { height: 46px; width: auto; transition: height 0.3s ease; }
.nav-bar--scrolled .nav-logo { height: 38px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative;
  font-size: 15px; font-weight: 500; color: var(--pt-fg-tertiary); text-decoration: none;
  padding: 9px 15px; border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; border-radius: 2px;
  background: var(--pt-gradient-logo);
  transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--pt-ink); background: var(--pt-green-cultured); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--pt-green); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-store {
  position: relative;
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--pt-border); background: #FFFFFF;
  color: var(--pt-fg);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-store:hover {
  border-color: transparent; background: var(--pt-green); color: #FFFFFF;
  transform: translateY(-1px); box-shadow: 0 6px 16px rgba(13, 132, 70, 0.24);
}
.nav-store[data-tip]::after {
  content: attr(data-tip); position: absolute; top: calc(100% + 9px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--pt-ink); color: #FFFFFF; font-size: 11px; font-weight: 500; white-space: nowrap;
  padding: 5px 9px; border-radius: 7px; opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-store:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.nav-divider { width: 1px; height: 26px; background: var(--pt-border); margin: 0 4px; }

.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--pt-font); font-size: 14px; font-weight: 500; color: #FFFFFF;
  background-image: linear-gradient(180deg, #15AE5E 0%, #0D8446 100%);
  padding: 12px 24px; border-radius: 11px; border: none;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 6px 16px rgba(13, 132, 70, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg); transition: left 0.5s ease;
}
.btn-primary:hover { color: #FFFFFF; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(13, 132, 70, 0.30); }
.btn-primary:hover::before { left: 130%; }
.btn-primary svg { position: relative; z-index: 1; }

/* Scroll progress */
.nav-progress {
  position: absolute; left: 0; bottom: -1px; height: 2.5px; width: 0;
  background: var(--pt-gradient-logo); border-radius: 0 3px 3px 0;
  transition: width 0.1s linear; z-index: 2;
}

/* Hamburger toggle */
.nav-toggle {
  display: none; position: relative;
  width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--pt-border);
  background: #FFFFFF; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--pt-ink);
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav--menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav--menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--pt-card-border);
  box-shadow: 0 24px 40px rgba(12, 78, 58, 0.12);
  padding: 14px 32px 26px;
  display: none; flex-direction: column; gap: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.nav--menu-open .nav-mobile { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-mobile-links { display: flex; flex-direction: column; }
.nav-mobile-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 500; color: var(--pt-ink); text-decoration: none;
  padding: 15px 6px; border-bottom: 1px solid var(--pt-card-border);
}
.nav-mobile-link svg { color: var(--pt-fg-disabled); transition: transform 0.2s ease, color 0.2s ease; }
.nav-mobile-link:hover { color: var(--pt-green); }
.nav-mobile-link:hover svg { transform: translateX(3px); color: var(--pt-green); }
.nav-mobile-stores { display: flex; gap: 12px; margin-top: 18px; }
.nav-mobile-stores .store-badge { flex: 1; justify-content: center; }

/* ═══ Hero ═══ */
.hero { background: var(--pt-gradient-home); padding: 64px 72px 0; position: relative; overflow: hidden; }
.hero-circle-1 { position: absolute; top: -180px; right: -140px; width: 620px; height: 620px; border-radius: 50%; background: rgba(255, 255, 255, 0.05); }
.hero-circle-2 { position: absolute; top: 110px; right: 300px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255, 255, 255, 0.04); }
.hero-grid { display: flex; gap: 56px; align-items: flex-start; position: relative; }
.hero-grid.is-filled { align-items: center; }
.hero-copy { flex: 1; padding-top: 28px; min-width: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.14); border-radius: 9999px; padding: 8px 18px; margin-bottom: 28px;
}
.tap-ic { display: block; flex: none; }
.hero-badge svg { width: 18px; height: 18px; color: #FFFFFF; }
.hero-badge span { font-size: 13px; font-weight: 500; color: #FFFFFF; }
.hero h1 {
  margin: 0; font-size: 64px; font-weight: 600; line-height: 1.1; color: #FFFFFF;
  letter-spacing: -0.018em; text-wrap: pretty;
}
.hero h1 .u {
  background-image: linear-gradient(var(--pt-green-400), var(--pt-green-400));
  background-repeat: no-repeat; background-size: 100% 10px; background-position: 0 92%;
}
.hero-sub { margin: 26px 0 0; font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); max-width: 520px; text-wrap: pretty; }
.store-badges { display: flex; gap: 14px; margin-top: 36px; }
.store-badge {
  display: flex; align-items: center; gap: 11px; background: var(--pt-ink);
  border-radius: 10px; padding: 11px 20px; text-decoration: none; transition: background 0.25s;
}
.store-badge:hover { background: #000000; }
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge .small { font-size: 10px; color: rgba(255, 255, 255, 0.7); }
.store-badge .big { font-size: 17px; font-weight: 500; color: #FFFFFF; }
.hero-trust { display: flex; align-items: center; gap: 24px; margin-top: 40px; }
.hero-trust span { font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.4); padding: 0; }

/* Hero phone column */
.hero-phone-col { flex: none; width: 480px; position: relative; padding: 24px 0 0 40px; }
.hero-ring { position: absolute; top: 36px; left: 44px; width: 420px; height: 420px; opacity: 0.35; }
.float-card {
  position: absolute; background: #FFFFFF; border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(6, 50, 30, 0.28); z-index: 3;
}
.float-card--tip    { left: -30px; top: 110px;   animation: pt-float 5s ease-in-out infinite; }
.float-card--payout { left: 0;     bottom: 110px; animation: pt-float2 6s ease-in-out infinite; }
.float-card .icon-bubble { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.float-card .icon-bubble img { width: 20px; height: 20px; }
.icon-bubble--green { background: rgba(13, 132, 70, 0.12); }
.icon-bubble--gold  { background: rgba(243, 158, 9, 0.14); }
.float-card .meta { display: flex; flex-direction: column; }
.float-card .meta .t { font-size: 13px; font-weight: 500; color: var(--pt-fg); }
.float-card .meta .s { font-size: 11px; color: var(--pt-fg-secondary); }
.float-card .amt { font-size: 16px; font-weight: 600; margin-left: 8px; }
.amt--green { color: var(--pt-green); }
.amt--gold  { color: var(--pt-gold); }

/* ═══ Phone frame + app screens ═══ */
.phone { width: 330px; background: var(--pt-ink); border-radius: 48px; padding: 10px; }
.phone--hero { margin-left: 64px; box-shadow: 0 40px 80px rgba(5, 40, 24, 0.45); position: relative; }
.phone--demo { flex: none; box-shadow: 0 32px 64px rgba(12, 78, 58, 0.25); }
.phone--demo .phone-screen { height: 560px; }
.phone-screen {
  background: var(--pt-bg); border-radius: 39px; overflow: hidden; position: relative;
  height: 648px; display: flex; flex-direction: column;
}
.notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 26px; background: var(--pt-ink); border-radius: 14px; z-index: 9;
}

/* Home screen (hero mock) */
.app-header { background: var(--pt-gradient-home); padding: 56px 16px 34px; color: #FFFFFF; }
.app-welcome { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.app-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 600;
}
.app-welcome .who { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.app-welcome .who .w { font-size: 12px; opacity: 0.85; }
.app-welcome .who .n { font-size: 15px; font-weight: 700; }
.app-profile-pill {
  display: flex; align-items: center; gap: 6px; border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px; padding: 6px 12px; font-size: 11px; font-weight: 500;
}
.totals-row { display: flex; gap: 12px; margin-top: 18px; }
.totals-card {
  flex: 1; background: #FFFFFF; border-radius: 16px; padding: 14px;
  display: flex; flex-direction: column; gap: 8px; box-shadow: var(--pt-shadow-card);
}
.totals-card .bubble { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.totals-card .bubble img { width: 18px; height: 18px; }
.bubble--green { background: rgba(13, 132, 70, 0.16); }
.bubble--gold  { background: rgba(243, 158, 9, 0.16); }
.totals-card .v { font-size: 21px; font-weight: 500; color: var(--pt-fg); letter-spacing: -0.01em; }
.totals-card .l { font-size: 11px; color: var(--pt-fg-secondary); }
.app-sheet {
  background: #FFFFFF; border-radius: 24px 24px 0 0; margin-top: -20px; flex: 1;
  padding: 16px 16px 0; position: relative; box-shadow: 0 0 26px rgba(0, 0, 0, 0.10);
  display: flex; flex-direction: column; min-height: 0;
}
.tab-pill { display: flex; background: #F4F4F4; border-radius: 9999px; padding: 4px; }
.tab-pill span { flex: 1; text-align: center; padding: 8px 0; border-radius: 9999px; font-size: 12px; font-weight: 500; color: var(--pt-fg-secondary); }
.tab-pill .active { background: var(--pt-green); color: #FFFFFF; }
.tip-list { display: flex; flex-direction: column; margin-top: 8px; }
.tip-row { display: flex; align-items: center; gap: 10px; padding: 12px 2px; border-bottom: 1px solid #F1F1F1; }
.tip-row:last-child { border-bottom: none; }
.tip-row .avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--pt-green-100); color: var(--pt-green);
  font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.tip-row .avatar--dim { background: #F4F4F4; color: var(--pt-fg-disabled); }
.tip-row .meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.tip-row .meta .n { font-size: 13px; font-weight: 500; color: var(--pt-fg); }
.tip-row .meta .n--dim { color: var(--pt-fg-disabled); }
.tip-row .meta .t { font-size: 10px; color: #8F8F8F; }
.tip-row .amt { font-size: 14px; font-weight: 600; color: var(--pt-green); }
.app-fab {
  position: absolute; right: 18px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(13, 132, 70, 0.22); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(13, 132, 70, 0.25);
}
.app-fab img { width: 30px; height: 30px; }

/* ═══ Live ticker ═══ */
.ticker-zone { position: relative; margin: 56px -72px 0; overflow: hidden; padding: 6px 0 34px; }
.ticker-label { display: flex; align-items: center; gap: 10px; padding: 0 72px 16px; }
.ticker-label .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pt-green-400); animation: pt-wave 1.6s ease-in-out infinite; }
.ticker-label .txt { font-size: 12px; font-weight: 600; color: var(--pt-green-200); letter-spacing: 0.14em; text-transform: uppercase; }
.ticker-track { display: flex; gap: 16px; width: max-content; animation: pt-ticker 38s linear infinite; }
.ticker-chip {
  display: flex; align-items: center; gap: 12px; background: #FFFFFF; border-radius: 12px;
  padding: 12px 20px; box-shadow: 0 8px 24px rgba(5, 40, 24, 0.22);
}
.ticker-chip .avatar {
  width: 32px; height: 32px; border-radius: 50%; background: var(--pt-green-100); color: var(--pt-green);
  font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.ticker-chip .avatar--gold { background: rgba(243, 158, 9, 0.14); color: #C77B14; }
.ticker-chip .who { font-size: 13px; color: var(--pt-fg-secondary); }
.ticker-chip .amt { font-size: 15px; font-weight: 600; color: var(--pt-green); }

/* ═══ Rising sheet strip ═══ */
.sheet-strip {
  background: #FFFFFF; border-radius: 24px 24px 0 0; margin: 0 -72px; padding: 36px 72px;
  display: flex; gap: 56px; position: relative; box-shadow: 0 0 26px rgba(0, 0, 0, 0.10);
}
.value-prop { display: flex; align-items: center; gap: 14px; flex: 1; }
.value-prop .icon {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(13, 132, 70, 0.10);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.value-prop .icon img { width: 22px; height: 22px; }
.value-prop .txt { display: flex; flex-direction: column; }
.value-prop .txt .t { font-size: 15px; font-weight: 600; color: var(--pt-fg); }
.value-prop .txt .s { font-size: 13px; color: var(--pt-fg-secondary); }

/* ═══ Sections ═══ */
.section { padding: 96px 72px; }
.section--white { background: #FFFFFF; }
.section--cultured { background: var(--pt-green-cultured); }
.section--grey { background: var(--pt-bg); }
.eyebrow { font-size: 13px; font-weight: 600; color: var(--pt-green); letter-spacing: 0.12em; text-transform: uppercase; }
.section h2 { margin: 14px 0 0; font-size: 40px; font-weight: 600; color: var(--pt-ink); line-height: 1.2; letter-spacing: -0.01em; text-wrap: pretty; }
.section-head--center { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head { max-width: 640px; }

/* How it works */
.steps-zone { position: relative; margin-top: 72px; }
.steps-line { position: absolute; top: 26px; left: 11%; right: 11%; border-top: 2px dashed var(--pt-green-200); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.step { display: flex; flex-direction: column; gap: 16px; align-items: center; text-align: center; }
.step .num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--pt-green); color: #FFFFFF;
  font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px #FFFFFF;
}
.step .t { font-size: 18px; font-weight: 600; color: var(--pt-fg); }
.step .s { font-size: 14px; line-height: 1.6; color: var(--pt-fg-secondary); text-wrap: pretty; max-width: 260px; }

/* ═══ Interactive demo ═══ */
.demo { display: flex; gap: 72px; align-items: center; justify-content: center; }
.demo-copy { flex: 0 1 460px; min-width: 0; max-width: 460px; }
.demo-copy p { margin: 20px 0 0; font-size: 16px; line-height: 1.7; color: var(--pt-fg-tertiary); max-width: 460px; text-wrap: pretty; }
.demo-checks { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.demo-check { display: flex; align-items: center; gap: 12px; }
.demo-check .tick {
  width: 24px; height: 24px; border-radius: 50%; background: var(--pt-green);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.demo-check span { font-size: 15px; color: var(--pt-fg); }

.demo-view { display: flex; flex-direction: column; height: 100%; }
.demo-appbar { display: flex; align-items: center; gap: 8px; padding: 58px 16px 14px; }
.demo-appbar span { font-size: 17px; font-weight: 500; color: var(--pt-fg); }
.demo-body { flex: 1; padding: 4px 16px 0; display: flex; flex-direction: column; min-height: 0; }
.location-card {
  background: rgba(13, 132, 70, 0.08); border-radius: 10px; padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
}
.location-card .pin {
  width: 30px; height: 30px; border-radius: 50%; background: #FFFFFF; border: 1px solid var(--pt-border);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.location-card .pin img { width: 16px; height: 16px; }
.location-card span { font-size: 13px; color: var(--pt-fg); }
.field { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 12px; font-weight: 500; color: var(--pt-fg-tertiary); }
.field .value {
  border: 2px solid var(--pt-green); border-radius: 10px; background: #FFFFFF;
  padding: 13px 14px; font-size: 16px; font-weight: 500; color: var(--pt-fg);
}
.demo-choose { margin-top: 22px; font-size: 14px; font-weight: 500; color: var(--pt-fg); }
.chips { display: flex; gap: 10px; margin-top: 12px; }
.chip {
  flex: 1; padding: 13px 0; border-radius: 8px; border: 1px solid var(--pt-border); background: #FFFFFF;
  color: var(--pt-fg); font-family: var(--pt-font); font-size: 15px; font-weight: 500;
  cursor: pointer; text-align: center;
}
.chip.active { border: 2px solid var(--pt-green); background: rgba(13, 132, 70, 0.08); color: var(--pt-green); padding: 12px 0; }
.summary-row {
  background: rgba(13, 132, 70, 0.08); border-radius: 10px; padding: 13px 16px;
  display: flex; justify-content: space-between; align-items: center; margin-top: 10px;
}
.summary-row:first-of-type { margin-top: 22px; }
.summary-row .l { font-size: 13px; color: var(--pt-fg-secondary); }
.summary-row .tip { font-size: 15px; font-weight: 500; color: var(--pt-green); }
.summary-row .net { font-size: 19px; font-weight: 500; color: var(--pt-fg); }
.demo-footer { padding: 14px 16px 26px; }
.btn-block {
  width: 100%; padding: 15px 0; border: none; border-radius: 10px; background: var(--pt-green);
  color: #FFFFFF; font-family: var(--pt-font); font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background 0.25s;
}
.btn-block:hover { background: var(--pt-green-dartmouth); }
.btn-block--outline { background: #FFFFFF; border: 1px solid var(--pt-green); color: var(--pt-green); }
.btn-block--outline:hover { background: var(--pt-green-100); }

.demo-success { display: flex; flex-direction: column; height: 100%; align-items: center; text-align: center; padding: 58px 24px 26px; }
.demo-success .center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.demo-success .halo {
  width: 150px; height: 150px; border-radius: 50%; background: rgba(13, 132, 70, 0.10);
  display: flex; align-items: center; justify-content: center; animation: pt-pulse 1.6s ease-out infinite;
}
.demo-success .halo img { width: 110px; height: 110px; object-fit: contain; }
.demo-success .t { font-size: 22px; font-weight: 500; color: var(--pt-fg); }
.demo-success .s { font-size: 13px; line-height: 1.6; color: var(--pt-fg-secondary); max-width: 240px; }
.hidden { display: none !important; }

/* ═══ Features bento ═══ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.bento-card {
  background: #FFFFFF; border-radius: 16px; padding: 28px; box-shadow: var(--pt-shadow-card);
  border: 1px solid var(--pt-card-border); display: flex; flex-direction: column; gap: 16px;
}
.bento-card .icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(13, 132, 70, 0.10);
  display: flex; align-items: center; justify-content: center;
}
.bento-card .icon img { width: 26px; height: 26px; }
.bento-card .t { font-size: 18px; font-weight: 600; color: var(--pt-fg); }
.bento-card .s { font-size: 14px; line-height: 1.6; color: var(--pt-fg-secondary); text-wrap: pretty; }
.bento-card--dark { background: var(--pt-green-dark); border: none; }
.bento-card--dark .icon { background: rgba(132, 254, 174, 0.16); }
.bento-card--dark .t { color: #FFFFFF; }
.bento-card--dark .s { color: rgba(255, 255, 255, 0.75); }
.verified-line { display: flex; align-items: center; gap: 8px; margin-top: auto; }
.verified-line .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pt-green-400); }
.verified-line span { font-size: 12px; font-weight: 500; color: var(--pt-green-200); }

.bento-hero { grid-column: span 2; background: var(--pt-green-cultured); border-radius: 16px; padding: 36px; display: flex; gap: 36px; align-items: center; overflow: hidden; position: relative; }
.bento-hero .copy { flex: 1; display: flex; flex-direction: column; gap: 14px; position: relative; }
.bento-hero .t { font-size: 22px; font-weight: 600; color: var(--pt-fg); }
.bento-hero .s { font-size: 15px; line-height: 1.65; color: var(--pt-fg-tertiary); text-wrap: pretty; max-width: 380px; }
.bento-hero .stripe-line { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.bento-hero .stripe-line svg { width: 20px; height: 20px; color: var(--pt-green); }
.bento-hero .stripe-line span { font-size: 13px; font-weight: 500; color: var(--pt-green); }
.tap-scene { flex: none; position: relative; width: 260px; height: 190px; }
.tap-scene .mini-phone {
  position: absolute; bottom: -100px; left: 0; width: 180px; height: 270px;
  background: var(--pt-ink); border-radius: 28px; padding: 7px;
}
.tap-scene .mini-screen {
  background: var(--pt-gradient-home); border-radius: 22px; height: 100%;
  display: flex; flex-direction: column; align-items: center; padding-top: 34px; gap: 10px;
}
.tap-scene .mini-halo {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center; animation: pt-pulse 1.6s ease-out infinite;
}
.tap-scene .mini-halo svg { width: 34px; height: 34px; color: #FFFFFF; }
.tap-scene .mini-label { font-size: 13px; font-weight: 500; color: #FFFFFF; }
.tap-scene .mini-amt { font-size: 22px; font-weight: 500; color: #FFFFFF; letter-spacing: -0.01em; }

/* Realistic bank card */
.bank-card {
  position: absolute; top: -6px; right: -16px; width: 186px; height: 116px; border-radius: 12px;
  background: #FFFFFF; border: 1px solid var(--pt-card-border);
  box-shadow: 0 16px 36px rgba(6, 50, 30, 0.22); transform: rotate(10deg);
  padding: 13px 15px; display: flex; flex-direction: column;
  animation: pt-float 5s ease-in-out infinite;
}
.bank-card .top { display: flex; justify-content: space-between; align-items: center; }
.bank-card .bank { font-size: 10px; font-weight: 600; color: var(--pt-fg); letter-spacing: 0.04em; }
.bank-card .emv {
  width: 28px; height: 20px; border-radius: 4px; margin-top: 8px;
  background: linear-gradient(135deg, #15AE5E 0%, #0C4E3A 100%); position: relative; overflow: hidden;
}
.bank-card .emv::before { content: ""; position: absolute; top: 9px; left: 0; right: 0; height: 1px; background: rgba(255, 255, 255, 0.5); }
.bank-card .emv::after  { content: ""; position: absolute; top: 0; bottom: 0; left: 12px; width: 1px; background: rgba(255, 255, 255, 0.5); }
.bank-card .number { font-size: 11px; font-weight: 500; color: var(--pt-fg); letter-spacing: 0.1em; margin-top: 8px; }
.bank-card .bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: auto; }
.bank-card .cell { display: flex; flex-direction: column; }
.bank-card .cap { font-size: 6px; color: var(--pt-fg-disabled); letter-spacing: 0.1em; text-transform: uppercase; }
.bank-card .val { font-size: 9px; font-weight: 500; color: var(--pt-fg-tertiary); letter-spacing: 0.06em; }

/* Mini rows inside bento cards */
.mini-row {
  display: flex; align-items: center; gap: 10px; background: var(--pt-bg);
  border-radius: 10px; padding: 12px 14px; margin-top: auto;
}
.mini-row img { width: 16px; height: 16px; }
.mini-row .avatar {
  width: 28px; height: 28px; border-radius: 50%; background: var(--pt-green-100); color: var(--pt-green);
  font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.mini-row .meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.mini-row .meta .n { font-size: 12px; font-weight: 500; color: var(--pt-fg); }
.mini-row .meta .t { font-size: 10px; color: #8F8F8F; }
.mini-row .amt { font-size: 13px; font-weight: 600; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin-top: 2px; }
.check-list .row { display: flex; align-items: center; gap: 10px; }
.check-list .row span { font-size: 14px; color: var(--pt-fg-tertiary); }
.loc-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.loc-chips span {
  font-size: 12px; font-weight: 500; color: var(--pt-green);
  background: rgba(13, 132, 70, 0.08); border-radius: 9999px; padding: 6px 14px;
}

/* ═══ Who it's for (marquee) ═══ */
.section--roles { padding: 96px 0; }
.section--roles .section-head--center { padding: 0 72px; }
.roles-zone { overflow: hidden; margin-top: 52px; }
.roles-track { display: flex; gap: 16px; width: max-content; animation: pt-ticker-rev 46s linear infinite; }
.role-pill {
  display: flex; align-items: center; gap: 12px; background: #FFFFFF; border: 1px solid var(--pt-card-border);
  border-radius: 9999px; padding: 14px 26px; box-shadow: 0 4px 4px rgba(13, 132, 70, 0.06);
}
.role-pill span { font-size: 15px; font-weight: 500; color: var(--pt-fg); white-space: nowrap; }

/* ═══ Testimonials ═══ */
.quotes { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; margin-top: 56px; }
.quote-hero {
  background: var(--pt-gradient-home); border-radius: 16px; padding: 44px;
  display: flex; flex-direction: column; gap: 28px;
}
.quote-hero .q { font-size: 24px; font-weight: 500; line-height: 1.5; color: #FFFFFF; text-wrap: pretty; }
.quote-stack { display: flex; flex-direction: column; gap: 24px; }
.quote-card {
  background: var(--pt-green-cultured); border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 18px; flex: 1;
}
.quote-card .q { font-size: 15px; line-height: 1.65; color: var(--pt-fg); text-wrap: pretty; }
.attrib { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.attrib .avatar {
  width: 40px; height: 40px; border-radius: 50%; color: #FFFFFF;
  font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.quote-hero .attrib .avatar { width: 48px; height: 48px; font-size: 17px; background: rgba(255, 255, 255, 0.2); }
.attrib .who { display: flex; flex-direction: column; }
.attrib .who .n { font-size: 13px; font-weight: 600; color: var(--pt-fg); }
.attrib .who .r { font-size: 11px; color: var(--pt-fg-secondary); }
.quote-hero .attrib .who .n { font-size: 15px; color: #FFFFFF; }
.quote-hero .attrib .who .r { font-size: 12px; color: rgba(255, 255, 255, 0.7); }

/* ═══ CTA band ═══ */
.cta {
  background: var(--pt-gradient-home); padding: 88px 72px; text-align: center;
  position: relative; overflow: hidden;
}
.cta .glow {
  position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 640px; border-radius: 50%; background: rgba(255, 255, 255, 0.05);
}
.cta .ring { position: absolute; top: -70px; left: 80px; width: 220px; height: 220px; opacity: 0.3; }
.cta h2 { margin: 0; font-size: 44px; font-weight: 600; color: #FFFFFF; line-height: 1.2; letter-spacing: -0.01em; position: relative; }
.cta p { margin: 18px auto 0; font-size: 17px; line-height: 1.6; color: rgba(255, 255, 255, 0.85); max-width: 480px; position: relative; }
.cta .store-badges { justify-content: center; position: relative; }

/* ═══ Footer ═══ */
.footer { background: #FFFFFF; padding: 64px 72px 40px; }
.footer-grid { display: flex; gap: 80px; }
.footer-brand { flex: 1.4; }
.footer-brand img { height: 36px; width: auto; }
.footer-brand p { margin: 14px 0 0; font-size: 13px; line-height: 1.6; color: var(--pt-fg-secondary); max-width: 280px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.social {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(13, 132, 70, 0.08);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  transition: background 0.25s;
}
.social:hover { background: rgba(13, 132, 70, 0.18); }
.social--static { cursor: default; }
.social--static:hover { background: rgba(13, 132, 70, 0.08); }
.footer-col { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.footer-col .h { font-size: 13px; font-weight: 600; color: var(--pt-fg); }
.footer-col a { font-size: 13px; color: var(--pt-fg-secondary); text-decoration: none; transition: color 0.25s; }
.footer-col a:hover { color: var(--pt-green); }
.footer-legal { border-top: 1px solid #EDEDED; margin-top: 48px; padding-top: 24px; font-size: 12px; color: var(--pt-fg-disabled); }

/* ═══ Responsive (basic) ═══ */
@media (max-width: 1180px) {
  .nav-inner, .hero, .section, .cta, .footer { padding-left: 32px; padding-right: 32px; }
  .nav-announce-inner { padding-left: 32px; padding-right: 32px; }
  .nav-announce-close { right: 32px; }
  .hero-grid { flex-direction: column; align-items: center; }
  .hero-phone-col { padding-left: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps-line { display: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-hero { grid-column: span 2; }
  .demo { flex-direction: column; align-items: center; }
  .demo-copy { flex: none; width: 100%; max-width: 480px; }
  .quotes { grid-template-columns: 1fr; }
  .footer-grid { flex-wrap: wrap; gap: 40px; }
}
/* Collapse nav into hamburger */
@media (max-width: 900px) {
  .nav-links,
  .nav-actions .nav-store,
  .nav-actions .nav-divider,
  .nav-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .nav-announce-text { display: none; }
  .nav-announce-inner { justify-content: flex-start; }
  /* Footer: brand on top, link columns in an even row */
  .footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 44px 24px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 42px; }
  .section h2 { font-size: 30px; }
  .steps, .bento { grid-template-columns: 1fr; }
  .bento-hero { grid-column: span 1; flex-direction: column; }
  .sheet-strip { flex-direction: column; gap: 24px; }
  .store-badges { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 24px; }
}
@media (max-width: 480px) {
  .nav-announce-inner { font-size: 12px; gap: 9px; padding-right: 52px; }
  .nav-mobile-stores { flex-direction: column; }
}
