:root{
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: rgba(11,11,11,.64);
  --muted2: rgba(11,11,11,.5);
  --line: rgba(11,11,11,.10);
  --card: #ffffff;
  --tint: #f6f6f6;
  --shadow: 0 8px 30px rgba(0,0,0,.08);
  --shadow2: 0 10px 40px rgba(0,0,0,.10);
  --radius: 18px;
  --radius2: 24px;
  --container: 1120px;
  --container-narrow: 760px;
  --blue: #1f6feb;
  --blue2: #0b5bd3;
  --focus: rgba(31,111,235,.35);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
code{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; font-size: .95em; background: rgba(0,0,0,.05); padding: .1em .35em; border-radius: 8px; }

.container{ width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container.narrow{ width: min(var(--container-narrow), calc(100% - 40px)); }

.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip: rect(0,0,0,0);
  border:0;
}

.muted{ color: var(--muted); }
.dot{ margin: 0 10px; color: rgba(11,11,11,.35); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  height: 36px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  letter-spacing: .1px;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.btn:focus{ outline: none; }
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: linear-gradient(135deg, #1f6feb, #4a1463);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(31,111,235,.2);
}
.btn-primary:hover{ background: linear-gradient(135deg, #0b5bd3, #3a0f4f); box-shadow: 0 6px 20px rgba(31,111,235,.28); }

/* Secondary CTA */
.btn.btn-demo{
  background: rgba(31,111,235,.12);
  border-color: rgba(31,111,235,.12);
  color: var(--blue);
  box-shadow: none !important;
}

.btn.btn-demo:hover{
  background: rgba(31,111,235,.16);
  border-color: rgba(31,111,235,.16);
  box-shadow: none !important;
}

.btn.btn-demo:focus{
  outline: none;
  box-shadow: none !important;
}

.btn-ghost{
  background: linear-gradient(135deg, rgba(243,229,245,.2), rgba(225,245,254,.15));
  border-color: rgba(206,147,216,.15);
}
.btn-ghost:hover{ background: linear-gradient(135deg, rgba(243,229,245,.35), rgba(225,245,254,.25)); border-color: rgba(206,147,216,.25); }

.btn.w100{ width: 100%; }

.link{ color: #7b1fa2; font-weight: 600; transition: color .2s ease; }
.link:hover{ text-decoration: underline; color: #4a148c; }

.i{ width: 18px; height: 18px; display:inline-block; }
.i-chev{ width: 18px; height: 18px; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-row{
  height: 64px;
  display:flex;
  align-items:center;
  justify-content: flex-start;
  gap: 10px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand-mark{
  width: 36px; height: 36px;
  display:grid; place-items:center;
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}
.brand-name{ font-weight: 750; letter-spacing: .2px; }
.brand.small .brand-mark{ width: 30px; height: 30px; border-radius: 10px; }
.brand.tiny .brand-mark{ width: 28px; height: 28px; border-radius: 10px; }

/* Nav typography: force everything to match Product */
.site-header .nav-desktop a,
.site-header .nav-desktop button{
  font-size: 14px !important;
  line-height: 20px !important;
  font-weight: 500;
}

.nav{ display:flex; align-items:center; gap: 12px; flex: 1; }
.nav-toggle{
  display:none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  cursor:pointer;
}
.nav-toggle-lines{
  display:block;
  width: 18px; height: 2px;
  background: rgba(11,11,11,.7);
  position:relative;
  margin: 0 auto;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px; height: 2px;
  background: rgba(11,11,11,.7);
}
.nav-toggle-lines::before{ top: -6px; }
.nav-toggle-lines::after{ top: 6px; }

/* Mobile CTA + burger group: hidden on desktop */
.nav-mobile-right{ display:none; }

.nav-desktop{ display:flex; align-items:center; gap: 16px; width: 100%;
              margin-left: auto;
              justify-content: flex-end;}

.nav-items{
  display:flex;
  align-items:center;
  gap: 2px;

  position: relative;   /* anchor for mega panels */
}

.nav-item{
  position: static;     /* stop being the anchor */
}

.nav-link{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 600;
  color: rgba(11,11,11,.86);
  background: transparent;
  border: 0;
  cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.nav-item.is-open > .nav-link{ background: linear-gradient(135deg, rgba(243,229,245,.4), rgba(225,245,254,.3)); color: #7b1fa2; }
.nav-item.is-open > .nav-link .i-chev{ transform: rotate(180deg); }
.nav-link .i-chev{ transition: transform .22s cubic-bezier(.16,1,.3,1); }
.nav-link.plain{ cursor: default; }
a.nav-link.plain{ cursor:pointer; }
.nav-link:hover{ background: linear-gradient(135deg, rgba(243,229,245,.25), rgba(225,245,254,.2)); }
.nav-link:focus{ outline:none; box-shadow: 0 0 0 4px rgba(206,147,216,.25); }

.site-header .nav-cta .btn.btn-primary{
  border-radius: 8px;
  box-shadow: none !important;
  padding: 6px 14px !important;
  min-height: 20px;
  font-size: 14px !important;
}

.nav-cta{ display:flex; align-items:center; gap: 12px; }
.subtle{ color: rgba(11,11,11,.72); }

.mega{
  position:absolute;
  top: 56px;
  left: 50%;
  --mega-shift: 0px;
  transform: translateX(calc(-50% + var(--mega-shift))) translateY(8px);
  width: 860px;
  max-width: calc(100vw - 40px);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 20px;
  box-shadow:
    0 12px 48px rgba(0,0,0,.08),
    0 2px 8px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.6);
  padding: 14px;
  display:none;
  opacity:0;
  transition: opacity .22s cubic-bezier(.16,1,.3,1), transform .22s cubic-bezier(.16,1,.3,1);
  overflow: hidden;
}
.mega::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #f48fb1 0%, #ce93d8 25%, #81d4fa 50%, #80cbc4 75%, #ffcc80 100%);
  opacity:.65;
}
.mega.open{
  display:block;
  opacity:1;
  transform: translateX(calc(-50% + var(--mega-shift))) translateY(0);
}
.mega-inner{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
  position:relative;
  z-index:1;
}

/* Product mega menu, aligned to Notion-style layout */
.mega.mega-product{ padding: 12px; }
.mega-product-banner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(243,229,245,.45) 0%, rgba(227,242,253,.35) 50%, rgba(232,245,233,.3) 100%);
  border: 1px solid rgba(206,147,216,.15);
  margin-bottom: 12px;
  transition: background .25s ease;
}
.mp-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.mp-logo{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(206,147,216,.18);
  display:grid;
  place-items:center;
  box-shadow: 0 2px 8px rgba(206,147,216,.12);
}
.mp-logo img{ width: 26px; height: 26px; }
.mp-brand-txt{ display:flex; flex-direction: column; line-height: 1.15; }
.mp-name{ font-weight: 800; }
.mp-tagline{ font-size: 13px; color: var(--muted); margin-top: 2px; }

.mp-mini-wrap{ display:flex; align-items:center; gap: 10px; }
.mp-mini{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(206,147,216,.12);
  font-weight: 700;
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.mp-mini:hover{ box-shadow: 0 8px 24px rgba(206,147,216,.14); transform: translateY(-2px); border-color: rgba(206,147,216,.25); }
.mp-mini-ic{ width: 32px; height: 32px; border-radius: 12px; background: linear-gradient(135deg, rgba(243,229,245,.6), rgba(225,190,231,.3)); display:grid; place-items:center; }
.mp-mini-ic .i{ width: 18px; height: 18px; }
.mp-mini-txt{ white-space: nowrap; }

.mega-product-body{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
}
.mp-ai{
  padding: 10px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(243,229,245,.2) 0%, rgba(255,255,255,.5) 100%);
}
.mp-features{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 10px;
  padding: 6px;
}
.mp-feature{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease;
}
.mp-feature:hover{ background: linear-gradient(135deg, rgba(243,229,245,.25), rgba(225,245,254,.2)); transform: translateX(2px); }
.mpf-ic{ width: 32px; height: 32px; border-radius: 10px; display:grid; place-items:center; transition: transform .2s ease; }
.mp-feature:hover .mpf-ic{ transform: scale(1.08); }
.mpf-ic .i{ width: 17px; height: 17px; }
.mpf-title{ display:block; font-weight: 800; }
.mpf-desc{ display:block; color: var(--muted); font-size: 13px; margin-top: 2px; }

.mega-simple{ display:flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.mega-simple-link{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 750;
  transition: background .2s ease, transform .18s ease, color .2s ease;
}
.mega-simple-link:hover{ background: linear-gradient(135deg, rgba(178,223,219,.2), rgba(129,212,250,.15)); transform: translateX(2px); color: #00897b; }
.mega-right.full{ grid-column: 1 / -1; }
.mega-left{
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(243,229,245,.15) 0%, rgba(255,255,255,.3) 100%);
  border: 0;
}
.mega-brand{ display:flex; align-items:center; gap: 10px; padding: 8px 8px 12px; }
.mega-logo{
  width: 34px; height: 34px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232,234,246,.5), rgba(243,229,245,.4));
  font-weight: 800;
}
.mega-title{ font-weight: 800; }
.mega-subtitle{ color: var(--muted); font-size: 13px; }

.mega-note{
  font-size: 11px;
  color: rgba(206,147,216,.85);
  font-weight: 700;
  margin: 6px 0 10px;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.mega-item{
  display:flex; align-items:flex-start; gap: 10px;
  padding: 7px 10px;
  border-radius: 12px;
  transition: background .2s ease, transform .18s ease;
}
.mega-item:hover{ background: linear-gradient(135deg, rgba(243,229,245,.3), rgba(225,245,254,.25)); transform: translateX(2px); }
.mi-ic{ width: 32px; height: 32px; border-radius: 10px; display:grid; place-items:center; transition: background .2s ease, transform .2s ease; }
.mega-item:hover .mi-ic{ transform: scale(1.08); }
.mi-ic .i{ width: 17px; height: 17px; }

/* Colorful icon backgrounds — Notion style */
.mi-ic-violet{ background: rgba(124,58,237,.1);  color: #7c3aed; }
.mi-ic-blue{   background: rgba(59,130,246,.1);  color: #3b82f6; }
.mi-ic-teal{   background: rgba(20,184,166,.1);  color: #14b8a6; }
.mi-ic-amber{  background: rgba(245,158,11,.1);  color: #f59e0b; }
.mi-ic-rose{   background: rgba(244,63,94,.1);   color: #f43f5e; }
.mi-ic-green{  background: rgba(34,197,94,.1);   color: #22c55e; }
.mi-ic-indigo{ background: rgba(99,102,241,.1);  color: #6366f1; }
.mi-ic-orange{ background: rgba(249,115,22,.1);  color: #f97316; }
.mpf-ic-violet{ background: rgba(124,58,237,.1); color: #7c3aed; }
.mpf-ic-blue{   background: rgba(59,130,246,.1); color: #3b82f6; }
.mpf-ic-teal{   background: rgba(20,184,166,.1); color: #14b8a6; }
.mpf-ic-amber{  background: rgba(245,158,11,.1); color: #f59e0b; }
.mpf-ic-rose{   background: rgba(244,63,94,.1);  color: #f43f5e; }
.mpf-ic-green{  background: rgba(34,197,94,.1);  color: #22c55e; }
.mpf-ic-indigo{ background: rgba(99,102,241,.1); color: #6366f1; }
.mpf-ic-orange{ background: rgba(249,115,22,.1); color: #f97316; }
.mi-title{ display:block; font-weight: 750; }
.mi-desc{ display:block; color: var(--muted); font-size: 13px; margin-top: 1px; }

.mega-right{
  padding: 10px;
}
.mega-topbox{
  border: 1px solid rgba(206,147,216,.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(243,229,245,.12), rgba(225,245,254,.08));
  padding: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.topbox-item{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(206,147,216,.1);
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.topbox-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206,147,216,.12);
  border-color: rgba(206,147,216,.22);
}
.topbox-ic{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(232,234,246,.5), rgba(243,229,245,.4));
  font-weight: 900;
  color: rgba(11,11,11,.76);
}
.topbox-title{ display:block; font-weight: 800; }
.topbox-desc{ display:block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.mega-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mega-card{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(206,147,216,.1);
  background: rgba(255,255,255,.6);
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease;
}
.mega-card:hover{ transform: translateY(-2px); box-shadow: 0 8px 24px rgba(206,147,216,.12); border-color: rgba(206,147,216,.2); }
.mc-title{ font-weight: 750; }
.mc-desc{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.mega-footer{
  display:flex; align-items:center; justify-content: space-between;
  padding: 14px 8px 4px;
  border-top: 1px solid rgba(206,147,216,.12);
  margin-top: 12px;
}
.mega-footer .link{
  color: #7b1fa2;
  font-weight: 600;
  transition: color .2s ease;
}
.mega-footer .link:hover{ color: #4a148c; }
.mega-footer-left{ display:flex; align-items:center; gap: 10px; }

.mega-three{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 4px 6px;
}
.mega-three > div{
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.3) 0%, rgba(232,234,246,.12) 100%);
}
.mega-link{
  display:flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 12px;
  font-weight: 650;
  transition: background .2s ease, transform .18s ease, color .2s ease;
  position:relative;
}
.mega-link:hover{ background: linear-gradient(135deg, rgba(243,229,245,.3), rgba(225,245,254,.25)); transform: translateX(3px); color: #7b1fa2; }
.mega-link .mi-ic{ width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
.mega-link .mi-ic .i{ width: 15px; height: 15px; }

.mega-columns{ display:flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.mega-pill{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(206,147,216,.15);
  background: linear-gradient(135deg, rgba(243,229,245,.15), rgba(225,245,254,.1));
  font-weight: 650;
  transition: background .2s ease, border-color .2s ease, transform .18s ease;
}
.mega-pill:hover{ background: linear-gradient(135deg, rgba(243,229,245,.35), rgba(225,245,254,.25)); border-color: rgba(206,147,216,.3); transform: translateY(-1px); }

.mega-muted-box{
  margin-top: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(206,147,216,.08), rgba(129,212,250,.08));
  border: 1px solid rgba(206,147,216,.14);
  padding: 14px;
}
.mega-muted-title{ font-weight: 750; }
.mega-muted-text{ margin-top: 4px; color: rgba(11,11,11,.70); font-size: 13px; }

/* AI mega menu – 3-column layout */
.mega.mega-ai{ padding: 0; }
.mega.mega-ai .mega-footer{
  margin: 0 14px;
  padding: 14px 8px 12px;
}
.mega-ai-body{
  display: grid;
  grid-template-columns: 1fr 1fr 220px;
  gap: 0;
  padding: 14px;
}
.mega-ai-col{
  padding: 8px;
  border-radius: 14px;
}
.mega-ai-col-right{
  background: linear-gradient(180deg, rgba(243,229,245,.12) 0%, rgba(225,245,254,.08) 100%);
  border-left: 1px solid rgba(206,147,216,.1);
  margin-left: 4px;
  padding-left: 16px;
}
.mega-ai-promo{
  margin-top: 14px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(206,147,216,.1), rgba(129,212,250,.1));
  border: 1px solid rgba(206,147,216,.14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mega-ai-promo-badge{
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, #ce93d8, #81d4fa);
  color: #fff;
  margin-bottom: 2px;
}
.mega-ai-promo-title{ font-weight: 800; font-size: 14px; }
.mega-ai-promo-desc{ font-size: 13px; color: var(--muted); line-height: 1.4; }
.mega-ai-promo-link{
  font-size: 13px;
  font-weight: 700;
  color: #7b1fa2;
  margin-top: 4px;
  transition: color .2s ease;
}
.mega-ai-promo-link:hover{ color: #4a148c; }

.nav-scrim{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(4px);
  z-index: 20;
}

.nav-mobile{
  position: fixed;
  inset: 0;
  z-index: 30;
  display:none;
}
.nav-mobile.open{ display:block; }
.nav-mobile-panel{
  position:absolute;
  right: 14px;
  top: 14px;
  width: min(360px, calc(100% - 28px));
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow2);
  padding: 14px;
}
.nav-mobile-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.nav-close{
  width: 42px; height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(11,11,11,.03);
  cursor:pointer;
  font-size: 22px;
  line-height: 0;
}
.nav-mobile-links{
  display:flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 2px 6px;
}
.nav-mobile-links a{
  padding: 12px 12px;
  border-radius: 14px;
  font-weight: 650;
}
.nav-mobile-links a:hover{ background: rgba(11,11,11,.05); }
.nav-mobile-divider{
  height: 1px;
  background: rgba(0,0,0,.08);
  margin: 6px 8px;
}
.nav-mobile-foot{ padding: 10px 8px 4px; font-size: 13px; }

.site-main{ min-height: calc(100vh - 64px); }

.hero{
  padding: 54px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items:center;
}
.eyebrow{
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(206,147,216,.8), rgba(129,212,250,.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.hero-title{
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #0b0b0b 0%, #4a1463 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle{
  font-size: 16.5px;
  color: rgba(11,11,11,.72);
  margin: 14px 0 18px;
  max-width: 55ch;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap: wrap;}

/* Home hero: make only these 2 buttons taller */
.home .hero-actions .btn{
  height: 44px;     /* try 46px or 48px if you want more */
  padding: 0 18px;  /* left/right padding, keeps height clean */
}

.hero-note{ margin-top: 12px; font-size: 13px; }

.hero-media{
  position:relative;
}
.hero-illus{
  width: 100%;
  display:flex;
  justify-content: center;
  padding: 10px;
}
.hero-shot{
  border-radius: var(--radius2);
  border: 1px solid rgba(206,147,216,.12);
  box-shadow: 0 16px 48px rgba(206,147,216,.1), 0 4px 12px rgba(0,0,0,.04);
  overflow:hidden;
  transition: box-shadow .3s ease;
}
.hero-shot:hover{
  box-shadow: 0 20px 56px rgba(206,147,216,.15), 0 6px 16px rgba(0,0,0,.06);
}

.logos{
  padding: 28px 0 18px;
  position: relative;
}
.logos::before{
  content:'';
  position:absolute;
  top:0; left:50%;
  transform:translateX(-50%);
  width: min(600px, 80%);
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(206,147,216,.3), rgba(129,212,250,.3), transparent);
}
.logos-row{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  margin-bottom: 16px;
  font-weight: 500;
}
.logos-row .dot{
  background: linear-gradient(135deg, #ce93d8, #81d4fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logos-grid{
  display:flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.logo-pill{
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(206,147,216,.12);
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(243,229,245,.15));
  font-weight: 700;
  color: rgba(11,11,11,.74);
  letter-spacing: .02em;
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s ease, border-color .25s ease, background .25s ease;
  cursor: default;
}
.logo-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206,147,216,.12);
  border-color: rgba(206,147,216,.25);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(243,229,245,.3));
}

.section{
  padding: 72px 0;
}
.section.tint{ background: linear-gradient(180deg, #faf8ff 0%, #f3f0fa 50%, #f0f7fa 100%); }
.section-head{ text-align:center; margin-bottom: 28px; }
.h2{
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.025em;
  background: linear-gradient(135deg, #1a1a2e 0%, #4a1463 50%, #1a5276 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p{ margin: 12px auto 0; max-width: 60ch; font-size: 16px; }

.feature-split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 24px;
}
.card{
  border: 1px solid rgba(206,147,216,.1);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, rgba(243,229,245,.08) 100%);
  box-shadow: 0 1px 3px rgba(206,147,216,.06);
  padding: 20px;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(206,147,216,.1), 0 2px 6px rgba(0,0,0,.04);
  border-color: rgba(206,147,216,.2);
}
.card.big{
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff 60%, rgba(243,229,245,.18) 100%);
  border: 1px solid rgba(206,147,216,.12);
  position: relative;
  overflow: hidden;
}
.card.big::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, #f48fb1, #ce93d8, #81d4fa);
  opacity:.5;
  border-radius: 22px 22px 0 0;
}
.card-kicker{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(206,147,216,.85);
  font-weight: 700;
}
.card-title{ font-weight: 800; font-size: 20px; margin-top: 10px; }
.card-text{ margin-top: 10px; line-height: 1.55; }
.card-actions{ margin-top: 16px; }

.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.shot-frame{
  border-radius: 24px;
  border: 1px solid rgba(206,147,216,.12);
  background: linear-gradient(180deg, #fff, rgba(243,229,245,.06));
  box-shadow: 0 12px 40px rgba(206,147,216,.08), 0 2px 8px rgba(0,0,0,.04);
  overflow:hidden;
  height: 100%;
  min-height: 360px;
  display:flex;
  transition: box-shadow .3s ease;
}
.shot-frame:hover{
  box-shadow: 0 16px 48px rgba(206,147,216,.14), 0 4px 12px rgba(0,0,0,.06);
}
.shot-frame img{ width: 100%; object-fit: cover; }

.feature-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini{
  border: 1px solid rgba(206,147,216,.1);
  border-radius: 22px;
  padding: 22px 20px;
  background: linear-gradient(180deg, #fff 0%, rgba(243,229,245,.06) 100%);
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
  position: relative;
}
.mini:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(206,147,216,.1);
  border-color: rgba(206,147,216,.22);
}
.mini:nth-child(1) .mini-ic{ background: linear-gradient(135deg, rgba(129,212,250,.2), rgba(179,229,252,.15)); color: #0288d1; }
.mini:nth-child(2) .mini-ic{ background: linear-gradient(135deg, rgba(206,147,216,.2), rgba(243,229,245,.2)); color: #7b1fa2; }
.mini:nth-child(3) .mini-ic{ background: linear-gradient(135deg, rgba(128,203,196,.2), rgba(178,223,219,.15)); color: #00796b; }
.mini-ic{
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(232,234,246,.35), rgba(243,229,245,.3));
  display:grid; place-items:center;
  transition: transform .25s ease, background .25s ease;
}
.mini:hover .mini-ic{ transform: scale(1.08); }
.mini-title{ font-weight: 800; margin-top: 14px; font-size: 16px; }
.mini-text{ margin-top: 8px; font-size: 14px; line-height: 1.5; }

.app-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.app-card{
  display:flex;
  gap: 14px;
  align-items:center;
  border: 1px solid rgba(206,147,216,.1);
  border-radius: 20px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff 0%, rgba(243,229,245,.06) 100%);
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.app-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(206,147,216,.1);
  border-color: rgba(206,147,216,.22);
}
.app-ic{
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight: 800;
  font-size: 15px;
  transition: transform .25s ease;
}
.app-card:hover .app-ic{ transform: scale(1.08); }
.app-card:nth-child(1) .app-ic{ background: linear-gradient(135deg, rgba(206,147,216,.2), rgba(225,190,231,.15)); color: #7b1fa2; }
.app-card:nth-child(2) .app-ic{ background: linear-gradient(135deg, rgba(129,212,250,.2), rgba(179,229,252,.15)); color: #0288d1; }
.app-card:nth-child(3) .app-ic{ background: linear-gradient(135deg, rgba(128,203,196,.2), rgba(178,223,219,.15)); color: #00796b; }
.app-card:nth-child(4) .app-ic{ background: linear-gradient(135deg, rgba(255,204,128,.25), rgba(255,224,178,.18)); color: #e65100; }
.app-card:nth-child(5) .app-ic{ background: linear-gradient(135deg, rgba(244,143,177,.2), rgba(248,187,208,.15)); color: #c2185b; }
.app-card:nth-child(6) .app-ic{ background: linear-gradient(135deg, rgba(165,214,167,.2), rgba(200,230,201,.15)); color: #2e7d32; }
.app-title{ font-weight: 800; }
.pricing-strip{
  margin-top: 22px;
  border: 1px solid rgba(206,147,216,.12);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,.9) 0%, rgba(243,229,245,.12) 50%, rgba(225,245,254,.1) 100%);
  box-shadow: 0 12px 40px rgba(206,147,216,.08), 0 2px 6px rgba(0,0,0,.03);
  display:grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 14px;
  align-items:center;
  position: relative;
  overflow: hidden;
}
.pricing-strip::before{
  content:'';
  position:absolute;
  bottom:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, #f48fb1, #ce93d8, #81d4fa, #80cbc4);
  opacity:.4;
}
.ps-item{
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(243,229,245,.08));
  border: 1px solid rgba(206,147,216,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ps-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(206,147,216,.08);
}
.ps-k{ font-size: 11px; color: rgba(206,147,216,.75); text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.ps-v{
  font-size: 26px;
  font-weight: 850;
  margin-top: 4px;
  background: linear-gradient(135deg, #1a1a2e, #4a1463);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quotes{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote-card{
  border: 1px solid rgba(206,147,216,.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, rgba(243,229,245,.06) 100%);
  box-shadow: 0 1px 3px rgba(206,147,216,.05);
  padding: 24px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
}
.quote-card::before{
  content:'';
  position:absolute;
  top:0; left:0; bottom:0;
  width: 3px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, #ce93d8, #81d4fa);
  opacity:.5;
  transition: opacity .25s ease;
}
.quote-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(206,147,216,.12);
  border-color: rgba(206,147,216,.22);
}
.quote-card:hover::before{ opacity:.85; }
.quote-header{
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.quote-logo{
  font-weight: 850;
  font-size: 17px;
  background: linear-gradient(135deg, #4a1463, #1a5276);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quote-stars{
  font-size: 13px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quote-body{
  position: relative;
  padding-left: 22px;
  flex: 1;
}
.quote-mark{
  position:absolute;
  top: -6px;
  left: 0;
  font-size: 40px;
  line-height: 1;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, rgba(206,147,216,.4), rgba(129,212,250,.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quote-text{ font-size: 15px; line-height: 1.6; color: rgba(11,11,11,.78); }
.quote-cta{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  font-weight: 650;
  font-size: 14px;
  color: #7b1fa2;
  transition: gap .22s ease, color .22s ease;
  margin-top: auto;
}
.quote-cta:hover{ gap: 10px; color: #4a148c; }
.quote-arrow{ transition: transform .22s ease; }
.quote-cta:hover .quote-arrow{ transform: translateX(2px); }

.steps{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step{
  border: 1px solid rgba(206,147,216,.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, rgba(243,229,245,.06) 100%);
  padding: 22px 20px;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease, border-color .28s ease;
  position: relative;
}
.step:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(206,147,216,.12);
  border-color: rgba(206,147,216,.22);
}
.step-top{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 14px;
}
.step-connector{
  flex:1;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(206,147,216,.25) 0, rgba(206,147,216,.25) 4px, transparent 4px, transparent 8px);
  border-radius: 2px;
}
.step-ic{
  width: 38px; height: 38px;
  min-width: 38px;
  border-radius: 999px;
  display:grid; place-items:center;
  font-weight: 850;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover .step-ic{ transform: scale(1.12); }
.step:nth-child(1) .step-ic{ background: linear-gradient(135deg, rgba(206,147,216,.22), rgba(225,190,231,.15)); color: #7b1fa2; }
.step:nth-child(2) .step-ic{ background: linear-gradient(135deg, rgba(129,212,250,.22), rgba(179,229,252,.15)); color: #0277bd; }
.step:nth-child(3) .step-ic{ background: linear-gradient(135deg, rgba(128,203,196,.22), rgba(178,223,219,.15)); color: #00796b; }
.step:nth-child(4) .step-ic{ background: linear-gradient(135deg, rgba(255,204,128,.25), rgba(255,224,178,.18)); color: #e65100; }
.step:hover .step-ic{ box-shadow: 0 4px 12px rgba(206,147,216,.15); }
.step-title{ font-weight: 850; font-size: 16px; }
.step-text{ margin-top: 8px; font-size: 14px; line-height: 1.55; }

.cta-band{
  margin-top: 24px;
  border: 1px solid rgba(206,147,216,.14);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(243,229,245,.18) 40%, rgba(225,245,254,.12) 100%);
  padding: 24px 28px;
  box-shadow: 0 14px 44px rgba(206,147,216,.1), 0 2px 6px rgba(0,0,0,.03);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.cta-band:hover{
  box-shadow: 0 18px 52px rgba(206,147,216,.14), 0 4px 10px rgba(0,0,0,.04);
}
.cta-band::before{
  content:'';
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, #f48fb1, #ce93d8, #81d4fa, #80cbc4, #ffcc80);
  opacity:.55;
}
.cta-band::after{
  content:'';
  position:absolute;
  bottom: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(206,147,216,.08), transparent 70%);
  pointer-events: none;
}
.cta-title{ font-weight: 900; font-size: 20px; }
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; position: relative; z-index:1; }

.site-footer{
  padding: 52px 0 28px;
  border-top: none;
  background: linear-gradient(180deg, #fff 0%, rgba(250,248,255,.6) 100%);
  position: relative;
}
.footer-accent{
  position:absolute;
  top:0; left:0; right:0;
  height: 3px;
  background: linear-gradient(90deg, #f48fb1, #ce93d8, #81d4fa, #80cbc4, #ffcc80);
  opacity:.45;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 24px;
}
.footer-brand .brand-mark img{ width: 20px; height: 20px; }
.footer-tagline{ margin: 12px 0 16px; color: rgba(11,11,11,.62); max-width: 40ch; font-size: 14px; line-height: 1.55; }
.footer-social{ display:flex; gap: 10px; }
.footer-ic{
  width: 36px; height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(206,147,216,.1);
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(243,229,245,.18), rgba(225,245,254,.12));
  color: rgba(11,11,11,.6);
  transition: transform .22s cubic-bezier(.16,1,.3,1), box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.footer-ic:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(206,147,216,.12);
  border-color: rgba(206,147,216,.22);
  background: linear-gradient(135deg, rgba(243,229,245,.35), rgba(225,245,254,.25));
  color: #7b1fa2;
}
.footer-ic svg{ display:block; }
.footer-cols{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.footer-h{
  font-weight: 850;
  margin-bottom: 12px;
  font-size: 14px;
  background: linear-gradient(135deg, #1a1a2e, #4a1463);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-a{
  display:block;
  padding: 7px 10px;
  border-radius: 10px;
  color: rgba(11,11,11,.65);
  font-weight: 550;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .18s ease;
}
.footer-a:hover{
  background: linear-gradient(135deg, rgba(243,229,245,.25), rgba(225,245,254,.18));
  color: #7b1fa2;
  transform: translateX(2px);
}
.footer-bottom{
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(206,147,216,.08);
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-legal{ font-size: 13.5px; }
.footer-legal a{ color: rgba(11,11,11,.62); font-weight: 600; transition: color .2s ease; }
.footer-legal a:hover{ color: #7b1fa2; text-decoration: underline; }
.footer-small{ font-size: 13px; }

.page{ padding: 54px 0; }
.page-head{ margin-bottom: 18px; }
.page-title{ font-size: 42px; margin: 0; letter-spacing: -0.02em; }
.page-subtitle{ margin: 10px 0 0; color: rgba(11,11,11,.72); }

.prose{ font-size: 16px; }
.prose h2{ margin-top: 32px; letter-spacing: -0.01em; }
.prose p{ color: rgba(11,11,11,.82); }
.prose a{ color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.blog-list{ display:grid; gap: 12px; margin-top: 18px; }
.blog-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-card:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.blog-card-top{ display:flex; align-items:baseline; justify-content: space-between; gap: 12px; }
.blog-title{ font-weight: 850; font-size: 18px; }
.blog-excerpt{ margin-top: 8px; }

.post{ padding: 54px 0; }
.backlink{ display:inline-block; color: rgba(11,11,11,.68); font-weight: 650; margin-bottom: 12px; }
.post-title{ font-size: 44px; letter-spacing: -0.02em; margin: 0; line-height: 1.1; }
.post-meta{ margin-top: 12px; font-size: 13px; display:flex; gap: 10px; flex-wrap: wrap; align-items:center; }
.post-cover{ margin-top: 18px; border-radius: 24px; overflow:hidden; border: 1px solid rgba(0,0,0,.10); box-shadow: var(--shadow); }
.post-body{ margin-top: 18px; }
.post-cta{ margin-top: 26px; }
.post-cta-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 26px;
  background: rgba(31,111,235,.05);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.post-cta-title{ font-weight: 900; }
.post-cta-text{ margin-top: 4px; font-size: 13.5px; }

[data-reveal]{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.revealed{
  opacity: 1;
  transform: translateY(0);
}
article.post-body[data-reveal]{
  opacity: 1;
  transform: none;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .feature-split{ grid-template-columns: 1fr; }
  .feature-grid{ grid-template-columns: 1fr; }
  .app-grid{ grid-template-columns: 1fr 1fr; }
  .quotes{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .pricing-strip{ grid-template-columns: 1fr 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr 1fr; }
  .mega{ width: min(720px, calc(100vw - 24px)); left: -12px; }
  .mega-ai-body{ grid-template-columns: 1fr 1fr; }
  .mega-ai-col-right{ grid-column: 1 / -1; border-left: none; border-top: 1px solid rgba(206,147,216,.1); margin-left: 0; margin-top: 8px; padding-top: 12px; padding-left: 8px; }
  .mega-ai-col-right .mega-simple{ flex-direction: row; flex-wrap: wrap; }
  .mega-ai-promo{ flex-direction: row; align-items: center; gap: 12px; }
  .mega-ai-promo-desc{ display: none; }
  .section{ padding: 56px 0; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE POLISH — 720px and below
   Everything below is scoped to mobile only.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 720px){

  /* --- Typography: bold, impactful headings on mobile --- */
  body{
    font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-rendering: optimizeLegibility;
  }

  /* --- Spacing & container --- */
  :root{
    --radius: 16px;
    --radius2: 20px;
  }
  .container{ width: min(var(--container), calc(100% - 32px)); }

  /* --- Header --- */
  .header-row{
    height: 60px;
    justify-content: space-between;
  }
  .nav{
    flex: 0 0 auto;
    margin-left: auto;
  }
  .nav-mobile-right{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-mobile-cta-btn{
    height: 38px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    min-height: 38px !important;
    white-space: nowrap;
  }
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 13px;
    border: 1px solid rgba(206,147,216,.12);
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(243,229,245,.08));
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .nav-toggle:active{
    transform: scale(.94);
    border-color: rgba(206,147,216,.25);
    box-shadow: 0 0 0 4px rgba(206,147,216,.1);
  }
  .nav-desktop{ display: none; }
  .site-header{
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
  }

  /* --- Mobile Nav: slide-in drawer --- */
  .nav-mobile{
    display: block;
    pointer-events: none;
    visibility: hidden;
  }
  .nav-mobile.open{
    display: block;
    pointer-events: auto;
    visibility: visible;
  }
  .nav-scrim{
    opacity: 0;
    transition: opacity .35s ease;
  }
  .nav-scrim:not([hidden]){
    opacity: 1;
  }
  .nav-mobile-panel{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100dvh;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(206,147,216,.08);
    box-shadow: -12px 0 60px rgba(0,0,0,.08), -2px 0 8px rgba(0,0,0,.03);
    padding: 0;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.22,1,.36,1);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav-mobile.open .nav-mobile-panel{
    transform: translateX(0);
  }
  .nav-mobile-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(206,147,216,.06);
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2;
  }
  .nav-mobile-top .brand.tiny{ gap:0; }
  .nav-mobile-top .brand-mark{ width:32px; height:32px; }
  .nav-mobile-top-right{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-mobile-top-cta{
    height: 36px !important;
    min-height: 36px !important;
    padding: 0 16px !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #fff !important;
  }
  .nav-close{
    width: 42px; height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(11,11,11,.03);
    cursor: pointer;
    font-size: 22px;
    line-height: 0;
    display: grid;
    place-items: center;
    transition: transform .2s ease, background .2s ease;
  }
  .nav-close:active{
    transform: scale(.92);
    background: rgba(11,11,11,.06);
  }

  /* --- Accordion sections --- */
  .nav-mobile-links{
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 12px 12px;
    flex: 1;
  }

  /* Section toggle button (Product ▾, AI ▾, Resources ▾) */
  .mnav-section-btn{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
    padding: 16px 14px;
    border: none;
    background: transparent;
    font-size: 22px;
    font-weight: 700;
    color: rgba(11,11,11,.88);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color .25s ease;
    border-radius: 12px;
  }
  .mnav-section-btn:active{
    background: rgba(0,0,0,.02);
  }
  .mnav-section-btn[aria-expanded="true"]{
    color: rgba(11,11,11,.95);
  }
  .mnav-chev{
    transition: transform .25s cubic-bezier(.16,1,.3,1);
    opacity: .45;
    flex-shrink: 0;
  }
  .mnav-section-btn[aria-expanded="true"] .mnav-chev{
    transform: rotate(180deg);
    opacity: .7;
  }

  /* When any accordion is open, dim others */
  .nav-mobile-links.has-open .mnav-section-btn:not([aria-expanded="true"]){
    color: rgba(11,11,11,.24);
  }
  .nav-mobile-links.has-open .mnav-section-link{
    color: rgba(11,11,11,.24);
  }

  /* Plain top-level link (Pricing, Download) */
  .mnav-section-link{
    display: block;
    padding: 16px 14px;
    font-size: 22px;
    font-weight: 700;
    color: rgba(11,11,11,.88);
    transition: color .25s ease;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
  }
  .mnav-section-link:active{
    background: rgba(0,0,0,.02);
  }

  /* Collapsible sub-panel */
  .mnav-panel{
    display: none;
    padding: 0 6px 8px;
    animation: mnavSlideDown .28s cubic-bezier(.16,1,.3,1);
  }
  .mnav-panel.is-open{
    display: block;
  }
  @keyframes mnavSlideDown{
    from{ opacity: 0; transform: translateY(-6px); }
    to{ opacity: 1; transform: translateY(0); }
  }

  /* Sub-section labels */
  .mnav-sub-label{
    font-size: 12px;
    font-weight: 600;
    color: rgba(11,11,11,.35);
    letter-spacing: .04em;
    padding: 10px 10px 6px;
  }

  /* Sub items with icon */
  .mnav-sub-item{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 10px;
    border-radius: 12px;
    transition: background .18s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mnav-sub-item:active{
    background: rgba(0,0,0,.03);
  }

  /* Plain text sub-items (no icon) */
  .mnav-sub-plain{
    padding-left: 10px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(11,11,11,.72);
  }

  /* Colorful icon circles */
  .mnav-ic{
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
  }
  .mnav-ic-violet{ background: rgba(124,58,237,.1);  color: #7c3aed; }
  .mnav-ic-blue{   background: rgba(59,130,246,.1);  color: #3b82f6; }
  .mnav-ic-teal{   background: rgba(20,184,166,.1);   color: #14b8a6; }
  .mnav-ic-amber{  background: rgba(245,158,11,.1);  color: #f59e0b; }
  .mnav-ic-rose{   background: rgba(244,63,94,.1);   color: #f43f5e; }
  .mnav-ic-green{  background: rgba(34,197,94,.1);   color: #22c55e; }
  .mnav-ic-indigo{ background: rgba(99,102,241,.1);  color: #6366f1; }
  .mnav-ic-orange{ background: rgba(249,115,22,.1);  color: #f97316; }

  .mnav-sub-txt{
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
  }
  .mnav-sub-title{
    font-weight: 700;
    font-size: 15px;
    color: rgba(11,11,11,.88);
  }
  .mnav-sub-desc{
    font-size: 13px;
    color: rgba(11,11,11,.45);
    line-height: 1.3;
  }

  /* Footer CTA */
  .nav-mobile-foot{
    padding: 12px 16px 28px;
    border-top: 1px solid rgba(206,147,216,.06);
    position: sticky;
    bottom: 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .mnav-foot-cta{
    height: 52px !important;
    border-radius: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
  }
  .nav-mobile-divider{
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(206,147,216,.12), transparent);
    margin: 8px 16px;
  }

  /* --- Hero --- */
  .hero{ padding: 28px 0 24px; }
  .hero-grid{ grid-template-columns: 1fr; gap: 28px; }
  .eyebrow{
    font-size: 10.5px;
    letter-spacing: .18em;
    margin-bottom: 12px;
  }
  .hero-title{
    font-size: clamp(36px, 9vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .hero-subtitle{
    font-size: 15.5px;
    line-height: 1.55;
    margin: 12px 0 20px;
    color: rgba(11,11,11,.68);
  }
  .hero-actions{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .home .hero-actions .btn,
  .hero-actions .btn{
    width: 100%;
    height: 50px;
    border-radius: 14px;
    font-size: 15.5px;
    font-weight: 700;
  }
  .hero-note{
    margin-top: 16px;
    font-size: 12.5px;
    text-align: center;
    letter-spacing: .02em;
  }
  .hero-media{ margin: 0 -4px; }
  .hero-illus{ padding: 4px; }
  .hero-shot{
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(206,147,216,.1), 0 2px 8px rgba(0,0,0,.04);
  }

  /* --- Logos --- */
  .logos{ padding: 22px 0 16px; }
  .logos-row{ font-size: 12px; gap: 4px; margin-bottom: 12px; }
  .logos-grid{ gap: 8px; }
  .logo-pill{ padding: 8px 16px; font-size: 13px; }

  /* --- Sections --- */
  .section{ padding: 48px 0; }
  .section-head{ margin-bottom: 22px; }
  .h2{ font-size: clamp(26px, 6.5vw, 32px); }
  .section-head p{ font-size: 14.5px; margin: 10px auto 0; }

  /* --- Cards --- */
  .card{ padding: 18px; border-radius: 16px; }
  .card.big{ padding: 22px; border-radius: 20px; }
  .card-kicker{ font-size: 10.5px; }
  .card-title{ font-size: 18px; margin-top: 8px; }
  .card-text{ font-size: 14px; margin-top: 8px; }
  .grid-2{ grid-template-columns: 1fr; gap: 10px; margin-top: 10px; }

  /* --- Shot frame --- */
  .shot-frame{ border-radius: 20px; min-height: 220px; }

  /* --- Feature grid: horizontal mini cards --- */
  .feature-grid{ grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .mini{
    padding: 18px;
    border-radius: 18px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .mini-ic{ width: 44px; height: 44px; min-width: 44px; border-radius: 13px; }
  .mini-title{ font-size: 15px; margin-top: 0; }
  .mini-text{ font-size: 13.5px; margin-top: 4px; }

  /* --- App grid: 2-col with compact cards --- */
  .app-grid{ grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
  .app-card{
    padding: 14px;
    border-radius: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .app-ic{ width: 38px; height: 38px; min-width: 38px; border-radius: 12px; font-size: 14px; }
  .app-title{ font-size: 14px; }
  .app-card .muted{ font-size: 12.5px; }

  /* --- Pricing strip --- */
  .pricing-strip{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    border-radius: 20px;
    margin-top: 18px;
  }
  .pricing-strip .btn{
    width: 100%;
    height: 48px;
    border-radius: 14px;
    font-size: 15px;
  }
  .ps-item{
    padding: 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ps-k{ font-size: 12px; }
  .ps-v{ font-size: 22px; margin-top: 0; }

  /* --- Quotes --- */
  .quotes{ grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
  .quote-card{ padding: 20px; border-radius: 18px; gap: 10px; }
  .quote-logo{ font-size: 15px; }
  .quote-text{ font-size: 14px; line-height: 1.55; }
  .quote-body{ padding-left: 18px; }
  .quote-mark{ font-size: 32px; top: -4px; }
  .quote-cta{ font-size: 13px; }

  /* --- Steps: compact rows --- */
  .steps{ grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .step{
    padding: 18px;
    border-radius: 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .step-top{ margin-bottom: 0; flex-shrink: 0; }
  .step-connector{ display: none; }
  .step-ic{ width: 36px; height: 36px; min-width: 36px; font-size: 14px; }
  .step-title{ font-size: 15px; }
  .step-text{ margin-top: 4px; font-size: 13.5px; }

  /* --- CTA band --- */
  .cta-band{
    flex-direction: column;
    align-items: stretch;
    padding: 22px 20px;
    border-radius: 20px;
    gap: 14px;
    margin-top: 20px;
    text-align: center;
  }
  .cta-title{ font-size: 18px; }
  .cta-band .muted{ font-size: 14px; }
  .cta-actions{ gap: 8px; }
  .cta-actions .btn{
    width: 100%;
    height: 48px;
    border-radius: 14px;
    font-size: 15px;
  }

  /* --- Footer --- */
  .site-footer{ padding: 40px 0 24px; }
  .footer-top{ grid-template-columns: 1fr; gap: 28px; }
  .footer-tagline{ font-size: 13.5px; margin: 10px 0 14px; }
  .footer-social{ gap: 8px; }
  .footer-ic{ width: 40px; height: 40px; border-radius: 13px; }
  .footer-cols{ grid-template-columns: 1fr 1fr; gap: 24px 14px; }
  .footer-h{ font-size: 13px; margin-bottom: 8px; }
  .footer-a{ padding: 8px 10px; font-size: 13.5px; border-radius: 10px; }
  .footer-bottom{
    margin-top: 24px;
    padding-top: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-legal{ font-size: 12.5px; }
  .footer-small{ font-size: 12px; }

  /* --- Page / Blog / Post --- */
  .page{ padding: 36px 0; }
  .page-title{ font-size: clamp(28px, 7vw, 36px); }
  .post{ padding: 36px 0; }
  .post-title{ font-size: clamp(28px, 7vw, 38px); }
  .post-cover{ border-radius: 18px; margin-top: 16px; }
  .post-cta-card{
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 20px;
    text-align: center;
    gap: 12px;
  }
  .blog-card{ padding: 14px; border-radius: 18px; }
  .blog-title{ font-size: 16px; }

  /* --- Touch optimizations --- */
  .btn{
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  .btn:active{
    transform: scale(.97) !important;
  }
}

/* ━━━ SMALL PHONE: 400px and below ━━━ */
@media (max-width: 400px){
  .container{ width: calc(100% - 24px); }
  .hero-title{ font-size: 32px; }
  .h2{ font-size: 24px; }
  .app-grid{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; gap: 20px; }
  .logo-pill{ padding: 7px 14px; font-size: 12.5px; }
  .pricing-strip .ps-item{ padding: 12px; }
  .ps-v{ font-size: 20px; }
  .quote-card{ padding: 18px; }
  .step{ padding: 16px; }
  .card.big{ padding: 18px; }
  .nav-mobile-panel{ max-width: 100%; }
}

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; scroll-behavior: auto !important; }
  [data-reveal]{ opacity: 1; transform: none; }
}

/* Keep nav from looking "spread out" */
.header-row{ gap: 18px; }
.nav-desktop{ min-width: 0; }
.nav-items{ gap: 6px !important; }
.nav-actions{ gap: 12px !important; }
.nav-link{ padding-left: 8px; padding-right: 8px; }
.cta, .btn-primary{ white-space: nowrap; }

/* Prevent overflow on mid widths */
@media (max-width: 1120px){
  .nav-items{ gap: 6px !important; }
  .nav-link{ padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 980px){
  .nav-items{ gap: 6px !important; }
  .nav-link{ font-size: 14px; }
}
