:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --card-2:#f8fbfd;
  --ink:#10253e;
  --muted:#5f7288;
  --muted-2:#7a8ca0;
  --line:#dce6ee;
  --line-2:#e8eff5;
  --brand:#0d325e;
  --brand-2:#154577;
  --brand-soft:#edf4fb;
  --accent:#1e7a66;
  --accent-soft:#e8f5f2;
  --dark:#081f3a;
  --shadow-sm:0 10px 25px rgba(13,50,94,.06);
  --shadow:0 24px 60px rgba(13,50,94,.10);
  --shadow-lg:0 34px 90px rgba(13,50,94,.18);
  --radius:24px;
  --radius-lg:32px;
  --radius-xl:40px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(36,100,170,.08), transparent 28%),
    linear-gradient(180deg,#fbfdff 0%,#f7f9fc 100%);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.shell{width:min(var(--max),calc(100% - 40px));margin:auto}
.badge,.updated{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(13,50,94,.10);
  background:rgba(255,255,255,.78);
  box-shadow:var(--shadow-sm);
  color:var(--brand);
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
}
.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:#5a7da2;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
h1,h2,h3{margin:0;letter-spacing:-.045em;line-height:1.05}
p{margin:0}
.nav-wrap{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(18px);
  background:rgba(251,253,255,.82);
  border-bottom:1px solid rgba(220,230,238,.82);
}
.nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:800;
}
.brand img{
  width:40px;
  height:40px;
  border-radius:12px;
  box-shadow:0 12px 24px rgba(13,50,94,.12);
}
.nav-links{display:flex;align-items:center;gap:24px}
.nav-links a{font-size:14px;font-weight:650;color:#4b6178}
.nav-links a:hover{color:var(--brand)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:16px;
  border:1px solid transparent;
  background:linear-gradient(180deg,var(--brand-2),var(--brand));
  color:#fff;
  font-size:15px;
  font-weight:750;
  box-shadow:0 18px 34px rgba(13,50,94,.15);
  transition:transform .18s ease, box-shadow .18s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:0 24px 44px rgba(13,50,94,.18)}
.btn-small{min-height:42px;padding:0 16px;border-radius:14px;font-size:14px}
.btn-ghost{
  background:#fff;
  border-color:var(--line);
  color:var(--brand);
  box-shadow:none;
}
.hero{
  display:grid;
  grid-template-columns:1fr 1.02fr;
  gap:72px;
  align-items:center;
  padding:84px 0 92px;
}
.hero h1{font-size:clamp(50px,6vw,78px);max-width:700px}
.hero-sub{
  margin-top:22px;
  font-size:19px;
  color:var(--muted);
  max-width:640px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:30px}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.hero-meta span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid var(--line);
  color:#4d647c;
  font-size:13px;
  font-weight:600;
}
.hero-visual{
  position:relative;
  min-height:620px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-ambient{
  position:absolute;
  inset:10% auto auto 50%;
  transform:translateX(-50%);
  width:540px;
  height:540px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(41,102,174,.18), rgba(41,102,174,0) 65%);
  filter:blur(4px);
}
.hero-phone,
.hero-stack{
  position:relative;
  border-radius:42px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(237,242,247,.95);
  box-shadow:var(--shadow-lg);
}
.hero-phone{
  width:min(360px,62vw);
  z-index:3;
}
.hero-stack{
  position:absolute;
  width:min(228px,34vw);
  z-index:2;
}
.hero-card-left{left:3%;top:13%;transform:rotate(-7deg)}
.hero-card-right{right:0;bottom:10%;transform:rotate(7deg)}
.hero-logo-chip{
  position:absolute;
  left:4%;
  bottom:8%;
  z-index:4;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border-radius:20px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(220,230,238,.8);
  box-shadow:var(--shadow);
}
.hero-logo-chip img{width:40px;height:40px;border-radius:12px}
.hero-logo-chip strong{display:block;font-size:15px}
.hero-logo-chip small{display:block;font-size:12px;color:var(--muted-2)}
.value-strip{padding:0 0 24px}
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.value-grid article{
  background:rgba(255,255,255,.84);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow-sm);
}
.value-grid strong{display:block;font-size:18px;color:var(--brand);margin-bottom:6px}
.value-grid p{font-size:14px;color:var(--muted)}
.section{padding:96px 0}
.section-soft{background:linear-gradient(180deg,#f4f7fb 0%, #f8fafc 100%);border-top:1px solid rgba(220,230,238,.75);border-bottom:1px solid rgba(220,230,238,.75)}
.section-head{margin-bottom:42px;max-width:860px}
.section-head.narrow{max-width:760px}
.section-head h2,.split-panel h2,.pricing-head h2,.security-copy h2,.cta-card h2,.legal-card h1{font-size:clamp(38px,4.2vw,58px)}
.section-head p,.lead,.pricing-head p,.security-copy p,.cta-card p{font-size:18px;color:var(--muted);max-width:760px}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.feature-card{
  background:rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius:28px;
  padding:28px;
  min-height:220px;
  box-shadow:var(--shadow-sm);
  transition:transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.icon-wrap{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:16px;
  margin-bottom:22px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:20px;
  font-weight:800;
}
.feature-card h3{font-size:22px;margin-bottom:9px}
.feature-card p{font-size:15px;color:var(--muted)}
.showcase-block{padding:0}
.mosaic-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  gap:18px;
  align-items:start;
}
.mosaic-card{
  margin:0;
  background:rgba(255,255,255,.94);
  border:1px solid var(--line);
  border-radius:30px;
  padding:14px;
  box-shadow:var(--shadow-sm);
}
.mosaic-card img{width:100%;border-radius:22px}
.mosaic-card figcaption{padding:14px 6px 4px;font-size:14px;font-weight:700;color:#486079}
.mosaic-card.tall{grid-row:span 2}
.split-panel{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:58px;
  align-items:center;
}
.checks{list-style:none;padding:0;margin:24px 0 0;display:grid;gap:12px}
.checks li{font-size:16px;color:#3f546b}
.checks li::before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  width:24px;
  height:24px;
  margin-right:10px;
  border-radius:8px;
  background:var(--accent-soft);
  color:var(--accent);
  font-weight:900;
}
.trade-card{
  background:linear-gradient(180deg,#0d325e 0%, #0a2748 100%);
  color:#fff;
  border-radius:32px;
  padding:34px;
  box-shadow:var(--shadow);
}
.trade-title{font-size:22px;font-weight:800;margin-bottom:18px}
.pill-wrap{display:flex;gap:10px;flex-wrap:wrap}
.pill-wrap span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  font-size:14px;
}
.pricing-head{text-align:center;max-width:780px;margin:0 auto 42px}
.pricing-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;max-width:860px;margin:auto}
.price-card{
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow-sm);
}
.price-card.featured{border-color:#bfd2e2;box-shadow:var(--shadow)}
.price-badge{
  position:absolute;
  top:20px;
  right:20px;
  padding:7px 10px;
  border-radius:999px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:12px;
  font-weight:800;
}
.price-card h3{font-size:22px}
.price{margin:18px 0 10px;color:var(--brand);font-size:42px;font-weight:800;letter-spacing:-.05em}
.price small{font-size:15px;font-weight:600;color:var(--muted);letter-spacing:0}
.price-note{font-size:15px;color:var(--muted)}
.trial-banner{
  max-width:860px;
  margin:18px auto 0;
  padding:18px 22px;
  text-align:center;
  border-radius:20px;
  background:#eef5fb;
  border:1px solid #d6e2ec;
  color:#39536d;
}
.pricing-legal{max-width:860px;margin:14px auto 0;color:var(--muted-2);font-size:12px;text-align:center}
.security-slab{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:start;
}
.security-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.security-grid article{
  background:linear-gradient(180deg,#0f335f 0%, #0a2748 100%);
  color:#fff;
  border-radius:28px;
  padding:24px;
  box-shadow:var(--shadow);
}
.security-grid span{
  display:inline-grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  margin-bottom:20px;
  background:rgba(255,255,255,.08);
  color:#c8dbed;
  font-size:13px;
  font-weight:800;
}
.security-grid h3{font-size:20px;margin-bottom:8px}
.security-grid p{font-size:14px;color:#cbdae8}
.faq-list{display:grid;gap:14px;max-width:900px}
.faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:0 22px;
  box-shadow:var(--shadow-sm);
}
.faq-item summary{
  cursor:pointer;
  list-style:none;
  font-size:18px;
  font-weight:750;
  padding:20px 0;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{padding:0 0 20px;color:var(--muted);font-size:15px;max-width:760px}
.cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:42px;
  border-radius:32px;
  background:linear-gradient(180deg,#0d325e 0%, #0a2748 100%);
  color:#fff;
  box-shadow:var(--shadow-lg);
}
.cta-card .eyebrow{color:#aec7de}
.cta-card p{color:#d0deea}
.cta-side{display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.cta-note{color:#b7cada;font-size:12px}
.appstore-badge{
  display:flex;
  align-items:center;
  gap:11px;
  min-width:210px;
  padding:12px 18px;
  border-radius:16px;
  background:#050505;
  color:#fff;
}
.appstore-badge .apple{font-size:28px}
.appstore-badge small,.appstore-badge b{display:block}
.appstore-badge small{font-size:10px}
.appstore-badge b{font-size:20px;line-height:1}
footer{
  background:#081f3a;
  color:#fff;
  padding:58px 0 22px;
}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:52px}
.footer-grid>div{display:flex;flex-direction:column;gap:8px}
.footer-grid p{color:#a8bbcd;max-width:380px}
.footer-grid b{margin-bottom:6px}
.footer-grid a:not(.brand){font-size:14px;color:#c2d2e0}
.footer-bottom{
  margin-top:42px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.11);
  color:#8fa4b9;
  font-size:13px;
}
.legal{padding:68px 0 92px}
.legal-card{
  max-width:920px;
  margin:auto;
  background:rgba(255,255,255,.95);
  border:1px solid var(--line);
  border-radius:34px;
  padding:46px;
  box-shadow:var(--shadow);
}
.legal-card h1{margin-bottom:10px}
.legal-card h2{margin-top:34px;font-size:25px}
.legal-card h3{margin-top:24px;font-size:19px}
.legal-card p,.legal-card li{color:var(--muted)}
.legal-card ul{padding-left:22px}
.notice{
  margin-top:14px;
  border-radius:18px;
  padding:16px 18px;
  background:#f4f8fc;
  border:1px solid var(--line);
  color:#566b82 !important;
}
.business-meta{padding-top:20px;margin-top:28px;border-top:1px solid var(--line)}
.legal-card a{color:var(--brand);text-decoration:underline;text-underline-offset:2px}
.support-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin:26px 0}
.support-box{
  border:1px solid var(--line);
  background:var(--card-2);
  border-radius:22px;
  padding:22px;
}
.support-box h2{font-size:20px;margin:0 0 8px}
.support-box p{font-size:15px}
.support-callout{
  margin-top:28px;
  padding:26px;
  border-radius:24px;
  background:linear-gradient(180deg,#0d325e 0%, #0a2748 100%);
  color:#fff;
}
.support-callout h2{margin:0 0 10px;font-size:24px}
.support-callout p{color:#d2deeb}
.support-callout a{color:#fff}
.empty-state{padding:120px 0;text-align:center}
.empty-state h1{font-size:58px;margin-bottom:10px}
.empty-state p{max-width:560px;margin:0 auto 22px;color:var(--muted)}
@media (max-width: 1040px){
  .hero{grid-template-columns:1fr;gap:46px}
  .hero-copy{text-align:center}
  .hero-sub{margin-left:auto;margin-right:auto}
  .hero-actions,.hero-meta{justify-content:center}
  .hero-visual{min-height:560px}
  .hero-card-left{left:6%}
  .hero-card-right{right:4%}
  .value-grid,.feature-grid,.security-grid{grid-template-columns:1fr 1fr}
  .split-panel,.security-slab{grid-template-columns:1fr;gap:34px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-grid>div:first-child{grid-column:1 / -1}
}
@media (max-width: 820px){
  .nav-links{display:none}
  .mosaic-grid{grid-template-columns:1fr 1fr}
  .mosaic-card.tall{grid-row:auto}
  .pricing-grid,.support-grid{grid-template-columns:1fr}
}
@media (max-width: 620px){
  .shell{width:min(var(--max),calc(100% - 28px))}
  .nav{height:68px}
  .brand{font-size:20px}
  .brand img{width:36px;height:36px}
  .btn-small{min-height:40px;padding:0 13px}
  .hero{padding:52px 0 66px}
  .hero h1{font-size:46px}
  .hero-sub,.section-head p,.lead,.pricing-head p,.security-copy p,.cta-card p{font-size:17px}
  .hero-visual{min-height:450px}
  .hero-phone{width:280px;border-radius:28px}
  .hero-stack{width:150px;border-radius:24px}
  .hero-card-left{left:1%;top:9%}
  .hero-card-right{right:2%;bottom:18%}
  .hero-logo-chip{left:2%;bottom:3%;padding:10px 12px}
  .section{padding:74px 0}
  .value-grid,.feature-grid,.mosaic-grid,.security-grid,.footer-grid{grid-template-columns:1fr}
  .section-head h2,.split-panel h2,.pricing-head h2,.security-copy h2,.cta-card h2,.legal-card h1{font-size:36px}
  .cta-card{padding:30px;align-items:flex-start;flex-direction:column}
  .cta-side{align-items:flex-start}
  .legal-card{padding:28px 22px;border-radius:28px}
  .legal-card h2{font-size:22px}
  .empty-state h1{font-size:42px}
}
.quote-tax-focus{padding-top:38px}
.focus-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.focus-card{border:1px solid var(--line);border-radius:32px;padding:36px;background:rgba(255,255,255,.95);box-shadow:var(--shadow-sm)}
.focus-card h2{font-size:clamp(34px,3.7vw,50px);margin-bottom:16px}
.focus-card>p{color:var(--muted);font-size:17px;max-width:580px}
.focus-points{display:flex;flex-wrap:wrap;gap:9px;margin-top:24px}
.focus-points span{padding:9px 12px;border-radius:999px;background:var(--brand-soft);color:var(--brand);font-size:13px;font-weight:700;border:1px solid #dbe8f2}
.focus-dark{background:linear-gradient(180deg,#0d325e 0%,#0a2748 100%);color:#fff;border-color:transparent;box-shadow:var(--shadow)}
.focus-dark .eyebrow{color:#b7cde1}.focus-dark>p{color:#d1deea}.focus-dark .focus-points span{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.12);color:#fff}
@media(max-width:820px){.focus-grid{grid-template-columns:1fr}}
@media(max-width:620px){.focus-card{padding:28px}.quote-tax-focus{padding-top:24px}}

.demo-section{padding-top:40px}
.demo-head{text-align:center;margin-left:auto;margin-right:auto}
.demo-head p{margin-left:auto;margin-right:auto}
.demo-frame{max-width:1120px;margin:0 auto;border:1px solid var(--line);background:#fff;border-radius:34px;padding:12px;box-shadow:var(--shadow-lg)}
.demo-video{display:block;width:100%;aspect-ratio:16/9;border-radius:25px;background:#eef3f8}
.demo-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;max-width:1040px;margin:22px auto 0}
.demo-benefits article{background:rgba(255,255,255,.88);border:1px solid var(--line);border-radius:22px;padding:20px;box-shadow:var(--shadow-sm)}
.demo-benefits article>span{display:inline-grid;place-items:center;width:34px;height:34px;border-radius:11px;background:var(--brand-soft);color:var(--brand);font-size:11px;font-weight:800;margin-bottom:14px}
.demo-benefits strong{display:block;font-size:17px;color:var(--ink);margin-bottom:5px}
.demo-benefits p{font-size:14px;color:var(--muted)}
.demo-tagline{max-width:760px;margin:24px auto 0;text-align:center;font-size:24px;font-weight:800;letter-spacing:-.03em;color:var(--brand)}
@media(max-width:820px){.demo-benefits{grid-template-columns:1fr}}
@media(max-width:620px){.demo-section{padding-top:24px}.demo-frame{padding:7px;border-radius:24px}.demo-video{border-radius:18px}.demo-tagline{font-size:20px}}
