/* Quinbis Website V1
   Official web palette:
   Growth Green  #013D37
   Kinetic Lime  #77D650
   Engine Onyx   #0D0D0D
   White         #FFFFFF
*/


:root{
  --lime:#77D650;
  --green:#013D37;
  --onyx:#0D0D0D;
  --white:#FFFFFF;
  --ink-80:rgba(13,13,13,.80);
  --ink-72:rgba(13,13,13,.72);
  --ink-64:rgba(13,13,13,.64);
  --ink-48:rgba(13,13,13,.58);
  --ink-66:rgba(13,13,13,.66);
  --ink-62:rgba(13,13,13,.62);
  --ink-60:rgba(13,13,13,.60);
  --ink-56:rgba(13,13,13,.58);
  --ink-54:rgba(13,13,13,.58);
  --ink-52:rgba(13,13,13,.58);
  --ink-50:rgba(13,13,13,.58);
  --ink-46:rgba(13,13,13,.58);
  --ink-44:rgba(13,13,13,.58);
  --ink-32:rgba(13,13,13,.48);
  --ink-16:rgba(13,13,13,.16);
  --ink-14:rgba(13,13,13,.14);
  --ink-12:rgba(13,13,13,.12);
  --ink-08:rgba(13,13,13,.08);
  --ink-10:rgba(13,13,13,.10);
  --ink-06:rgba(13,13,13,.06);
  --ink-035:rgba(13,13,13,.035);
  --green-12:rgba(1,61,55,.12);
  --green-08:rgba(1,61,55,.08);
  --lime-28:rgba(119,214,80,.28);
  --sans:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
  --serif:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
  --shell:min(1380px, calc(100vw - 64px));
  --radius:28px;
  --radius-sm:18px;
  --shadow:0 30px 80px rgba(13,13,13,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--onyx);
  background:var(--white);
  font-family:var(--sans);
  font-weight:400;
  font-kerning:normal;
  font-feature-settings:"kern" 1,"liga" 1;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  font-synthesis:weight style;
}
h1,h2,h3{font-family:var(--sans);text-wrap:balance}
p{ text-wrap:pretty }
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
svg{display:block}
::selection{background:var(--lime);color:#013D37}

.skip-link{
  position:fixed;left:16px;top:16px;z-index:999;
  transform:translateY(-150%);
  background:var(--onyx);color:#fff;padding:12px 16px;border-radius:10px;
}
.skip-link:focus{transform:none}

.shell{width:var(--shell);margin-inline:auto}
.section{padding:150px 0}
.section-kicker{
  font-size:12px;font-weight:700;letter-spacing:.17em;text-transform:uppercase;
  color:var(--green);
}
.section-kicker-dark{color:var(--lime)}
em{
  font-family:var(--serif);
  font-style:italic;
  font-weight:400;
  letter-spacing:-.018em;
}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:50;
  background:var(--onyx);
  color:var(--white);
  border-bottom:1px solid rgba(255,255,255,.07);
  transition:
    background-color .32s cubic-bezier(.2,.7,.2,1),
    color .32s cubic-bezier(.2,.7,.2,1),
    border-color .32s ease,
    box-shadow .32s ease;
}

.site-header:not(.is-scrolled){
  background:#0D0D0D;
  color:#FFFFFF;
  border-bottom-color:rgba(255,255,255,.07);
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.site-header:not(.is-scrolled) .brand-logo-light{opacity:1}
.site-header:not(.is-scrolled) .brand-logo-dark{opacity:0}
.site-header:not(.is-scrolled) .brand-word{color:#FFFFFF}
.site-header:not(.is-scrolled) .desktop-nav a{color:rgba(255,255,255,.84)}
.site-header:not(.is-scrolled) .btn-nav{background:#77D650;color:#013D37}
.site-header:not(.is-scrolled) .btn-nav .btn-arrow{background:#0D0D0D;color:#77D650}

.site-header.is-scrolled{
  background:rgba(255,255,255,.96);
  color:var(--onyx);
  border-bottom-color:var(--ink-06);
  box-shadow:0 12px 34px rgba(13,13,13,.055);
  backdrop-filter:blur(18px) saturate(135%);
  -webkit-backdrop-filter:blur(18px) saturate(135%);
}
.nav-shell{
  height:92px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  transition:height .32s cubic-bezier(.2,.7,.2,1);
}
.site-header.is-scrolled .nav-shell{height:76px}
.brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  min-height:44px;
}
.brand-mark{
  width:58px;
  height:38px;
  display:block;
  flex:0 0 auto;
  position:relative;
  transform:translateY(1px);
}
.brand-logo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  transition:opacity .24s ease,transform .32s cubic-bezier(.2,.7,.2,1);
}
.brand-logo-light{opacity:1}
.brand-logo-dark{opacity:0}
.site-header.is-scrolled .brand-logo-light{opacity:0}
.site-header.is-scrolled .brand-logo-dark{opacity:1}
.site-header.is-scrolled .brand-logo{transform:scale(.96)}
.brand-word{
  color:var(--white);
  font-weight:700;
  font-size:24px;
  line-height:1;
  letter-spacing:-.03em;
  transition:color .28s ease;
}
.site-header.is-scrolled .brand-word{color:var(--onyx)}
.desktop-nav{
  display:flex;
  align-items:center;
  gap:36px;
}
.desktop-nav a{
  font-size:14px;
  font-weight:600;
  letter-spacing:-.005em;
  position:relative;
  color:rgba(255,255,255,.82);
  transition:color .25s ease;
}
.site-header.is-scrolled .desktop-nav a{color:var(--ink-80)}
.desktop-nav a:hover{color:var(--white)}
.site-header.is-scrolled .desktop-nav a:hover{color:var(--onyx)}
.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-9px;
  height:2px;
  background:var(--lime);
  transition:right .25s ease;
}
.desktop-nav a:hover::after{right:0}
.nav-actions{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease;
  will-change:transform;
}
.btn:hover{transform:translateY(-2px)}
.btn-nav{
  min-height:46px;
  padding:6px 8px 6px 19px;
  background:var(--lime);
  color:#013D37;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.05);
}
.site-header.is-scrolled .btn-nav{
  background:var(--onyx);
  color:var(--white);
}
.btn-arrow{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--onyx);
  color:var(--lime);
  font-size:15px;
  transition:background .25s ease,color .25s ease;
}
.site-header.is-scrolled .btn-nav .btn-arrow{
  background:var(--lime);
  color:#013D37;
}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.18);
  background:transparent;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
  transition:background .25s ease,border-color .25s ease;
}
.menu-toggle span{
  width:17px;
  height:1.5px;
  background:var(--white);
  transition:.25s;
}
.site-header.is-scrolled .menu-toggle{
  background:#fff;
  border-color:var(--ink-10);
}
.site-header.is-scrolled .menu-toggle span{background:var(--onyx)}
.menu-toggle[aria-expanded="true"] span:first-child{transform:translateY(3.75px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:last-child{transform:translateY(-3.75px) rotate(-45deg)}
.mobile-menu{
  background:var(--onyx);
  color:var(--white);
  border-top:1px solid rgba(255,255,255,.08);
  transition:background .25s ease,color .25s ease;
}
.site-header.is-scrolled .mobile-menu{
  background:#fff;
  color:var(--onyx);
  border-top-color:var(--ink-06);
}
.mobile-menu-inner{padding:28px 0 36px;display:grid;gap:0}
.mobile-menu a{
  padding:18px 0;
  font-size:30px;
  font-weight:700;
  border-bottom:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
}
.site-header.is-scrolled .mobile-menu a{border-bottom-color:var(--ink-06)}

.hero{
  padding:150px 0 70px;
  min-height:100svh;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(560px,1.08fr);
  gap:74px;
  align-items:center;
  min-height:650px;
}
.hero-copy{
  padding:18px 0 24px;
  max-width:660px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(13,13,13,.10);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  box-shadow:0 8px 24px rgba(13,13,13,.025);
  font-size:10px;
  font-weight:700;
  letter-spacing:.105em;
  text-transform:uppercase;
  margin-bottom:34px;
  color:rgba(13,13,13,.80);
}
.eyebrow-dot{
  width:7px;height:7px;background:var(--lime);border-radius:50%;
  box-shadow:0 0 0 4px rgba(119,214,80,.20);
}
.hero h1{
  font-size:clamp(66px,5.9vw,96px);
  line-height:.96;
  letter-spacing:-.040em;
  font-weight:500;
  margin:0;
  max-width:690px;
}
.hero h1 em{
  display:block;
  color:var(--green);
  font-size:.84em;
  line-height:.94;
  margin-top:15px;
  letter-spacing:-.008em;
}
.hero-lede{
  margin:32px 0 0;
  font-size:18px;
  line-height:1.54;
  color:rgba(13,13,13,.70);
  max-width:590px;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:34px;
}
.btn-primary{
  min-height:56px;
  padding:7px 8px 7px 22px;
  background:var(--green);
  color:var(--white);
  box-shadow:0 16px 34px rgba(13,13,13,.13);
}
.btn-primary:hover{box-shadow:0 20px 42px rgba(13,13,13,.19)}
.btn-arrow-lime{background:var(--lime)}
.text-link{
  display:inline-flex;align-items:center;gap:10px;
  font-size:14px;font-weight:600;position:relative;
}
.text-link::after{
  content:"";position:absolute;left:0;right:100%;bottom:-6px;height:1px;background:currentColor;
  transition:right .25s ease;
}
.text-link:hover::after{right:0}

/* Premium motion stage: ambient depth in the background, product proof in front. */
.hero-stage{
  --mx:0px;
  --my:0px;
  min-height:600px;
  position:relative;
  border:1px solid rgba(13,13,13,.085);
  border-radius:38px;
  background:
    radial-gradient(circle at 72% 24%, rgba(119,214,80,.16), transparent 25%),
    linear-gradient(145deg,#fff 0%,#fbfcfb 52%,#f7f9f8 100%);
  overflow:hidden;
  isolation:isolate;
  box-shadow:0 28px 80px rgba(13,13,13,.065);
}
.hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(110deg,rgba(255,255,255,.70),transparent 42%),
    radial-gradient(circle at 42% 82%,rgba(13,13,13,.055),transparent 35%);
  pointer-events:none;
}
.motion-field{
  position:absolute;inset:-8%;z-index:0;pointer-events:none;
  transform:translate3d(calc(var(--mx) * -.20),calc(var(--my) * -.20),0);
  transition:transform .65s cubic-bezier(.2,.7,.2,1);
}
.motion-glow{
  position:absolute;width:390px;height:390px;border-radius:50%;
  right:2%;top:3%;
  background:radial-gradient(circle,rgba(119,214,80,.24) 0%,rgba(119,214,80,.08) 35%,rgba(119,214,80,0) 70%);
  filter:blur(8px);
  animation:quinbisGlow 11s ease-in-out infinite alternate;
}
.motion-sheet{
  position:absolute;
  border-radius:42px;
  border:1px solid rgba(13,13,13,.07);
  backdrop-filter:blur(14px);
  box-shadow:0 34px 70px rgba(13,13,13,.045);
  will-change:transform;
}
.motion-sheet-one{
  width:74%;height:46%;
  right:-18%;top:-5%;
  background:linear-gradient(135deg,rgba(255,255,255,.75),rgba(119,214,80,.08));
  transform:rotate(14deg);
  animation:quinbisPlaneOne 14s cubic-bezier(.45,.05,.55,.95) infinite alternate;
}
.motion-sheet-two{
  width:78%;height:52%;
  left:-24%;bottom:-14%;
  background:linear-gradient(135deg,rgba(13,13,13,.018),rgba(13,13,13,.055));
  transform:rotate(-13deg);
  animation:quinbisPlaneTwo 17s cubic-bezier(.45,.05,.55,.95) infinite alternate;
}
.motion-line{
  position:absolute;
  width:78%;height:1px;
  left:18%;top:53%;
  background:linear-gradient(90deg,transparent,rgba(119,214,80,.65),rgba(13,13,13,.14),transparent);
  transform:rotate(-8deg);
  opacity:.65;
  animation:quinbisLine 9s ease-in-out infinite alternate;
}

.money-deck{
  position:absolute;
  inset:0;
  z-index:2;
  transform:translate3d(calc(var(--mx) * .34),calc(var(--my) * .34),0);
  transition:transform .50s cubic-bezier(.2,.7,.2,1);
}
.micro-card,.safe-card{
  position:absolute;
  will-change:transform;
}
.micro-card{
  width:232px;
  min-height:142px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(13,13,13,.055);
  border-radius:22px;
  padding:20px 21px;
  box-shadow:0 24px 56px rgba(13,13,13,.09);
  backdrop-filter:blur(18px);
}
.micro-card::before{
  content:"";position:absolute;inset:0;border-radius:inherit;
  background:linear-gradient(120deg,rgba(255,255,255,.75),transparent 42%);
  pointer-events:none;
}
.micro-kicker{
  display:block;
  font-size:8px;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:700;
  color:rgba(13,13,13,.58);
  margin-bottom:10px;
}
.micro-label{
  display:block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.115em;
  color:var(--ink-48);
  font-weight:700;
}
.micro-card strong{
  display:block;
  margin-top:7px;
  font-size:24px;
  line-height:1;
  letter-spacing:-.035em;
  font-weight:600;
}
.micro-foot{
  display:block;
  margin-top:13px;
  font-size:9px;
  color:var(--ink-48);
}
.micro-foot i{
  width:6px;height:6px;border-radius:50%;background:var(--lime);
  display:inline-block;margin-right:6px;
}
.micro-accent{
  position:absolute;left:21px;bottom:12px;width:44px;height:3px;border-radius:99px;background:var(--lime);opacity:.95;
}
.micro-card-cash{
  left:7.5%;top:21%;
  transform:rotate(-7deg);
  z-index:1;
  animation:cashFloat 7.5s ease-in-out infinite alternate;
}
.micro-card-commit{
  left:12.5%;top:43%;
  transform:rotate(3deg);
  z-index:2;
  background:rgba(250,251,250,.97);
  animation:commitFloat 8.5s ease-in-out infinite alternate;
}
.safe-card{
  width:min(445px,66%);
  right:7.5%;
  top:50%;
  transform:translateY(-45%) rotate(-.5deg);
  z-index:4;
  background:var(--green);
  color:#fff;
  border-radius:30px;
  padding:30px;
  box-shadow:0 40px 84px rgba(13,13,13,.24);
  animation:safeFloat 9.5s ease-in-out infinite alternate;
}
.safe-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  border:1px solid rgba(255,255,255,.10);
  pointer-events:none;
}
.safe-card-top{display:flex;justify-content:space-between;align-items:center}
.safe-badge{font-size:10px;letter-spacing:.18em;font-weight:700;color:rgba(255,255,255,.57)}
.safe-state{font-size:10px;font-weight:700;background:var(--lime);color:#013D37;padding:7px 11px;border-radius:999px}
.safe-copy{margin-top:62px}
.safe-copy span{font-size:13px;color:rgba(255,255,255,.70)}
.safe-copy strong{
  display:block;font-size:56px;line-height:1;letter-spacing:-.052em;margin-top:8px;font-weight:600;
}
.safe-card p{font-size:12px;line-height:1.5;color:rgba(255,255,255,.68);margin:16px 0 0}
.safe-meter{height:7px;background:rgba(255,255,255,.12);border-radius:99px;margin-top:26px;overflow:hidden}
.safe-meter span{display:block;width:39.16%;height:100%;background:var(--lime);border-radius:99px}
.safe-card-bottom{
  border-top:1px solid rgba(255,255,255,.13);
  padding-top:20px;margin-top:22px;display:flex;justify-content:space-between;align-items:center;
  font-size:11px;color:rgba(255,255,255,.70)
}
.safe-arrow{
  width:29px;height:29px;border:1px solid rgba(255,255,255,.27);
  border-radius:50%;display:grid;place-items:center;color:#fff;
}
.stage-caption{
  position:absolute;
  right:26px;
  bottom:22px;
  z-index:5;
  display:flex;align-items:center;gap:8px;
  font-size:10px;font-weight:600;color:rgba(13,13,13,.46);
  letter-spacing:.01em;
}
.stage-caption-dot{width:6px;height:6px;border-radius:50%;background:var(--lime)}

.hero-rail{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:19px;
  margin-top:28px;
  color:rgba(13,13,13,.46);
  font-size:10px;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.hero-rail i{
  width:4px;height:4px;border-radius:50%;background:var(--lime);display:block;
}

@keyframes quinbisPlaneOne{
  from{transform:translate3d(-8px,-3px,0) rotate(13deg)}
  to{transform:translate3d(22px,18px,0) rotate(16deg)}
}
@keyframes quinbisPlaneTwo{
  from{transform:translate3d(10px,12px,0) rotate(-14deg)}
  to{transform:translate3d(-18px,-10px,0) rotate(-10deg)}
}
@keyframes quinbisGlow{
  from{transform:translate3d(-8px,6px,0) scale(.96);opacity:.72}
  to{transform:translate3d(18px,-10px,0) scale(1.08);opacity:1}
}
@keyframes quinbisLine{
  from{transform:translate3d(-12px,0,0) rotate(-8deg);opacity:.35}
  to{transform:translate3d(18px,0,0) rotate(-8deg);opacity:.72}
}
@keyframes cashFloat{
  from{translate:0 0;rotate:0deg}
  to{translate:0 -9px;rotate:-1deg}
}
@keyframes commitFloat{
  from{translate:0 0;rotate:0deg}
  to{translate:5px 8px;rotate:.6deg}
}
@keyframes safeFloat{
  from{translate:0 0;rotate:0deg}
  to{translate:0 -8px;rotate:.45deg}
}
@media(prefers-reduced-motion:reduce){
  .motion-sheet,.motion-glow,.motion-line,.micro-card,.safe-card{animation:none!important}
  .motion-field,.money-deck{transform:none!important;transition:none!important}
}

.problem{border-top:1px solid var(--ink-06)}
.problem-grid{
  display:grid;grid-template-columns:.7fr 1.55fr .95fr;gap:64px;align-items:start;
}
.problem-copy h2,.section-head h2,.money-copy h2,.method-head h2,.insights h2{
  margin:0;font-size:clamp(48px,4.5vw,72px);line-height:1;letter-spacing:-.038em;font-weight:700;
}
.problem-copy h2 em{color:var(--green)}
.problem-copy>p{
  margin:30px 0 0;max-width:650px;font-size:18px;line-height:1.60;color:var(--ink-72);
}
.problem-points{display:grid;gap:0;border-top:1px solid var(--ink-10)}
.problem-points article{padding:24px 0;border-bottom:1px solid var(--ink-10)}
.problem-points article>span{font-size:10px;color:var(--green);font-weight:800;letter-spacing:.12em}
.problem-points h3{margin:10px 0 7px;font-size:17px;font-weight:600;letter-spacing:-.010em}
.problem-points p{margin:0;font-size:13px;line-height:1.55;color:var(--ink-48)}

.paths{padding-top:60px}
.section-head{
  display:flex;align-items:end;justify-content:space-between;gap:60px;margin-bottom:56px;
}
.section-head h2{max-width:800px;margin-top:18px}
.section-head>p{max-width:430px;margin:0 0 4px;color:var(--ink-72);line-height:1.58;font-size:15px}
.path-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.path-card{
  min-height:620px;border-radius:var(--radius);padding:30px;position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  border:1px solid var(--ink-10);
  transition:transform .35s ease,box-shadow .35s ease;
}
.path-card:hover{transform:translateY(-6px);box-shadow:0 28px 60px rgba(13,13,13,.10)}
.path-card-green{background:var(--green);color:#fff;border-color:var(--green)}
.path-card-light{background:#fff}
.path-card-dark{background:var(--onyx);color:#fff;border-color:var(--onyx)}
.path-card-top{display:flex;align-items:center;justify-content:space-between;font-size:10px;letter-spacing:.15em;font-weight:800}
.path-card-green .path-card-top{color:rgba(255,255,255,.55)}
.path-card-dark .path-card-top{color:rgba(255,255,255,.45)}
.round-arrow{width:40px;height:40px;border:1px solid rgba(255,255,255,.20);border-radius:50%;display:grid;place-items:center;color:var(--lime);font-size:15px}
.round-arrow-dark{border-color:var(--ink-10);color:var(--onyx)}
.round-arrow-lime{background:var(--lime);color:#013D37;border-color:var(--lime)}
.path-card-copy{margin-top:70px;position:relative;z-index:2}
.path-card h3{font-size:39px;line-height:1.04;letter-spacing:-.027em;font-weight:600;margin:0}
.path-card p{font-size:14px;line-height:1.65;margin:17px 0 0;max-width:360px}
.path-card-green p,.path-card-dark p{color:rgba(255,255,255,.62)}
.path-card-light p{color:var(--ink-72)}

.setup-art{position:absolute;left:30px;right:30px;bottom:25px;height:245px}
.doc-sheet{position:absolute;width:74%;height:195px;border-radius:15px;background:#fff;box-shadow:0 20px 50px rgba(0,0,0,.15)}
.sheet-back{right:3%;bottom:0;transform:rotate(8deg);opacity:.25}
.sheet-front{left:5%;bottom:8px;transform:rotate(-3deg);padding:24px}
.doc-pill{width:58px;height:10px;background:var(--lime);border-radius:99px;margin-bottom:28px}
.doc-line{height:7px;background:rgba(13,13,13,.12);border-radius:99px;width:66%;margin:12px 0}
.doc-line.long{width:82%}.doc-line.short{width:43%}
.doc-seal{position:absolute;right:20px;bottom:20px;width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--green);color:var(--lime);font-weight:800}

.design-art{position:absolute;left:30px;right:30px;bottom:22px;height:250px}
.design-frame{position:absolute;border:1px solid var(--ink-10);border-radius:20px;background:#fff;box-shadow:0 18px 42px rgba(13,13,13,.08)}
.frame-one{left:4%;bottom:8px;width:55%;height:190px;background:var(--onyx);display:grid;place-items:center;color:var(--lime);font-size:72px;font-weight:600}
.frame-two{right:3%;top:18px;width:42%;height:138px;background:var(--lime);transform:rotate(3deg)}
.frame-three{right:12%;bottom:0;width:35%;height:95px;background:var(--green);transform:rotate(-5deg)}
.design-word{position:absolute;right:5%;top:2px;font-family:var(--serif);font-style:italic;font-size:42px;transform:rotate(-5deg);z-index:3}

.mini-finance{
  position:absolute;left:30px;right:30px;bottom:30px;
  border:1px solid rgba(255,255,255,.13);border-radius:22px;padding:24px;
  display:flex;align-items:end;justify-content:space-between;
  background:rgba(255,255,255,.035);
}
.mini-finance span{font-size:11px;color:rgba(255,255,255,.5);display:block}
.mini-finance strong{font-size:43px;font-weight:700;letter-spacing:-.042em;display:block;margin-top:9px}
.mini-pill{background:var(--lime)!important;color:#013D37 !important;padding:7px 10px;border-radius:999px;font-weight:800}

.section-dark{background:var(--onyx);color:#fff}
.money-grid{display:grid;grid-template-columns:.75fr 1.25fr;gap:80px;align-items:center}
.money-copy h2{margin-top:18px}
.money-copy h2 em{color:var(--lime)}
.money-copy p{font-size:17px;line-height:1.58;color:rgba(255,255,255,.68);margin:28px 0 30px;max-width:540px}
.text-link-light{color:#fff}
.dashboard{
  background:#fff;color:var(--onyx);border-radius:32px;padding:26px;
  box-shadow:0 36px 90px rgba(0,0,0,.24);
}
.dashboard-head{display:flex;align-items:center;justify-content:space-between;padding:2px 3px 22px;border-bottom:1px solid var(--ink-06)}
.dash-brand{display:flex;align-items:center;gap:10px;font-size:13px;font-weight:700}
.dash-brand-mark{width:32px;height:32px;border-radius:10px;background:var(--green);color:var(--lime);display:grid;place-items:center}
.dash-period{font-size:11px;color:var(--ink-48)}
.dash-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:18px}
.dash-cards article{border:1px solid var(--ink-10);border-radius:17px;padding:18px}
.dash-cards article>span{font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:var(--ink-48);font-weight:700}
.dash-cards strong{display:block;font-size:24px;font-weight:700;letter-spacing:-.032em;margin-top:12px}
.dash-cards small{display:block;font-size:9px;line-height:1.4;color:var(--ink-48);margin-top:8px}
.dash-cards .dash-safe{background:var(--green);border-color:var(--green);color:#fff}
.dash-cards .dash-safe>span,.dash-cards .dash-safe small{color:rgba(255,255,255,.6)}
.dash-cards .dash-safe strong{color:var(--lime)}
.dash-lower{display:grid;grid-template-columns:1.2fr .8fr;gap:10px;margin-top:10px}
.cash-flow-card,.reminders-card{border:1px solid var(--ink-10);border-radius:17px;padding:18px}
.dash-subhead{display:flex;justify-content:space-between;font-size:10px;color:var(--ink-48);font-weight:700}
.bars{height:150px;margin-top:20px;display:flex;align-items:end;gap:8px;border-bottom:1px solid var(--ink-06)}
.bars i{display:block;flex:1;background:var(--green-12);border-radius:6px 6px 0 0}
.bars .bar-lime{background:var(--lime)}
.money-legend{display:flex;gap:20px;margin-top:12px;font-size:9px;color:var(--ink-48)}
.money-legend i{display:inline-block;width:6px;height:6px;border-radius:50%;margin-right:5px}
.legend-in{background:var(--green)}.legend-out{background:var(--lime)}
.reminders-card ul{list-style:none;margin:18px 0 0;padding:0}
.reminders-card li{display:grid;grid-template-columns:auto 1fr auto;gap:8px;align-items:center;padding:12px 0;border-bottom:1px solid var(--ink-06);font-size:10px}
.reminders-card li:last-child{border-bottom:0}
.reminders-card li small{font-size:8px;color:var(--ink-48)}
.status-dot{width:7px;height:7px;border-radius:50%;background:var(--ink-16)}
.status-lime{background:var(--lime);box-shadow:0 0 0 4px var(--lime-28)}

.method-head{text-align:center;max-width:900px;margin:0 auto 68px}
.method-head h2{margin-top:18px}
.method-head p{max-width:620px;margin:25px auto 0;font-size:16px;line-height:1.58;color:var(--ink-72)}
.method-list{list-style:none;padding:0;margin:0;border-top:1px solid var(--ink-10)}
.method-list li{
  display:grid;grid-template-columns:120px 1fr;align-items:center;
  padding:28px 0;border-bottom:1px solid var(--ink-10);
  transition:padding .25s ease,background .25s ease;
}
.method-list li:hover{padding-left:18px;background:linear-gradient(90deg,var(--green-08),transparent 38%)}
.method-number{font-size:11px;color:var(--green);font-weight:800;letter-spacing:.12em}
.method-list li>div{display:grid;grid-template-columns:.65fr 1fr;align-items:baseline;gap:30px}
.method-list h3{font-size:30px;font-weight:600;letter-spacing:-.022em;margin:0}
.method-list p{margin:0;font-size:13px;line-height:1.5;color:var(--ink-64)}

.insights{padding-top:90px;background:linear-gradient(to bottom,#fff 0%,rgba(13,13,13,.022) 100%)}
.insights .section-head{align-items:end}
.insight-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.insight-card{border:1px solid var(--ink-10);border-radius:24px;background:#fff;overflow:hidden;transition:transform .3s ease,box-shadow .3s ease}
.insight-card:hover{transform:translateY(-5px);box-shadow:0 22px 55px rgba(13,13,13,.08)}
.insight-art{height:260px;position:relative;overflow:hidden}
.insight-art-one{background:var(--green)}
.insight-art-two{background:var(--onyx)}
.insight-art-three{background:var(--lime)}
.insight-number{position:absolute;left:26px;bottom:-22px;font-size:156px;line-height:1;font-weight:500;letter-spacing:-.09em}
.insight-art-one .insight-number{color:var(--lime)}
.insight-art-two .insight-number{color:#fff}
.insight-art-three .insight-number{color:var(--green)}
.insight-label{position:absolute;right:20px;top:20px;font-size:9px;font-weight:800;letter-spacing:.16em;padding:7px 9px;border:1px solid currentColor;border-radius:999px}
.insight-art-one .insight-label{color:rgba(255,255,255,.6)}
.insight-art-two .insight-label{color:rgba(255,255,255,.5)}
.insight-art-three .insight-label{color:var(--green)}
.insight-copy{padding:24px 25px 28px}
.insight-copy>span:first-child{font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:var(--green);font-weight:800}
.insight-copy h3{font-size:24px;line-height:1.2;letter-spacing:-.020em;font-weight:600;margin:14px 0 28px;min-height:84px}
.read-link{font-size:11px;font-weight:700;color:var(--ink-48)}

.final-cta{padding-top:120px;padding-bottom:140px}
.cta-frame{
  min-height:440px;border-radius:34px;background:var(--green);color:#fff;
  position:relative;overflow:hidden;padding:58px 62px;
  display:grid;grid-template-columns:1fr auto;grid-template-rows:1fr auto;gap:40px;
}

.cta-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 78% 28%, rgba(255,255,255,.035) 0%, rgba(255,255,255,.018) 22%, rgba(255,255,255,0) 48%),
    linear-gradient(90deg, rgba(255,255,255,0) 48%, rgba(255,255,255,.018) 100%);
  pointer-events:none;
}
.cta-mark{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-image:url("/assets/img/quinbis-cta-pattern-v2.svg");
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  pointer-events:none;
}
.cta-copy{position:relative;z-index:2;max-width:800px}
.cta-copy>span{font-size:10px;font-weight:800;letter-spacing:.18em;color:var(--lime)}
.cta-copy h2{font-size:clamp(48px,5vw,78px);line-height:1.01;letter-spacing:-.034em;font-weight:600;margin:22px 0 0}
.cta-actions{position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-end;justify-content:flex-end;gap:16px}
.btn-cta{min-height:58px;background:var(--lime);color:#013D37;padding:0 22px}
.cta-actions>a:last-child{font-size:11px;color:rgba(255,255,255,.65)}
.cta-lime-line{height:5px;background:var(--lime);position:absolute;left:62px;bottom:0;width:31%;border-radius:99px 99px 0 0}

.site-footer{background:var(--onyx);color:#fff;padding:76px 0 26px}
.footer-grid{display:grid;grid-template-columns:2fr repeat(3,1fr);gap:55px;padding-bottom:62px}
.brand-footer{color:#fff}
.brand-footer .brand-word{color:#fff;font-weight:700;font-size:23px}
.footer-brand-mark{width:56px;height:37px}
.footer-logo{opacity:1;position:static;width:100%;height:100%;object-fit:contain}

.footer-brand p{font-size:13px;color:rgba(255,255,255,.45);margin:18px 0 0}
.footer-col{display:flex;flex-direction:column;gap:12px}
.footer-col>span{font-size:9px;text-transform:uppercase;letter-spacing:.16em;color:var(--lime);font-weight:800;margin-bottom:8px}
.footer-col a{font-size:13px;color:rgba(255,255,255,.58);width:max-content}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.10);padding-top:24px;display:flex;justify-content:space-between;color:rgba(255,255,255,.35);font-size:10px}

.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s cubic-bezier(.2,.75,.2,1),transform .8s cubic-bezier(.2,.75,.2,1)}
.reveal.is-visible{opacity:1;transform:none}
.path-cards .reveal:nth-child(2),.insight-grid .reveal:nth-child(2){transition-delay:.08s}
.path-cards .reveal:nth-child(3),.insight-grid .reveal:nth-child(3){transition-delay:.16s}

@media (max-width:1180px){
  :root{--shell:min(100% - 44px, 1120px)}
  .hero-grid{grid-template-columns:1fr 1fr;gap:36px}
  .hero-stage{min-height:580px}
  .safe-copy{margin-top:55px}.safe-copy strong{font-size:44px}
  .path-card{min-height:580px}
  .problem-grid{grid-template-columns:.5fr 1.5fr}.problem-points{grid-column:2}
  .money-grid{grid-template-columns:1fr;gap:55px}
  .money-copy{max-width:760px}
}
@media (max-width:900px){
  .desktop-nav{display:none}
  .nav-shell{grid-template-columns:1fr auto}
  .menu-toggle{display:flex}
  .hero{padding-top:120px}
  .hero-grid{grid-template-columns:1fr;min-height:0}
  .hero-copy{padding-bottom:20px}
  .hero h1{font-size:clamp(58px,10vw,84px);max-width:760px}
  .hero-stage{min-height:580px}
  .hero-rail{margin-top:18px;overflow:auto;justify-content:flex-start;padding-inline:8px}
  .problem-grid{grid-template-columns:1fr;gap:28px}.problem-points{grid-column:auto}
  .path-cards{grid-template-columns:1fr}
  .path-card{min-height:560px}
  .section-head{align-items:start;flex-direction:column}
  .section-head>p{max-width:620px}
  .dash-lower{grid-template-columns:1fr}
  .method-list li{grid-template-columns:70px 1fr}
  .insight-grid{grid-template-columns:1fr 1fr}.insight-card:last-child{grid-column:1/-1}
  .cta-frame{grid-template-columns:1fr;grid-template-rows:auto auto;padding:48px}
  .cta-actions{align-items:flex-start}
  .footer-grid{grid-template-columns:1.5fr 1fr 1fr}.footer-col:last-child{grid-column:2}
}
@media (max-width:640px){
  :root{--shell:calc(100% - 32px);--radius:24px}
  .nav-shell{height:74px}
  .site-header.is-scrolled .nav-shell{height:68px}
  .brand-mark{width:50px;height:33px}.brand-word{font-size:21px}
  .btn-nav{display:none}
  .section{padding:96px 0}
  .hero{padding-top:104px}
  .hero h1{font-size:52px;line-height:.97;letter-spacing:-.034em;font-weight:600}
  .hero-lede{font-size:17px}
  .hero-actions{align-items:flex-start;flex-direction:column;gap:22px}
  .hero-stage{min-height:500px;border-radius:28px}
  .micro-card{min-width:154px;padding:14px}
  .micro-card strong{font-size:18px}
  .micro-card-cash{left:4%;top:8%}.micro-card-commit{right:3%;top:13%}
  .safe-card{width:82%;padding:22px;top:54%}
  .safe-copy{margin-top:48px}.safe-copy strong{font-size:42px}
  .lime-ticket{font-size:16px;right:5%;bottom:7%}
  .hero-rail{gap:14px}
  .problem-copy h2,.section-head h2,.money-copy h2,.method-head h2,.insights h2{font-size:46px}
  .problem-copy>p{font-size:16px}
  .section-head{margin-bottom:38px}
  .path-card{min-height:530px;padding:24px}
  .path-card-copy{margin-top:50px}
  .path-card h3{font-size:35px}
  .setup-art,.design-art,.mini-finance{left:24px;right:24px}
  .money-grid{gap:40px}
  .dashboard{padding:16px;border-radius:24px}
  .dash-cards{grid-template-columns:1fr}
  .dash-cards strong{font-size:27px}
  .dash-lower{grid-template-columns:1fr}
  .method-head{text-align:left}
  .method-list li{grid-template-columns:48px 1fr;padding:22px 0}
  .method-list li>div{grid-template-columns:1fr;gap:6px}
  .method-list h3{font-size:25px}
  .insight-grid{grid-template-columns:1fr}.insight-card:last-child{grid-column:auto}
  .insight-art{height:220px}
  .cta-frame{min-height:480px;padding:38px 26px}
  .cta-copy h2{font-size:45px}
  .cta-lime-line{left:26px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:36px}
  .footer-brand{grid-column:1/-1}
  .footer-col:last-child{grid-column:auto}
  .footer-bottom{gap:20px;flex-direction:column}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .reveal{opacity:1;transform:none}
}

@media(max-width:1050px){
  .hero{padding-top:132px}
  .hero-grid{grid-template-columns:1fr;gap:54px;min-height:auto}
  .hero-copy{max-width:760px;padding-bottom:0}
  .hero h1{max-width:760px}
  .hero-stage{min-height:560px;width:100%}
}
@media(max-width:680px){
  .hero{padding:112px 0 72px}
  .hero-grid{gap:42px}
  .eyebrow{margin-bottom:26px;font-size:10px}
  .hero h1{
    font-size:clamp(48px,14vw,62px);
    line-height:.98;
    letter-spacing:-.032em;
    font-weight:500;
  }
  .hero h1 em{font-size:.82em;margin-top:13px}
  .hero-lede{margin-top:26px;font-size:17px;line-height:1.5}
  .hero-actions{align-items:flex-start;flex-direction:column;gap:20px;margin-top:30px}
  .hero-stage{min-height:490px;border-radius:28px}
  .micro-card{min-width:150px;padding:14px 15px}
  .micro-card strong{font-size:18px}
  .micro-card-cash{left:4%;top:10%}
  .micro-card-commit{right:4%;top:13%}
  .safe-card{width:82%;top:55%;padding:24px;border-radius:24px}
  .safe-copy{margin-top:54px}
  .safe-copy strong{font-size:46px}
}

@media(max-width:1120px){
  .hero{padding-top:132px}
  .hero-grid{grid-template-columns:1fr;gap:48px;min-height:auto}
  .hero-copy{max-width:780px;padding-bottom:0}
  .hero h1{max-width:760px}
  .hero-stage{min-height:580px}
  .money-deck{max-width:820px;margin:auto}
}
@media(max-width:760px){
  .hero{padding:112px 0 66px}
  .hero-grid{gap:38px}
  .eyebrow{margin-bottom:26px;padding:9px 12px}
  .hero h1{
    font-size:clamp(50px,14vw,64px);
    line-height:.98;
    letter-spacing:-.034em;
    font-weight:500;
  }
  .hero h1 em{font-size:.83em;margin-top:12px}
  .hero-lede{margin-top:26px;font-size:17px;line-height:1.5}
  .hero-actions{align-items:flex-start;flex-direction:column;gap:20px;margin-top:29px}
  .hero-stage{min-height:515px;border-radius:30px}
  .motion-sheet-one{width:90%;right:-44%;top:-2%}
  .motion-sheet-two{width:92%;left:-42%;bottom:-12%}
  .micro-card{width:176px;min-height:116px;padding:15px 16px;border-radius:18px}
  .micro-card strong{font-size:19px}
  .micro-card-cash{left:4%;top:15%}
  .micro-card-commit{left:8%;top:38%}
  .safe-card{
    width:72%;
    right:3%;
    top:54%;
    padding:23px;
    border-radius:24px;
  }
  .safe-copy{margin-top:50px}
  .safe-copy strong{font-size:43px}
  .safe-card-bottom{font-size:9px}
  .stage-caption{display:none}
  .hero-rail{
    justify-content:flex-start;
    gap:11px;
    overflow-x:auto;
    padding-bottom:4px;
    scrollbar-width:none;
    margin-top:24px;
  }
  .hero-rail::-webkit-scrollbar{display:none}
  .hero-rail span{white-space:nowrap}
}



/* ===== V1.11 Problem section refinement ===== */
.problem-grid-v2{
  display:grid;
  grid-template-columns:minmax(250px,.9fr) minmax(420px,1.35fr) minmax(300px,1fr);
  gap:44px;
  align-items:start;
}
.problem-aside{padding-top:4px}
.problem-aside-card{
  background:linear-gradient(180deg,#ffffff 0%,rgba(255,255,255,.92) 100%);
  border:1px solid var(--ink-08);
  border-radius:32px;
  padding:28px;
  box-shadow:0 20px 45px rgba(12,22,20,.05);
}
.problem-aside-card p{
  margin:0;
  font-size:16px;
  line-height:1.72;
  color:var(--ink-72);
  max-width:300px;
}
.problem-tension-list{
  list-style:none;
  margin:26px 0 0;
  padding:0;
  display:grid;
  gap:16px;
}
.problem-tension-list li{
  display:grid;
  grid-template-columns:10px 1fr;
  gap:14px;
  align-items:start;
  padding-top:16px;
  border-top:1px solid var(--ink-08);
}
.problem-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--lime);
  margin-top:6px;
  box-shadow:0 0 0 6px rgba(178,233,87,.14);
}
.problem-tension-list strong{
  display:block;
  font-size:15px;
  line-height:1.4;
  letter-spacing:-.01em;
  font-weight:700;
  color:var(--onyx);
}
.problem-tension-list small{
  display:block;
  margin-top:6px;
  font-size:13px;
  line-height:1.6;
  color:var(--ink-60);
}

.problem-copy{
  padding-top:4px;
}
.problem-copy h2{
  max-width:760px;
}
.problem-copy>p{
  margin:28px 0 0;
  max-width:700px;
}

.problem-points{
  display:grid;
  gap:14px;
  border-top:none;
}
.problem-point-card{
  background:#fff;
  border:1px solid var(--ink-08);
  border-radius:30px;
  padding:24px 24px 26px;
  box-shadow:0 18px 38px rgba(12,22,20,.05);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.problem-point-card:nth-child(2){transform:translateX(-18px)}
.problem-point-card:nth-child(3){transform:translateX(14px)}
.problem-point-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 46px rgba(12,22,20,.09);
  border-color:rgba(1,61,49,.16);
}
.problem-point-card:nth-child(2):hover{transform:translateX(-18px) translateY(-4px)}
.problem-point-card:nth-child(3):hover{transform:translateX(14px) translateY(-4px)}
.problem-point-card>span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(1,61,49,.06);
  color:var(--green);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
}
.problem-points article>h3{
  margin:18px 0 8px;
  font-size:30px;
  line-height:1.02;
  letter-spacing:-.03em;
  font-weight:650;
}
.problem-points article>p{
  margin:0;
  color:var(--ink-66);
  font-size:15px;
  line-height:1.72;
  max-width:300px;
}

@media (max-width: 1260px){
  .problem-grid-v2{
    grid-template-columns:1fr 1fr;
    gap:32px 24px;
  }
  .problem-aside{grid-column:1/2}
  .problem-copy{grid-column:2/3}
  .problem-points{
    grid-column:1 / -1;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .problem-point-card:nth-child(2),
  .problem-point-card:nth-child(3),
  .problem-point-card:nth-child(2):hover,
  .problem-point-card:nth-child(3):hover{
    transform:none;
  }
  .problem-aside-card p{max-width:none}
}

@media (max-width: 860px){
  .problem-grid-v2{
    grid-template-columns:1fr;
    gap:24px;
  }
  .problem-aside,
  .problem-copy,
  .problem-points{
    grid-column:auto;
  }
  .problem-points{
    grid-template-columns:1fr;
  }
  .problem-points article>h3{
    font-size:26px;
  }
}


/* ===== V1.14 — What gets in the way: simplified editorial layout ===== */
.problem{
  border-top:1px solid var(--ink-06);
  background:#fff;
}
.problem-layout-v3{
  display:grid;
  gap:76px;
}
.problem-intro{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(300px,.72fr);
  gap:84px;
  align-items:end;
}
.problem-intro-main .section-kicker{
  margin-bottom:24px;
}
.problem-intro-main h2{
  margin:0;
  max-width:860px;
  font-size:clamp(54px,5vw,82px);
  line-height:.98;
  letter-spacing:-.044em;
  font-weight:600;
}
.problem-intro-main h2 em{
  color:var(--green);
}
.problem-intro-copy{
  margin:0 0 6px;
  max-width:440px;
  font-size:17px;
  line-height:1.65;
  color:var(--ink-72);
}

.problem-points-v3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  border-top:1px solid var(--ink-10);
  border-bottom:1px solid var(--ink-10);
}
.problem-points-v3 article{
  min-height:210px;
  padding:30px 34px 32px 0;
  border-bottom:0;
  position:relative;
}
.problem-points-v3 article + article{
  padding-left:34px;
  border-left:1px solid var(--ink-10);
}
.problem-points-v3 article>span{
  display:block;
  font-size:10px;
  color:var(--green);
  font-weight:800;
  letter-spacing:.15em;
}
.problem-points-v3 h3{
  margin:34px 0 10px;
  font-size:30px;
  line-height:1.05;
  letter-spacing:-.03em;
  font-weight:600;
}
.problem-points-v3 p{
  margin:0;
  max-width:330px;
  font-size:15px;
  line-height:1.65;
  color:var(--ink-60);
}

@media(max-width:1000px){
  .problem-layout-v3{gap:54px}
  .problem-intro{
    grid-template-columns:1fr;
    gap:28px;
    align-items:start;
  }
  .problem-intro-copy{max-width:680px}
  .problem-points-v3{
    grid-template-columns:1fr;
  }
  .problem-points-v3 article{
    min-height:0;
    padding:26px 0;
  }
  .problem-points-v3 article + article{
    padding-left:0;
    border-left:0;
    border-top:1px solid var(--ink-10);
  }
  .problem-points-v3 h3{
    margin-top:18px;
  }
}

@media(max-width:640px){
  .problem-layout-v3{gap:42px}
  .problem-intro-main .section-kicker{margin-bottom:18px}
  .problem-intro-main h2{
    font-size:46px;
    line-height:1;
    letter-spacing:-.038em;
  }
  .problem-intro-copy{
    font-size:16px;
    line-height:1.6;
  }
  .problem-points-v3 h3{font-size:25px}
  .problem-points-v3 p{font-size:14px}
}

/* ===== Mobile typography + header reliability V21 ===== */
@media (max-width:640px){
  html{-webkit-text-size-adjust:100%;text-size-adjust:100%}
  body{overflow-x:clip}
  .nav-shell{height:66px}
  .site-header.is-scrolled .nav-shell{height:64px}
  .brand{gap:7px;min-height:40px}
  .brand-mark{width:46px;height:31px}
  .brand-word{
    font-family:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
    font-size:20px;
    font-weight:700;
    letter-spacing:-.035em;
  }
  .menu-toggle{width:42px;height:42px}
  .mobile-menu-inner{padding:18px 0 26px}
  .mobile-menu a{padding:15px 0;font-size:25px}
}


/* ===== Quinbis whole-site mobile compatibility V22 ===== */
html{
  max-width:100%;
  overflow-x:hidden;
}
body{
  max-width:100%;
  overflow-x:hidden;
}
img,svg,video,canvas{
  max-width:100%;
}
.brand-word{
  font-family:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
  font-weight:700;
  font-synthesis:none;
}
.site-header,
.mobile-menu,
button,
a,
input,
textarea,
select{
  font-family:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
}

@media(max-width:900px){
  .site-header{width:100%}
  .shell{max-width:100%}
}

@media(max-width:680px){
  :root{
    --shell:calc(100% - 28px);
    --radius:24px;
    --radius-sm:16px;
  }
  .section{padding:76px 0}
  .section-kicker{font-size:10px;letter-spacing:.15em}
  .eyebrow{margin-bottom:22px;padding:8px 11px;font-size:9px}
  .nav-shell{height:64px}
  .site-header.is-scrolled .nav-shell{height:62px}
  .brand{gap:7px;min-height:38px}
  .brand-mark{width:44px;height:29px}
  .brand-word{
    font-size:19px;
    line-height:1;
    letter-spacing:-.035em;
  }
  .menu-toggle{width:40px;height:40px;gap:5px}
  .menu-toggle span{width:16px}
  .mobile-menu-inner{padding:15px 0 23px}
  .mobile-menu a{padding:14px 0;font-size:23px;line-height:1.05}
  .btn{font-size:13px}
  .btn-arrow{width:32px;height:32px}
  .text-link{font-size:13px}
  .site-footer{padding:56px 0 22px}
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:30px 22px;
    padding-bottom:42px;
  }
  .footer-brand{grid-column:1/-1}
  .brand-footer .brand-word{font-size:20px}
  .footer-brand-mark{width:48px;height:32px}
  .footer-brand p{margin-top:12px;font-size:12px}
  .footer-col{gap:10px}
  .footer-col>span{margin-bottom:5px}
  .footer-col a{font-size:12px}
  .footer-bottom{padding-top:20px;gap:14px;flex-direction:column;line-height:1.5}

  /* Homepage */
  .hero{padding:92px 0 58px}
  .hero-grid{gap:34px}
  .hero-copy{padding:0}
  .hero h1{
    max-width:345px;
    font-size:clamp(44px,12.8vw,52px);
    line-height:.98;
    letter-spacing:-.038em;
    font-weight:500;
  }
  .hero h1 em{margin-top:8px}
  .hero-lede{margin-top:22px;max-width:345px;font-size:16px;line-height:1.55}
  .hero-actions{margin-top:25px;gap:17px}
  .btn-primary{min-height:52px}
  .hero-stage{min-height:455px;border-radius:26px}
  .motion-sheet-one{width:86%;right:-45%;top:-4%}
  .motion-sheet-two{width:88%;left:-45%;bottom:-14%}
  .micro-card{
    width:154px;
    min-width:0;
    min-height:96px;
    padding:13px 14px;
    border-radius:17px;
  }
  .micro-card strong{font-size:17px}
  .micro-card small{font-size:9px}
  .micro-card-cash{left:4%;top:13%}
  .micro-card-commit{left:8%;right:auto;top:37%}
  .safe-card{
    width:72%;
    right:3%;
    top:55%;
    padding:20px;
    border-radius:22px;
  }
  .safe-copy{margin-top:42px}
  .safe-copy strong{font-size:39px}
  .safe-card-bottom{font-size:8px}
  .hero-rail{
    margin-top:20px;
    padding-inline:0;
    gap:9px;
    font-size:8px;
    line-height:1.3;
  }

  .problem-layout-v3{gap:36px}
  .problem-intro{gap:20px}
  .problem-intro-main .section-kicker{margin-bottom:15px}
  .problem-intro-main h2,
  .problem-copy h2,
  .section-head h2,
  .money-copy h2,
  .method-head h2,
  .insights h2{
    font-size:40px;
    line-height:1;
    letter-spacing:-.04em;
  }
  .problem-intro-copy,.problem-copy>p{font-size:14px;line-height:1.62}
  .problem-points-v3 article{padding:22px 0}
  .problem-points-v3 h3{margin-top:15px;font-size:23px}
  .problem-points-v3 p{font-size:13px}

  .section-head{gap:16px;margin-bottom:34px}
  .section-head>p{font-size:14px;line-height:1.62}
  .path-cards{gap:14px}
  .path-card{
    min-height:440px;
    padding:22px;
    border-radius:24px;
  }
  .path-card-copy{margin-top:42px}
  .path-card h3{font-size:31px}
  .path-card p{margin-top:12px;font-size:13px}
  .round-arrow{width:36px;height:36px}
  .setup-art,.design-art,.mini-finance{left:22px;right:22px;bottom:20px}
  .setup-art{height:200px}
  .design-art{height:200px}
  .mini-finance{height:205px}

  .money-grid{gap:32px}
  .money-copy>p{font-size:14px;line-height:1.62}
  .money-deck{border-radius:25px}
  .dashboard{padding:14px;border-radius:22px}
  .dash-top{padding:6px 4px 14px}
  .dash-cards{gap:10px}
  .dash-cards article{padding:16px;border-radius:17px}
  .dash-cards strong{font-size:24px}
  .dash-lower{gap:10px}
  .chart-card,.commitment-card{padding:16px;border-radius:17px}

  .method-head{text-align:left;margin-bottom:32px}
  .method-head>p{font-size:14px;line-height:1.62}
  .method-list li{grid-template-columns:40px 1fr;padding:19px 0}
  .method-list li>span{font-size:9px}
  .method-list li>div{grid-template-columns:1fr;gap:5px}
  .method-list h3{font-size:22px}
  .method-list p{font-size:13px}

  .insight-grid{gap:14px}
  .insight-card{border-radius:23px}
  .insight-art{height:190px}
  .insight-card-copy{padding:20px}
  .insight-card h3{font-size:24px}
  .insight-card p{font-size:13px}

  .cta-frame{
    min-height:0;
    padding:30px 22px 32px;
    border-radius:26px;
    gap:30px;
  }
  .cta-copy h2{
    max-width:310px;
    font-size:39px;
    line-height:.99;
    letter-spacing:-.04em;
    margin-top:15px;
  }
  .cta-actions{align-items:flex-start;width:100%;gap:13px}
  .btn-cta{min-height:50px}
  .cta-lime-line{left:22px}
}

@media(max-width:390px){
  :root{--shell:calc(100% - 24px)}
  .hero h1{font-size:43px}
  .hero-stage{min-height:435px}
  .problem-intro-main h2,
  .problem-copy h2,
  .section-head h2,
  .money-copy h2,
  .method-head h2,
  .insights h2{font-size:38px}
  .path-card{min-height:420px}
  .cta-copy h2{font-size:37px}
}

/* ===== Quinbis V1 refinement — timeless system ===== */
:root{
  --serif:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
  --shell:min(1320px, calc(100vw - 64px));
  --radius:24px;
  --radius-sm:16px;
  --radius-lg:32px;
  --shadow:0 20px 52px rgba(13,13,13,.07);
}

em{
  font-family:var(--sans);
  font-style:normal;
  font-weight:inherit;
  letter-spacing:inherit;
}

:where(a,button,summary,input,textarea,select):focus-visible{
  outline:3px solid var(--lime);
  outline-offset:4px;
}

.section{padding:128px 0}
.section-kicker{font-size:11px;letter-spacing:.14em}

.site-header{transition:background-color .22s ease,color .22s ease,border-color .22s ease,box-shadow .22s ease}
.nav-shell{height:82px}
.site-header.is-scrolled .nav-shell{height:70px}
.site-header.is-scrolled{background:rgba(255,255,255,.97);box-shadow:0 8px 24px rgba(13,13,13,.045)}
.btn-nav{min-height:42px;padding:0 18px;gap:0;box-shadow:none}
.btn:hover{transform:none}
.btn-nav:hover{transform:none}
.desktop-nav{gap:32px}
.desktop-nav a{font-size:13px}
.desktop-nav a::after{bottom:-7px}

/* Quiet overlines instead of decorative pills. */
.eyebrow{
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  margin-bottom:28px;
  gap:9px;
  font-size:10px;
}
.eyebrow-dot{width:7px;height:7px;box-shadow:none}

/* Homepage hero: content-driven, crisp product proof. */
.hero{padding:132px 0 72px;min-height:0}
.hero-grid{min-height:620px;gap:64px}
.hero-copy{padding:0;max-width:650px}
.hero h1{font-size:clamp(64px,5.5vw,90px);font-weight:500;line-height:.98;letter-spacing:-.04em}
.hero h1 em{font-size:1em;line-height:inherit;margin-top:0;color:var(--green)}
.hero-lede{margin-top:28px;font-size:17px}
.hero-actions{margin-top:30px}
.hero-stage{
  min-height:560px;
  border-radius:var(--radius-lg);
  box-shadow:0 18px 48px rgba(13,13,13,.055);
  background:linear-gradient(145deg,#fff 0%,#f8faf7 100%);
}
.motion-glow,.motion-sheet,.motion-line{animation:none!important}
.motion-glow{opacity:.55;filter:blur(18px)}
.motion-sheet{box-shadow:none;backdrop-filter:none}
.hero-stage,.money-deck{transition:none!important}
.hero-rail{margin-top:28px}

.problem-intro-main h2,
.problem-copy h2,.section-head h2,.money-copy h2,.method-head h2,.insights h2{
  font-weight:600;
}
.problem-intro-main h2 em,.money-copy h2 em{color:var(--green)}
.problem-points-v3 article{min-height:190px}

/* Homepage services: two services, then one larger Quinbis product moment. */
.paths{padding-top:52px}
.service-card-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.path-card{
  min-height:510px;
  padding:28px;
  border-radius:var(--radius-lg);
  box-shadow:none;
  transition:border-color .2s ease,background .2s ease;
}
.path-card:hover{transform:none;box-shadow:none}
.path-card-light:hover{border-color:rgba(13,13,13,.24)}
.path-card-copy{margin-top:54px}
.path-card h3{font-size:38px}
.path-card p{font-size:14px}
.design-word{font-family:var(--sans);font-style:normal;font-weight:600;transform:none;font-size:34px;letter-spacing:-.04em}

.quinbis-product-panel{
  margin-top:18px;
  min-height:440px;
  padding:42px;
  border-radius:var(--radius-lg);
  background:var(--green);
  color:#fff;
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(470px,1.22fr);
  gap:72px;
  align-items:center;
  overflow:hidden;
}
.quinbis-product-copy h3{margin:18px 0 0;max-width:620px;font-size:clamp(44px,4.4vw,66px);line-height:1;letter-spacing:-.043em;font-weight:600}
.quinbis-product-copy>p{margin:22px 0 0;max-width:560px;color:rgba(255,255,255,.67);font-size:15px;line-height:1.65}
.quinbis-product-actions{margin-top:30px;display:flex;align-items:center;gap:22px}
.quinbis-panel-btn{min-height:50px;padding:0 18px;background:var(--lime);color:#013D37}
.quinbis-panel-link{font-size:13px;font-weight:700;color:#fff}
.quinbis-product-visual{
  padding:16px;
  border-radius:24px;
  background:#fff;
  color:var(--onyx);
  box-shadow:0 18px 44px rgba(0,0,0,.14);
}
.product-money-row{min-height:92px;padding:20px 22px;border-bottom:1px solid var(--ink-10);display:flex;align-items:center;justify-content:space-between;gap:24px}
.product-money-row>span,.product-money-row div>span{font-size:12px;color:var(--ink-64)}
.product-money-row strong{font-size:30px;letter-spacing:-.04em}
.product-money-safe{margin-top:12px;border:0;border-radius:18px;background:var(--onyx);color:#fff;display:grid;grid-template-columns:1fr auto auto}
.product-money-safe div>span{color:rgba(255,255,255,.68)}
.product-money-safe small{display:block;margin-top:6px;color:rgba(255,255,255,.42);font-size:10px}
.product-money-safe strong{font-size:36px}
.product-money-safe b{padding:7px 10px;border-radius:999px;background:var(--lime);color:#013D37;font-size:10px}

/* Cleaner standard cards. */
.insight-card{border-radius:24px;box-shadow:none}
.insight-card:hover{transform:none;box-shadow:none;border-color:rgba(13,13,13,.24)}
.insight-art{height:230px}
.insight-number{font-size:124px;bottom:-15px;opacity:.9}
.method-list li:hover{padding-left:0;background:transparent}
.cta-frame{border-radius:var(--radius-lg)}

@media(max-width:1050px){
  .hero{padding-top:112px}
  .hero-grid{min-height:0;gap:42px}
  .hero-stage{min-height:520px}
  .quinbis-product-panel{grid-template-columns:1fr;gap:38px}
  .quinbis-product-copy{max-width:760px}
}

@media(max-width:900px){
  .nav-shell{height:72px}
  .site-header.is-scrolled .nav-shell{height:66px}
  .nav-actions{gap:8px}
  .btn-nav{display:inline-flex;min-height:40px;padding:0 15px;font-size:12px}
  .menu-toggle{display:flex;width:40px;height:40px;border-radius:14px}
  .hero{padding-top:104px}
  .hero-copy{text-align:center;margin-inline:auto}
  .hero h1,.hero-lede{margin-inline:auto}
  .hero-actions{justify-content:center}
  .eyebrow{justify-content:center}
  .hero-stage{max-width:820px;margin-inline:auto}
  .hero-rail{justify-content:center}
  .service-card-grid{grid-template-columns:1fr 1fr}
  .path-card{min-height:470px}
  .footer-grid{grid-template-columns:1.25fr 1fr 1fr}
}

@media(max-width:680px){
  :root{--shell:calc(100% - 28px);--radius:20px;--radius-lg:24px}
  .section{padding:82px 0}
  .nav-shell{height:64px}
  .site-header.is-scrolled .nav-shell{height:62px}
  .brand-mark{width:42px;height:28px}
  .brand-word{font-size:18px}
  .btn-nav{display:inline-flex!important;min-height:36px;padding:0 13px;border-radius:999px;font-size:11px}
  .menu-toggle{width:36px;height:36px;border-radius:12px}
  .mobile-menu-inner{padding:14px 0 22px}
  .mobile-menu a{font-size:22px;padding:14px 0}

  .hero{padding:90px 0 48px}
  .hero-grid{gap:28px}
  .hero-copy{text-align:center}
  .eyebrow{margin-bottom:18px}
  .hero h1{font-size:clamp(44px,12vw,52px);max-width:360px;line-height:1}
  .hero-lede{margin-top:19px;max-width:350px;font-size:15px;line-height:1.55}
  .hero-actions{margin-top:24px;align-items:center;justify-content:center;flex-direction:row;flex-wrap:wrap;gap:15px}
  .btn-primary{min-height:48px;padding:6px 7px 6px 18px}
  .hero-stage{min-height:390px;border-radius:22px}
  .micro-card{width:142px;min-height:88px;padding:12px 13px}
  .micro-card-cash{left:5%;top:10%}
  .micro-card-commit{left:9%;top:34%}
  .safe-card{width:74%;right:3%;top:54%;padding:18px;border-radius:19px}
  .safe-copy{margin-top:34px}
  .safe-copy strong{font-size:34px}
  .safe-card p{font-size:9px}
  .safe-card-bottom{font-size:7.5px}
  .hero-rail{margin-top:16px;justify-content:center;overflow:visible;flex-wrap:wrap;gap:8px 10px}

  .problem-intro{text-align:center}
  .problem-intro-copy{margin-inline:auto}
  .problem-intro-main h2,.problem-copy h2,.section-head h2,.money-copy h2,.method-head h2,.insights h2{font-size:38px}
  .problem-points-v3{text-align:left}
  .section-head{text-align:center;align-items:center}
  .section-head>p{margin-inline:auto}

  .service-card-grid{grid-template-columns:1fr;gap:14px}
  .path-card{min-height:410px;max-width:520px;width:100%;margin-inline:auto;padding:22px;border-radius:22px;text-align:center}
  .path-card-top{text-align:left}
  .path-card-copy{margin-top:36px}
  .path-card-copy p{margin-inline:auto}
  .setup-art,.design-art{height:175px;left:22px;right:22px}
  .quinbis-product-panel{margin-top:14px;padding:26px 20px;gap:28px;border-radius:22px;text-align:center}
  .quinbis-product-copy h3{font-size:39px;margin-inline:auto}
  .quinbis-product-copy>p{font-size:14px;margin-inline:auto}
  .quinbis-product-actions{justify-content:center;flex-wrap:wrap}
  .quinbis-product-visual{padding:10px;border-radius:19px;text-align:left}
  .product-money-row{min-height:72px;padding:16px;gap:15px}
  .product-money-row strong{font-size:22px}
  .product-money-safe{grid-template-columns:1fr auto;gap:8px}
  .product-money-safe strong{font-size:26px}
  .product-money-safe b{grid-column:1/-1;justify-self:start}

  .money-copy{text-align:center}
  .money-copy>p{margin-inline:auto}
  .money-copy .text-link{justify-content:center}
  .method-head{text-align:center}
  .method-head p{margin-inline:auto}
  .cta-frame{text-align:center}
  .cta-actions{align-items:center}
  .cta-copy h2{margin-inline:auto}
}
.micro-card,.safe-card{animation:none!important}
@media(pointer:fine) and (prefers-reduced-motion:no-preference){
  .path-card .doc-sheet,.path-card .design-frame,.path-card .design-word{transition:transform .35s ease}
  .path-card-green:hover .sheet-front{transform:rotate(-1deg) translateY(-5px)}
  .path-card-green:hover .sheet-back{transform:rotate(6deg) translate(3px,-2px)}
  .path-card-light:hover .frame-two{transform:rotate(1deg) translateY(-4px)}
  .path-card-light:hover .frame-three{transform:rotate(-2deg) translateY(-3px)}
  .path-card-light:hover .design-word{transform:translateY(-3px)}
}


/* Quinbis V1.1 — contrast + Quin Method motion pass */
:root{
  --surface-soft:#F7F8F6;
  --surface-green:#F3F7F2;
  --line-soft:rgba(13,13,13,.12);
  --dark-copy:rgba(255,255,255,.72);
  --dark-muted:rgba(255,255,255,.62);
}

/* Brand contrast rule: Monochrome Base is for light surfaces; Lime is the accent on Onyx. */
.section-dark .money-copy h2 em{color:var(--lime)}
.money-copy>p{color:var(--dark-copy)}
.safe-badge,.safe-copy span,.safe-card p,.safe-foot{color:var(--dark-copy)}
.path-card-green p,.path-card-dark p{color:var(--dark-copy)}
.path-card-green .path-card-top,.path-card-dark .path-card-top{color:var(--dark-muted)}
.quinbis-product-copy>p{color:var(--dark-copy)}
.product-money-safe div>span{color:rgba(255,255,255,.72)}
.product-money-safe small{color:rgba(255,255,255,.66)}
.insight-art-one .insight-label,.insight-art-two .insight-label{color:rgba(255,255,255,.72)}
.footer-brand p{color:rgba(255,255,255,.64)}
.footer-col a{color:rgba(255,255,255,.72)}
.footer-bottom{color:rgba(255,255,255,.58)}
.cta-actions>a:last-child{color:rgba(255,255,255,.72)}

/* The Quin Method: quiet at rest, directional on hover. */
.method-head .section-kicker span{padding:0 .32em;color:var(--lime)}
.method-list li{
  position:relative;
  overflow:hidden;
  transition:padding-left .28s cubic-bezier(.2,.7,.2,1),background-color .28s ease;
}
.method-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background:var(--lime);
  transform:scaleY(0);
  transform-origin:center;
  transition:transform .28s cubic-bezier(.2,.7,.2,1);
}
.method-list h3,.method-list p,.method-number{transition:transform .28s cubic-bezier(.2,.7,.2,1),color .2s ease}
@media(prefers-reduced-motion:no-preference){
  .method-list .reveal:nth-child(2){transition-delay:.045s}
  .method-list .reveal:nth-child(3){transition-delay:.09s}
  .method-list .reveal:nth-child(4){transition-delay:.135s}
  .method-list .reveal:nth-child(5){transition-delay:.18s}
}
@media(pointer:fine) and (prefers-reduced-motion:no-preference){
  .method-list li:hover{
    padding-left:18px;
    background:linear-gradient(90deg,var(--green-08),transparent 42%);
  }
  .method-list li:hover::before{transform:scaleY(1)}
  .method-list li:hover h3,.method-list li:hover p{transform:translateX(3px)}
  .method-list li:hover .method-number{color:var(--onyx)}
}
@media(prefers-reduced-motion:reduce){
  .method-list li,.method-list li::before,.method-list h3,.method-list p,.method-number{transition:none!important}
}

/* Quinbis install prompt V3: compact browser-install action, shown only when installable. */
.quinbis-install-card{
  position:fixed;top:84px;right:20px;z-index:1400;
  width:min(390px,calc(100vw - 32px));min-height:76px;
  display:grid;grid-template-columns:46px minmax(0,1fr) auto 30px;align-items:center;gap:11px;
  padding:12px 10px 12px 12px;border:1px solid rgba(1,61,55,.13);border-radius:18px;
  background:rgba(255,255,255,.98);box-shadow:0 18px 52px rgba(1,61,55,.17);
  color:#0D0D0D;font-family:"Aileron","Arial Nova",Arial,Helvetica,sans-serif;
  opacity:0;transform:translateY(-8px);pointer-events:none;
  transition:opacity .18s ease,transform .18s ease;
}
.quinbis-install-card.is-visible{opacity:1;transform:translateY(0);pointer-events:auto}
.quinbis-install-icon{width:44px;height:44px;border-radius:13px;display:block}
.quinbis-install-copy{min-width:0;display:grid;gap:3px}
.quinbis-install-copy strong{font-size:14px;line-height:1.2;font-weight:700;color:#013D37}
.quinbis-install-copy span{font-size:11.5px;line-height:1.4;color:#52645E}
.quinbis-install-action{
  min-height:38px;padding:0 14px;border:0;border-radius:11px;background:#013D37;color:#fff;
  font:700 12px/1 "Aileron","Arial Nova",Arial,Helvetica,sans-serif;cursor:pointer;
}
.quinbis-install-action:hover{background:#064A43}
.quinbis-install-action:focus-visible,.quinbis-install-close:focus-visible{outline:3px solid rgba(119,214,80,.32);outline-offset:2px}
.quinbis-install-action:disabled{opacity:.62;cursor:default}
.quinbis-install-close{
  width:30px;height:30px;border:0;border-radius:9px;background:transparent;color:#52645E;
  font:400 23px/1 Arial,sans-serif;display:grid;place-items:center;cursor:pointer;
}
.quinbis-install-close:hover{background:#F0F7E7;color:#013D37}
@media(max-width:680px){
  .quinbis-install-card{
    top:74px;left:14px;right:14px;width:auto;
    grid-template-columns:42px minmax(0,1fr) auto 28px;gap:9px;padding:10px;border-radius:16px;
  }
  .quinbis-install-icon{width:40px;height:40px;border-radius:12px}
  .quinbis-install-copy strong{font-size:13px}
  .quinbis-install-copy span{font-size:10.5px}
  .quinbis-install-action{min-height:36px;padding:0 12px;font-size:11px}
}
@media(max-width:420px){
  .quinbis-install-card{grid-template-columns:40px minmax(0,1fr) auto;}
  .quinbis-install-close{position:absolute;right:5px;top:4px;width:26px;height:26px}
  .quinbis-install-copy{padding-right:16px}
}

/* Quinbis wordmark alignment V23: header and footer use the same wordmark scale. */
.site-header .brand-word{font-size:24px}
@media(max-width:680px){.site-header .brand-word{font-size:21px}}
