/* ============ Tokens ============ */
:root{
  --navy: #0F172A;
  --navy-2: #1E293B;
  --bg: #F4F7FC;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --text: #0F172A;
  --text-soft: #475569;
  --text-mute: #94A3B8;
  --blue: #0F766E;
  --blue-bg: #F0FDFA;
  --green: #16A34A;
  --green-bg: #ECFDF5;
  --red: #DC2626;
  --red-bg: #FEE2E2;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 1px 2px rgba(15,23,42,.04), 0 12px 32px -12px rgba(15,23,42,.12);
  --shadow-strong: 0 24px 60px -20px rgba(15,23,42,.35);
  --container: 1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:'Manrope','Inter',sans-serif;
  color:var(--text);
  margin:0 0 .5em;
  letter-spacing:-0.01em;
  line-height:1.15;
}
p{margin:0 0 1em;color:var(--text-soft);}
ul{margin:0;padding:0;list-style:none;}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{max-width:var(--container);margin:0 auto;padding:0 24px;}
.skip-link{position:absolute;left:-9999px;top:0;background:var(--navy);color:#fff;padding:10px 16px;border-radius:8px;z-index:999;}
.skip-link:focus{left:16px;top:16px;}

section{position:relative;}

/* ============ Buttons ============ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:'Inter',sans-serif;font-weight:600;
  border-radius:999px;border:1.5px solid transparent;
  cursor:pointer;white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:active{transform:translateY(1px);}
.btn-primary{background:var(--navy);color:#fff;box-shadow:0 10px 24px -10px rgba(15,23,42,.5);}
.btn-primary:hover{background:#1E293B;box-shadow:0 14px 30px -10px rgba(15,23,42,.55);}
.btn-ghost{background:transparent;color:var(--navy);border-color:var(--border);}
.btn-ghost:hover{border-color:var(--navy);}
.btn-lg{padding:14px 26px;font-size:15px;}
.btn-sm{padding:9px 18px;font-size:14px;}

/* ============ Reveal animation ============ */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1;transform:translateY(0);}

/* ============ Navbar ============ */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(244,247,252,.7);
  backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.scrolled{
  background:rgba(255,255,255,.85);
  border-bottom-color:var(--border);
  box-shadow:0 4px 24px -12px rgba(15,23,42,.12);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;gap:24px;}
.brand{display:flex;align-items:center;gap:10px;font-family:'Manrope',sans-serif;font-weight:800;font-size:19px;color:var(--navy);}
.brand-mark{width:34px;height:34px;border-radius:9px;background:var(--navy);display:flex;align-items:center;justify-content:center;flex:none;}
.brand-mark svg{width:19px;height:19px;}
.nav-links{display:flex;align-items:center;gap:32px;font-size:14.5px;font-weight:600;color:var(--text-soft);}
.nav-links a{transition:color .15s ease;}
.nav-links a:hover{color:var(--navy);}
.nav-cta{display:flex;}
.nav-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;width:38px;height:38px;background:none;border:1px solid var(--border);border-radius:9px;cursor:pointer;}
.nav-toggle span{display:block;height:2px;width:18px;margin:0 auto;background:var(--navy);border-radius:2px;}
.nav-mobile{display:none;flex-direction:column;gap:2px;padding:10px 24px 20px;background:var(--surface);border-bottom:1px solid var(--border);}
.nav-mobile a{padding:12px 4px;font-weight:600;color:var(--text-soft);border-bottom:1px solid var(--border);}
.nav-mobile a:last-child{border-bottom:none;margin-top:8px;text-align:center;}
.nav.open .nav-mobile{display:flex;}

/* ============ Hero ============ */
.hero{padding:76px 0 60px;}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center;}
.eyebrow{
  font-size:13px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--blue);margin:0 0 14px;
}
/* The headline sets its own line-height: at 50px the inherited body value
   of 1.6 leaves it sprawling. `text-wrap:balance` evens the lines out at
   every width, which is what the hand-placed <br>s used to do badly. */
.hero h1{
  font-size:clamp(32px,4.2vw,50px);font-weight:800;
  line-height:1.06;letter-spacing:-.028em;
  text-wrap:balance;margin:0 0 18px;
}
.hero-sub{font-size:17px;line-height:1.62;max-width:520px;margin:0;}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin:28px 0 0;}

.hero-visual{position:relative;height:560px;display:flex;align-items:center;justify-content:center;}
.glow{
  position:absolute;width:520px;height:520px;border-radius:50%;
  background:radial-gradient(circle,rgba(20,184,166,.16),transparent 70%);
  filter:blur(10px);z-index:0;
}
.phone{
  position:absolute;width:240px;border-radius:34px;overflow:hidden;
  background:var(--navy);border:6px solid var(--navy);
  box-shadow:var(--shadow-strong);
  aspect-ratio:9/19.4;
}
.phone img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.phone-back{opacity:.85;transform:translate(64px,26px) scale(.94) rotate(6deg);z-index:1;filter:saturate(.9);}
.phone-front{transform:translate(-42px,-14px) rotate(-4deg);z-index:2;animation:floatY 6s ease-in-out infinite;}
@keyframes floatY{0%,100%{transform:translate(-42px,-14px) rotate(-4deg);}50%{transform:translate(-42px,-24px) rotate(-4deg);}}

/* ============ How it works strip ============ */
.how{padding:8px 0 64px;}
.how-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.how-step{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);
  padding:26px 24px;box-shadow:var(--shadow-soft);
}
.how-num{display:block;font-family:'Manrope',sans-serif;font-weight:800;color:var(--blue);font-size:13px;letter-spacing:.05em;margin-bottom:10px;}
.how-step h3{font-size:18px;margin-bottom:6px;}
.how-step p{font-size:14.5px;margin:0;}

/* ============ Section heads ============ */
.section-head{max-width:640px;margin:0 auto 44px;text-align:center;}
.section-head h2{font-size:clamp(26px,3.2vw,38px);}
.section-sub{font-size:16px;}
.section-head .section-sub{margin:0 auto;}

/* ============ Problem ============ */
.problem{padding:88px 0;}
.pain-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.pain-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);
  padding:24px;transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pain-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft);border-color:#CBD5E1;}
.pain-icon{
  width:42px;height:42px;border-radius:11px;background:var(--red-bg);color:var(--red);
  display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.pain-icon svg{width:20px;height:20px;}
.pain-card h4{font-size:16px;margin-bottom:4px;}
.pain-card p{font-size:14px;margin:0;}

/* ============ Why / positioning ============ */
.why{padding:88px 0;background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.compare{display:grid;grid-template-columns:1fr auto 1fr;gap:18px;align-items:stretch;max-width:880px;margin:0 auto;}
.compare-card{border-radius:var(--radius-md);padding:32px 30px;}
.compare-card h3{font-size:17px;margin-bottom:18px;}
.compare-muted{background:var(--bg);border:1px solid var(--border);}
.compare-muted li{color:var(--text-mute);}
.compare-dark{background:var(--navy);box-shadow:var(--shadow-strong);}
.compare-dark h3{color:#fff;}
.compare-dark li{color:#E2E8F0;}
.compare-card li{position:relative;padding-left:24px;margin-bottom:12px;font-size:14.5px;font-weight:500;}
.compare-muted li::before{content:"–";position:absolute;left:2px;color:var(--text-mute);}
.compare-dark li::before{content:"✓";position:absolute;left:0;color:#5EEAD4;font-weight:700;}
.compare-vs{align-self:center;font-weight:800;color:var(--text-mute);font-size:13px;}
.callout{
  text-align:center;max-width:560px;margin:40px auto 0;font-size:18px;color:var(--text);
  font-family:'Manrope',sans-serif;font-weight:600;
}

/* ============ Feature deep-dives ============ */
.feature{padding:96px 0;}
.feature-alt{background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.feature-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;}
.feature-grid-2>*{min-width:0;}
.feature-grid-2.reverse .feature-visual{order:2;}
.feature-grid-2.reverse .feature-copy{order:1;}
.feature-copy h2{font-size:clamp(24px,3vw,34px);}
.check-list{margin-top:20px;display:flex;flex-direction:column;gap:13px;}
.check-list li{position:relative;padding-left:30px;font-size:15px;font-weight:500;color:var(--text);}
.check-list li::before{
  content:"";position:absolute;left:0;top:2px;width:18px;height:18px;border-radius:50%;
  background:var(--green-bg);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A34A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;background-size:11px;
}
.stat-pill{
  display:inline-flex;align-items:center;padding:8px 16px;border-radius:999px;
  background:var(--blue-bg);color:var(--blue);font-weight:700;font-size:13.5px;margin:6px 0 12px;
}
.feature-note{font-size:14.5px;max-width:440px;}

.feature-visual{position:relative;display:flex;align-items:center;justify-content:center;min-height:460px;}
.phone-single{position:relative;width:250px;aspect-ratio:9/19.4;border-radius:34px;overflow:hidden;background:var(--navy);border:6px solid var(--navy);box-shadow:var(--shadow-strong);}
.phone-single img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.phone-main{position:relative;width:250px;aspect-ratio:9/19.4;border-radius:34px;overflow:hidden;background:var(--navy);border:6px solid var(--navy);box-shadow:var(--shadow-strong);z-index:2;}
.phone-main img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.phone-chip{
  position:absolute;width:132px;aspect-ratio:9/19.4;border-radius:22px;overflow:hidden;
  background:var(--navy);border:4px solid var(--surface);box-shadow:var(--shadow-strong);
}
.phone-chip img{width:100%;height:100%;object-fit:cover;object-position:top center;}
.chip-a{left:-6px;bottom:12px;z-index:3;transform:rotate(-8deg);}
.chip-b{right:-10px;top:6px;z-index:1;transform:rotate(9deg);}

/* ============ Document / PDF card ============ */
.doc-cta-row{margin:22px 0 0;}
.doc-card{
  width:100%;max-width:400px;background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-strong);
}
.doc-toolbar{
  display:flex;align-items:center;gap:10px;padding:12px 16px;
  background:var(--navy);color:#E2E8F0;font-size:12.5px;font-weight:600;letter-spacing:.01em;
}
.doc-dots{display:flex;gap:5px;}
.doc-dots span{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.3);}
.doc-frame-wrap{position:relative;height:400px;background:#EEF2F7;}
.doc-frame-wrap iframe{width:100%;height:100%;border:0;display:block;}

/* ============ Google Sheets sync card ============ */
.sheet-card{
  width:100%;max-width:460px;background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius-md);overflow:hidden;box-shadow:var(--shadow-strong);
}
.sheet-toolbar{
  display:flex;align-items:center;gap:10px;padding:12px 16px;
  background:var(--navy);color:#E2E8F0;font-size:12.5px;font-weight:600;letter-spacing:.01em;
}
.sheet-dots{display:flex;gap:5px;}
.sheet-dots span{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.3);}
.sheet-tab-label{flex:1;}
.sheet-live-badge{
  display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:700;
  color:#5EEAD4;letter-spacing:.03em;text-transform:uppercase;
}
.sheet-live-dot{width:6px;height:6px;border-radius:50%;background:#5EEAD4;animation:pulseDot 1.8s ease-in-out infinite;}
@keyframes pulseDot{0%,100%{opacity:1;box-shadow:0 0 0 0 rgba(94,234,212,.5);}50%{opacity:.6;box-shadow:0 0 0 4px rgba(94,234,212,0);}}
.sheet-table-wrap{position:relative;overflow-x:auto;background:#fff;}
.sheet-table{width:100%;border-collapse:collapse;font-size:12.5px;white-space:nowrap;}
.sheet-table th{
  text-align:left;padding:9px 12px;background:#F1F5F9;color:var(--text-mute);
  font-weight:700;font-size:10.5px;text-transform:uppercase;letter-spacing:.04em;
  border-bottom:1px solid var(--border);
}
.sheet-table td{padding:10px 12px;border-bottom:1px solid var(--border);color:var(--text-soft);font-weight:500;}
.sheet-table tbody tr:last-child td{border-bottom:none;}
.sheet-row-new{background:var(--green-bg);animation:rowFlash 2.2s ease-out 1;}
.sheet-row-new td{color:var(--text);font-weight:700;}
.sheet-row-new td:first-child{color:var(--green);}
@keyframes rowFlash{0%{background:#BBF7D0;}100%{background:var(--green-bg);}}
.sheet-tabs-row{display:flex;flex-wrap:wrap;gap:6px;padding:14px 16px 16px;background:#F8FAFC;border-top:1px solid var(--border);}
.sheet-tab-chip{
  padding:5px 11px;border-radius:999px;background:#fff;border:1px solid var(--border);
  font-size:11px;font-weight:600;color:var(--text-mute);
}
.sheet-tab-chip-active{background:var(--navy);border-color:var(--navy);color:#fff;}
.sheet-tab-chip-sum{color:var(--blue);border-color:#99F6E4;background:var(--blue-bg);}

/* ============ Offline ============ */
.offline{padding:88px 0;background:linear-gradient(180deg,var(--navy),var(--navy-2));color:#fff;}
.offline .eyebrow{color:#5EEAD4;}
.offline h2{color:#fff;}
.offline .section-sub{color:#CBD5E1;margin:0;}
.offline-grid{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.offline-flow{display:flex;align-items:center;justify-content:center;gap:0;}
.offline-node{display:flex;flex-direction:column;align-items:center;gap:10px;font-size:13px;font-weight:600;color:#94A3B8;}
.offline-node-active{color:#5EEAD4;}
.offline-icon{
  width:64px;height:64px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.14);
}
.offline-node-active .offline-icon{background:rgba(94,234,212,.12);border-color:rgba(94,234,212,.5);}
.offline-icon svg{width:26px;height:26px;}
.offline-line{width:56px;height:1px;background:linear-gradient(90deg,rgba(255,255,255,.05),rgba(255,255,255,.35),rgba(255,255,255,.05));margin:0 6px 26px;position:relative;overflow:hidden;}
.offline-line::after{
  content:"";position:absolute;top:0;left:-30%;height:100%;width:30%;
  background:linear-gradient(90deg,transparent,#5EEAD4,transparent);
  animation:travel 2.6s ease-in-out infinite;
}
@keyframes travel{0%{left:-30%;}100%{left:100%;}}

/* ============ Feature grid ============ */
.grid-section{padding:88px 0;}
.fgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.fcard{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);
  padding:26px;transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);border-color:#CBD5E1;}
.fcard-icon{
  width:44px;height:44px;border-radius:12px;background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.fcard-icon svg{width:20px;height:20px;}
.fcard h4{font-size:16px;margin-bottom:5px;}
.fcard p{font-size:14px;margin:0;}

/* ============ Reviews ============ */
.reviews{padding:88px 0;background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.review-card{
  max-width:640px;margin:0 auto;background:var(--bg);border:1px solid var(--border);
  border-radius:var(--radius-lg);padding:38px;box-shadow:var(--shadow-soft);
}
.review-top{display:flex;align-items:center;gap:16px;margin-bottom:24px;}
.review-logo{width:56px;height:56px;object-fit:contain;border-radius:12px;background:#fff;border:1px solid var(--border);padding:6px;}
.review-meta h3{font-size:17px;margin-bottom:2px;}
.review-meta p{font-size:13.5px;margin:0;color:var(--text-mute);}
.review-stats{display:flex;gap:36px;padding:20px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border);margin-bottom:22px;}
.review-stats strong{display:block;font-family:'Manrope',sans-serif;font-size:24px;font-weight:800;color:var(--navy);}
.review-stats span{font-size:12.5px;color:var(--text-mute);}
.review-quote{
  display:flex;flex-wrap:wrap;align-items:flex-start;gap:12px;padding:18px 20px;background:var(--surface);
  border-radius:var(--radius-sm);font-size:15px;line-height:1.6;
}
.review-quote svg{flex:none;opacity:.6;margin-top:2px;}
.review-quote p{margin:0;color:var(--text-soft);font-style:italic;flex:1 1 auto;min-width:0;}
.review-quote-attr{width:100%;padding-left:34px;font-size:13px;font-weight:600;color:var(--text-mute);font-style:normal;}

.quote-card{
  max-width:640px;margin:22px auto 0;position:relative;
  background:var(--surface);border:1px dashed #CBD5E1;border-radius:var(--radius-lg);
  padding:34px 38px 28px;
}
.quote-sample-tag{
  position:absolute;top:-13px;left:32px;background:var(--navy);color:#fff;
  font-size:11px;font-weight:700;letter-spacing:.03em;padding:5px 12px;border-radius:999px;
}
.quote-mark{color:#CBD5E1;margin-bottom:10px;}
.quote-text{font-family:'Manrope',sans-serif;font-size:18px;font-weight:600;color:var(--text);line-height:1.5;margin:0 0 14px;}
.quote-attribution{font-size:13px;color:var(--text-mute);margin:0;}

/* ============ Final CTA ============ */
.final-cta{padding:100px 0;}
.final-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.final-copy h2{font-size:clamp(28px,3.6vw,42px);}
.final-copy p{font-size:16.5px;max-width:460px;}
.final-note{font-size:13.5px;color:var(--text-mute);margin-top:14px;}
.final-note a{color:var(--blue);font-weight:600;text-decoration:underline;text-underline-offset:2px;}

/* ============ Store-style download badge ============ */
.store-badge{
  display:inline-flex;align-items:center;gap:12px;
  background:var(--navy);color:#fff;border-radius:14px;
  padding:10px 20px 10px 16px;margin-top:28px;
  box-shadow:0 10px 24px -10px rgba(15,23,42,.5);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.store-badge:hover{background:#1E293B;box-shadow:0 14px 30px -10px rgba(15,23,42,.55);transform:translateY(-1px);}
.store-badge:active{transform:translateY(1px);}
.store-badge-icon{
  width:34px;height:34px;flex:none;border-radius:9px;
  background:rgba(255,255,255,.12);display:flex;align-items:center;justify-content:center;
}
.store-badge-icon svg{width:18px;height:18px;}
.store-badge-text{display:flex;flex-direction:column;line-height:1.3;}
.store-badge-eyebrow{font-size:10.5px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.65);}
.store-badge-title{font-family:'Manrope',sans-serif;font-size:16.5px;font-weight:800;}
.final-visual{display:flex;justify-content:center;}

/* ============ Footer ============ */
.footer{padding:48px 0 28px;border-top:1px solid var(--border);}
.footer-grid{display:flex;justify-content:space-between;align-items:flex-start;flex-wrap:wrap;gap:24px;padding-bottom:28px;}
.footer-brand p{margin:8px 0 0;font-size:13.5px;color:var(--text-mute);}
.footer-links{display:flex;gap:26px;font-size:14px;font-weight:600;color:var(--text-soft);flex-wrap:wrap;}
.footer-links a:hover{color:var(--navy);}
.footer-connect{display:flex;flex-direction:column;gap:10px;}
.footer-connect h4{margin:0 0 2px;font-size:12.5px;font-weight:700;color:var(--text-mute);text-transform:uppercase;letter-spacing:.05em;}
.footer-social-link{display:inline-flex;align-items:center;gap:8px;font-size:13.5px;font-weight:600;color:var(--text-soft);}
.footer-social-link svg{width:16px;height:16px;flex:none;}
.footer-social-link:hover{color:var(--navy);}
.footer-bottom{padding-top:22px;border-top:1px solid var(--border);font-size:13px;color:var(--text-mute);}

/* ============ Responsive ============ */
@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{height:440px;order:-1;}
  .phone{width:200px;}
  .feature-grid-2{grid-template-columns:1fr;gap:44px;}
  .feature-grid-2.reverse .feature-visual{order:1;}
  .feature-grid-2.reverse .feature-copy{order:2;}
  .compare{grid-template-columns:1fr;}
  .compare-vs{display:none;}
  .offline-grid{grid-template-columns:1fr;gap:40px;text-align:center;}
  .offline-flow{justify-content:center;}
  .final-grid{grid-template-columns:1fr;}
  .final-visual{order:-1;}
}

@media (max-width: 860px){
  .nav-links,.nav-cta{display:none;}
  .nav-toggle{display:flex;}
  .how-grid,.pain-grid,.fgrid{grid-template-columns:1fr 1fr;}
}

@media (max-width: 640px){
  .container{padding:0 18px;}
  .hero{padding:44px 0 40px;}
  .hero-visual{height:380px;}
  .phone{width:172px;}
  .phone-back{transform:translate(46px,20px) scale(.92) rotate(6deg);}
  .phone-front{transform:translate(-30px,-10px) rotate(-4deg);}
  @keyframes floatY{0%,100%{transform:translate(-30px,-10px) rotate(-4deg);}50%{transform:translate(-30px,-20px) rotate(-4deg);}}
  .how-grid,.pain-grid,.fgrid{grid-template-columns:1fr;}
  .problem,.why,.feature,.grid-section,.reviews,.offline,.final-cta{padding:56px 0;}
  .feature-visual{min-height:340px;}
  .phone-main,.phone-single{width:210px;}
  .phone-chip{width:112px;}
  .doc-card{max-width:100%;}
  .doc-frame-wrap{height:320px;}
  .sheet-card{max-width:100%;}
  .sheet-table{font-size:11.5px;}
  .sheet-table th,.sheet-table td{padding:8px 9px;}
  .sheet-table-wrap::after{
    content:"";position:absolute;top:0;right:0;bottom:0;width:28px;pointer-events:none;
    background:linear-gradient(90deg,rgba(255,255,255,0),rgba(255,255,255,.95));
  }
  .compare-card{padding:26px 22px;}
  .review-card{padding:26px;}
  .review-stats{gap:24px;}
  .quote-card{padding:28px 22px 22px;}
  .quote-text{font-size:16px;}
  .footer-grid{flex-direction:column;}
}

/* ============================================================
   2026-09 update: new brand mark, deliveries, alerts, pricing,
   platforms, privacy. Accent follows the app's teal.
   ============================================================ */

/* ---- Brand mark (three columns rising to a coin) ---- */
.brand-mark{background:none;width:34px;height:34px;border-radius:9px;filter:drop-shadow(0 4px 10px rgba(15,118,110,.35));}
.brand-mark svg,.brand-mark img{width:34px;height:34px;display:block;}

/* ---- Hero platform chips ---- */
.hero-platforms{display:flex;flex-wrap:wrap;gap:8px;margin:-12px 0 26px;}
.platform-chip{display:inline-flex;align-items:center;gap:7px;padding:6px 12px;border-radius:999px;background:var(--surface);border:1px solid var(--border);font-size:13px;font-weight:600;color:var(--text-soft);}
.platform-chip svg{width:15px;height:15px;flex:none;}
.platform-chip small{font-size:10.5px;font-weight:700;letter-spacing:.02em;color:#92400E;background:#FEF3C7;border-radius:999px;padding:1px 7px;}
.platform-chip.is-live{color:var(--text);}
.platform-chip.is-live small{color:#166534;background:#DCFCE7;}

/* ---- Delivery trail card ---- */
.delivery-card{width:100%;max-width:420px;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);box-shadow:var(--shadow-strong);overflow:hidden;}
.delivery-head{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:16px 18px;background:var(--navy);color:#fff;}
.delivery-head strong{display:block;font-family:"Manrope",sans-serif;font-size:15px;}
.delivery-head span{font-size:12.5px;color:#94A3B8;}
.delivery-amount{font-family:"Manrope",sans-serif;font-weight:800;font-size:18px;}
.trail{padding:20px 18px 4px;}
.trail-step{position:relative;display:grid;grid-template-columns:34px 1fr auto;gap:12px;align-items:center;padding-bottom:18px;}
.trail-step::before{content:"";position:absolute;left:16px;top:36px;bottom:2px;width:2px;background:var(--border);border-radius:2px;}
.trail-step:last-child::before{display:none;}
.trail-step.done::before{background:#5EEAD4;}
.trail-dot{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#F1F5F9;color:var(--text-mute);}
.trail-dot svg{width:17px;height:17px;}
.trail-step.done .trail-dot{background:var(--blue-bg);color:var(--blue);}
.trail-step.active .trail-dot{background:var(--blue);color:#fff;animation:ring 1.8s ease-out infinite;}
@keyframes ring{0%{box-shadow:0 0 0 0 rgba(15,118,110,.45);}100%{box-shadow:0 0 0 12px rgba(15,118,110,0);}}
.trail-step b{display:block;font-size:14px;line-height:1.3;color:var(--text);}
.trail-step span{font-size:12.5px;color:var(--text-mute);}
.trail-time{font-size:12px;font-weight:600;color:var(--text-mute);}
.delivery-foot{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:14px 18px;border-top:1px solid var(--border);background:#F8FAFC;font-size:13px;}
.courier{display:flex;align-items:center;gap:10px;font-weight:600;color:var(--text);}
.courier i{width:30px;height:30px;border-radius:50%;background:var(--navy);color:#fff;font-style:normal;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:700;}
.cash-pill{background:var(--green-bg);color:var(--green);font-weight:700;border-radius:999px;padding:5px 11px;font-size:12px;white-space:nowrap;}

/* ---- Alerts: push stack + daily email ---- */
.alert-stack{width:100%;max-width:430px;display:flex;flex-direction:column;gap:12px;}
.push{display:grid;grid-template-columns:38px 1fr auto;gap:12px;align-items:center;padding:14px 16px;background:var(--surface);border:1px solid var(--border);border-radius:18px;box-shadow:var(--shadow-soft);}
.push:nth-child(2){margin-left:18px;}
.push:nth-child(3){margin-left:36px;}
.push-icon svg{width:38px;height:38px;display:block;}
.push b{display:block;font-size:14px;line-height:1.35;color:var(--text);}
.push span{font-size:12.8px;color:var(--text-soft);}
.push time{align-self:start;font-size:11.5px;color:var(--text-mute);}
.reveal.in .push,.reveal.in .mail-card{animation:pushIn .6s cubic-bezier(.2,.7,.2,1) both;}
.reveal.in .push:nth-child(2){animation-delay:.15s;}
.reveal.in .push:nth-child(3){animation-delay:.3s;}
.reveal.in .mail-card{animation-delay:.45s;}
@keyframes pushIn{from{opacity:0;transform:translateY(-14px) scale(.97);}to{opacity:1;transform:none;}}
.mail-card{margin-top:6px;background:linear-gradient(160deg,var(--navy),#0F4C45);color:#fff;border-radius:18px;padding:18px;box-shadow:var(--shadow-strong);}
.mail-top{display:flex;justify-content:space-between;gap:12px;font-size:12px;color:#94A3B8;}
.mail-card h4{color:#fff;font-size:16px;margin:8px 0 12px;}
.mail-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
.mail-stats div{background:rgba(255,255,255,.07);border-radius:12px;padding:10px;}
.mail-stats strong{display:block;font-family:"Manrope",sans-serif;font-size:17px;}
.mail-stats span{font-size:11.5px;color:#94A3B8;}

/* ---- Pricing ---- */
.pricing{padding:88px 0;background:var(--surface);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;max-width:1000px;margin:0 auto;align-items:stretch;}
.price-card{position:relative;display:flex;flex-direction:column;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-lg);padding:30px 28px;}
.price-card h3{font-size:18px;margin:0;}
.price{font-family:"Manrope",sans-serif;font-weight:800;font-size:44px;line-height:1;color:var(--text);margin:16px 0 6px;}
.price small{font-size:14px;font-weight:600;color:var(--text-mute);}
.price-limit{font-weight:700;color:var(--blue);font-size:14.5px;margin:0 0 20px;}
.price-card .check-list{margin:0 0 26px;flex:1;}
.price-card .check-list li{font-size:14px;}
.price-card .btn{width:100%;}
.price-card.popular{background:linear-gradient(160deg,var(--navy),#0F4C45);border-color:transparent;box-shadow:var(--shadow-strong);transform:translateY(-8px);}
.popular h3,.popular .price{color:#fff;}
.popular .price small{color:#94A3B8;}
.popular .price-limit{color:#5EEAD4;}
.popular .check-list li{color:#E2E8F0;}
.popular .btn-primary{background:#fff;color:var(--navy);}
.popular .btn-primary:hover{background:#E2E8F0;}
.price-badge{position:absolute;top:-12px;left:28px;background:#FBBF24;color:#78350F;font-size:11px;font-weight:800;letter-spacing:.05em;padding:5px 12px;border-radius:999px;}
.price-note{text-align:center;font-size:14px;color:var(--text-mute);margin:30px auto 0;max-width:620px;}

/* ---- Platforms ---- */
.platforms{padding:88px 0;}
.platform-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.platform-card{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-lg);padding:30px 28px;transition:transform .2s ease, box-shadow .2s ease;}
.platform-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}
.platform-icon{width:52px;height:52px;border-radius:14px;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.platform-icon svg{width:26px;height:26px;}
.status{align-self:flex-start;font-size:12px;font-weight:700;border-radius:999px;padding:4px 11px;margin-bottom:10px;}
.status-live{background:#DCFCE7;color:#166534;}
.status-soon{background:#FEF3C7;color:#92400E;}
.platform-card h3{font-size:21px;margin:0 0 6px;}
.platform-card p{font-size:14.5px;margin:0 0 20px;flex:1;}
.platform-card .btn{align-self:flex-start;}
.btn[aria-disabled="true"]{opacity:.5;pointer-events:none;}
.platform-note{text-align:center;font-size:14px;color:var(--text-mute);margin:28px 0 0;}
.platform-alt{align-self:flex-start;margin-top:12px;font-size:13px;color:var(--text-soft);text-decoration:none;border-bottom:1px solid var(--border);}
.platform-alt:hover{color:var(--blue);border-bottom-color:var(--blue);}

/* ---- "Seeing a security warning?" disclosure ---- */
.install-help{max-width:760px;margin:20px auto 0;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);}
.install-help summary{cursor:pointer;list-style:none;padding:16px 22px;font-size:14.5px;font-weight:600;color:var(--text-soft);display:flex;align-items:center;gap:10px;}
.install-help summary::-webkit-details-marker{display:none;}
.install-help summary::before{content:"?";flex:none;width:20px;height:20px;border-radius:50%;background:var(--blue-bg);color:var(--blue);font-size:12px;font-weight:700;display:grid;place-items:center;}
.install-help summary::after{content:"";margin-left:auto;width:7px;height:7px;border-right:2px solid var(--text-mute);border-bottom:2px solid var(--text-mute);transform:rotate(45deg);transition:transform .2s ease;}
.install-help[open] summary::after{transform:rotate(-135deg);}
.install-help summary:hover{color:var(--text);}
.install-help-body{padding:0 22px 22px;border-top:1px solid var(--border);}
.install-help-body p{font-size:14px;color:var(--text-soft);margin:14px 0 0;}
.install-help-body h4{font-size:13px;letter-spacing:.04em;text-transform:uppercase;color:var(--text-mute);margin:22px 0 0;}
.install-help-body strong{color:var(--text);font-weight:600;}
.install-help-body a{color:var(--blue);}
.install-help-code{margin:10px 0 0;padding:12px 14px;background:var(--bg);border:1px solid var(--border);border-radius:var(--radius-sm);overflow-x:auto;}
.install-help-code code{font-family:'SFMono-Regular',Consolas,monospace;font-size:12.5px;color:var(--text);white-space:pre;}
.install-help-foot{margin-top:20px;padding-top:16px;border-top:1px solid var(--border);}
@media (max-width:600px){
  .install-help summary{padding:14px 16px;font-size:14px;}
  .install-help-body{padding:0 16px 18px;}
}

/* ---- Privacy summary ---- */
.privacy{padding:88px 0;background:linear-gradient(180deg,var(--navy),#0B2622);color:#fff;}
.privacy .eyebrow{color:#5EEAD4;}
.privacy h2{color:#fff;}
.privacy .section-sub{color:#CBD5E1;}
.privacy-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-bottom:34px;}
.privacy-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--radius-md);padding:24px;}
.privacy-icon{width:42px;height:42px;border-radius:11px;background:rgba(94,234,212,.12);color:#5EEAD4;display:flex;align-items:center;justify-content:center;margin-bottom:14px;}
.privacy-icon svg{width:20px;height:20px;}
.privacy-card h4{color:#fff;font-size:16px;margin-bottom:6px;}
.privacy-card p{color:#94A3B8;font-size:14px;margin:0;}
.privacy-cta{text-align:center;}
.btn-light{background:#fff;color:var(--navy);}
.btn-light:hover{background:#E2E8F0;}

/* ---- Privacy policy page ---- */
.legal{padding:56px 0 88px;}
.legal-wrap{max-width:780px;margin:0 auto;}
.legal h1{font-size:clamp(30px,4vw,44px);font-weight:800;}
.legal .updated{color:var(--text-mute);font-size:14px;}
.legal h2{font-size:22px;margin:44px 0 12px;scroll-margin-top:90px;}
.legal p,.legal li{font-size:15.5px;color:var(--text-soft);}
.legal ul{list-style:disc;padding-left:22px;display:flex;flex-direction:column;gap:8px;margin:0 0 1em;}
.legal strong{color:var(--text);}
.legal-wrap a{color:var(--blue);font-weight:600;text-decoration:underline;text-underline-offset:2px;}
.legal-summary{background:var(--surface);border:1px solid var(--border);border-left:4px solid var(--blue);border-radius:var(--radius-sm);padding:20px 24px;margin:26px 0;box-shadow:var(--shadow-soft);}
.legal-summary p:last-child{margin:0;}
.legal-wrap .legal-toc a{font-size:13px;font-weight:600;text-decoration:none;padding:6px 12px;border-radius:999px;background:var(--surface);border:1px solid var(--border);color:var(--text-soft);}
.legal-toc{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 8px;}
.table-wrap{overflow-x:auto;border:1px solid var(--border);border-radius:var(--radius-sm);background:var(--surface);margin:0 0 1em;}
.legal table{width:100%;border-collapse:collapse;font-size:14px;}
.legal th{text-align:left;padding:11px 14px;background:#F1F5F9;color:var(--text);font-weight:700;font-size:13px;border-bottom:1px solid var(--border);}
.legal td{padding:11px 14px;border-bottom:1px solid var(--border);color:var(--text-soft);vertical-align:top;}
.legal tr:last-child td{border-bottom:none;}

@media (max-width: 1024px){
  .price-grid,.platform-grid{grid-template-columns:1fr;max-width:520px;margin:0 auto;}
  .price-card.popular{transform:none;}
  .privacy-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 640px){
  .pricing,.platforms,.privacy{padding:56px 0;}
  .privacy-grid{grid-template-columns:1fr;}
  .push:nth-child(2),.push:nth-child(3){margin-left:0;}
  .price{font-size:38px;}
  .legal{padding:36px 0 56px;}
}

/* ---- Built on trusted services ---- */
.stack{padding:88px 0;}
.stack-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.stack-card{display:flex;gap:16px;align-items:flex-start;background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-md);padding:22px;transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
.stack-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-soft);border-color:#CBD5E1;}
.stack-icon{flex:none;width:48px;height:48px;border-radius:13px;display:flex;align-items:center;justify-content:center;}
.stack-icon svg{width:24px;height:24px;}
.stack-card h4{display:flex;flex-wrap:wrap;align-items:center;gap:8px;font-size:16px;margin:0 0 5px;}
.stack-card p{font-size:14px;margin:0;}
.stack-tag{font-family:"Inter",sans-serif;font-size:10.5px;font-weight:700;letter-spacing:.02em;border-radius:999px;padding:2px 8px;background:#DCFCE7;color:#166534;}
.stack-tag.soon{background:#FEF3C7;color:#92400E;}
.stack-note{text-align:center;font-size:12.5px;color:var(--text-mute);margin:26px auto 0;max-width:560px;}
.i-firebase{background:#FFF7ED;color:#EA580C;}
.i-gcloud{background:#EFF6FF;color:#2563EB;}
.i-aws{background:#FEF3C7;color:#B45309;}
.i-razorpay{background:#EEF2FF;color:#1D4ED8;}
.i-sheets{background:#ECFDF5;color:#15803D;}
.i-whatsapp{background:#F0FDF4;color:#16A34A;}
@media (max-width: 1024px){
  .stack-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 640px){
  .stack{padding:56px 0;}
  .stack-grid{grid-template-columns:1fr;}
}
/* ============ Current app showcase ============ */
.hero{padding:66px 0 38px;background:radial-gradient(ellipse at 50% 75%,#d9f0ec 0,transparent 58%),linear-gradient(180deg,#fff 0%,#f4f7fc 100%);}
.hero-grid{display:flex;flex-direction:column;gap:40px;}
.hero-copy{text-align:center;max-width:850px;margin:0 auto;}
/* Centred display type has to be told where to break, or the last line ends
   up a single orphaned word. `balance` evens the lines at every width, which
   is what the hand-placed <br>s in the markup used to attempt. */
.hero h1{
  font-size:clamp(36px,4.6vw,64px);line-height:1.1;letter-spacing:-.045em;
  text-wrap:balance;max-width:780px;margin:0 auto;
}
.hero h1 span{color:var(--blue);}
.hero-sub{max-width:600px;margin:22px auto 0;font-size:18px;line-height:1.7;}
.hero-actions{justify-content:center;margin:30px 0 22px;}
.hero .btn-primary{background:var(--blue);}
.hero .btn-primary:hover{background:#095d57;}
.hero-platforms{justify-content:center;margin:0 0 22px;}
.platform-chip{font-size:14px;}
.platform-chip small{font-size:12px;}
.device-showcase{isolation:isolate;display:block;position:relative;width:100%;height:auto;aspect-ratio:1.75;margin:0;padding:0 0 75px;}
.desktop-preview{position:relative;margin:0 auto;width:79%;background:#111c2c;border:7px solid #1e293b;border-radius:18px;box-shadow:0 32px 65px -35px #0f383b66;overflow:hidden;}
.desktop-toolbar{height:34px;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:0 12px;font-size:12px;color:#cbd5e1;}
.window-controls{display:flex;gap:5px;}
.window-controls i{width:7px;height:7px;border-radius:50%;background:#64748b;}
.window-controls i:first-child{background:#fda4af;}.window-controls i:nth-child(2){background:#fcd34d;}.window-controls i:last-child{background:#5eead4;}
.preview-tag{font-size:12px;color:#a9c3bf;}
.desktop-preview>img{width:100%;height:auto;aspect-ratio:1.68;object-fit:cover;object-position:top;background:#f4f7fc;}
.mobile-preview{position:absolute;width:19%;bottom:80px;border:5px solid #15232c;background:#f7fafc;border-radius:27px;box-shadow:0 20px 45px -20px #061c2866;}
.mobile-preview>img{width:100%;height:auto;aspect-ratio:360/800;object-fit:cover;object-position:top;border-radius:0 0 18px 18px;}
.android-preview{left:0;transform:rotate(-4deg);z-index:2;}
.iphone-preview{right:0;transform:rotate(4deg);border-color:#7d8589;z-index:2;}
.device-top{height:22px;border-radius:22px 22px 0 0;background:#f7fafc;display:flex;align-items:center;justify-content:center;}
.android-top span{width:7px;height:7px;background:#15232c;border-radius:50%;}
.iphone-top span{width:49px;height:12px;background:#111827;border-radius:12px;}
.device-bottom{height:13px;position:relative;border-radius:0 0 22px 22px;}
.device-bottom:after{content:"";position:absolute;left:33%;right:33%;height:3px;top:5px;border-radius:4px;background:#1e293b;}
.device-label{position:absolute;top:calc(100% + 15px);left:-10%;width:120%;text-align:center;font-size:14px;font-weight:700;color:#203e3c;}
.device-label small{display:block;font-size:12px;font-weight:500;color:#64748b;}
.device-showcase figcaption{text-align:center;margin:28px auto 0;font-size:16px;font-weight:600;color:#254541;}
.device-showcase figcaption span{display:block;margin-top:5px;font-size:12px;color:#64748b;font-weight:400;}
.how{padding:25px 0 56px;}
.how-step{box-shadow:none;border-radius:16px;padding:26px 28px;}
.how-num{font-size:14px;}
.services{padding:36px 0;background:white;border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.services-inner{display:grid;grid-template-columns:1fr 1.6fr;align-items:center;gap:48px;}
.services .eyebrow{font-size:12px;margin-bottom:8px;}
.services h2{font-size:23px;line-height:1.35;margin:0;max-width:300px;}
.service-list{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.service-item{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;font-size:12px;color:#64748b;text-align:center;}
.service-logo{height:46px;display:flex;justify-content:center;align-items:center;width:150px;max-width:100%;gap:7px;}
.service-logo img{width:116px;max-height:35px;object-fit:contain;}
.razorpay-logo{background:#152544;border-radius:8px;padding:10px 14px;}
.razorpay-logo img{height:auto;}
.firebase-logo img{width:28px;height:36px;}
.firebase-logo strong{font-size:22px;letter-spacing:-.7px;font-weight:600;color:#353535;}
.payment-wordmark{display:block;width:126px;height:auto;margin:0 auto 14px;padding:10px 14px;background:#152544;border-radius:7px;}
.billing-preview{gap:24px;}
.billing-preview .phone-single{flex-shrink:0;width:230px;}
.workflow-caption{max-width:190px;}
.workflow-caption span{font-size:12px;color:var(--blue);font-weight:700;letter-spacing:.08em;}
.workflow-caption strong{display:block;margin:14px 0;font-family:Manrope,Inter,sans-serif;font-size:24px;line-height:1.3;}
.workflow-caption p{font-size:14px;}
a:focus-visible,button:focus-visible{outline:3px solid #0f766e;outline-offset:5px;}
@media(min-width:1025px){.device-showcase{max-width:1040px;}}
@media(max-width:1024px){
 .hero{padding-top:48px;}.hero-grid{gap:34px;}.hero-copy{max-width:760px;}
 .device-showcase{aspect-ratio:auto;padding-bottom:74px;}.mobile-preview{bottom:115px;}
 .device-showcase figcaption{margin-top:48px;}
 .services-inner{grid-template-columns:1fr;gap:28px;text-align:center;}.services h2{max-width:none;}
 .billing-preview{gap:18px;}.workflow-caption{max-width:145px;}.workflow-caption strong{font-size:20px;}
}
@media(max-width:640px){
 .hero{padding:36px 0 15px;}.hero-grid{gap:30px;}.hero h1{font-size:clamp(32px,8.5vw,48px);letter-spacing:-.035em;}
 .hero-sub{font-size:16px;margin-top:18px;}.hero-actions{gap:10px;}.hero-actions .btn{padding:12px 17px;font-size:14px;}
 .hero-platforms{gap:5px;}.platform-chip{padding:5px 8px;font-size:12px;gap:4px;}.platform-chip small{font-size:12px;padding:1px 5px;}

 .device-showcase{padding-bottom:0;margin-bottom:10px;}
 .desktop-preview{width:94%;border-width:4px;border-radius:11px;margin-bottom:122px;}
 .desktop-toolbar{height:22px;font-size:8px;gap:5px;padding:0 6px;}.preview-tag{display:none;}.window-controls{gap:3px;}.window-controls i{width:4px;height:4px;}
 .mobile-preview{width:25%;bottom:86px;border-width:3px;border-radius:15px;}
 .android-preview{left:3%;}.iphone-preview{right:3%;}.mobile-preview>img{border-radius:0 0 10px 10px;}
 .device-top{height:13px;border-radius:12px 12px 0 0;}.android-top span{width:4px;height:4px;}.iphone-top span{width:27px;height:7px;}
 .device-bottom{height:8px;}.device-bottom:after{top:3px;height:2px;}
 .device-label{font-size:12px;top:calc(100% + 9px);}.device-label small{font-size:12px;}
 .device-showcase figcaption{margin:0;font-size:14px;}.device-showcase figcaption span{max-width:260px;margin:5px auto 0;}
 .services{padding:30px 0;}.service-list{gap:12px;}.service-item{font-size:12px;gap:9px;}.service-logo{width:100%;height:40px;}.service-logo img{width:88px;max-width:100%;}.razorpay-logo{padding:9px;}.firebase-logo{gap:3px;}.firebase-logo img{width:21px;height:28px;}.firebase-logo strong{font-size:16px;}
 .billing-preview{flex-direction:column;gap:25px;}.workflow-caption{max-width:280px;text-align:center;}.workflow-caption strong{font-size:22px;}.workflow-caption strong br{display:none;}
}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto;}.reveal,.reveal.in{opacity:1;transform:none;transition:none;}*,*::before,*::after{animation:none!important;}}

/* ---- Hero: the services MyLedger is built on ---- */
.hero-powered{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:12px 20px;width:fit-content;max-width:100%;margin:22px auto 0;padding:11px 22px;border-radius:999px;background:linear-gradient(135deg,#0F172A,#0F3D39);box-shadow:0 16px 32px -20px rgba(15,23,42,.6);transition:transform .2s ease, box-shadow .2s ease;}
.hero-powered:hover{transform:translateY(-2px);box-shadow:0 20px 36px -20px rgba(15,23,42,.7);}
.powered-label{font-size:11px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:#94A3B8;}
.powered-item{display:inline-flex;align-items:center;gap:8px;font-family:"Manrope","Inter",sans-serif;font-size:16px;font-weight:700;color:#fff;}
.hero-powered img{display:block;}
.logo-firebase{width:26px;height:26px;border-radius:7px;}
.logo-razorpay{width:auto;height:20px;}
.logo-resend{width:auto;height:16px;filter:invert(1);}
.powered-sep{width:1px;height:18px;background:rgba(255,255,255,.16);}
@media(max-width:640px){
 .hero-powered{border-radius:18px;padding:12px 16px;gap:10px 16px;}
 .powered-label{width:100%;text-align:center;}
 .powered-sep{display:none;}
 .powered-item{font-size:14px;}
 .logo-firebase{width:22px;height:22px;}
 .logo-razorpay{height:17px;}
 .logo-resend{height:14px;}
 /* Lift the phones so their labels clear the caption underneath. */
 .mobile-preview{bottom:122px;}
 .desktop-preview{margin-bottom:150px;}
}
