/* generated */

:root{
  --black: #121214;
  --black-soft: #1b1b1e;
  --white: #ffffff;
  --canvas: #e5e5e2;
  --grey-50: #f6f6f5;
  --grey-100: #efefee;
  --grey-150: #e8e8e6;
  --grey-200: #d8d8d5;
  --grey-300: #c3c3c0;
  --grey-400: #9d9d99;
  --grey-500: #7c7c78;
  --grey-600: #57574f;
  --grey-700: #3a3a37;

  --orange: #ff4713;
  --orange-dark: #d93a0a;
  --orange-tint: #fff0e8;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 22px 50px rgba(0,0,0,.14);

  --ease: cubic-bezier(.4,0,.2,1);
  --container: 1216px;
}

.aidust *,.aidust *::before,.aidust *::after{ box-sizing:border-box; }
.aidust{
  font-family:'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight:400;
  font-size:15px;
  line-height:1.6;
  color:var(--black);
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
.aidust img,.aidust svg{ display:block; max-width:100%; }
.aidust a{ color:inherit; text-decoration:none; }
.aidust ul{ margin:0; padding:0; list-style:none; }
.aidust button{ font-family:inherit; cursor:pointer; }
.aidust input,.aidust select{ font-family:inherit; font-size:inherit; }

.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--black); color:var(--white);
  padding:10px 16px; z-index:200; border-radius:0 0 var(--r-sm) 0;
}
.skip-link:focus{ left:0; }

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

.aidust h1,.aidust h2,.aidust h3,.aidust h4{
  margin:0;
  font-weight:600;
  letter-spacing:-0.02em;
  line-height:1.15;
}

main{ position:relative; }
main::before{
  content:'';
  position:absolute;
  top:0; left:0;
  width:100%;
  height:220px;
  background:radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255,71,19,.09) 0%, transparent 70%);
  pointer-events:none;
  z-index:0;
}

.aidust a:focus-visible, .aidust button:focus-visible, .aidust input:focus-visible, .aidust select:focus-visible{
  outline:2px solid var(--orange);
  outline-offset:2px;
  border-radius:var(--r-sm);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  font-size:14px;
  font-weight:500;
  border-radius:var(--r-md);
  border:1px solid transparent;
  white-space:nowrap;
  transition:transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.btn--dark{ background:var(--black); color:var(--white); }
.btn--dark:hover{ background:#000; transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn--light{ background:var(--white); color:var(--black); }
.btn--light:hover{ transform:translateY(-1px); box-shadow:var(--shadow-lg); }
.btn--sm{ padding:9px 16px; font-size:13px; }
.btn--orange{ background:var(--orange); color:var(--black); }
.btn--orange:hover{ background:var(--orange-dark); transform:translateY(-1px); box-shadow:var(--shadow-md); }

.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px;
  border-radius:var(--r-md);
  background:transparent;
  border:1px solid transparent;
  color:var(--black);
  transition:background .15s var(--ease), border-color .15s var(--ease);
}
.icon-btn svg{ width:18px; height:18px; }
.icon-btn:hover{ background:var(--grey-100); border-color:var(--grey-200); }

.pill{
  display:inline-flex; align-items:center;
  padding:7px 14px; font-size:13px; font-weight:500;
  border:1px solid var(--grey-200); border-radius:var(--r-full);
  color:var(--grey-700); background:var(--white);
  transition:border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease);
}
.pill:hover{ border-color:var(--orange); color:var(--orange-dark); background:var(--orange-tint); }

.tag{
  display:inline-flex; align-items:center; font-size:12px; font-weight:500;
  padding:5px 10px; border-radius:var(--r-full); background:var(--grey-100); color:var(--grey-700);
}
.tag--ghost{ background:transparent; border:1px solid var(--grey-200); }
.tag--orange{ background:var(--orange-tint); color:var(--orange-dark); }
.tag--dark{ background:var(--black); color:var(--white); }
.tag--light{ background:var(--grey-50); color:var(--grey-600); border:1px solid var(--grey-150); }
.tag--featured{ background:var(--white); border:1px solid var(--orange); color:var(--orange-dark); }

.eyebrow{
  display:inline-block; font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  color:var(--grey-500); margin-bottom:10px;
}

.link-arrow{
  display:inline-flex; align-items:center; gap:6px; font-size:14px; font-weight:500; color:var(--black);
  border-bottom:1px solid transparent; padding-bottom:2px;
  transition:border-color .15s var(--ease), gap .15s var(--ease);
}
.link-arrow svg{ width:15px; height:15px; }
.link-arrow:hover{ color:var(--orange-dark); border-color:var(--orange); gap:10px; }

.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav.is-scrolled{ border-bottom-color:var(--grey-200); box-shadow:var(--shadow-sm); }
.nav__inner{ display:flex; align-items:center; justify-content:space-between; height:64px; }
.logo{ display:inline-flex; align-items:center; gap:9px; }
.logo__mark{ width:22px; height:22px; }
.logo__word{ font-size:17px; font-weight:700; letter-spacing:-0.02em; }

.nav__links{ display:flex; align-items:center; gap:28px; }
.nav__links a{ font-size:14px; font-weight:500; color:var(--grey-700); transition:color .15s var(--ease); }
.nav__links a:hover{ color:var(--orange-dark); }

.nav__dropdown{ position:relative; }
.nav__dropdown-toggle{
  display:inline-flex; align-items:center; gap:4px; background:none; border:none; padding:0;
  font-family:inherit; font-size:14px; font-weight:500; color:var(--grey-700); cursor:pointer;
  transition:color .15s var(--ease);
}
.nav__dropdown-toggle:hover, .nav__dropdown.is-open .nav__dropdown-toggle{ color:var(--orange-dark); }
.nav__dropdown-toggle svg{ width:12px; height:12px; transition:transform .2s var(--ease); }
.nav__dropdown.is-open .nav__dropdown-toggle svg{ transform:rotate(180deg); }
.nav__dropdown-menu{
  position:absolute; top:calc(100% + 20px); left:50%; transform:translateX(-50%);
  min-width:230px; background:var(--black); border:1px solid rgba(255,255,255,.1);
  border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:8px;
  display:flex; flex-direction:column; gap:2px; z-index:50;
}
.nav__dropdown-menu[hidden]{ display:none; }
.nav__dropdown-menu a{
  display:block; padding:9px 12px; border-radius:var(--r-sm); font-size:13.5px; font-weight:500; color:var(--white);
  transition:background .15s var(--ease), color .15s var(--ease);
}
.nav__dropdown-menu a:hover{ background:rgba(255,113,49,.14); color:var(--orange); }

.nav__actions{ display:flex; align-items:center; gap:10px; }
.nav__cta{ margin-left:4px; }
.nav__burger{ display:none; }

.nav__mobile{
  display:none; flex-direction:column; gap:2px; padding:8px 24px 20px; border-top:1px solid var(--grey-200);
}
.nav__mobile a{ padding:12px 4px; font-size:15px; font-weight:500; color:var(--black); border-bottom:1px solid var(--grey-150); }
.nav__mobile .btn{ margin-top:12px; width:100%; }
.nav__mobile.is-open{ display:flex; }

.hero{ position:relative; padding:88px 0 64px; overflow:hidden; }
.hero__grid{
  position:absolute; inset:0;
  background-image:linear-gradient(to right, var(--grey-150) 1px, transparent 1px), linear-gradient(to bottom, var(--grey-150) 1px, transparent 1px);
  background-size:56px 56px;
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image:radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events:none;
}
.hero__inner{ position:relative; display:flex; flex-direction:column; align-items:center; text-align:center; }
.badge{
  display:inline-flex; align-items:center; gap:8px; padding:6px 14px 6px 10px;
  border:1px solid var(--grey-200); border-radius:var(--r-full); font-size:13px; font-weight:500;
  color:var(--grey-700); background:var(--white); margin-bottom:24px; transition:border-color .15s var(--ease);
}
.badge:hover{ border-color:var(--orange); }
.badge__dot{ width:7px; height:7px; border-radius:50%; background:var(--orange); }

.hero__title{ font-size:clamp(2.25rem, 5.4vw, 3.5rem); max-width:820px; margin-bottom:20px; }
.hero__title-accent{ color:var(--orange); text-decoration:underline; text-underline-offset:8px; text-decoration-thickness:4px; }
.hero__sub{ max-width:560px; font-size:16px; color:var(--grey-600); margin-bottom:36px; }

.search{
  display:flex; align-items:center; width:100%; max-width:640px; background:var(--white);
  border:1px solid var(--grey-200); border-radius:var(--r-lg); padding:6px 6px 6px 18px;
  box-shadow:var(--shadow-lg); transition:border-color .15s var(--ease);
}
.search:focus-within{ border-color:var(--orange); box-shadow:var(--shadow-lg), 0 0 0 3px var(--orange-tint); }
.search__icon{ width:17px; height:17px; color:var(--grey-500); flex-shrink:0; }
.search input{ flex:1; border:none; outline:none; padding:12px 10px; font-size:14px; background:transparent; min-width:0; }
.search__divider{ width:1px; height:24px; background:var(--grey-200); flex-shrink:0; }
.search__select{ border:none; background:transparent; font-size:13px; font-weight:500; color:var(--grey-700); padding:8px 6px; outline:none; max-width:150px; }
.search__btn{ flex-shrink:0; }

.marquee-label{
  font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--grey-400);
  margin-top:36px; margin-bottom:14px;
}
.marquee{
  position:relative; width:100%; max-width:720px; overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image:linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track{ display:flex; align-items:center; gap:32px; width:max-content; animation:marqueeScroll 24s linear infinite; }
.marquee:hover .marquee__track{ animation-play-state:paused; }
@keyframes marqueeScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee__item{ display:inline-flex; align-items:center; gap:8px; flex-shrink:0; font-size:13.5px; font-weight:600; color:var(--grey-500); white-space:nowrap; }
.marquee__item-mark{
  display:inline-flex; align-items:center; justify-content:center; width:22px; height:22px; border-radius:6px;
  background:var(--black); color:var(--white); font-size:10px; font-weight:700; flex-shrink:0;
}

.stats{ background:var(--black); color:var(--white); }
.stats__inner{ display:grid; grid-template-columns:repeat(4,1fr); padding:40px 24px; }
.stat{ display:flex; flex-direction:column; align-items:center; gap:6px; text-align:center; padding:0 12px; border-left:1px solid rgba(255,255,255,.12); }
.stat:first-child{ border-left:none; }
.stat__num{ font-size:clamp(1.6rem, 3vw, 2.25rem); font-weight:700; letter-spacing:-0.02em; }
.stat__label{ font-size:13px; color:rgba(255,255,255,.6); }
.stats__marquee-wrap{ display:flex; flex-direction:column; align-items:center; padding:40px 24px; }
.stats .marquee-label{ margin-top:0; color:rgba(255,255,255,.55); }
.stats .marquee__item{ color:rgba(255,255,255,.85); }
.stats .marquee__item-mark{ background:var(--orange); color:var(--white); }

.section{ padding:88px 0; }
.section--white{ background:var(--white); border-top:1px solid var(--grey-200); border-bottom:1px solid var(--grey-200); }
.section--muted{ background:var(--grey-50); }
.section--dark{ background:var(--black); color:var(--white); }
.section--dark .eyebrow{ color:rgba(255,255,255,.45); }
.section--dark .section__title{ color:var(--white); }
.section--dark .section__sub{ color:rgba(255,255,255,.6); }

.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:24px; margin-bottom:44px; }
.section__head--center{ flex-direction:column; align-items:center; text-align:center; }
.section__title{ font-size:clamp(1.6rem, 3vw, 2.1rem); margin-bottom:10px; }
.section__sub{ font-size:15px; color:var(--grey-600); max-width:460px; margin:0; }

.cat-grid{ display:grid; grid-template-columns:repeat(5, 1fr); gap:14px; }
.cat-card{
  display:flex; flex-direction:column; gap:14px; padding:22px; border:1px solid var(--grey-200);
  border-radius:var(--r-lg); background:var(--white);
  transition:border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.cat-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.cat-card__icon{
  display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:var(--r-md);
  background:var(--grey-100); color:var(--black); transition:background .18s var(--ease), color .18s var(--ease);
}
.cat-card:hover .cat-card__icon{ background:var(--black); color:var(--white); }
.cat-card__icon svg{ width:19px; height:19px; }
.cat-card__name{ font-size:14.5px; font-weight:600; letter-spacing:-0.01em; }
.cat-card__count{ font-size:12.5px; color:var(--grey-500); }

.filter-tabs{
  display:inline-flex; align-items:center; height:44px; gap:4px; padding:4px;
  background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-full);
}
.filter-tab{ padding:8px 16px; border:none; background:transparent; border-radius:var(--r-full); font-size:13px; font-weight:600; color:var(--grey-600); transition:background .15s var(--ease), color .15s var(--ease); }
.filter-tab:hover{ color:var(--orange-dark); }
.filter-tab.is-active{ background:var(--black); color:var(--white); }
.filter-tab.is-active:hover{ color:var(--white); }

.podium{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:16px; margin-bottom:20px; }
.podium-card{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; padding:28px 20px 24px;
  border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white);
  transition:transform .18s var(--ease), box-shadow .18s var(--ease);
}
.podium-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.podium-card--1{ order:2; background:var(--black); border-color:var(--black); color:var(--white); transform:translateY(-16px); box-shadow:var(--shadow-lg); }
.podium-card--1:hover{ transform:translateY(-19px); }
.podium-card--2{ order:1; }
.podium-card--3{ order:3; }
.podium-card__rank{ display:inline-flex; align-items:center; gap:5px; font-size:12px; font-weight:700; letter-spacing:.03em; color:var(--grey-500); }
.podium-card--1 .podium-card__rank{ color:var(--orange); }
.podium-card__rank svg{ width:13px; height:13px; }
.podium-card__mark{
  display:inline-flex; align-items:center; justify-content:center; width:48px; height:48px; border-radius:var(--r-md);
  background:var(--black); color:var(--white); font-size:17px; font-weight:700;
}
.podium-card--1 .podium-card__mark{ background:var(--white); color:var(--black); }
.podium-card__name{ font-size:16px; font-weight:700; letter-spacing:-0.01em; }
.podium-card__desc{ font-size:13px; color:var(--grey-600); margin:0; line-height:1.5; }
.podium-card--1 .podium-card__desc{ color:rgba(255,255,255,.65); }
.podium-card__meta{ display:flex; align-items:center; gap:14px; margin-top:4px; }

.tool-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.tool-window{
  display:flex; flex-direction:column; border:1px solid var(--grey-200); border-radius:var(--r-lg);
  background:var(--white); overflow:hidden;
  transition:border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.tool-window:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.tool-window.is-hidden{ display:none; }
.page-home-2 .tool-window{ border-color:rgba(255,71,19,.28); border-radius:var(--r-md); box-shadow:0 14px 30px rgba(0,0,0,.07); }
.tool-window__bar{ display:flex; align-items:center; gap:6px; padding:10px 14px; background:var(--black); }
.tool-window__dot{ width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.tool-window__dot--red{ background:#ff5f56; }
.tool-window__dot--amber{ background:var(--orange); }
.tool-window__dot--green{ background:#27c93f; }
.tool-window__url{ margin-left:6px; font-size:11px; font-family:ui-monospace, SFMono-Regular, Menlo, monospace; color:var(--white); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.tool-window__bar-arrow{ margin-left:auto; width:13px; height:13px; color:var(--white); flex-shrink:0; transition:color .2s var(--ease); }
.tool-window:hover .tool-window__bar-arrow{ color:var(--orange); }
.tool-window__preview{
  height:120px; display:flex; align-items:center; justify-content:center; background-color:var(--grey-50);
  background-image:repeating-linear-gradient(45deg, var(--grey-150) 0 1.5px, transparent 1.5px 11px);
  border-bottom:1px solid var(--grey-150);
}
.tool-window__mark{
  display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:var(--r-md);
  background:var(--black); color:var(--white); font-size:16px; font-weight:700; box-shadow:var(--shadow-md);
}
.tool-window__body{ display:flex; flex-direction:column; gap:12px; padding:18px; }
.tool-window__top{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.tool-window__name{ font-size:15.5px; font-weight:600; letter-spacing:-0.01em; }
.tool-window__desc{ font-size:13px; color:var(--grey-600); margin:0; }
.tool-window__meta{ display:flex; align-items:center; justify-content:space-between; }

.upvote{
  display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border:1px solid var(--grey-200);
  border-radius:var(--r-md); background:transparent; color:var(--grey-700); font-size:12.5px; font-weight:600;
  transition:border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease);
}
.upvote svg{ width:13px; height:13px; }
.upvote:hover{ border-color:var(--orange); color:var(--orange-dark); background:var(--orange-tint); }
.upvote.is-voted{ border-color:var(--orange); color:var(--orange-dark); background:var(--orange-tint); }
.tool-card__mark--sm{ width:34px; height:34px; font-size:13px; border-radius:var(--r-sm); flex-shrink:0; display:inline-flex; align-items:center; justify-content:center; background:var(--black); color:var(--white); font-weight:700; }
.rating{ display:inline-flex; align-items:center; gap:4px; font-size:12.5px; font-weight:600; color:var(--grey-700); }
.rating svg{ width:13px; height:13px; color:var(--orange); }
.podium-card--1 .rating{ color:rgba(255,255,255,.85); }

.tool-rating{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; color:var(--grey-700); }
.tool-rating__stars{ position:relative; display:inline-flex; width:73px; height:13px; flex-shrink:0; }
.tool-rating__stars-track, .tool-rating__stars-fill{ position:absolute; top:0; left:0; display:flex; align-items:center; gap:2px; overflow:hidden; }
.tool-rating__stars-track{ width:100%; }
.tool-rating__stars-fill{ width:0; height:100%; }
.tool-rating__stars svg{ width:13px; height:13px; flex-shrink:0; }
.tool-rating__stars-track svg{ color:var(--grey-200); }
.tool-rating__stars-fill svg{ color:var(--orange); }
.tool-rating__count{ color:var(--grey-500); font-weight:500; }

.steps{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.step{ position:relative; padding:32px 24px; border:1px solid rgba(255,255,255,.12); border-radius:var(--r-lg); background:var(--black-soft); transition:border-color .25s var(--ease), transform .25s var(--ease); }
.step:hover{ border-color:var(--orange); transform:translateY(-3px); }
.step__num{ position:absolute; top:24px; right:24px; font-size:12px; font-weight:600; color:rgba(255,255,255,.3); letter-spacing:.04em; }
.step__icon{ display:inline-flex; align-items:center; justify-content:center; width:44px; height:44px; border-radius:var(--r-md); background:var(--orange); color:var(--white); margin-bottom:20px; }
.step__icon svg{ width:20px; height:20px; }
.step h3{ font-size:16px; margin-bottom:8px; color:var(--white); }
.step p{ font-size:13.5px; color:rgba(255,255,255,.55); margin:0; line-height:1.6; }

.recent-list{ display:flex; flex-direction:column; border:1px solid var(--grey-200); border-radius:var(--r-lg); overflow:hidden; background:var(--white); }
.recent-row{ position:relative; display:flex; align-items:center; gap:16px; padding:18px 22px; border-bottom:1px solid var(--grey-150); transition:background .15s var(--ease); }
.recent-list .recent-row:last-child{ border-bottom:none; }
.recent-row:hover{ background:var(--orange-tint); }
.recent-row__info{ display:flex; flex-direction:column; gap:2px; flex:1; min-width:0; }
.recent-row__name{ font-size:14.5px; font-weight:600; }
.recent-row__desc{ font-size:13px; color:var(--grey-600); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.recent-row__date{ font-size:12.5px; color:var(--grey-500); flex-shrink:0; }
.recent-row__arrow{ width:16px; height:16px; color:var(--grey-400); flex-shrink:0; transition:color .15s var(--ease), transform .15s var(--ease); }
.recent-row:hover .recent-row__arrow{ color:var(--orange-dark); transform:translate(2px,-2px); }

.faq-layout{ display:grid; grid-template-columns:320px 1fr; gap:56px; align-items:start; }
.faq-layout__intro{ position:sticky; top:96px; }
.faq-layout__intro .section__sub{ max-width:none; }
.faq-contact{ display:flex; align-items:center; gap:12px; margin-top:32px; padding:16px; border-radius:var(--r-lg); background:var(--black); transition:transform .2s var(--ease), box-shadow .2s var(--ease); }
.faq-contact:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.faq-contact__icon{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:var(--r-md); background:var(--orange); color:var(--black); flex-shrink:0; }
.faq-contact__icon svg{ width:17px; height:17px; }
.faq-contact__body{ display:flex; flex-direction:column; gap:1px; flex:1; min-width:0; font-size:12.5px; color:rgba(255,255,255,.6); }
.faq-contact__body strong{ font-size:13.5px; font-weight:600; color:var(--white); }
.faq-contact__arrow{ width:16px; height:16px; color:rgba(255,255,255,.5); flex-shrink:0; transition:transform .2s var(--ease), color .2s var(--ease); }
.faq-contact:hover .faq-contact__arrow{ color:var(--orange); transform:translate(2px,-2px); }
.faq-list{ display:flex; flex-direction:column; border-top:1px solid var(--grey-200); }
.faq-item{ border-bottom:1px solid var(--grey-200); }
.faq-item__q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 2px; background:none; border:none; text-align:left; font-size:15px; font-weight:600; letter-spacing:-0.01em; color:var(--black); }
.faq-item__q-icon{ display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; border:1px solid var(--grey-300); color:var(--grey-500); flex-shrink:0; transition:transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease); }
.faq-item__q-icon svg{ width:13px; height:13px; }
.faq-item.is-open .faq-item__q-icon{ transform:rotate(45deg); background:var(--orange); border-color:var(--orange); color:var(--white); }
.faq-item__a{ max-height:0; overflow:hidden; transition:max-height .28s var(--ease); }
.faq-item__a p{ margin:0 0 22px; padding-right:50px; font-size:14px; line-height:1.7; color:var(--grey-600); }

.simple-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:12px; }
.simple-card{ display:flex; align-items:center; gap:12px; padding:14px 16px; min-width:0; background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-md); transition:border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.simple-card:hover{ border-color:var(--orange); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.simple-card__logo{ display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:var(--r-sm); background:var(--grey-100); color:var(--black); font-size:13px; font-weight:700; flex-shrink:0; }
.simple-card__info{ display:flex; flex-direction:column; gap:1px; flex:1; min-width:0; }
.simple-card__name{ font-size:13.5px; font-weight:600; letter-spacing:-0.01em; }
.simple-card__line{ font-size:12px; color:var(--grey-500); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

.testimonial-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.testimonial-card{ display:flex; flex-direction:column; gap:16px; padding:26px; border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white); transition:border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.testimonial-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.testimonial-card__quote{ width:24px; height:24px; color:var(--orange); }
.testimonial-card__text{ font-size:14.5px; line-height:1.65; color:var(--black); margin:0; flex:1; }
.testimonial-card__author{ display:flex; align-items:center; gap:10px; }
.testimonial-card__avatar{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:50%; background:var(--black); color:var(--white); font-size:12px; font-weight:700; flex-shrink:0; }
.testimonial-card__name{ display:block; font-size:13.5px; font-weight:600; }
.testimonial-marquee{ position:relative; width:100%; overflow:hidden; padding:8px 0 16px; margin:-8px 0 -16px; -webkit-mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image:linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.testimonial-marquee__track{ display:flex; gap:16px; width:max-content; animation:marqueeScroll 40s linear infinite; }
.testimonial-marquee:hover .testimonial-marquee__track{ animation-play-state:paused; }
.testimonial-marquee .testimonial-card{ width:360px; flex-shrink:0; }
.testimonial-card__role{ display:block; font-size:12px; color:var(--grey-500); }

.blog-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.blog-card{ display:flex; flex-direction:column; gap:14px; padding:26px; border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white); transition:border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.blog-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.blog-card__head{ display:flex; align-items:center; gap:12px; }
.blog-card__mark{ display:inline-flex; align-items:center; justify-content:center; width:38px; height:38px; border-radius:var(--r-md); background:var(--black); color:var(--orange); flex-shrink:0; }
.blog-card__mark svg{ width:18px; height:18px; }
.blog-card__meta-col{ display:flex; flex-direction:column; gap:6px; min-width:0; }
.blog-card__meta{ font-size:12px; color:var(--grey-500); }
.blog-card__title{ font-size:15.5px; font-weight:600; letter-spacing:-0.01em; line-height:1.35; margin:0; }
.blog-card__excerpt{ font-size:13.5px; color:var(--grey-600); margin:0; flex:1; }
.blog-card__read{ margin-top:6px; }

.blog-hero{ padding:72px 0 8px; text-align:center; }
.blog-hero__title{ font-size:clamp(2rem, 4.2vw, 3rem); margin-bottom:14px; }
.blog-hero__sub{ font-size:15.5px; color:var(--grey-600); max-width:620px; margin:0 auto; }
.blog-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin:40px 0 44px; }
.blog-toolbar__right{ display:flex; align-items:center; gap:10px; }
.blog-search{ display:flex; align-items:center; gap:8px; padding:9px 14px; border:1px solid var(--grey-200); border-radius:var(--r-full); background:var(--white); min-width:220px; transition:border-color .15s var(--ease); }
.blog-search:focus-within{ border-color:var(--orange); }
.blog-search svg{ width:15px; height:15px; color:var(--grey-400); flex-shrink:0; }
.blog-search input{ border:none; outline:none; background:transparent; font-size:13.5px; flex:1; min-width:0; }

.post-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.post-card{ display:flex; flex-direction:column; background:var(--white); border:none; border-radius:0; transition:transform .25s var(--ease), box-shadow .25s var(--ease); }
.post-card.is-hidden{ display:none; }
.post-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); }
.post-card__cover{ position:relative; border-radius:0; height:170px; display:flex; align-items:center; justify-content:center; background:var(--black); overflow:hidden; }
.post-card__cover::after{ content:''; position:absolute; width:180px; height:180px; right:-50px; bottom:-60px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity:.4; border-radius:50%; pointer-events:none; }
.post-card__cover--alt::after{ right:auto; left:-50px; bottom:auto; top:-60px; }
.post-card__cover-icon{ position:relative; z-index:1; display:inline-flex; align-items:center; justify-content:center; width:46px; height:46px; border-radius:var(--r-md); background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.16); color:var(--orange); }
.post-card__cover-icon svg{ width:22px; height:22px; }
.post-card__body{ display:flex; flex-direction:column; gap:8px; padding:20px; }
.post-card__meta{ display:flex; align-items:center; gap:8px; }
.post-card__title{ font-size:16px; font-weight:600; letter-spacing:-0.01em; line-height:1.35; margin:0; }
.post-card__excerpt{ font-size:13.5px; color:var(--grey-600); margin:0; flex:1; }
.post-card__read{ margin-top:4px; }

.vision-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
.vision-card{ display:flex; flex-direction:column; gap:14px; padding:26px; border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white); transition:border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
.vision-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.vision-card__head{ display:flex; align-items:center; gap:12px; }
.vision-card__avatar{ display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%; background:var(--black); color:var(--white); font-size:13px; font-weight:700; flex-shrink:0; }
.vision-card__who{ display:flex; flex-direction:column; flex:1; min-width:0; gap:1px; }
.vision-card__name{ font-size:14px; font-weight:600; }
.vision-card__role{ font-size:12px; color:var(--grey-500); }
.vision-card__mark{ display:inline-flex; align-items:center; justify-content:center; width:28px; height:28px; border-radius:var(--r-sm); background:var(--grey-100); color:var(--black); font-size:11px; font-weight:700; flex-shrink:0; }
.vision-card__quote-mark{ width:22px; height:22px; color:var(--orange); }
.vision-card__quote{ font-size:14px; line-height:1.7; color:var(--grey-700); font-style:italic; margin:0; flex:1; }
.vision-card__read{ margin-top:2px; }

.founders-hero{ padding:64px 0 0; }
.founders-hero__title{ font-size:clamp(2.5rem, 6vw, 4rem); margin-bottom:20px; }
.founders-hero__sub{ font-size:16px; color:var(--grey-600); max-width:640px; margin:0 0 32px; }
.founders-toolbar{ padding-bottom:20px; border-bottom:1px solid var(--grey-200); margin-bottom:8px; }
#founderFilters{ flex-wrap:wrap; height:auto; }

.tools-hero{ position:relative; background:var(--black); color:var(--white); padding:88px 0 48px; overflow:hidden; }
.tools-hero__texture{ position:absolute; inset:0; background-image:radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px); background-size:18px 18px; -webkit-mask-image:radial-gradient(ellipse 75% 90% at 50% 0%, #000 30%, transparent 85%); mask-image:radial-gradient(ellipse 75% 90% at 50% 0%, #000 30%, transparent 85%); pointer-events:none; }
.tools-hero::after{ content:''; position:absolute; width:340px; height:340px; right:6%; top:-140px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity:.5; border-radius:50%; pointer-events:none; }
.tools-hero__content{ position:relative; z-index:1; text-align:center; }
.tools-hero__title{ font-size:clamp(2.5rem, 6vw, 4rem); margin-bottom:20px; color:var(--white); }
.tools-hero__sub{ font-size:16px; color:rgba(255,255,255,.65); max-width:640px; margin:0 auto 32px; }
.tools-hero__accent{ color:var(--orange); }
.tools-hero__search{ margin:8px auto 0; transition:box-shadow .2s var(--ease); }
.tools-hero__search:hover, .tools-hero__search:focus-within{ border-color:var(--grey-200); box-shadow:0 0 26px rgba(255,71,19,.7); }

.tools-filter-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin:40px 0 32px; }
#toolsCategoryTabs{ flex-wrap:wrap; height:auto; }
.custom-select--tab{ position:relative; }
.custom-select--tab .custom-select__toggle{ width:auto; border:none; border-radius:var(--r-full); padding:8px 16px; font-size:13px; font-weight:600; color:var(--grey-600); background:transparent; }
.custom-select--tab .custom-select__toggle:hover{ color:var(--orange-dark); border-color:transparent; }
.custom-select--tab .custom-select__toggle .custom-select__value{ color:inherit; }
.custom-select--tab .custom-select__toggle.has-value{ background:var(--black); color:var(--white); }
.custom-select--tab .custom-select__toggle.has-value .custom-select__value{ color:var(--white); }
.custom-select--tab .custom-select__toggle.has-value svg{ color:var(--white); }
.custom-select--tab.is-open .custom-select__toggle{ border-color:transparent; color:var(--orange-dark); }
.custom-select--tab .custom-select__menu{ left:auto; right:0; min-width:200px; width:max-content; }

.filter-dropdown{ position:relative; }
.filter-dropdown__toggle{ display:inline-flex; align-items:center; height:44px; gap:8px; padding:0 16px; border:1px solid var(--grey-200); border-radius:var(--r-full); background:var(--white); font-size:13px; font-weight:600; transition:border-color .15s var(--ease); }
.filter-dropdown__toggle-label{ color:var(--grey-400); }
.filter-dropdown__toggle-label.is-active{ color:var(--black); }
.filter-dropdown__toggle:hover{ border-color:var(--orange); }
.filter-dropdown__toggle svg{ width:13px; height:13px; color:var(--grey-400); transition:transform .2s var(--ease), color .15s var(--ease); }
.filter-dropdown__toggle:hover svg{ color:var(--orange); }
.filter-dropdown.is-open .filter-dropdown__toggle{ border-color:var(--black); }
.filter-dropdown.is-open .filter-dropdown__toggle svg{ color:var(--black); transform:rotate(180deg); }
.filter-dropdown__count{ display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px; padding:0 6px; border-radius:var(--r-full); background:var(--orange); color:var(--black); font-size:11px; font-weight:700; }
.filter-dropdown__menu{ position:absolute; top:calc(100% + 8px); right:0; z-index:20; width:240px; background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:18px; display:flex; flex-direction:column; gap:16px; }
.filter-dropdown__menu[hidden]{ display:none; }
.filter-dropdown__group{ display:flex; flex-direction:column; gap:10px; }
.filter-dropdown__label{ font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--grey-500); }
.filter-dropdown__option{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--grey-500); cursor:pointer; }
.filter-dropdown__option:has(input:checked){ color:var(--black); font-weight:600; }
.filter-dropdown__option input{ width:16px; height:16px; accent-color:var(--black); cursor:pointer; flex-shrink:0; }
.filter-dropdown__clear{ align-self:flex-start; padding:0; border:none; background:none; font-size:12.5px; font-weight:600; color:var(--grey-500); border-bottom:1px solid transparent; transition:color .15s var(--ease), border-color .15s var(--ease); }
.filter-dropdown__clear:hover{ color:var(--orange-dark); border-color:var(--orange); }

#toolsGrid .tool-window__preview{ height:auto; aspect-ratio: 4 / 5; }
#toolsGrid .tool-window__mark{ width:64px; height:64px; font-size:22px; }
#altToolsGrid .tool-window__preview{ height:auto; aspect-ratio: 4 / 5; }
#altToolsGrid .tool-window__mark{ width:64px; height:64px; font-size:22px; }
#altToolsGrid .tool-window{ border-color:rgba(255,71,19,.28); border-radius:var(--r-md); box-shadow:0 14px 30px rgba(0,0,0,.07); }
#toolsGrid > *{ opacity:1; transform:none; }

.page-about-box{ position:relative; display:flex; align-items:center; gap:32px; background:var(--black); border-radius:var(--r-lg); padding:40px; width:100%; overflow:hidden; }
.page-about-box__thumbs{ position:relative; z-index:1; display:flex; gap:8px; flex-shrink:0; width:176px; }
.page-about-box__thumb{ display:flex; align-items:center; justify-content:center; width:53px; height:80px; background:var(--black-soft); border:2px solid var(--orange); color:var(--orange); }
.page-about-box__thumb svg{ width:18px; height:18px; }
.page-about-box__body{ position:relative; z-index:1; flex:1; min-width:0; }
.page-about-box::after{ content:''; position:absolute; width:320px; height:320px; right:-90px; bottom:-120px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity:.35; border-radius:50%; pointer-events:none; }
.page-about-box__label{ position:relative; z-index:1; display:flex; align-items:center; gap:7px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--orange); margin-bottom:14px; }
.page-about-box__label-icon{ display:inline-flex; color:var(--orange); transform:rotate(-12deg); }
.page-about-box__label-icon svg{ width:22px; height:22px; }
.page-about-box p{ position:relative; z-index:1; font-size:15px; font-weight:400; line-height:1.8; color:rgba(255,255,255,.8); margin:0; }
.page-about-box__lead{ color:var(--orange); font-weight:400; }
.page-about-box__cta-row{ position:relative; z-index:1; display:flex; justify-content:flex-start; margin-top:20px; }
.page-about-box__cta-row .btn{ font-weight:700; }

.founders-promo{ display:flex; align-items:center; gap:32px; padding:40px; border:1px solid var(--grey-200); border-radius:var(--r-xl); }
.founders-promo__avatars{ display:flex; flex-shrink:0; width:176px; }
.founders-promo__avatar{ display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background:var(--black); color:var(--white); font-size:15px; font-weight:700; border:3px solid var(--orange); margin-left:-16px; }
.founders-promo__avatar:first-child{ margin-left:0; }
.founders-promo__body .eyebrow{ color:var(--orange); }
.founders-promo__body{ flex:1; min-width:0; }
.founders-promo__body .section__sub{ margin:8px 0 20px; max-width:520px; }

.orange-cta-banner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; padding:40px 48px; background:var(--orange); border-radius:var(--r-xl); }
.orange-cta-banner__body{ flex:1; min-width:240px; }
.orange-cta-banner .eyebrow{ color:var(--black); opacity:.6; }
.orange-cta-banner .section__title{ margin-bottom:8px; }
.orange-cta-banner .section__sub{ color:var(--black); opacity:.75; max-width:480px; }
.orange-cta-banner .btn{ flex-shrink:0; }

.contact-routes{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.route-card{ display:flex; flex-direction:column; gap:14px; padding:26px; border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white); transition:border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease); }
.route-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.route-card__icon{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:var(--r-md); background:var(--grey-100); color:var(--black); transition:background .18s var(--ease), color .18s var(--ease); }
.route-card:hover .route-card__icon{ background:var(--black); color:var(--white); }
.route-card__icon svg{ width:20px; height:20px; }
.route-card__title{ font-size:15.5px; font-weight:700; letter-spacing:-0.01em; }
.route-card__desc{ font-size:13.5px; color:var(--grey-600); line-height:1.5; }
.route-card__arrow{ margin-top:auto; display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:600; color:var(--black); transition:gap .15s var(--ease), color .15s var(--ease); }
.route-card__arrow svg{ width:14px; height:14px; }
.route-card:hover .route-card__arrow{ color:var(--orange-dark); gap:10px; }

.footer{ border-top:1px solid var(--grey-200); padding-top:64px; }
.footer__inner{ display:grid; grid-template-columns:auto 1fr; gap:32px; padding-bottom:48px; }
.footer__links{ display:flex; justify-content:center; gap:64px; }
.footer__brand p{ font-size:13.5px; color:var(--grey-600); margin:12px 0 0; max-width:220px; }
.footer__col{ display:flex; flex-direction:column; gap:12px; }
.footer__col h4{ font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--grey-500); margin-bottom:4px; }
.footer__col a{ font-size:14px; color:var(--grey-700); transition:color .15s var(--ease); }
.footer__col a:hover{ color:var(--black); }
.footer__bottom{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-top:1px solid var(--grey-200); font-size:13px; color:var(--grey-500); }
.footer__social{ display:flex; gap:14px; }
.footer__social svg{ width:16px; height:16px; color:var(--grey-500); transition:color .15s var(--ease); }
.footer__social a:hover svg{ color:var(--black); }

@media (max-width: 1024px){
  .cat-grid{ grid-template-columns:repeat(3, 1fr); }
  .tool-grid{ grid-template-columns:repeat(2, 1fr); }
  .blog-grid, .vision-grid, .testimonial-grid{ grid-template-columns:repeat(2, 1fr); }
  .simple-grid{ grid-template-columns:repeat(3, 1fr); }
  .post-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 860px){
  .nav__links{ display:none; }
  .nav__burger{ display:inline-flex; }
  .nav__cta{ display:none; }
  .steps{ grid-template-columns:1fr; }
  .podium{ grid-template-columns:1fr; }
  .podium-card--1, .podium-card--2, .podium-card--3{ order:0; transform:none; }
  .podium-card--1:hover{ transform:translateY(-3px); }
  .faq-layout{ grid-template-columns:1fr; gap:28px; }
  .faq-layout__intro{ position:static; }
  .contact-routes{ grid-template-columns:1fr; }
}
@media (max-width: 640px){
  .container{ padding:0 18px; }
  .hero{ padding:56px 0 44px; }
  .search{ flex-wrap:wrap; padding:14px; border-radius:var(--r-lg); }
  .search input{ width:100%; padding:8px 4px; }
  .search__divider{ display:none; }
  .search__select{ max-width:none; flex:1; }
  .search__btn{ width:100%; margin-top:8px; }
  .stats__inner{ grid-template-columns:repeat(2, 1fr); gap:24px 0; }
  .stat{ border-left:none; }
  .stat:nth-child(2n+1){ border-right:1px solid rgba(255,255,255,.12); }
  .cat-grid{ grid-template-columns:repeat(2, 1fr); }
  .tool-grid{ grid-template-columns:1fr; }
  .blog-grid, .vision-grid, .testimonial-grid{ grid-template-columns:1fr; }
  .simple-grid{ grid-template-columns:repeat(2, 1fr); }
  .post-grid{ grid-template-columns:1fr; }
  .tools-filter-row{ flex-direction:column; align-items:flex-start; gap:14px; }
  .filter-dropdown{ align-self:stretch; }
  .filter-dropdown__menu{ left:0; right:auto; width:100%; }
  .section{ padding:56px 0; }
  .section__head{ flex-direction:column; align-items:flex-start; gap:14px; }
  .footer__inner{ grid-template-columns:1fr; padding-bottom:32px; }
  .footer__links{ justify-content:flex-start; flex-wrap:wrap; row-gap:24px; }
  .footer__bottom{ flex-direction:column; gap:14px; padding-bottom:28px; }
}

@media (prefers-reduced-motion: no-preference){
  .badge, .hero__title, .hero__sub, .search, .marquee-label, .marquee{ opacity:0; animation:heroUp .6s var(--ease) forwards; }
  .badge{ animation-delay:.02s; }
  .hero__title{ animation-delay:.10s; }
  .hero__sub{ animation-delay:.18s; }
  .search{ animation-delay:.26s; }
  .marquee-label{ animation-delay:.32s; }
  .marquee{ animation-delay:.38s; }
  @keyframes heroUp{ from{ opacity:0; transform:translateY(16px); } to{ opacity:1; transform:translateY(0); } }
  .cat-grid > *, .podium > *, .tool-grid > *, .steps > *, .faq-list > *, .simple-grid > *, .testimonial-grid > *, .blog-grid > *, .vision-grid > *, .post-grid > *, .contact-routes > *{
    opacity:0; transform:translateY(18px); transition:opacity .55s var(--ease), transform .55s var(--ease);
  }
  .cat-grid.is-visible > *, .podium.is-visible > *, .tool-grid.is-visible > *, .steps.is-visible > *, .faq-list.is-visible > *, .simple-grid.is-visible > *, .testimonial-grid.is-visible > *, .blog-grid.is-visible > *, .vision-grid.is-visible > *, .post-grid.is-visible > *, .contact-routes.is-visible > *{ opacity:1; transform:translateY(0); }
  .tool-window__mark{ transition:transform .3s var(--ease); }
  .tool-window:hover .tool-window__mark{ transform:scale(1.08); }
  .cat-card__icon svg{ transition:transform .3s var(--ease); }
  .cat-card:hover .cat-card__icon svg{ transform:rotate(-8deg) scale(1.05); }
  @keyframes upvoteBump{ 0%{ transform:scale(1); } 45%{ transform:scale(1.3) rotate(-6deg); } 100%{ transform:scale(1); } }
  .upvote.is-bumped svg{ animation:upvoteBump .4s var(--ease); }
}


/* ===== Blocksy header/footer skinned to the AI Dust design ===== */
.ct-header{ position:sticky; top:0; z-index:100; background:rgba(255,255,255,.82); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px); border-bottom:1px solid var(--grey-200); }
[data-header] .site-title, [data-header] .site-title a{ font-family:'Geist',sans-serif; font-size:17px; font-weight:700; letter-spacing:-0.02em; color:var(--black); }
[data-header] .menu > li > a{ font-family:'Geist',sans-serif; font-size:14px; font-weight:500; color:var(--grey-700); transition:color .15s var(--ease); }
[data-header] .menu > li > a:hover{ color:var(--orange-dark); }
[data-header] .sub-menu{ background:var(--black); border:1px solid rgba(255,255,255,.1); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:8px; }
[data-header] .sub-menu li a{ color:#fff; font-size:13.5px; border-radius:var(--r-sm); padding:9px 12px; }
[data-header] .sub-menu li a:hover{ background:rgba(255,113,49,.14); color:var(--orange); }
.ct-footer{ background:var(--white); border-top:1px solid var(--grey-200); }
.ct-footer .menu a{ font-family:'Geist',sans-serif; font-size:14px; color:var(--grey-700); }
.ct-footer .menu a:hover{ color:var(--black); }

/* Elementor container widths matched to the original 1216px container */
.elementor .container, .elementor-widget-container > .container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
.e-con.section, .e-con.hero, .e-con.stats{ width:100%; max-width:none; }
.e-con > .e-con-inner{ max-width:var(--container); }
body.aidust .elementor-widget-heading .elementor-heading-title{ font-family:'Geist',sans-serif; letter-spacing:-0.02em; line-height:1.15; font-weight:600; }
body.aidust .elementor-widget-text-editor{ font-family:'Geist',sans-serif; }


/* ===== Elementor container neutralisation ===== */
/* Elementor wraps everything in .e-con / .e-con-inner. These wrappers add
   their own max-width + padding, which double-pads the original .container.
   Neutralise them so the source design's own spacing rules apply. */
.elementor .e-con{ --container-max-width:100%; --padding-inline-start:0; --padding-inline-end:0; --padding-block-start:0; --padding-block-end:0; }
.elementor .e-con > .e-con-inner{ max-width:100%; width:100%; padding:0; }
.elementor .e-con.hero{ padding:88px 0 64px; position:relative; overflow:hidden; }
.elementor .e-con.section{ padding:88px 0; }
.elementor .e-con.stats{ background:var(--black); color:var(--white); }
.elementor .e-con .container{ max-width:var(--container); margin:0 auto; padding-left:24px; padding-right:24px; width:100%; }
/* Elementor's shortcode widget wrapper must not add its own box */
.elementor-widget-shortcode, .elementor-widget-shortcode .elementor-widget-container{ width:100%; }
/* Blocksy content wrapper adds a narrow max-width on pages — remove it so
   full-bleed sections (hero, stats, dark sections) span the viewport. */
body.aidust .entry-content{ max-width:none !important; }
body.aidust .ct-container, body.aidust .ct-container-narrow{ max-width:none !important; padding-left:0 !important; padding-right:0 !important; }
@media (max-width:640px){ .elementor .e-con.hero{ padding:56px 0 44px; } .elementor .e-con.section{ padding:56px 0; } }
/* ===== SOURCE-DESIGN RESTORATION (must stay last) ===== */
/* Blocksy + Elementor both inject typography/colour/spacing that outranks the
   source stylesheet. This block re-asserts the original values with enough
   specificity to win, without touching the source rules above. */

/* --- Buttons: text was rendering invisible under Blocksy's link colour --- */
body.aidust .btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 22px; font-size:14px; font-weight:500; border-radius:var(--r-md); border:1px solid transparent; white-space:nowrap; text-decoration:none; }
body.aidust a.btn--dark, body.aidust .btn--dark{ background:var(--black); color:var(--white); }
body.aidust a.btn--dark:hover, body.aidust .btn--dark:hover{ background:#000; color:var(--white); }
body.aidust a.btn--light, body.aidust .btn--light{ background:var(--white); color:var(--black); }
body.aidust a.btn--orange, body.aidust .btn--orange{ background:var(--orange); color:var(--black); }
body.aidust .btn--sm{ padding:9px 16px; font-size:13px; }
body.aidust .search__btn{ color:var(--white); }

/* --- Header --- */
body.aidust .nav__inner{ height:64px; }
body.aidust .nav__links a, body.aidust .nav__dropdown-toggle{ font-size:14px; font-weight:500; color:var(--grey-700); text-decoration:none; }
body.aidust .nav__links a:hover{ color:var(--orange-dark) !important; }
body.aidust .nav__dropdown-toggle:hover{ color:var(--orange-dark) !important; }
body.aidust .nav__dropdown.is-open .nav__dropdown-toggle{ color:var(--orange-dark) !important; }
body.aidust .nav__dropdown.is-open .nav__dropdown-toggle svg{ transform:rotate(180deg); }

body.aidust .nav__dropdown-menu a{ color:var(--white); }
body.aidust .nav__dropdown-menu a:hover{ background:rgba(255,113,49,.14) !important; color:var(--orange) !important; }

body.aidust .logo__word{ font-size:17px; font-weight:700; letter-spacing:-0.02em; color:var(--black); }

/* --- Hero: restore the original vertical rhythm --- */
body.aidust .elementor .e-con.hero{ padding:88px 0 64px; }
body.aidust .hero__title{ font-size:clamp(2.25rem, 5.4vw, 3.5rem); font-weight:600; letter-spacing:-0.02em; line-height:1.15; max-width:820px; margin:0 0 20px; }
body.aidust .badge{ margin-bottom:24px; }
body.aidust .hero__sub{ max-width:560px; font-size:16px; line-height:1.6; color:var(--grey-600); margin:0 0 36px; }
body.aidust .search{ margin:0 auto; }

/* --- Stats / trusted-by strip --- */
body.aidust .elementor .e-con.stats{ background:var(--black); color:var(--white); padding:0; }
body.aidust .stats__marquee-wrap{ display:flex; flex-direction:column; align-items:center; padding:40px 24px; }
body.aidust .stats .marquee-label, body.aidust .stats__marquee-wrap .marquee-label{ margin-top:0; margin-bottom:14px; color:rgba(255,255,255,.55); }
body.aidust .stats__marquee-wrap .marquee__item{ color:rgba(255,255,255,.85); }
body.aidust .stats__marquee-wrap .marquee__item-mark{ background:var(--orange); color:var(--white); }

/* --- Tools filter row: keep the tab bar on one line --- */
body.aidust .elementor .e-con.section{ padding:88px 0; }
body.aidust #tools.e-con.section, body.aidust .elementor .e-con.section#tools{ padding:32px 0 24px; }
body.aidust .tools-filter-row{ display:flex; align-items:center; justify-content:space-between; gap:16px; margin:40px 0 32px; flex-wrap:nowrap; }
body.aidust #toolsCategoryTabs{ display:inline-flex; align-items:center; height:44px; gap:4px; padding:4px; flex-wrap:nowrap; }
body.aidust .filter-tab{ white-space:nowrap; }
body.aidust .custom-select--tab .custom-select__toggle{ display:inline-flex; align-items:center; gap:4px; height:auto; white-space:nowrap; }

/* --- Headings: stop Blocksy resizing section titles --- */
body.aidust .section__title{ font-size:clamp(1.6rem, 3vw, 2.1rem); font-weight:600; letter-spacing:-0.02em; line-height:1.15; margin:0 0 10px; }
body.aidust .section__sub{ font-size:15px; line-height:1.6; color:var(--grey-600); max-width:460px; margin:0; }
body.aidust .eyebrow{ display:inline-block; font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--grey-500); margin-bottom:10px; }

/* --- Paragraph rhythm inside Elementor text widgets --- */
body.aidust .elementor-widget-text-editor p:last-child{ margin-bottom:0; }

@media (max-width:860px){
  body.aidust .tools-filter-row{ flex-wrap:wrap; }
  body.aidust #toolsCategoryTabs{ flex-wrap:wrap; height:auto; }
}
@media (max-width:640px){
  body.aidust .elementor .e-con.hero{ padding:56px 0 44px; }
  body.aidust .elementor .e-con.section{ padding:56px 0; }
}
/* ===== FONT + WIDTH LOCK (must stay last) ===== */
/* Elementor's kit applies Roboto to <body>, which outranks the source rule.
   Re-assert Geist everywhere with enough specificity to win. */
body.aidust, body.aidust .elementor, body.aidust .elementor-widget,
body.aidust h1, body.aidust h2, body.aidust h3, body.aidust h4, body.aidust h5, body.aidust h6,
body.aidust p, body.aidust a, body.aidust span, body.aidust li,
body.aidust button, body.aidust input, body.aidust select, body.aidust textarea{
  font-family:'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body.aidust .tool-window__url{ font-family:ui-monospace, SFMono-Regular, Menlo, monospace; }

/* Stats strip needs its own vertical padding back */
body.aidust .stats__marquee-wrap, body.aidust .elementor .e-con .container.stats__marquee-wrap{
  padding-top:40px; padding-bottom:40px;
}
/* ===== HERO GEOMETRY FIX (must stay last) ===== */
/* 1) Elementor nests content in .e-con-inner. If that box is positioned, the
   hero's absolutely-positioned grid overlay anchors to it and starts partway
   down instead of covering the whole section. Make the hero the anchor. */
body.aidust .elementor .e-con.hero{ position:relative; overflow:hidden; }
body.aidust .elementor .e-con.hero > .e-con-inner{ position:static; }
body.aidust .hero__grid{ position:absolute; inset:0; z-index:0; }
body.aidust .hero__inner{ position:relative; z-index:1; }

/* 2) Blocksy pads the content wrapper, pushing the hero far below the header. */
body.aidust .ct-container, body.aidust .ct-container-full, body.aidust .ct-container-narrow,
body.aidust #main-container, body.aidust .site-main, body.aidust .entry-content{
  padding-top:0 !important; margin-top:0 !important;
}
body.aidust main#main, body.aidust .site-content{ padding-top:0 !important; margin-top:0 !important; }
body.aidust article.post, body.aidust article.page{ margin-top:0 !important; }

/* 3) The soft radial wash sits behind the hero, as in the source. */
body.aidust main{ position:relative; }
body.aidust main::before{
  content:''; position:absolute; top:0; left:0; width:100%; height:220px;
  background:radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255,71,19,.09) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
/* ===== CANVAS LAYOUT (must stay last) ===== */
/* Elementor Canvas removes the theme's <main>, so the soft radial wash that
   sat on main::before is re-attached to the Elementor root instead. */
body.aidust .elementor{ position:relative; }
body.aidust .elementor::before{
  content:''; position:absolute; top:0; left:0; width:100%; height:220px;
  background:radial-gradient(ellipse 70% 100% at 50% 0%, rgba(255,71,19,.09) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
body.aidust .elementor > .e-con{ position:relative; z-index:1; }

/* Header is sticky and must clear the content */
body.aidust header.nav{ position:sticky; top:0; z-index:100; }
/* ===== HERO ANCHOR + RHYTHM (must stay last) ===== */
/* .hero__grid is position:absolute; inset:0. Every wrapper between it and the
   hero section must be a non-positioned, full-width, zero-padding box, or the
   grid anchors to the wrapper and starts too low with a hard edge. */
body.aidust .elementor .e-con.hero{ position:relative !important; overflow:hidden; padding:88px 0 64px; }
body.aidust .elementor .e-con.hero .elementor-widget-shortcode,
body.aidust .elementor .e-con.hero .elementor-widget-shortcode > .elementor-widget-container,
body.aidust .elementor .e-con.hero .elementor-shortcode{
  position:static !important; transform:none !important; filter:none !important;
  width:100% !important; max-width:none !important; margin:0 !important; padding:0 !important;
}
body.aidust .hero__grid{
  position:absolute !important; top:0 !important; right:0 !important; bottom:0 !important; left:0 !important;
  z-index:0;
  background-image:linear-gradient(to right, var(--grey-150) 1px, transparent 1px), linear-gradient(to bottom, var(--grey-150) 1px, transparent 1px);
  background-size:56px 56px;
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
  mask-image:radial-gradient(ellipse 70% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events:none;
}
body.aidust .hero__inner{ position:relative; z-index:1; display:flex; flex-direction:column; align-items:center; text-align:center; }

/* Source vertical rhythm inside the hero */
body.aidust .badge{ margin-bottom:24px !important; }
body.aidust .hero__title{ margin:0 0 20px !important; }
body.aidust .hero__sub{ margin:0 0 36px !important; max-width:560px; font-size:16px; line-height:1.6; }
/* ===== MISSING COMPONENTS FROM SOURCE STYLESHEET ===== */
/* These component styles exist in the source styles.css but were not
   transferred earlier, which is why the category 'More' menu and the
   Status/Pricing/Platform panel rendered unstyled. */

body.aidust .custom-select{ position:relative; }
body.aidust .custom-select__toggle{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:10px; border:1px solid var(--grey-200); border-radius:var(--r-md); padding:12px 14px; font-size:14px; font-family:inherit; background:var(--white); text-align:left; cursor:pointer; transition:border-color .15s var(--ease); }
body.aidust .custom-select__toggle:hover, body.aidust .custom-select.is-open .custom-select__toggle{ border-color:var(--orange); }
body.aidust .custom-select__value{ color:var(--grey-400); }
body.aidust .custom-select__toggle.has-value .custom-select__value{ color:var(--black); }
body.aidust .custom-select__toggle svg{ width:16px; height:16px; color:var(--grey-500); flex-shrink:0; transition:transform .2s var(--ease); }
body.aidust .custom-select.is-open .custom-select__toggle svg{ transform:rotate(180deg); }
body.aidust .custom-select__menu{ position:absolute; top:calc(100% + 6px); left:0; right:0; z-index:10; background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-md); box-shadow:var(--shadow-lg); padding:6px; max-height:240px; overflow-y:auto; list-style:none; margin:0; }
body.aidust .custom-select__menu[hidden]{ display:none; }
body.aidust .custom-select__menu li{ padding:10px 12px; border-radius:var(--r-sm); font-size:14px; color:var(--grey-700); cursor:pointer; transition:background .15s var(--ease), color .15s var(--ease); }
body.aidust .custom-select__menu li:hover, body.aidust .custom-select__menu li.is-selected{ background:var(--orange-tint); color:var(--orange-dark); }

body.aidust .custom-select--tab{ position:relative; }
body.aidust .custom-select--tab .custom-select__toggle{ width:auto; border:none; border-radius:var(--r-full); padding:8px 16px; font-size:13px; font-weight:600; color:var(--grey-600); background:transparent; }
body.aidust .custom-select--tab .custom-select__toggle:hover{ color:var(--orange-dark); border-color:transparent; }
body.aidust .custom-select--tab .custom-select__toggle .custom-select__value{ color:inherit; }
body.aidust .custom-select--tab .custom-select__toggle.has-value{ background:var(--black); color:var(--white); }
body.aidust .custom-select--tab .custom-select__toggle.has-value .custom-select__value{ color:var(--white); }
body.aidust .custom-select--tab .custom-select__toggle.has-value svg{ color:var(--white); }
body.aidust .custom-select--tab.is-open .custom-select__toggle{ border-color:transparent; color:var(--orange-dark); }
body.aidust .custom-select--tab .custom-select__menu{ left:auto; right:0; min-width:200px; width:max-content; }

body.aidust .filter-dropdown{ position:relative; }
body.aidust .filter-dropdown__toggle{ display:inline-flex; align-items:center; height:44px; gap:8px; padding:0 16px; border:1px solid var(--grey-200); border-radius:var(--r-full); background:var(--white); font-size:13px; font-weight:600; transition:border-color .15s var(--ease); }
body.aidust .filter-dropdown__toggle-label{ color:var(--grey-400); }
body.aidust .filter-dropdown__toggle-label.is-active{ color:var(--black); }
body.aidust .filter-dropdown__toggle:hover{ border-color:var(--orange); }
body.aidust .filter-dropdown__toggle svg{ width:13px; height:13px; color:var(--grey-400); transition:transform .2s var(--ease), color .15s var(--ease); }
body.aidust .filter-dropdown__toggle:hover svg{ color:var(--orange); }
body.aidust .filter-dropdown.is-open .filter-dropdown__toggle{ border-color:var(--black); }
body.aidust .filter-dropdown.is-open .filter-dropdown__toggle svg{ color:var(--black); transform:rotate(180deg); }
body.aidust .filter-dropdown__count{ display:inline-flex; align-items:center; justify-content:center; min-width:20px; height:20px; padding:0 6px; border-radius:var(--r-full); background:var(--orange); color:var(--black); font-size:11px; font-weight:700; }
body.aidust .filter-dropdown__menu{ position:absolute; top:calc(100% + 8px); right:0; z-index:20; width:240px; background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-lg); box-shadow:var(--shadow-lg); padding:18px; display:flex; flex-direction:column; gap:16px; }
body.aidust .filter-dropdown__menu[hidden]{ display:none; }
body.aidust .filter-dropdown__group{ display:flex; flex-direction:column; gap:10px; }
body.aidust .filter-dropdown__label{ font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--grey-500); }
body.aidust .filter-dropdown__option{ display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--grey-500); cursor:pointer; }
body.aidust .filter-dropdown__option:has(input:checked){ color:var(--black); font-weight:600; }
body.aidust .filter-dropdown__option input{ width:16px; height:16px; accent-color:var(--black); cursor:pointer; flex-shrink:0; }
body.aidust .filter-dropdown__clear{ align-self:flex-start; padding:0; border:none; background:none; font-size:12.5px; font-weight:600; color:var(--grey-500); border-bottom:1px solid transparent; transition:color .15s var(--ease), border-color .15s var(--ease); }
body.aidust .filter-dropdown__clear:hover{ color:var(--orange-dark); border-color:var(--orange); }

body.aidust .load-more{ display:flex; flex-direction:column; align-items:center; gap:10px; margin-top:32px; }
body.aidust .load-more__hint{ font-size:12.5px; color:var(--grey-500); margin:0; }
/* ===== COMPONENT SPECIFICITY REPAIR (must stay last) ===== */
/* My earlier blanket rules (body.aidust .eyebrow / .section__sub) outrank the
   source's component-scoped rules, which greyed out the promo eyebrow and
   collapsed its spacing. Re-assert the source values at matching specificity. */

body.aidust .founders-promo__body .eyebrow{ color:var(--orange); }
body.aidust .founders-promo__body .section__sub{ margin:8px 0 20px !important; max-width:520px; }
body.aidust .founders-promo{ display:flex; align-items:center; gap:32px; padding:40px; border:1px solid var(--grey-200); border-radius:var(--r-xl); }
body.aidust .founders-promo__body{ flex:1; min-width:0; }
body.aidust .founders-promo__body .section__title{ margin:0 0 0 !important; }
body.aidust .founders-promo__avatars{ display:flex; flex-shrink:0; width:176px; }
body.aidust .founders-promo__avatar{ display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background:var(--black); color:var(--white); font-size:15px; font-weight:700; border:3px solid var(--orange); margin-left:-16px; }
body.aidust .founders-promo__avatar:first-child{ margin-left:0; }

/* Source section padding: the promo and testimonials blocks are tight (24px),
   not the generic 88px, which was creating the large gap between them. */
body.aidust .elementor .e-con.section--promo{ padding:24px 0 !important; }
body.aidust .elementor .e-con.section--testimonials{ padding:24px 0 88px !important; }

body.aidust .orange-cta-banner .eyebrow{ color:var(--black); opacity:.6; }
body.aidust .orange-cta-banner .section__sub{ color:var(--black); opacity:.75; max-width:480px; }
body.aidust .section--dark .eyebrow{ color:rgba(255,255,255,.45); }
body.aidust .section--dark .section__sub{ color:rgba(255,255,255,.6); }
body.aidust .section--dark .section__title{ color:var(--white); }

@media (max-width:640px){
  body.aidust .founders-promo{ flex-direction:column; align-items:flex-start; text-align:left; }
  body.aidust .founders-promo__avatars{ margin-bottom:8px; }
}
/* ===== CTA + SUBMIT FLOW (from source) ===== */
body.aidust .elementor .e-con.cta{ background:var(--black); color:var(--white); padding:0 !important; }
body.aidust .cta__inner{ display:flex; flex-direction:column; align-items:center; text-align:center; padding:80px 24px; }
body.aidust .cta__title{ font-size:clamp(1.75rem, 3.4vw, 2.5rem); color:var(--white); margin:0 0 12px !important; }
body.aidust .cta__sub{ font-size:15px; color:rgba(255,255,255,.65); max-width:440px; margin:0 0 40px !important; }

body.aidust .submit-flow{ display:flex; align-items:flex-start; justify-content:center; gap:0; width:100%; max-width:720px; margin-bottom:40px; }
body.aidust .submit-flow__step{ position:relative; flex:1; display:flex; flex-direction:column; align-items:center; gap:10px; padding:0 14px; }
body.aidust .submit-flow__step:not(:last-child)::after{ content:''; position:absolute; top:15px; left:calc(50% + 25px); width:calc(100% - 50px); height:1px; background:rgba(255,255,255,.14); }
body.aidust .submit-flow__step:not(:last-child)::before{ content:''; position:absolute; top:15px; left:calc(50% + 25px); width:calc(100% - 50px); height:1.5px; background:var(--orange); transform-origin:left; transform:scaleX(0); opacity:0; z-index:1; }
body.aidust .submit-flow__num{ display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; background:var(--orange); color:var(--black); font-size:13px; font-weight:700; z-index:2; position:relative; }
body.aidust .submit-flow__step h4{ font-size:13.5px; font-weight:600; color:var(--white); margin:0; }
body.aidust .submit-flow__step p{ font-size:12px; color:rgba(255,255,255,.55); margin:0; max-width:170px; line-height:1.5; }

/* Scroll-triggered sweep: orange line runs 1 -> 2 -> 3, numbers pulse in turn. */
@media (prefers-reduced-motion: no-preference){
  @keyframes flowFill{ 0%{ transform:scaleX(0); opacity:1; } 55%{ transform:scaleX(1); opacity:1; } 100%{ transform:scaleX(1); opacity:0; } }
  @keyframes numPulse{ 0%{ box-shadow:0 0 0 0 rgba(255,71,19,.55); } 70%{ box-shadow:0 0 0 9px rgba(255,71,19,0); } 100%{ box-shadow:0 0 0 0 rgba(255,71,19,0); } }
  body.aidust .submit-flow.is-visible .submit-flow__step:nth-child(1) .submit-flow__num{ animation:numPulse .6s var(--ease) 0s; }
  body.aidust .submit-flow.is-visible .submit-flow__step:nth-child(1)::before{ animation:flowFill 1s var(--ease) .15s forwards; }
  body.aidust .submit-flow.is-visible .submit-flow__step:nth-child(2) .submit-flow__num{ animation:numPulse .6s var(--ease) .7s; }
  body.aidust .submit-flow.is-visible .submit-flow__step:nth-child(2)::before{ animation:flowFill 1s var(--ease) .85s forwards; }
  body.aidust .submit-flow.is-visible .submit-flow__step:nth-child(3) .submit-flow__num{ animation:numPulse .6s var(--ease) 1.4s; }
}

@media (max-width:640px){
  body.aidust .submit-flow{ flex-direction:column; gap:24px; max-width:320px; }
  body.aidust .submit-flow__step::after, body.aidust .submit-flow__step::before{ display:none; }
}
/* ===== BLOG + FOUNDERS HERO (from source) ===== */
/* Source: .blog-hero{ padding:72px 0 8px; text-align:center; } and the post
   grid section runs padding-top:0. My generic .section rule (88px, left
   aligned) was overriding both, which left the hero left-aligned with a big
   empty gap before the cards. */
body.aidust .elementor .e-con.blog-hero{ padding:72px 0 8px !important; text-align:center; }
body.aidust .blog-hero, body.aidust .blog-hero .container{ text-align:center; }
body.aidust .blog-hero__title{ font-size:clamp(2rem, 4.2vw, 3rem); margin:0 0 14px !important; }
body.aidust .blog-hero__sub{ font-size:15.5px; color:var(--grey-600); max-width:620px; margin:0 auto !important; }
body.aidust .blog-hero .eyebrow{ display:inline-block; }

body.aidust .elementor .e-con.section--grid-top0{ padding-top:0 !important; }

body.aidust .blog-toolbar{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin:40px 0 44px !important; text-align:left; }
body.aidust .blog-toolbar__right{ display:flex; align-items:center; gap:10px; }
body.aidust .blog-search{ display:flex; align-items:center; gap:8px; padding:9px 14px; border:1px solid var(--grey-200); border-radius:var(--r-full); background:var(--white); min-width:220px; transition:border-color .15s var(--ease); }
body.aidust .blog-search:focus-within{ border-color:var(--orange); }
body.aidust .blog-search svg{ width:15px; height:15px; color:var(--grey-400); flex-shrink:0; }
body.aidust .blog-search input{ border:none; outline:none; background:transparent; font-size:13.5px; flex:1; min-width:0; }

/* Founders hero: source is left-aligned with its own padding. */
body.aidust .elementor .e-con.founders-hero{ padding:64px 0 0 !important; }
body.aidust .founders-hero__title{ font-size:clamp(2.5rem, 6vw, 4rem); margin:0 0 20px !important; }
body.aidust .founders-hero__sub{ font-size:16px; color:var(--grey-600); max-width:640px; margin:0 0 32px !important; }
body.aidust .founders-toolbar{ padding-bottom:20px; border-bottom:1px solid var(--grey-200); margin-bottom:8px; }
body.aidust #founderFilters{ flex-wrap:wrap; height:auto; }
/* ===== BLOG HERO WIDTH LOCK (must stay last) ===== */
/* The widget wrapper carries .blog-hero__sub; Elementor stretches flex children
   to full width, so the 620px cap needs to be forced on both wrapper and text. */
body.aidust .elementor .blog-hero__sub{ max-width:620px !important; margin-left:auto !important; margin-right:auto !important; width:100%; }
body.aidust .elementor .blog-hero__sub p{ max-width:620px; margin:0 auto !important; font-size:15.5px; line-height:1.6; color:var(--grey-600); }
body.aidust .elementor .e-con.blog-hero .e-con-inner{ align-items:center; }
body.aidust .elementor .e-con.blog-hero .container{ display:flex; flex-direction:column; align-items:center; }
/* ===== FORM INPUT RESET (must stay last) ===== */
/* Blocksy styles bare <input> elements (height, padding, border, background),
   which inflated the blog search pill and the hero search field. Strip that
   back to the source, where the wrapper owns all the styling. */
body.aidust .blog-search input[type=text],
body.aidust .blog-search input,
body.aidust .search input[type=text],
body.aidust .search input{
  border:none !important; outline:none !important; background:transparent !important;
  box-shadow:none !important; min-height:0 !important; height:auto !important;
  line-height:1.4 !important; border-radius:0 !important;
}
body.aidust .blog-search{ display:flex; align-items:center; gap:8px; padding:9px 14px !important; border:1px solid var(--grey-200); border-radius:var(--r-full); background:var(--white); min-width:220px; max-width:260px; }
body.aidust .blog-search input{ padding:0 !important; font-size:13.5px !important; flex:1; min-width:0; }
body.aidust .blog-search svg{ width:15px; height:15px; color:var(--grey-400); flex-shrink:0; }

/* Hero search bar keeps its own larger padding from the source. */
body.aidust .search{ display:flex; align-items:center; width:100%; max-width:640px; background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-lg); padding:6px 6px 6px 18px !important; box-shadow:var(--shadow-lg); }
body.aidust .search input{ flex:1; padding:12px 10px !important; font-size:14px !important; }
body.aidust .search__btn{ flex-shrink:0; }
/* ===== PAGINATION (from source) ===== */
body.aidust .pagination{ display:flex; align-items:center; justify-content:center; gap:6px; margin-top:44px; }
body.aidust .pagination__arrow, body.aidust .pagination__num{ display:inline-flex; align-items:center; justify-content:center; min-width:36px; height:36px; padding:0 6px; border:1px solid var(--grey-200); border-radius:var(--r-md); background:var(--white); color:var(--grey-700); font-size:13.5px; font-weight:600; cursor:pointer; transition:border-color .15s var(--ease), background .15s var(--ease), color .15s var(--ease); }
body.aidust .pagination__arrow svg{ width:15px; height:15px; }
body.aidust .pagination__arrow:hover:not(:disabled), body.aidust .pagination__num:hover{ border-color:var(--orange); color:var(--orange-dark); }
body.aidust .pagination__arrow:disabled{ opacity:.35; cursor:default; }
body.aidust .pagination__num.is-active{ background:var(--black); border-color:var(--black); color:var(--white); }
/* ===== FOUNDER ROWS (from source) ===== */
body.aidust .founder-list{ display:flex; flex-direction:column; }
body.aidust .founder-row{ display:flex; flex-direction:row-reverse; align-items:center; gap:48px; padding:44px 0; }
body.aidust .founder-row.is-hidden{ display:none; }
body.aidust .founder-row__image{ position:relative; flex-shrink:0; width:240px; height:320px; display:flex; align-items:center; justify-content:center; background:var(--black); overflow:hidden; }
body.aidust .founder-row__image::after{ content:''; position:absolute; width:200px; height:200px; right:-50px; bottom:-60px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity:.4; border-radius:50%; }
body.aidust .founder-row__avatar{ position:relative; z-index:1; display:inline-flex; align-items:center; justify-content:center; width:96px; height:96px; border-radius:50%; background:var(--white); color:var(--black); font-size:26px; font-weight:700; }
body.aidust .founder-row__body{ flex:1; min-width:0; display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
body.aidust .founder-row__name{ font-size:clamp(1.25rem, 2.2vw, 1.6rem); font-weight:700; letter-spacing:-0.01em; margin:0 !important; }
body.aidust .founder-row__role{ font-size:13px; color:var(--grey-500); }
body.aidust .founder-row__quote{ font-size:15px; line-height:1.7; color:var(--grey-700); font-style:italic; margin:0 !important; max-width:540px; }
body.aidust .founder-row__meta{ display:flex; align-items:center; gap:8px; font-size:12.5px; color:var(--grey-500); }
body.aidust .founder-row__meta-dot{ width:3px; height:3px; border-radius:50%; background:var(--grey-400); }
body.aidust .founder-row__tool-link{ display:inline-flex; align-items:center; gap:7px; align-self:flex-start; font-size:12.5px; font-weight:600; color:var(--grey-600); border:1px solid var(--grey-200); border-radius:var(--r-full); padding:4px 12px 4px 4px; transition:border-color .15s var(--ease), color .15s var(--ease); }
body.aidust .founder-row__tool-link:hover{ border-color:var(--orange); color:var(--orange-dark); }
body.aidust .founder-row__tool-link-mark{ display:inline-flex; align-items:center; justify-content:center; width:20px; height:20px; border-radius:50%; background:var(--black); color:var(--white); font-size:9px; font-weight:700; flex-shrink:0; }
body.aidust .tag--dark{ background:var(--black); color:var(--white); }

@media (max-width:860px){
  body.aidust .founder-row{ flex-direction:column; align-items:flex-start; gap:24px; }
  body.aidust .founder-row__image{ width:100%; height:240px; }
}
/* ===== PROMO THUMBS (from source) ===== */
body.aidust .page-about-box__thumbs{ position:relative; z-index:1; display:flex; gap:8px; flex-shrink:0; width:176px; }
body.aidust .page-about-box__thumb{ display:flex; align-items:center; justify-content:center; width:53px; height:80px; background:var(--black-soft); border:2px solid var(--orange); color:var(--orange); }
body.aidust .page-about-box__thumb svg{ width:18px; height:18px; }
body.aidust .btn--orange{ background:var(--orange); color:var(--black); }
body.aidust .btn--orange:hover{ background:var(--orange-dark); }
/* ===== TAB DROPDOWN GEOMETRY + STACKING (must stay last) ===== */
/* 1) The .custom-select--tab wrapper stretched taller than the 'More' button,
      so the menu's top:calc(100% + 6px) opened ~26px below it. Moving the
      pointer across that gap fired mouseleave and auto-closed the menu before
      it could be reached. Make the wrapper hug the button so the gap is 6px. */
body.aidust .custom-select--tab{ display:inline-flex; align-items:center; position:relative; }

/* 2) Bridge the remaining 6px so the pointer never technically leaves. */
body.aidust .custom-select--tab.is-open::after{ content:''; position:absolute; left:0; right:0; top:100%; height:8px; }

/* 3) z-index:10 let the founder rows paint over the open menu, which is why
      page text showed through its lower half. Lift the whole toolbar and the
      menu above the list. */
body.aidust .founders-toolbar, body.aidust .tools-filter-row{ position:relative; z-index:30; }
body.aidust .filter-tabs{ position:relative; z-index:31; }
body.aidust .custom-select--tab.is-open{ z-index:60; }
body.aidust .custom-select__menu{ z-index:60; background:var(--white); }
body.aidust .filter-dropdown__menu{ z-index:60; }
body.aidust .founder-list, body.aidust .tool-grid{ position:relative; z-index:1; }
/* ===== SECTION STACKING ORDER (must stay last) ===== */
/* Every Elementor section was given z-index:1, so with equal z-index the
   LATER section (the founder list / tools grid) painted on top of the
   EARLIER one holding the filter bar. An open dropdown was therefore covered
   by the next section: page text bled through it, and the pointer landed on
   that section instead of the menu - which fired mouseleave and closed it.
   Lift the sections that contain filter bars above the ones that follow. */
body.aidust .elementor > .e-con.founders-hero{ position:relative; z-index:40; }
body.aidust .elementor > .e-con.blog-hero{ position:relative; z-index:40; }
body.aidust .elementor > .e-con#tools{ position:relative; z-index:40; }
body.aidust .elementor > .e-con.section--grid-top0{ position:relative; z-index:1; }

/* An open menu must also escape any clipping from its own row. */
body.aidust .founders-toolbar, body.aidust .blog-toolbar, body.aidust .tools-filter-row{ overflow:visible; }
body.aidust .filter-tabs{ overflow:visible; }
/* ===== CONTACT / ARTICLE HEADER + FORMS (from source) ===== */
body.aidust .article-header{ padding:56px 0 0; max-width:760px; margin:0 auto; text-align:center; }
body.aidust .article-header h1{ font-size:clamp(1.8rem, 4vw, 2.6rem); margin:0 0 16px !important; }
body.aidust .article-header__meta{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:10px; font-size:13px; color:var(--grey-500); }
body.aidust .article-header__dot{ width:3px; height:3px; border-radius:50%; background:var(--grey-400); }
body.aidust .breadcrumbs{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:6px; font-size:13px; color:var(--grey-400); margin-bottom:22px; }
body.aidust .breadcrumbs a{ color:var(--grey-500); }
body.aidust .breadcrumbs a:hover{ color:var(--orange-dark); }
body.aidust .breadcrumbs__current{ color:var(--grey-700); font-weight:500; }

/* Route cards: source is a 3-column grid, cards stretch to equal height. */
body.aidust .contact-routes{ display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
body.aidust .route-card{ display:flex; flex-direction:column; gap:14px; padding:26px; border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white); }
body.aidust .route-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
body.aidust .route-card__icon{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:var(--r-md); background:var(--grey-100); color:var(--black); }
body.aidust .route-card:hover .route-card__icon{ background:var(--black); color:var(--white); }
body.aidust .route-card__icon svg{ width:20px; height:20px; }
body.aidust .route-card__title{ font-size:15.5px; font-weight:700; letter-spacing:-0.01em; }
body.aidust .route-card__desc{ font-size:13.5px; color:var(--grey-600); line-height:1.5; }
body.aidust .route-card__arrow{ margin-top:auto; display:inline-flex; align-items:center; gap:6px; font-size:13.5px; font-weight:600; color:var(--black); }
body.aidust .route-card__arrow svg{ width:14px; height:14px; }
body.aidust .route-card:hover .route-card__arrow{ color:var(--orange-dark); gap:10px; }
body.aidust .elementor .e-con.section--routes{ padding-top:0 !important; }

/* WPForms restyled to match the source .submit-form design. */
body.aidust .submit-form{ max-width:640px; margin:0 auto; }
body.aidust .form-field__hint{ font-size:14px; color:var(--grey-500); text-align:center; }
body.aidust .form-field__hint a{ color:var(--orange-dark); border-bottom:1px solid var(--orange-tint); }
body.aidust .aidust-wpform .wpforms-container{ margin:0; }
body.aidust .aidust-wpform .wpforms-field{ display:flex; flex-direction:column; gap:8px; margin:0 0 20px; padding:0; }
body.aidust .aidust-wpform .wpforms-field-label{ font-size:13px !important; font-weight:600 !important; color:var(--black) !important; }
body.aidust .aidust-wpform .wpforms-required-label{ color:var(--orange-dark) !important; font-weight:700; }
body.aidust .aidust-wpform input[type=text], body.aidust .aidust-wpform input[type=email], body.aidust .aidust-wpform input[type=url], body.aidust .aidust-wpform select, body.aidust .aidust-wpform textarea{
  width:100% !important; max-width:none !important; border:1px solid var(--grey-200) !important; border-radius:var(--r-md) !important;
  padding:12px 14px !important; font-size:14px !important; font-family:inherit !important; color:var(--black) !important;
  background:var(--white) !important; outline:none; box-shadow:none !important; height:auto !important; transition:border-color .15s var(--ease);
}
body.aidust .aidust-wpform input:hover, body.aidust .aidust-wpform textarea:hover, body.aidust .aidust-wpform input:focus, body.aidust .aidust-wpform textarea:focus{ border-color:var(--orange) !important; }
body.aidust .aidust-wpform textarea{ resize:vertical; min-height:100px !important; line-height:1.6; }
body.aidust .aidust-wpform .wpforms-submit{
  width:100% !important; justify-content:center; margin-top:8px; display:inline-flex; align-items:center;
  background:var(--black) !important; color:var(--white) !important; border:1px solid transparent !important;
  border-radius:var(--r-md) !important; padding:12px 22px !important; font-size:14px !important; font-weight:500 !important;
  font-family:inherit !important; box-shadow:none !important; transition:transform .15s var(--ease), background .15s var(--ease);
}
body.aidust .aidust-wpform .wpforms-submit:hover{ background:#000 !important; transform:translateY(-1px); box-shadow:var(--shadow-md) !important; }
body.aidust .aidust-wpform .wpforms-confirmation-container-full{ background:var(--orange-tint); border:1px solid var(--orange); border-radius:var(--r-md); color:var(--black); }

@media (max-width:860px){ body.aidust .contact-routes{ grid-template-columns:1fr; } }
/* ===== SUBMIT PAGE COMPONENTS (from source) ===== */
body.aidust .submit-showcase{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
body.aidust .submit-preview{ position:relative; overflow:hidden; cursor:pointer; background:var(--black-soft); border:1px solid var(--orange); border-radius:var(--r-xl); width:100%; max-width:340px; aspect-ratio:3/3.5; margin:0 auto; box-shadow:0 30px 50px -10px rgba(0,0,0,.6); }
body.aidust .submit-preview__image{ display:none; position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
body.aidust .submit-preview.has-image .submit-preview__image{ display:block; }
body.aidust .submit-preview__hint{ position:absolute; inset:0; z-index:3; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:28px; text-align:center; pointer-events:none; }
body.aidust .submit-preview__hint svg{ width:22px; height:22px; color:var(--orange); }
body.aidust .submit-preview__hint strong{ font-size:14px; font-weight:600; color:var(--white); }
body.aidust .submit-preview__hint span{ font-size:12px; color:rgba(255,255,255,.5); line-height:1.5; }
body.aidust .submit-preview.has-image .submit-preview__hint{ display:none; }

body.aidust .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
body.aidust .form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
body.aidust .form-field label{ font-size:13px; font-weight:600; color:var(--black); }
body.aidust .form-required{ color:var(--orange-dark); font-weight:700; }
body.aidust .form-field input[type=text], body.aidust .form-field input[type=url], body.aidust .form-field input[type=email], body.aidust .form-field select, body.aidust .form-field textarea{ border:1px solid var(--grey-200); border-radius:var(--r-md); padding:12px 14px; font-size:14px; font-family:inherit; color:var(--black); background:var(--white); outline:none; width:100%; height:auto; box-shadow:none; transition:border-color .15s var(--ease); }
body.aidust .form-field input:hover, body.aidust .form-field textarea:hover, body.aidust .form-field input:focus, body.aidust .form-field textarea:focus{ border-color:var(--orange); }
body.aidust .form-field textarea{ resize:vertical; min-height:100px; line-height:1.6; }

body.aidust .form-radio-group{ display:flex; flex-wrap:wrap; gap:8px; }
body.aidust .form-radio{ position:relative; display:inline-flex; align-items:center; padding:9px 16px; border:1px solid var(--grey-200); border-radius:var(--r-full); font-size:13px; font-weight:500; color:var(--grey-600); cursor:pointer; transition:border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease); }
body.aidust .form-radio input{ position:absolute; opacity:0; pointer-events:none; }
body.aidust .form-radio:has(input:checked){ background:var(--black); border-color:var(--black); color:var(--white); }
body.aidust .form-radio:hover{ border-color:var(--orange); color:var(--orange-dark); }
body.aidust .form-radio:has(input:checked):hover{ color:var(--white); }

body.aidust .form-upload{ display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:32px; border:1.5px dashed var(--grey-300); border-radius:var(--r-lg); text-align:center; cursor:pointer; transition:border-color .15s var(--ease), background .15s var(--ease); }
body.aidust .form-upload:hover{ border-color:var(--orange); background:var(--orange-tint); }
body.aidust .form-upload input{ display:none; }
body.aidust .form-upload svg{ width:22px; height:22px; color:var(--grey-400); }
body.aidust .form-upload strong{ font-size:13.5px; font-weight:600; color:var(--black); }
body.aidust .form-upload span{ font-size:12px; color:var(--grey-500); }
body.aidust .form-upload--portrait{ width:240px; aspect-ratio:3/4; padding:20px; }

body.aidust .submit-flow--vertical{ flex-direction:column; align-items:flex-start; max-width:360px; margin-top:28px; margin-bottom:0; }
body.aidust .submit-flow--vertical .submit-flow__num{ width:36px; height:36px; font-size:15px; flex-shrink:0; box-shadow:0 0 0 5px rgba(255,71,19,.14); }
body.aidust .submit-flow--vertical .submit-flow__step{ flex-direction:row; align-items:flex-start; text-align:left; gap:22px; padding:0 0 42px; }
body.aidust .submit-flow--vertical .submit-flow__step:last-child{ padding-bottom:0; }
body.aidust .submit-flow--vertical .submit-flow__step h4{ font-size:16px; margin-bottom:5px; }
body.aidust .submit-flow--vertical .submit-flow__step p{ font-size:14px; line-height:1.65; max-width:none; }
body.aidust .submit-flow--vertical .submit-flow__step:not(:last-child)::after{ top:44px; left:17px; width:1px; height:calc(100% - 26px); }
body.aidust .submit-flow--vertical .submit-flow__step:not(:last-child)::before{ top:44px; left:17px; width:1.5px; height:calc(100% - 26px); transform-origin:top; }

@media (max-width:860px){
  body.aidust .submit-showcase{ grid-template-columns:1fr; gap:32px; }
  body.aidust .form-row{ grid-template-columns:1fr; }
}
/* ===== SUBMIT PAGE LAYOUT (from source) ===== */
body.aidust .elementor .e-con.section--submit-showcase{ padding:64px 0 !important; background:#000; }
body.aidust .submit-form__submit{ width:100%; justify-content:center; margin-top:8px; }
body.aidust .form-success{ display:none; flex-direction:column; align-items:center; text-align:center; gap:14px; padding:56px 24px; }
body.aidust .form-success.is-visible{ display:flex; }
body.aidust .form-success__icon{ display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background:var(--orange-tint); color:var(--orange-dark); }
body.aidust .form-success__icon svg{ width:26px; height:26px; }
body.aidust .form-success h2{ font-size:1.4rem; margin:0; }
body.aidust .form-success p{ font-size:14.5px; color:var(--grey-600); max-width:420px; margin:0; }
body.aidust .submit-showcase__body .section__title{ color:var(--white); }
body.aidust .submit-showcase__body .eyebrow{ color:rgba(255,255,255,.45); }

/* ===== BLOG SINGLE POST (verbatim from styles.css) ===== */
body.aidust .article-header{ padding:56px 0 0; max-width:760px; margin:0 auto; text-align:center; }
body.aidust .article-header h1{ font-size:clamp(1.8rem, 4vw, 2.6rem); margin:0 0 16px !important; }
body.aidust .article-header__meta{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:10px; font-size:13px; color:var(--grey-500); }
body.aidust .article-header__meta br{ display:none; }
body.aidust .article-header__author{ display:inline-flex; align-items:center; justify-content:center; width:26px; height:26px; border-radius:50%; background:var(--black); color:var(--white); font-size:10.5px; font-weight:700; flex-shrink:0; }
body.aidust .article-header__dot{ width:3px; height:3px; border-radius:50%; background:var(--grey-400); }
body.aidust .article-cover{ position:relative; height:340px; margin:32px 0 56px; background:var(--black); overflow:hidden; }
body.aidust .article-cover::after{ content:''; position:absolute; width:280px; height:280px; right:-70px; bottom:-90px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity:.4; border-radius:50%; }
body.aidust .article-cover__icon{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
body.aidust .article-cover__icon svg{ width:64px; height:64px; color:rgba(255,255,255,.14); }
body.aidust .article-layout{ display:grid; grid-template-columns:260px 1fr; gap:56px; align-items:start; }
body.aidust .article-content{ max-width:720px; min-width:0; }
body.aidust .article-content h2{ font-size:22px; font-weight:600; letter-spacing:-0.01em; margin:44px 0 14px !important; scroll-margin-top:100px; }
body.aidust .article-content h2:first-child{ margin-top:0 !important; }
body.aidust .article-content h3{ font-size:17px; font-weight:600; margin:28px 0 10px !important; }
body.aidust .article-content p{ font-size:15px; line-height:1.75; color:var(--grey-700); margin:0 0 18px !important; }
body.aidust .article-content ul, body.aidust .article-content ol{ margin:0 0 18px !important; padding-left:22px; }
body.aidust .article-content li{ font-size:15px; line-height:1.75; color:var(--grey-700); margin-bottom:8px; }
body.aidust .article-content strong{ font-weight:600; color:var(--black); }
body.aidust .article-content a{ color:inherit; text-decoration:none; border-bottom:1px solid var(--grey-300); transition:color .15s,border-color .15s; }
body.aidust .article-content a:hover{ color:var(--orange-dark); border-color:var(--orange); }
body.aidust .article-toc{ position:sticky; top:96px; }
body.aidust .article-toc__label{ font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--grey-500); margin-bottom:14px; display:block; }
body.aidust .article-toc ul{ display:flex; flex-direction:column; border-left:2px solid var(--grey-200); list-style:none; margin:0; padding:0; }
body.aidust .article-toc a{ display:block; padding:8px 0 8px 16px; margin-left:-2px; border-left:2px solid transparent; font-size:13px; color:var(--grey-600); text-decoration:none; border-bottom:none; transition:color .15s var(--ease),border-color .15s var(--ease); }
body.aidust .article-toc a:hover{ color:var(--black); border-bottom:none; }
body.aidust .article-toc a.is-active{ color:var(--orange); font-weight:600; border-left-color:var(--orange); }
body.aidust .article-footer{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-top:48px; padding-top:28px; border-top:1px solid var(--grey-200); }
body.aidust .article-author{ display:flex; align-items:center; gap:12px; }
body.aidust .article-author__avatar{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:var(--black); color:var(--white); font-size:13px; font-weight:700; flex-shrink:0; }
body.aidust .article-author__name{ display:block; font-size:13.5px; font-weight:600; }
body.aidust .article-author__role{ display:block; font-size:12px; color:var(--grey-500); }
body.aidust .article-share{ display:flex; align-items:center; gap:10px; }
body.aidust .article-pager{ display:grid; grid-template-columns:minmax(0,380px) minmax(0,380px); justify-content:space-between; gap:24px; }
body.aidust .article-pager__link{ display:flex; flex-direction:column; gap:6px; text-decoration:none; }
body.aidust .article-pager__link--next{ align-items:flex-end; text-align:right; }
body.aidust .article-pager__label{ display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--grey-500); }
body.aidust .article-pager__label svg{ width:13px; height:13px; }
body.aidust .article-pager__title{ font-size:15px; font-weight:600; letter-spacing:-0.01em; color:var(--black); transition:color .15s var(--ease); }
body.aidust .article-pager__link:hover .article-pager__title{ color:var(--orange); }
body.single-post .entry-content, body.single-post .entry-content.is-layout-constrained{ max-width:none !important; margin:0 !important; padding:0 !important; }
body.single-post .ct-container-full{ padding-left:0 !important; padding-right:0 !important; max-width:none !important; }
body.single-post main.site-main{ padding-top:0 !important; padding-bottom:0 !important; }
body.single-post .hero-section, body.single-post .ct-page-title{ display:none !important; }
@media (max-width:860px){
  body.aidust .article-layout{ grid-template-columns:1fr; }
  body.aidust .article-toc{ position:static; border:1px solid var(--grey-200); border-radius:var(--r-md); padding:16px; }
  body.aidust .article-pager{ grid-template-columns:1fr; }
}

/* Keep container + article-header widths on single posts (a previous
   `.entry-content > *` reset was flattening them to full width). */
body.single-post .container{ width:100%; max-width:var(--container) !important; margin-left:auto !important; margin-right:auto !important; padding-left:24px; padding-right:24px; }
body.single-post .article-header{ max-width:760px !important; margin-left:auto !important; margin-right:auto !important; }

/* ===== PRO-TIP + NEWSLETTER (restored from styles.css) ===== */
body.aidust .pro-tip{ background:var(--black); color:var(--white); border-radius:var(--r-lg); padding:24px; margin:36px 0; }
body.aidust .pro-tip__label{ display:flex; align-items:center; gap:7px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--orange); margin-bottom:10px; }
body.aidust .pro-tip__icon{ display:inline-flex; align-items:center; justify-content:center; color:var(--orange); flex-shrink:0; transform:rotate(-12deg); }
body.aidust .pro-tip__icon svg{ width:22px; height:22px; }
body.aidust .pro-tip__body p{ margin:0 !important; font-size:14.5px; line-height:1.7; color:rgba(255,255,255,.85); }
body.aidust .article-content .pro-tip p{ color:rgba(255,255,255,.85); }
body.aidust .newsletter{ background:var(--grey-50); }
body.aidust .newsletter__inner{ display:flex; align-items:center; justify-content:space-between; gap:40px; padding:48px; background:var(--white); border:1px solid var(--grey-200); border-radius:var(--r-xl); }
body.aidust .newsletter .section__sub{ max-width:420px; }
body.aidust .newsletter__form{ display:flex; gap:10px; flex-shrink:0; }
body.aidust .newsletter__form input{ width:260px; padding:12px 16px; border:1px solid var(--grey-200); border-radius:var(--r-md); font-size:14px; font-family:inherit; outline:none; background:var(--white); transition:border-color .15s var(--ease); }
body.aidust .newsletter__form input:focus{ border-color:var(--black) !important; }
@media (max-width:860px){ body.aidust .newsletter__inner{ flex-direction:column; align-items:flex-start; padding:28px; } body.aidust .newsletter__form{ width:100%; } body.aidust .newsletter__form input{ flex:1; width:auto; } }
/* ===== SINGLE POST CONTAINER ALIGNMENT ===== */
/* Every .container on a single post must be the SAME width as the cover's,
   so the TOC left edge lines up with the cover's left edge (as in the source).
   Covers both the bare <div class=container> and the one nested in <section>. */
body.single-post .container,
body.single-post .section > .container,
body.single-post section > .container{
  box-sizing:border-box;
  width:100% !important;
  max-width:1216px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:24px !important;
  padding-right:24px !important;
}
/* The <section> wrappers must not add their own width or offset. */
body.single-post .section{ width:100%; max-width:none; margin:0; padding-left:0; padding-right:0; }
/* Grid columns exactly as source: 260px sidebar, 56px gap. */
body.single-post .article-layout{ display:grid !important; grid-template-columns:260px 1fr !important; gap:56px !important; align-items:start; width:100%; }
/* ===== FAQ + AUTHOR + SHARE (verbatim from styles.css) ===== */
body.aidust .faq-list{ display:flex; flex-direction:column; border-top:1px solid var(--grey-200); }
body.aidust .faq-item{ border-bottom:1px solid var(--grey-200); }
body.aidust .faq-item__q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 2px; background:none; border:none; text-align:left; font-size:15px; font-weight:600; letter-spacing:-0.01em; color:var(--black); cursor:pointer; font-family:inherit; }
body.aidust .faq-item__q-icon{ display:inline-flex; align-items:center; justify-content:center; width:26px !important; height:26px !important; border-radius:50%; border:1px solid var(--grey-300); color:var(--grey-500); flex-shrink:0; background:none; transition:transform .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease); }
body.aidust .faq-item__q-icon svg{ width:13px !important; height:13px !important; display:block; }
body.aidust .faq-item.is-open .faq-item__q-icon{ transform:rotate(45deg); background:var(--orange); border-color:var(--orange); color:var(--white); }
body.aidust .faq-item__a{ max-height:0; overflow:hidden; transition:max-height .28s var(--ease); }
body.aidust .faq-item__a p{ margin:0 0 22px !important; padding-right:50px; font-size:14px; line-height:1.7; color:var(--grey-600); }

body.aidust .article-footer{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-top:48px; padding-top:28px; border-top:1px solid var(--grey-200); }
body.aidust .article-author{ display:flex; align-items:center; gap:12px; }
body.aidust .article-author__avatar{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:50%; background:var(--black); color:var(--white); font-size:13px; font-weight:700; flex-shrink:0; }
body.aidust .article-author__name{ display:block; font-size:13.5px; font-weight:600; margin:0; line-height:1.4; }
body.aidust .article-author__role{ display:block; font-size:12px; color:var(--grey-500); margin:0; line-height:1.4; }
body.aidust .article-author > div{ display:flex; flex-direction:column; gap:0; }

body.aidust .article-share{ display:flex; align-items:center; gap:10px; }
body.aidust .icon-btn{ display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:var(--r-md); background:transparent; border:1px solid transparent; color:var(--black); text-decoration:none; transition:background .15s var(--ease), border-color .15s var(--ease); }
body.aidust .icon-btn svg{ width:18px; height:18px; }
body.aidust .icon-btn:hover{ background:var(--grey-100); border-color:var(--grey-200); }
body.aidust .article-share .icon-btn{ border-bottom:1px solid transparent; }
/* ===== ARTICLE HEADER WIDTH (must stay last) ===== */
/* The header element carries BOTH classes: <section class="container article-header">.
   The generic .container rule (1216px !important) was beating the header's own
   760px, so the H1 stopped wrapping. This higher-specificity rule restores it. */
body.single-post .container.article-header,
body.aidust .container.article-header{
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding:56px 24px 0 !important;
  text-align:center;
}

/* ===== HIDE COMMENTS ON SINGLE POSTS ===== */
body.single-post #comments,
body.single-post .comments-area,
body.single-post .ct-comments,
body.single-post #respond,
body.single-post .comment-respond,
body.single-post .post-edit-link,
body.single-post .entry-meta .edit-link{ display:none !important; }
/* ===== NEWSLETTER + FOOTER SPACING (from source) ===== */
/* Source: .section{padding:88px 0}, .newsletter{background:grey-50},
   .footer{border-top:1px solid grey-200; padding-top:64px}.
   Blocksy adds its own bottom padding on <main>, which left a white band
   between the grey newsletter block and the footer. */
body.single-post main.site-main,
body.single-post .site-main,
body.single-post article.post{ padding-bottom:0 !important; margin-bottom:0 !important; }
body.single-post .entry-content{ margin-bottom:0 !important; padding-bottom:0 !important; }

body.aidust .section.newsletter{ padding:88px 0 !important; background:var(--grey-50); margin-bottom:0 !important; }
body.aidust .footer{ border-top:1px solid var(--grey-200); padding-top:64px; margin-top:0 !important; background:var(--white); }
body.aidust .footer__inner{ display:grid; grid-template-columns:auto 1fr; gap:32px; padding-bottom:48px; }
body.aidust .footer__bottom{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-top:1px solid var(--grey-200); font-size:13px; color:var(--grey-500); }
body.aidust .footer__social{ display:flex; gap:14px; }
body.aidust .footer__social svg{ width:16px; height:16px; color:var(--grey-500); transition:color .15s var(--ease); }
body.aidust .footer__social a:hover svg{ color:var(--black); }
/* ===== NEWSLETTER-FOOTER GAP FIX (must stay last) ===== */
body.single-post .newsletter{ margin-bottom:0 !important; }
body.single-post .entry-content{ margin-bottom:0 !important; padding-bottom:0 !important; }
body.single-post main.site-main{ padding-bottom:0 !important; margin-bottom:0 !important; }
body.single-post article.post{ margin-bottom:0 !important; padding-bottom:0 !important; }
body.single-post .ct-container-full{ margin-bottom:0 !important; padding-bottom:0 !important; }
body.single-post .hentry{ margin-bottom:0 !important; }
footer.ct-footer{ display:none !important; margin:0 !important; padding:0 !important; height:0 !important; }
header.ct-header{ display:none !important; margin:0 !important; padding:0 !important; height:0 !important; }
/* ===== FOUNDER SINGLE ARTICLE (verbatim from styles.css) ===== */
body.aidust .founder-article-header{ padding:56px 0 0; max-width:760px; margin:0 auto; text-align:center; }
body.aidust .founder-article-header__avatar{ display:inline-flex; align-items:center; justify-content:center; width:88px; height:88px; border-radius:50%; background:var(--black); color:var(--white); font-size:28px; font-weight:700; margin-bottom:20px; }
body.aidust .founder-article-header h1{ font-size:clamp(1.8rem, 4vw, 2.6rem); margin:0 0 10px !important; }
body.aidust .founder-article-header__role{ display:block; font-size:15px; color:var(--grey-600); margin-bottom:18px; }
body.aidust .founder-article-header__meta{ display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:10px; font-size:13px; color:var(--grey-500); }

body.aidust .founder-pullquote{ position:relative; background:var(--black); padding:64px 0; margin-top:32px; overflow:hidden; }
body.aidust .founder-pullquote::after{ content:''; position:absolute; width:320px; height:320px; left:-100px; top:-120px; background:radial-gradient(circle, var(--orange) 0%, transparent 70%); opacity:.4; border-radius:50%; }
body.aidust .founder-pullquote__mark{ position:relative; z-index:1; display:block; width:26px; height:26px; margin:0 auto 20px; color:var(--orange); }
body.aidust .founder-pullquote blockquote{ position:relative; z-index:1; font-size:clamp(1.25rem, 3vw, 1.75rem); font-style:italic; font-weight:500; color:var(--white); max-width:760px; margin:0 auto !important; text-align:center; line-height:1.5; }
body.aidust .founder-pullquote cite{ position:relative; z-index:1; display:block; margin-top:22px; font-size:13px; font-style:normal; color:rgba(255,255,255,.55); }

body.aidust .related-founders{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; }
body.aidust .related-founder-card{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px; padding:26px; border:1px solid var(--grey-200); border-radius:var(--r-lg); background:var(--white); text-decoration:none; transition:border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease); }
body.aidust .related-founder-card:hover{ border-color:var(--orange); transform:translateY(-3px); box-shadow:var(--shadow-md); }
body.aidust .related-founder-card__avatar{ display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background:var(--black); color:var(--white); font-size:15px; font-weight:700; }
body.aidust .related-founder-card__name{ font-size:14.5px; font-weight:600; }
body.aidust .related-founder-card__role{ font-size:12px; color:var(--grey-500); margin-top:-6px; }

body.single-post.single-founder .container.founder-article-header,
body.aidust .container.founder-article-header{ max-width:760px !important; margin-left:auto !important; margin-right:auto !important; padding:56px 24px 0 !important; text-align:center; }

@media (max-width:640px){ body.aidust .related-founders{ grid-template-columns:1fr; } }
/* ===== FOUNDER SINGLE - BLOCKSY CLEANUP + CONTAINER ALIGNMENT ===== */
body.single-founder .hero-section, body.single-founder .ct-page-title{ display:none !important; }
body.single-founder .entry-content, body.single-founder .entry-content.is-layout-constrained{ max-width:none !important; margin:0 !important; padding:0 !important; }
body.single-founder .ct-container-full{ padding-left:0 !important; padding-right:0 !important; max-width:none !important; margin-bottom:0 !important; padding-bottom:0 !important; }
body.single-founder main.site-main{ padding-top:0 !important; padding-bottom:0 !important; margin-bottom:0 !important; }
body.single-founder article.founder{ margin-bottom:0 !important; padding-bottom:0 !important; }
body.single-founder .hentry{ margin-bottom:0 !important; }
body.single-founder footer.ct-footer, body.single-founder header.ct-header{ display:none !important; margin:0 !important; padding:0 !important; height:0 !important; }

body.single-founder .container,
body.single-founder .section > .container,
body.single-founder section > .container{ box-sizing:border-box; width:100% !important; max-width:1216px !important; margin-left:auto !important; margin-right:auto !important; padding-left:24px !important; padding-right:24px !important; }
body.single-founder .section{ width:100%; max-width:none; margin:0; padding-left:0; padding-right:0; }
body.single-founder .article-layout{ display:grid !important; grid-template-columns:260px 1fr !important; gap:56px !important; align-items:start; width:100%; }
body.single-founder .article-content{ max-width:720px; min-width:0; }
body.single-founder .container.founder-article-header{ max-width:760px !important; }
/* ===== FOUNDER PULLQUOTE BLOCKQUOTE RESET (must stay last) ===== */
/* Browser default <blockquote> styling (left border + indent margin) was
   leaking through, since no rule explicitly reset it. That extra left margin
   also narrowed the usable width, forcing the quote onto 4 lines instead of
   2 and inflating the black band's height. */
body.aidust .founder-pullquote blockquote{
  border:none !important;
  border-left:none !important;
  margin:0 auto !important;
  padding:0 !important;
  max-width:760px;
  font-size:clamp(1.25rem, 3vw, 1.75rem) !important;
  font-style:italic;
  font-weight:500;
  color:var(--white);
  text-align:center;
  line-height:1.5;
}
/* ===== FOUNDER PULLQUOTE FULL-BLEED (must stay last) ===== */
/* Blocksy's wrapper carries data-content="normal", an attribute selector
   that constrains width independently of the .ct-container-full class rule.
   That's why the black pull-quote band stopped short of the viewport edges
   instead of running full-bleed like .hero and .stats do elsewhere. */
body.single-founder main.site-main [data-content],
body.single-founder .ct-container-full[data-content]{
  max-width:none !important;
  width:100% !important;
  padding-left:0 !important;
  padding-right:0 !important;
  margin-left:0 !important;
  margin-right:0 !important;
}
body.single-founder article.founder{ max-width:none !important; width:100% !important; margin:0 !important; padding:0 !important; }
body.single-founder .founder-pullquote{ width:100%; max-width:none; }
/* ===== TOOL DETAIL PAGE (verbatim from styles.css) ===== */
body.aidust .upvote{ display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border:1px solid var(--grey-200); border-radius:var(--r-md); background:transparent; color:var(--grey-700); font-size:12.5px; font-weight:600; transition:border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease); }
body.aidust .upvote svg{ width:13px; height:13px; }
body.aidust .upvote:hover{ border-color:var(--orange); color:var(--orange-dark); background:var(--orange-tint); }
body.aidust .upvote.is-voted{ border-color:var(--orange); color:var(--orange-dark); background:var(--orange-tint); }

body.aidust .tool-rating{ display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; color:var(--grey-700); }
body.aidust .tool-rating__stars{ position:relative; display:inline-flex; width:73px; height:13px; flex-shrink:0; }
body.aidust .tool-rating__stars-track, body.aidust .tool-rating__stars-fill{ position:absolute; top:0; left:0; display:flex; align-items:center; gap:2px; overflow:hidden; }
body.aidust .tool-rating__stars-track{ width:100%; }
body.aidust .tool-rating__stars-fill{ width:0; height:100%; }
body.aidust .tool-rating__stars svg{ width:13px; height:13px; flex-shrink:0; }
body.aidust .tool-rating__stars-track svg{ color:var(--grey-200); }
body.aidust .tool-rating__stars-fill svg{ color:var(--orange); }
body.aidust .tool-rating__count{ color:var(--grey-500); font-weight:500; }

body.aidust .tool-detail-header{ padding:48px 0 0; }
body.aidust .tool-detail-header__inner{ display:grid; grid-template-columns:1fr 540px; gap:48px; align-items:start; margin-top:20px; }
body.aidust .tool-detail-top{ display:flex; flex-direction:column; gap:10px; margin-bottom:18px; }
body.aidust .tool-detail-title-row{ display:flex; align-items:center; gap:10px; }
body.aidust .tool-detail-mark{ display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:var(--r-sm); background:var(--black); color:var(--white); font-size:16px; font-weight:700; flex-shrink:0; }
body.aidust .tool-detail-header h1{ font-size:clamp(1.6rem, 3.4vw, 2.2rem); margin:0 !important; }
body.aidust .tool-detail-tagline{ font-size:15px; color:var(--grey-600); margin:0 !important; max-width:520px; }
body.aidust .tool-detail-tags{ display:flex; align-items:center; gap:8px; margin-bottom:22px; }
body.aidust .tool-detail-actions{ display:flex; align-items:center; flex-wrap:wrap; gap:14px; margin-bottom:28px; }
body.aidust .tool-detail-actions .btn svg{ width:15px; height:15px; }
body.aidust .tool-detail-facts{ display:flex; flex-wrap:wrap; gap:28px; padding-top:22px; border-top:1px solid var(--grey-200); }
body.aidust .tool-detail-fact{ display:flex; flex-direction:column; gap:4px; }
body.aidust .tool-detail-fact__label{ font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--grey-500); }
body.aidust .tool-detail-fact__value{ font-size:14px; font-weight:600; color:var(--black); }
body.aidust .tool-detail-fact__value a{ color:var(--black); border-bottom:1px solid var(--grey-300); transition:color .15s var(--ease), border-color .15s var(--ease); }
body.aidust .tool-detail-fact__value a:hover{ color:var(--orange-dark); border-color:var(--orange); }
body.aidust .tool-detail-header__preview{ position:sticky; top:96px; }
body.aidust .tool-detail-header__preview .tool-window__preview{ height:300px; }
body.aidust .tool-detail-header__preview .tool-window__mark{ width:84px; height:84px; font-size:30px; border-radius:var(--r-lg); }

body.aidust .check-list{ display:flex; flex-direction:column; gap:12px; margin:0 0 18px !important; }
body.aidust .check-list li{ display:flex; align-items:flex-start; gap:10px; font-size:14.5px; line-height:1.6; color:var(--grey-700); }
body.aidust .check-list__text{ flex:1; min-width:0; }
body.aidust .check-list__text strong{ font-weight:600; color:var(--black); }
body.aidust .check-list__icon{ display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; width:20px; height:20px; margin-top:1px; border-radius:50%; background:var(--orange); color:var(--white); }
body.aidust .check-list__icon svg{ width:11px; height:11px; }

body.aidust .tool-detail-pricing-line{ display:flex; align-items:center; gap:10px; font-size:13.5px; font-weight:600; color:var(--black); margin:14px 0 18px !important; }
body.aidust .tool-detail-pricing-line svg{ width:15px; height:15px; color:var(--orange); flex-shrink:0; }
body.aidust .tool-detail-social{ display:flex; align-items:center; gap:6px; }
body.aidust .tool-detail-divider{ width:1px; height:20px; background:var(--grey-200); flex-shrink:0; }

body.aidust .proscons-grid{ display:grid; grid-template-columns:1fr; gap:14px; margin:0 0 18px !important; }
body.aidust .proscons-card{ border:1px solid var(--grey-200); border-radius:var(--r-lg); padding:20px; }
body.aidust .proscons-card h4{ font-size:12.5px; font-weight:600; text-transform:uppercase; letter-spacing:.03em; color:var(--grey-500); margin:0 0 14px !important; }
body.aidust .proscons-card ul{ display:flex; flex-direction:column; gap:10px; }
body.aidust .proscons-card li{ display:flex; align-items:flex-start; gap:8px; font-size:13.5px; line-height:1.5; color:var(--grey-700); }
body.aidust .proscons-card li svg{ width:14px; height:14px; flex-shrink:0; margin-top:2px; }
body.aidust .proscons-card--pros li svg{ color:var(--orange); }
body.aidust .proscons-card--cons li svg{ color:var(--grey-400); }

body.aidust .tool-detail-founder{ display:flex; align-items:center; gap:16px; border:1px solid var(--grey-200); border-radius:var(--r-lg); padding:18px 20px; margin:0 0 28px !important; text-decoration:none; transition:border-color .15s var(--ease), transform .15s var(--ease); }
body.aidust a.tool-detail-founder:hover{ border-color:var(--orange); transform:translateY(-2px); }
body.aidust .tool-detail-founder__avatar{ display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; width:48px; height:48px; border-radius:50%; background:var(--black); color:var(--white); font-size:15px; font-weight:700; }
body.aidust .tool-detail-founder__body{ flex:1; min-width:0; }
body.aidust .tool-detail-founder__label{ display:block; font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.04em; color:var(--grey-500); margin-bottom:3px; }
body.aidust .tool-detail-founder__name{ display:block; font-size:14.5px; font-weight:600; }
body.aidust .tool-detail-founder > svg{ width:15px; height:15px; color:var(--grey-400); flex-shrink:0; transition:color .15s var(--ease), transform .15s var(--ease); }
body.aidust a.tool-detail-founder:hover > svg{ color:var(--orange); transform:translateX(4px); }

@media (max-width:860px){ body.aidust .tool-detail-header__inner{ grid-template-columns:1fr; gap:28px; } body.aidust .tool-detail-header__preview{ position:static; } }
@media (max-width:640px){ body.aidust .tool-detail-facts{ gap:20px; } }
/* ===== TOOL SINGLE - BLOCKSY CLEANUP + CONTAINER ALIGNMENT ===== */
body.single-tool .hero-section, body.single-tool .ct-page-title{ display:none !important; }
body.single-tool .entry-content, body.single-tool .entry-content.is-layout-constrained{ max-width:none !important; margin:0 !important; padding:0 !important; }
body.single-tool .ct-container-full{ padding-left:0 !important; padding-right:0 !important; max-width:none !important; margin-bottom:0 !important; padding-bottom:0 !important; }
body.single-tool main.site-main [data-content],
body.single-tool .ct-container-full[data-content]{ max-width:none !important; width:100% !important; padding-left:0 !important; padding-right:0 !important; margin-left:0 !important; margin-right:0 !important; }
body.single-tool main.site-main{ padding-top:0 !important; padding-bottom:0 !important; margin-bottom:0 !important; }
body.single-tool article.tool{ margin-bottom:0 !important; padding-bottom:0 !important; max-width:none !important; width:100% !important; }
body.single-tool .hentry{ margin-bottom:0 !important; }
body.single-tool footer.ct-footer, body.single-tool header.ct-header{ display:none !important; margin:0 !important; padding:0 !important; height:0 !important; }

body.single-tool .container,
body.single-tool .section > .container,
body.single-tool section > .container{ box-sizing:border-box; width:100% !important; max-width:1216px !important; margin-left:auto !important; margin-right:auto !important; padding-left:24px !important; padding-right:24px !important; }
body.single-tool .section{ width:100%; max-width:none; margin:0; padding-left:0; padding-right:0; }
body.single-tool .article-layout{ display:grid !important; grid-template-columns:260px 1fr !important; gap:56px !important; align-items:start; width:100%; }
body.single-tool .article-content{ max-width:720px; min-width:0; }
body.single-tool .newsletter{ margin-bottom:0 !important; }
/* ===== TOOL RATE WIDGET (new) ===== */
body.aidust .tool-rate{ margin-top:14px; padding:24px; border:1px solid var(--grey-200); border-radius:var(--r-lg); display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
body.aidust .tool-rate__stars{ display:flex; gap:4px; }
body.aidust .tool-rate__star{ background:none; border:none; padding:2px; cursor:pointer; color:var(--grey-250); transition:color .12s var(--ease), transform .12s var(--ease); }
body.aidust .tool-rate__star svg{ width:26px; height:26px; display:block; }
body.aidust .tool-rate__star:hover{ transform:scale(1.08); }
body.aidust .tool-rate__star.is-filled{ color:var(--orange); }
body.aidust .tool-rate.is-done .tool-rate__star{ cursor:default; }
body.aidust .tool-rate.is-done .tool-rate__star:hover{ transform:none; }
body.aidust .tool-rate.is-loading{ opacity:.6; pointer-events:none; }
body.aidust .tool-rate__msg{ font-size:13px; color:var(--grey-600); margin:0 !important; }
body.aidust .tool-rate.is-done .tool-rate__msg{ color:var(--orange-dark); font-weight:600; }
