:root {
  --red: #d51528;
  --red-dark: #b01020;
  --ink: #121212;
  --dark: #0f0f0f;
  --card-dark: #1a1a1a;
  --line-dark: #2a2a2a;
  --paper: #ffffff;
  --line: #e6e6e6;
  --muted-dark: rgba(255,255,255,.7);
  --muted: #5a5a5a;
  --head: "Anton", Impact, sans-serif;
  --body: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; font-family: var(--body); font-size: 17px; line-height: 1.55; color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--head); font-weight: 400; text-transform: uppercase; margin: 0; }
h1 { font-size: clamp(44px, 7vw, 76px); line-height: 1; letter-spacing: 1px; }
h2 { font-size: clamp(34px, 5vw, 50px); line-height: 1.05; letter-spacing: 1px; margin-bottom: 48px; }
h3 { font-size: 20px; line-height: 1.2; letter-spacing: .5px; margin: 16px 0 8px; }
p { margin: 0; }
.red { color: var(--red); }
.center { text-align: center; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
section { padding: 112px 0; }
.dark { background: var(--dark); color: #fff; }
.light { background: var(--paper); }
.eyebrow { color: var(--red); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.i { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic { width: 30px; height: 30px; color: var(--red); }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--red); color: #fff; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 17px 30px; border: 2px solid var(--red); transition: background .15s; }
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn .i { transition: transform .15s; }
.btn:hover .i { transform: translateX(4px); }
.btn-sm { padding: 10px 18px; font-size: 14px; white-space: nowrap; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }
.btn-white { background: #fff; color: var(--red); border-color: #fff; }
.btn-white:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-block { width: 100%; margin-top: 32px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 10; background: #fff; border-bottom: 1px solid var(--line); }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 20px; }
.logo img { height: 40px; width: auto; }
.nav-links { display: flex; gap: 32px; }
.nav-links a, .nav-login { text-decoration: none; text-transform: uppercase; font-size: 14px; font-weight: 600; letter-spacing: .4px; color: rgba(18,18,18,.7); }
.nav-links a:hover, .nav-login:hover { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 22px; }

/* hero */
.hero { padding: 96px 0 112px; background: radial-gradient(ellipse at 85% 20%, rgba(213,21,40,.35), transparent 55%), linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0/48px 48px, linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0/48px 48px, var(--dark); }
.pill { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 99px; padding: 7px 16px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 28px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.lead { font-size: 20px; color: var(--muted-dark); margin: 28px 0 36px; max-width: 540px; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
.ticks { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-wrap: wrap; gap: 10px 26px; color: var(--muted-dark); font-size: 15px; }
.ticks li, .checks li { position: relative; padding-left: 26px; }
.ticks li::before, .checks li::before { content: ""; position: absolute; left: 0; top: .3em; width: 15px; height: 15px; border-radius: 50%; border: 2px solid var(--red); background: no-repeat center/9px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6.5l2.5 2.5L10 3.5' fill='none' stroke='%23d51528' stroke-width='2'/%3E%3C/svg%3E"); }

/* cards */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card-l { padding: 30px 26px; border: 1px solid var(--line); border-top: 3px solid var(--red); background: #fff; }
.card-l p { color: var(--muted); }

/* steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before { content: ""; position: absolute; top: 34px; left: 34px; right: calc((100% - 96px) / 4 - 34px); height: 2px; background: var(--line); }
.num { position: relative; display: grid; place-items: center; width: 68px; height: 68px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--head); font-size: 22px; box-shadow: 0 0 0 8px #fff; }
.steps h3 { margin-top: 26px; }
.steps p { color: var(--muted); }
.demo-note { margin-top: 56px; font-size: 18px; }
.demo-note a { color: var(--red); font-weight: 700; }

/* pricing */
.pricing { background: radial-gradient(ellipse at 50% 0%, rgba(213,21,40,.28), transparent 50%), var(--dark); }
.price-card { max-width: 560px; margin: 0 auto; background: var(--card-dark); border: 1px solid var(--red); padding: 44px 40px; }
.price { font-family: var(--head); font-size: 96px; line-height: 1; text-align: center; margin: 6px 0 12px; }
.cur { font-size: 40px; vertical-align: top; position: relative; top: 8px; margin-right: 4px; }
.per { font-family: var(--body); font-size: 18px; color: var(--muted-dark); margin-left: 6px; }
.muted { color: var(--muted-dark); }
.checks { list-style: none; padding: 28px 0 0; margin: 28px 0 0; border-top: 1px solid var(--line-dark); display: grid; gap: 12px; }
.fine { margin-top: 16px; text-align: center; font-size: 14px; color: var(--muted-dark); }

/* faq */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 22px 36px 22px 0; font-family: var(--head); text-transform: uppercase; font-size: 19px; letter-spacing: .5px; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 16px; font-size: 28px; color: var(--red); font-family: var(--body); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 22px; color: var(--muted); }

/* cta + footer */
.cta { background: var(--red); color: #fff; padding: 100px 0; }
.cta h2 { margin-bottom: 20px; }
.cta p { font-size: 20px; margin-bottom: 34px; }
.foot { background: var(--dark); color: var(--muted-dark); padding: 44px 0; font-size: 15px; }
.foot-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot nav { display: flex; gap: 24px; }
.foot a { text-decoration: none; }
.foot a:hover { color: #fff; }
.foot img { filter: brightness(0) invert(1); }

@media (max-width: 960px) {
  .grid4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 720px) {
  .nav-links, .nav-login { display: none; }
  section { padding: 80px 0; }
  .wrap { padding: 0 16px; }
  .grid4, .steps { grid-template-columns: 1fr; }
  .price-card { padding: 36px 22px; }
  .foot-row { flex-direction: column; align-items: flex-start; }
}

/* small-carrier strip */
.strip { background: var(--red); color: #fff; padding: 26px 0; }
.strip-row { display: flex; align-items: center; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; }
.strip-lead { font-family: var(--head); text-transform: uppercase; font-size: 24px; letter-spacing: .5px; }
.strip ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 28px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 15px; }
.strip li::before { content: "✕"; margin-right: 8px; opacity: .7; }

/* feature spotlights */
.spot { display: grid; grid-template-columns: 1fr 1.45fr; gap: 64px; align-items: center; padding: 56px 0; border-top: 1px solid var(--line-dark); }
.spot:first-of-type { border-top: 0; padding-top: 8px; }
.spot.flip .spot-text { order: 2; }
.spot.flip { grid-template-columns: 1fr 1.25fr; }
.spot-num { color: var(--red); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 14px; }
.spot h3 { font-size: clamp(28px, 3.2vw, 38px); line-height: 1.05; margin: 12px 0 18px; }
.spot-text > p:not(.spot-num) { color: var(--muted-dark); font-size: 18px; }
.spot-text em { color: #fff; font-style: normal; font-weight: 700; }
.spot .checks { border-top: 0; padding-top: 0; margin-top: 22px; }
.spot-img { margin: 0; }
.spot-img img { width: 100%; border-radius: 12px; box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 30px 80px rgba(0,0,0,.55); }
/* the phone already has its own frame and a white surround, so it stands on its own */
.spot-img.phone { display: flex; justify-content: center; }
.spot-img.phone img { width: min(320px, 100%); border-radius: 0; box-shadow: none; filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)); }
.tag { display: inline-block; margin-left: 8px; padding: 2px 9px; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; color: #fff; font-size: 11px; letter-spacing: 1.5px; vertical-align: 1px; }
.optional-note { margin-top: 22px; padding: 14px 16px; border-left: 3px solid var(--red); background: rgba(255,255,255,.05); font-size: 16px !important; color: var(--muted-dark); }
.optional-note strong { color: #fff; }

/* everything else */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.mini { padding: 26px 24px 26px 0; border-bottom: 1px solid var(--line); }
.mini h3 { font-size: 19px; margin: 0 0 6px; }
.mini h3::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--red); margin-right: 10px; vertical-align: middle; position: relative; top: -2px; }
.mini p { color: var(--muted); font-size: 16px; }
.price-intro { max-width: 620px; margin: -24px auto 48px; text-align: center; color: var(--muted-dark); font-size: 19px; }

@media (max-width: 960px) {
  .spot { grid-template-columns: 1fr; gap: 32px; }
  .spot.flip { grid-template-columns: 1fr; }
  .spot.flip .spot-text { order: 0; }
  .mini-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .mini-grid { grid-template-columns: 1fr; }
  .strip-row { flex-direction: column; align-items: flex-start; }
}
.spot.no-img { grid-template-columns: 1fr; max-width: 760px; }

/* ---- conversion pieces ---- */
.tint { background: #f4f4f2; }
.tint .mini-grid { border-top-color: #e2e2de; }
.tint .mini { border-bottom-color: #e2e2de; }

.mid-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: 40px; padding: 30px 34px; border: 1px solid rgba(213,21,40,.55); background: linear-gradient(90deg, rgba(213,21,40,.16), rgba(213,21,40,.04)); }
.mid-cta-title { font-family: var(--head); text-transform: uppercase; font-size: 28px; letter-spacing: .5px; line-height: 1.1; }
.mid-cta-sub { color: var(--muted-dark); margin-top: 6px; }

.price-row { display: grid; grid-template-columns: minmax(0, 560px) minmax(0, 380px); gap: 28px; justify-content: center; align-items: start; }
.price-row .price-card { margin: 0; }
.after-trial { padding: 34px 30px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.03); }
.after-trial h3 { font-size: 24px; margin: 0 0 18px; }
.after-trial ol { margin: 0; padding: 0; list-style: none; counter-reset: s; display: grid; gap: 16px; }
.after-trial li { counter-increment: s; position: relative; padding-left: 40px; color: var(--muted-dark); }
.after-trial li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--head); font-size: 14px; display: grid; place-items: center; }
.after-trial strong { color: #fff; }
.after-trial-foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-dark); font-weight: 700; color: #fff; }

.cta-small { margin: 22px 0 0 !important; font-size: 16px !important; opacity: .9; }
.cta-small a { font-weight: 700; }

.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(15,15,15,.94); backdrop-filter: blur(6px); transform: translateY(110%); transition: transform .2s ease; }
  .mobile-cta.on { transform: none; }
  .mobile-cta .btn { margin: 0; padding: 14px 18px; font-size: 15px; }
  .mid-cta { padding: 24px 20px; }
  .mid-cta .btn { width: 100%; }
}
@media (max-width: 960px) {
  .price-row { grid-template-columns: minmax(0, 560px); }
}
@media (prefers-reduced-motion: reduce) { .mobile-cta { transition: none; } }
.fine a { color: #fff; font-weight: 600; }
.faq details p a { color: var(--red); font-weight: 600; }

/* ---- legal pages (privacy, terms) and the 404 ---- */
.legal { padding: 72px 0 96px; }
.legal h1 { color: var(--ink); font-size: clamp(40px, 6vw, 60px); }
.legal-date { color: var(--muted); margin: 12px 0 32px; font-size: 15px; }
.legal h2 { font-size: 26px; margin: 44px 0 12px; }
.legal h3 { font-size: 18px; margin: 22px 0 6px; }
.legal p, .legal li { color: #2b2b2b; font-size: 17px; line-height: 1.65; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 12px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--red); font-weight: 600; }
.legal-summary { border: 1px solid var(--line); border-left: 4px solid var(--red); background: #f7f7f5; padding: 20px 24px; margin-bottom: 8px; }
.legal-summary h2 { margin: 0 0 10px; font-size: 22px; }
.legal-summary ul { margin: 0; }
.legal-table { overflow-x: auto; margin: 8px 0 16px; }
.legal-table table { width: 100%; border-collapse: collapse; font-size: 15px; }
.legal-table th, .legal-table td { text-align: left; vertical-align: top; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.legal-table th { font-family: var(--head); text-transform: uppercase; font-weight: 400; letter-spacing: .5px; background: #f7f7f5; }
.notfound { padding: 120px 0; text-align: center; }
.notfound h1 { color: var(--ink); margin: 10px 0 16px; }
.notfound p { color: var(--muted); font-size: 19px; margin-bottom: 30px; }
.notfound .actions { justify-content: center; }
.notfound .btn-ghost { color: var(--ink); border-color: var(--line); }
@media (max-width: 720px) { .legal { padding: 48px 0 72px; } }

/* ---- hero: copy on top, the Loads screen full width underneath ---- */
.hero { padding-bottom: 0; position: relative; z-index: 2; }
.hero-copy { max-width: 760px; }
.hero-visual { position: relative; margin: 64px auto 0; padding-bottom: 0; max-width: 1080px; }
.app-frame { position: relative; z-index: 1; background: #fff; border-radius: 12px 12px 0 0; overflow: hidden;
  box-shadow: 0 -2px 0 rgba(255,255,255,.08), 0 40px 90px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
.app-bar { display: flex; align-items: center; gap: 7px; height: 36px; padding: 0 14px; background: #eceef1; border-bottom: 1px solid #dfe2e6; }
.app-bar span { width: 11px; height: 11px; border-radius: 50%; background: #d4d7dc; }
.app-bar span:first-child { background: #ee6a5f; } .app-bar span:nth-child(2) { background: #f5be4f; } .app-bar span:nth-child(3) { background: #62c655; }
.app-bar em { margin-left: 14px; font-style: normal; font-size: 13px; color: #6b7280; font-family: var(--body); letter-spacing: .2px; }
.app-frame img { width: 100%; height: auto; display: block; }
.hero-phone { position: absolute; z-index: 2; left: -185px; bottom: -80px; width: 200px; height: auto;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.55)); }
.hero-note { position: absolute; z-index: 3; right: -24px; bottom: -46px; display: flex; gap: 12px; align-items: flex-start;
  max-width: 300px; padding: 14px 16px; background: #fff; color: var(--ink); border-radius: 10px; font-size: 14px; line-height: 1.4;
  box-shadow: 0 18px 45px rgba(0,0,0,.35); }
.hero-note strong { font-weight: 700; }
.hero-note-tick { flex: none; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: #157f3d; color: #fff; font-weight: 700; font-size: 14px; }
/* narrower desktops: no room beside the table, so the phone steps back */
@media (max-width: 1460px) { .hero-phone { left: -110px; width: 180px; bottom: -70px; } }
@media (max-width: 1320px) { .hero-phone { display: none; } .hero-note { right: 16px; } }
@media (max-width: 720px) {
  .hero-visual { margin-top: 44px; }
  .hero-phone { display: none; }
  .hero-note { position: relative; left: auto; bottom: auto; max-width: none; margin: 14px 0 0; font-size: 13px; }
  .hero { padding-bottom: 44px; }
  .app-frame { border-radius: 12px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .app-bar em { display: none; }
}

/* hero copy centred above the Loads screen */
.hero-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.hero-copy .pill { margin-left: auto; margin-right: auto; }
.hero-copy .lead { margin-left: auto; margin-right: auto; max-width: 640px; }
.hero-copy .actions, .hero-copy .ticks { justify-content: center; }
.hero-copy .ticks li { text-align: left; }
@media (max-width: 720px) {
  .hero-copy .actions .btn { flex: 1 1 auto; }
}

/* no phone in the hero: the note sits centred on the screenshot's bottom edge */
.hero-note { right: auto; left: 50%; transform: translateX(-50%); bottom: -40px; max-width: 420px; width: max-content; }
@media (max-width: 1320px) { .hero-note { right: auto; } }
@media (max-width: 720px) { .hero-note { left: auto; transform: none; width: auto; } }

/* ---- the live demo Loads table in the hero ---- */
.demo { background: #fff; color: #14161a; font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif; }
.demo-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.demo-table th { text-align: left; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: #545b66;
  background: #f7f8fa; padding: 11px 16px; border-bottom: 1px solid #e2e5ea; white-space: nowrap; }
.demo-table td { padding: 10px 16px; border-bottom: 1px solid #eef0f3; white-space: nowrap; vertical-align: middle; }
.demo-table th + th, .demo-table td + td { border-left: 1px solid #f2f4f6; }
.demo-table tr:hover td { background: #fcfcfd; }
.demo-table .c-num { text-align: right; font-variant-numeric: tabular-nums; }
.demo-table .c-total, .demo-table .c-rpm { color: #545b66; font-weight: 600; }
.demo-table .c-owed { font-weight: 700; }
.demo-table .c-owed.owed { color: #b0141c; }
.demo-table .c-owed.paid { color: #157f3d; }
.demo-table .c-owed.none { color: #9aa1ac; font-weight: 500; }
.dlink { border-bottom: 1px dotted #9aa1ac; }
.dpill { display: inline-block; border: 0; border-radius: 999px; padding: 3px 11px; font: inherit; font-size: 12.5px; font-weight: 600;
  cursor: pointer; transition: box-shadow .15s, transform .15s; }
.dpill:hover, .dpill[aria-expanded="true"] { box-shadow: 0 0 0 2px #d51528; }
.dpill:focus-visible { outline: 2px solid #d51528; outline-offset: 2px; }
.dpill.grey { background: #edeff2; color: #4a515c; }
.dpill.pink { background: #fce7f3; color: #be185d; }
.dpill.blue { background: #e8f0fe; color: #1a4fa0; }
.dpill.indigo { background: #e0e7ff; color: #4338ca; }
.dpill.teal { background: #ccfbf1; color: #0f766e; }
.dpill.orange { background: #ffedd5; color: #c2410c; }
.dpill.yellow { background: #fef9c3; color: #854d0e; }
.dpill.green { background: #e8f6ed; color: #157f3d; }
.dpill.red { background: #fde2e2; color: #a50f14; }
.dpill.cancelled { background: #4b5260; color: #fff; text-decoration: line-through; }
.dpill.pulse { animation: dpulse 1.8s ease-in-out 3; }
@keyframes dpulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(213,21,40,.55); } 50% { box-shadow: 0 0 0 6px rgba(213,21,40,0); } }
.demo-menu { position: absolute; z-index: 40; min-width: 180px; padding: 6px; background: #fff; border: 1px solid #e2e5ea; border-radius: 10px;
  box-shadow: 0 12px 32px rgba(14,15,17,.18), 0 2px 6px rgba(14,15,17,.08); font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif; }
.demo-menu button { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; padding: 6px 8px; border: 0;
  border-radius: 7px; background: transparent; cursor: pointer; font: inherit; font-size: 13px; }
.demo-menu button:hover, .demo-menu button:focus { background: #f1f3f5; outline: none; }
.demo-menu .tick { color: #d51528; font-weight: 700; width: 14px; }
.demo-foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding: 12px 16px; background: #f7f8fa;
  font-size: 13.5px; color: #545b66; }
.demo-sum strong { color: #14161a; font-size: 15px; font-variant-numeric: tabular-nums; transition: color .3s; }
.demo-sum strong.bump { color: #157f3d; }
.demo-hint { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #b0141c; }
.demo-dot { width: 8px; height: 8px; border-radius: 50%; background: #d51528; animation: dpulse 1.8s ease-in-out infinite; }
.demo-tag { margin-left: auto; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #6b7280;
  background: #fff; border: 1px solid #dfe2e6; border-radius: 99px; padding: 2px 9px; }
.hero-note { transition: transform .25s ease, opacity .25s ease; }
.hero-note.flash { animation: noteflash .5s ease; }
@keyframes noteflash { 0% { opacity: .2; } 100% { opacity: 1; } }
.demo-hint a { color: #fff; background: #d51528; text-decoration: none; font-weight: 700; padding: 5px 12px; border-radius: 99px; margin-left: 6px; }
.demo-hint a:hover { background: #b01020; }

/* the window hangs over the edge of the hero into the section below */
.hero-visual { margin-bottom: -150px; }
.app-frame { border-radius: 12px; border-bottom: 1px solid rgba(0,0,0,.08); }
.hero + section { padding-top: 250px; }

@media (max-width: 720px) {
  .demo-table { font-size: 13.5px; }
  .demo-table th, .demo-table td { padding: 9px 10px; }
  .hero-visual { margin-bottom: -60px; }
  .hero + section { padding-top: 150px; }
  .hero-note { position: relative; left: auto; transform: none; width: auto; margin-top: 14px; }
}
/* keep the window's negative margin inside the hero, so the window - not
   the hero's dark background - hangs over into the next section */
.hero > .wrap { display: flow-root; }

/* hero rhythm: pill, headline, text, buttons, reassurance, then the demo -
   tight enough that the demo starts on the first screen */
.hero { padding-top: 68px; }
.hero-copy .pill { margin-bottom: 22px; }
.hero-copy .lead { margin: 22px auto 30px; font-size: 20px; line-height: 1.5; }
.hero-copy .ticks { margin-top: 24px; font-size: 16px; color: rgba(255,255,255,.85); gap: 10px 28px; }
.hero-visual { margin-top: 48px; }
@media (max-width: 720px) {
  .hero { padding-top: 34px; }
  .hero-copy .pill { font-size: 11.5px; padding: 6px 13px; margin-bottom: 18px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy .lead { font-size: 17px; margin: 16px auto 22px; }
  .hero-copy .actions { gap: 10px; }
  .hero-copy .actions .btn { padding: 14px 18px; font-size: 15px; }
  .hero-copy .ticks { margin-top: 18px; font-size: 14.5px; gap: 6px 16px; }
  .hero-visual { margin-top: 30px; }
}
.demo-more-btn { border: 0; background: none; cursor: pointer;
  font: inherit; font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif; font-size: 13.5px; font-weight: 600; color: #b0141c; }
.demo-cols { font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif; }
.demo-group { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 8px; }
.demo-group-name { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #545b66; min-width: 92px; }
.demo-chip { font-size: 12.5px; color: #14161a; background: #f1f3f5; border: 1px solid #e2e5ea; border-radius: 6px; padding: 3px 8px; }
.demo-cols-note { margin: 6px 0 0; font-size: 12.5px; color: #5f6873; }
@media (max-width: 720px) { .demo-group-name { min-width: 100%; } }

/* the extra columns open from the window's top bar, over the table */
.app-frame { overflow: visible; }
.app-bar { position: relative; border-radius: 12px 12px 0 0; }
.demo { border-radius: 0 0 12px 12px; overflow: hidden; }
.demo-tag { margin-left: auto; }
.demo-more-btn { width: auto; margin-left: 8px; padding: 3px 11px; border: 1px solid #e3c7c9; border-radius: 99px; background: #fff;
  font-size: 12px; font-weight: 700; color: #b0141c; text-align: center; }
.demo-more-btn:hover, .demo-more-btn[aria-expanded="true"] { background: #fdecec; text-decoration: none; }
.demo-cols { position: absolute; z-index: 20; top: 42px; right: 10px; width: min(600px, calc(100% - 20px)); padding: 14px 16px 12px;
  background: #fff; border: 1px solid #e2e5ea; border-radius: 10px; box-shadow: 0 16px 40px rgba(14,15,17,.22); }
.demo-cols[hidden] { display: none; }
.demo-cols .demo-cols-note { margin-top: 8px; }
.hero-visual.cols-open .hero-note { visibility: hidden; }
@media (max-width: 720px) {
  .demo-cols { max-height: 62vh; overflow-y: auto; }
  .demo-more-btn { margin-left: 6px; }
}

/* ---- bigger header and hero type ---- */
.nav-row { height: 76px; }
.logo img { height: 48px; }
.nav-links { gap: 36px; }
.nav-links a, .nav-login { font-size: 15.5px; }
.nav .btn-sm { padding: 12px 22px; font-size: 15px; }
html { scroll-padding-top: 84px; }

.hero { padding-top: 76px; }
.hero-copy { max-width: 980px; }
.hero-copy .pill { font-size: 14px; padding: 8px 18px; margin-bottom: 26px; }
.hero-copy h1 { font-size: clamp(52px, 8.2vw, 104px); line-height: .98; letter-spacing: 1.5px; }
.hero-copy .lead { font-size: 22.5px; max-width: 740px; margin: 26px auto 34px; }
.hero-copy .actions { gap: 16px; }
.hero-copy .actions .btn { font-size: 17px; padding: 20px 36px; }
.hero-copy .ticks { font-size: 17.5px; margin-top: 26px; gap: 12px 32px; }
.hero-copy .ticks li { padding-left: 29px; }
.hero-copy .ticks li::before { width: 18px; height: 18px; top: .2em; background-size: 11px; }
.hero-visual { margin-top: 56px; }

@media (max-width: 720px) {
  .nav-row { height: 66px; }
  .logo img { height: 42px; }
  .nav .btn-sm { padding: 11px 16px; font-size: 14px; }
  .hero { padding-top: 38px; }
  .hero-copy .pill { font-size: 12px; padding: 6px 14px; margin-bottom: 18px; }
  .hero-copy h1 { font-size: 50px; }
  .hero-copy .lead { font-size: 18.5px; margin: 18px auto 24px; }
  .hero-copy .actions .btn { font-size: 16px; padding: 16px 18px; }
  .hero-copy .ticks { font-size: 15.5px; margin-top: 18px; gap: 8px 18px; }
  .hero-visual { margin-top: 32px; }
}
.hero-copy .lead strong { white-space: nowrap; }

/* ---- phone fixes ---- */
.btn { text-align: center; }
@media (max-width: 720px) {
  /* hero: the label on one line, the headline in three */
  .hero-copy .pill { white-space: nowrap; font-size: clamp(9.5px, 2.85vw, 12px); letter-spacing: .8px; padding: 6px 12px; gap: 7px; }
  .hero-copy h1 { font-size: clamp(34px, 10.4vw, 50px); letter-spacing: .5px; }
  /* the demo's three columns fit on the screen */
  .demo-table { font-size: 13px; table-layout: auto; }
  .demo-table th, .demo-table td { padding: 8px 8px; }
  .demo-table th { font-size: 10.5px; letter-spacing: .05em; }
  .dpill { font-size: 11.5px; padding: 3px 8px; }
  .demo-foot { padding: 10px 10px; font-size: 12.5px; }
  .app-bar { padding: 0 10px; gap: 5px; }
  .demo-tag { font-size: 10px; padding: 2px 7px; }
  .demo-more-btn { font-size: 11px; padding: 3px 9px; margin-left: 5px; }
  /* feature screenshots use their phone crops edge to edge */
  .spot-img img { border-radius: 10px; }
  /* pricing: the long button stays on one line */
  .btn-block { font-size: 15px; letter-spacing: .5px; padding: 16px 12px; }
  /* footer: links wrap as whole links */
  .foot nav { flex-wrap: wrap; gap: 10px 22px; }
  .foot nav a { white-space: nowrap; }
}

/* the demo table scrolls sideways on smaller screens instead of losing columns,
   and phones show three loads so it stays short */
.demo-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; }
.demo-swipe { display: none; }
@media (max-width: 900px) {
  .demo-table { min-width: 760px; }
  .demo-swipe { display: block; width: 100%; font-size: 12px; color: #5f6873; font-weight: 600; }
}
@media (max-width: 720px) {
  .demo-table tbody tr:nth-child(n+4) { display: none; }
  .demo-table { min-width: 700px; }
}
