@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --brand: #e5a52e;
  --brand-600: #c88716;
  --brand-050: #f8edd7;
  --navy: #061427;
  --navy-700: #020a12;
  --navy-050: #edf1f5;
  --ink: #0a1727;
  --muted: #64707e;
  --line: rgba(6,20,39,.14);
  --bg: #fcfaf5;
  --card: #ffffff;
  --radius: 3px;
  --maxw: 980px;
  --wide: 1480px;
  --shadow: 0 24px 70px rgba(6,20,39,.12);
  --shadow-sm: 0 10px 30px rgba(6,20,39,.07);
}

* { box-sizing: border-box; }
body {
  background:
    linear-gradient(rgba(6,20,39,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,20,39,.022) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}
h1,h2,h3,h4 { font-family: "Manrope", sans-serif; letter-spacing: -.035em; }
a { color: var(--brand-600); }

header.site {
  position: sticky;
  top: 0;
  background: rgba(3,12,23,.92);
  border-bottom: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}
header.site .bar { max-width: var(--wide); padding: 14px 4vw; min-height: 82px; }
header.site .brand { gap: 18px; }
header.site .brand .logo {
  width: 158px;
  height: 50px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  display: flex;
  align-items: center;
}
header.site .brand .logo img { width: 100%; height: 50px; object-fit: contain; }
header.site .tag {
  color: rgba(255,255,255,.56);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  padding: 4px 0 4px 18px;
  letter-spacing: .18em;
}
nav.main { gap: 30px; }
nav.main a { color: rgba(255,255,255,.72); font-size: 13.5px; font-weight: 500; }
nav.main a.plain:hover { color: #ffbd45; }
.dropmenu { background: #081a30; border-color: rgba(255,255,255,.14); border-radius: 2px; }
.dropmenu a { color: rgba(255,255,255,.72)!important; }
.dropmenu a:hover { background: rgba(229,165,46,.1); color: #fff!important; }

.btn { border-radius: 0; font-family: "DM Sans", sans-serif; transition: .25s ease; }
.btn-primary { background: var(--brand); color: var(--navy)!important; }
.btn-primary:hover { background: #ffbd45; transform: translateY(-2px); }
.btn-navy { background: transparent; border: 1px solid rgba(255,255,255,.28); color: #fff!important; }

.hero-band {
  min-height: 720px;
  border-bottom: 0;
  background:
    radial-gradient(circle at 77% 43%, rgba(229,165,46,.18), transparent 25%),
    linear-gradient(108deg,#020a12 0%,#061427 48%,#0a203b 100%);
}
.hero-band:before {
  content: none;
  position: absolute;
  right: 5vw;
  top: 49%;
  transform: translateY(-50%);
  font: 500 clamp(18rem,32vw,38rem)/1 Georgia,serif;
  color: transparent;
  -webkit-text-stroke: 1px rgba(229,165,46,.22);
  text-shadow: 0 0 90px rgba(229,165,46,.1);
}
.hero-band:after {
  opacity: .24;
  background-image: linear-gradient(rgba(255,255,255,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg,#000,transparent 70%);
}
.hero-in { text-align: left; padding: 120px 4vw 100px; }
.hero-in h1 { max-width: 850px; color: #fff; font-weight: 500; font-size: clamp(4rem,7.2vw,8rem); line-height: .96; }
.hero-in h1 .hl { color: var(--brand); }
.hero-in .sub { max-width: 680px; margin: 30px 0 0; color: rgba(255,255,255,.6); font-size: 18px; line-height: 1.75; }
.hero-in .sub a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.35); }
.hero-in .pill-eyebrow { margin-bottom: 30px; background: transparent; border: 0; box-shadow: none; padding: 0; color: rgba(255,255,255,.55); letter-spacing: .16em; text-transform: uppercase; }
.hero-cta { justify-content: flex-start; margin-top: 34px; }
.hero-visual { position: absolute; z-index: 2; width: 430px; right: 7vw; bottom: 70px; margin: 0; }
.preview { border-radius: 2px; border-color: rgba(255,255,255,.16); background: rgba(4,14,27,.8); box-shadow: 0 34px 90px rgba(0,0,0,.34); color: #fff; transform: none; backdrop-filter: blur(12px); }
.pv-title,.pv-ring b,.pv-tile b { color: #fff; }
.pv-ring:after { background: #081a30; }
.pv-tile { border-radius: 0; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.pv-tile i,.pv-ring span { color: rgba(255,255,255,.45); }
.floatchip { border-radius: 50%; background: var(--brand)!important; color: var(--navy); }

.sec-head { margin-bottom: 30px; }
.sec-head h2 { color: var(--ink); font-size: clamp(2rem,3vw,3.2rem); font-weight: 500; }
.seeall { color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.cardgrid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.card,.catcard {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--card);
}
.card { min-height: 245px; padding: 28px; }
.card h3 { color: var(--ink); font-size: 19px; margin-top: 28px; }
.card p { color: var(--muted); }
a.card:hover { transform: translateY(-5px); position: relative; z-index: 2; border-color: transparent; box-shadow: var(--shadow); }
.badge { border-radius: 0; }
.badge.live { background: rgba(22,163,74,.1); }
.catgrid { gap: 1px; background: var(--line); border: 1px solid var(--line); }
.catcard { padding: 26px; min-height: 300px; }
.catcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); position: relative; z-index: 2; }
.cc-name { color: var(--ink); }
.dot.lg,.cat-chip .dot { border-radius: 50%; }
.cc-links li a { color: var(--muted); }

.crumb { padding-top: 26px; }
.wrap > .hero { padding-top: 62px; }
.wrap > .hero h1 { font-size: clamp(3rem,6vw,5.8rem); font-weight: 500; line-height: 1; color: var(--navy); }
.kicker { color: var(--brand-600); letter-spacing: .14em; }
.liftable { background: transparent; border: 0; border-left: 2px solid var(--brand); border-radius: 0; box-shadow: none; color: var(--muted); padding: 12px 0 12px 24px; }
.tool { border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: 0; box-shadow: var(--shadow-sm); padding: 34px; }
select,input[type=number],input[type=text],input[type=url],input[type=email],textarea {
  border-radius: 0!important;
  border-color: rgba(6,20,39,.2)!important;
  background: #fff!important;
}
select:focus,input:focus,textarea:focus { outline: 1px solid var(--brand)!important; border-color: var(--brand)!important; }
.result { border-top-style: solid; }
.ring:after { background: #fff; }
.stat { border-radius: 0; background: var(--bg); }
.cta { border-radius: 0; background: var(--navy); box-shadow: none; padding: 34px; }
.cta p { color: rgba(255,255,255,.58); }
.example,details { border-radius: 0; box-shadow: none; }
section.copy h2,section.copy h3,.verdict h3,.stat .v,.ring .num b { color: var(--navy); }

footer.site { background: #020a12; border-top: 1px solid rgba(255,255,255,.13); }
footer.site .in { max-width: var(--wide); padding: 52px 4vw 28px; }
footer.site .brand .logo { background: none; box-shadow: none; padding: 0; }
footer.site .brand .logo img { width: 150px; max-height: 50px; object-fit: contain; }
footer.site .tag { color: rgba(255,255,255,.42); background: transparent; border: 0; }
footer.site .lnks a { color: rgba(255,255,255,.7); }
footer.site small { color: rgba(255,255,255,.36); }

@media (max-width: 980px) {
  .hero-band { min-height: 780px; }
  .hero-in { padding-top: 90px; }
  .hero-visual { position: relative; right: auto; bottom: auto; width: min(100%,540px); margin: 70px 0 0; }
  .catgrid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 620px) {
  header.site .bar { padding: 10px 18px; min-height: 68px; }
  header.site .brand .logo { width: 122px; }
  header.site .tag { display: none; }
  nav.main { gap: 10px; }
  nav.main .btn { padding: 9px 12px; font-size: 12px; }
  .hero-band { min-height: auto; }
  .hero-in { padding: 74px 22px 70px; }
  .hero-in h1 { font-size: clamp(3.25rem,16vw,5.2rem); }
  .hero-visual { margin-top: 54px; }
  .catgrid { grid-template-columns: 1fr; }
  .cardgrid { grid-template-columns: 1fr; }
  .tool { padding: 22px; }
  footer.site .in { align-items: flex-start; flex-direction: column; }
}

/* v2 — carry the full exBots visual DNA beyond the colour palette */
body { background: var(--bg); }

.home-page .hero-band {
  min-height: 830px;
  background: var(--navy);
}
.home-page .hero-band:before { display: none; }
.home-page .hero-band:after {
  opacity: .75;
  background:
    radial-gradient(circle at 78% 48%,transparent 0 18%,rgba(229,165,46,.22) 18.15% 18.25%,transparent 18.4% 31%,rgba(229,165,46,.12) 31.1% 31.2%,transparent 31.35%),
    linear-gradient(90deg,transparent 0 51%,rgba(3,12,23,.02));
  mask-image: none;
}
.home-page .hero-in {
  max-width: 1500px;
  margin: 0 auto;
  padding: 132px 4vw 120px;
}
.home-page .hero-in h1 {
  max-width: 790px;
  font-size: clamp(4.4rem,7.2vw,8rem);
  text-wrap: balance;
}
.home-page .hero-in .sub { max-width: 680px; }
.home-page .hero-visual { display: none; }

.home-page #featured {
  max-width: none;
  padding: 8rem max(5vw,calc((100vw - 1500px)/2)) 8.5rem !important;
  background:
    radial-gradient(circle at 88% 12%,rgba(229,165,46,.1),transparent 24%),
    var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home-page #featured:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(229,165,46,.12);
  border-radius: 50%;
  right: -250px;
  bottom: -270px;
  box-shadow: 0 0 0 70px rgba(229,165,46,.035),0 0 0 140px rgba(229,165,46,.018);
}
.home-page #featured .sec-head,
.home-page #featured .cardgrid { position: relative; z-index: 1; }
.home-page #featured .sec-head { margin-bottom: 4.5rem; }
.home-page #featured .sec-head h2 { color: #fff; font-size: clamp(3.2rem,5vw,5.8rem); }
.home-page #featured .sec-head h2:before {
  content: "01 / SELECTED TOOLS";
  display: block;
  margin-bottom: 1.2rem;
  color: var(--brand);
  font: 600 .68rem/1 "DM Sans",sans-serif;
  letter-spacing: .16em;
}
.home-page #featured .seeall { color: #fff; border-color: rgba(255,255,255,.3); }
.home-page #featured .cardgrid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0 2.8rem;
  border: 0;
  background: transparent;
}
.home-page #featured .card {
  min-height: 280px;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: #fff;
}
.home-page #featured .card:nth-child(-n+3) { border-top-color: var(--brand); }
.home-page #featured .card h3 { color: #fff; font-size: 1.25rem; }
.home-page #featured .card p { color: rgba(255,255,255,.5); line-height: 1.7; }
.home-page #featured .card .cat-chip { color: var(--brand)!important; }
.home-page #featured .card .cat-chip .dot { background: rgba(229,165,46,.15)!important; color: var(--brand); }
.home-page #featured .card .badge.live { background: transparent; color: #75dba2; padding-left: 0; }
.home-page #featured a.card:hover { transform: translateY(-4px); box-shadow: none; }

.home-page main > section.wide:not(#featured) {
  max-width: 1500px;
  padding: 8rem 4vw 7rem !important;
}
.home-page main > section.wide:not(#featured) .sec-head { margin-bottom: 4rem; }
.home-page main > section.wide:not(#featured) .sec-head h2 { font-size: clamp(3.2rem,5vw,5.8rem); }
.home-page main > section.wide:not(#featured) .sec-head h2:before {
  content: "02 / EXPLORE";
  display: block;
  margin-bottom: 1.2rem;
  color: var(--brand-600);
  font: 600 .68rem/1 "DM Sans",sans-serif;
  letter-spacing: .16em;
}
.home-page .catgrid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0 3.5rem;
  border: 0;
  background: transparent;
}
.home-page .catcard {
  min-height: 0;
  padding: 2rem 0 2.5rem;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}
.home-page .catcard:hover { transform: none; box-shadow: none; }
.home-page .cc-head { margin-bottom: 1.35rem; }
.home-page .dot.lg {
  width: 36px;
  height: 36px;
  background: var(--navy)!important;
  color: var(--brand);
}
.home-page .cc-name { font-size: 1.08rem; }
.home-page .cc-links li a { border-top-color: rgba(6,20,39,.09); padding: .58rem 0; }

.directory-page { background: #f6f2e9; }
.directory-page main.wide { max-width: 1500px; padding: 5.5rem 4vw 8rem!important; }
.directory-page main > .hero { padding: 2rem 0 3rem!important; }
.directory-page main > .hero h1 { font-size: clamp(4rem,7vw,7.4rem)!important; font-weight: 500; line-height: .98; }
.directory-page .controls {
  top: 94px;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  background: rgba(6,20,39,.96);
  box-shadow: 0 22px 55px rgba(6,20,39,.15);
  backdrop-filter: blur(15px);
}
.directory-page #search { border: 0!important; border-radius: 0!important; background: #fff!important; }
.directory-page .chip { border-color: rgba(255,255,255,.18); background: transparent; color: rgba(255,255,255,.72); }
.directory-page .chip.active { background: var(--brand); border-color: var(--brand); color: var(--navy); }
.directory-page .catsec { margin-top: 5.5rem; }
.directory-page .catsec-head { padding-bottom: 1.2rem; border-bottom: 1px solid var(--line); }
.directory-page .catsec-head .dot { border-radius: 50%; background: var(--navy)!important; color: var(--brand); }
.directory-page .catsec-head h2 { font-size: 2rem; font-weight: 500; }
.directory-page .catsec-head .ccount { background: transparent; color: var(--brand-600); }
.directory-page .catsec .cardgrid {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 0 2.8rem;
  border: 0;
  background: transparent;
}
.directory-page .tool-item {
  min-height: 245px;
  padding: 2rem 0 2.4rem;
  border: 0;
  border-top: 1px solid rgba(6,20,39,.16);
  background: transparent;
}
.directory-page .tool-item h3 { margin-top: 1.5rem; }
.directory-page .tool-item .badge.live { background: transparent; padding-left: 0; }
.directory-page a.tool-item:hover { transform: translateY(-3px); box-shadow: none; }

@media (max-width: 980px) {
  .home-page #featured .cardgrid,
  .home-page .catgrid,
  .directory-page .catsec .cardgrid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-page #featured .card:nth-child(3) { border-top-color: rgba(255,255,255,.18); }
}
@media (max-width: 620px) {
  .home-page .hero-band { min-height: 760px; background-position: 68% center; }
  .home-page .hero-in { padding: 90px 22px 80px; }
  .home-page .hero-in h1 { font-size: clamp(3.3rem,16vw,5rem); }
  .home-page #featured,
  .home-page main > section.wide:not(#featured),
  .directory-page main.wide { padding-left: 22px!important; padding-right: 22px!important; }
  .home-page #featured .cardgrid,
  .home-page .catgrid,
  .directory-page .catsec .cardgrid { grid-template-columns: 1fr; }
  .home-page #featured .card:nth-child(2) { border-top-color: rgba(255,255,255,.18); }
  .directory-page .controls { top: 76px; }
}

/* v3 — Toolbox is a product surface, not a duplicate corporate homepage */
.home-page .hero-band {
  min-height: 570px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 24%,rgba(229,165,46,.18),transparent 18%),
    radial-gradient(circle at 72% 66%,rgba(6,20,39,.055),transparent 24%),
    #f6f2e9;
}
.home-page .hero-band:before { display: none; }
.home-page .hero-band:after {
  display: block;
  inset: auto -7vw -28vw auto;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(6,20,39,.07);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  mask-image: none;
  box-shadow: 0 0 0 7vw rgba(229,165,46,.035),0 0 0 14vw rgba(6,20,39,.018);
}
.home-page .hero-in {
  max-width: 1500px;
  padding: 82px 4vw 78px;
}
.home-page .hero-in .pill-eyebrow {
  color: var(--brand-600);
  margin-bottom: 1.6rem;
}
.home-page .hero-in h1 {
  max-width: 1050px;
  color: var(--navy);
  font-size: clamp(3.7rem,6vw,6.8rem);
  line-height: .96;
}
.home-page .hero-in h1 .hl { color: var(--brand-600); }
.home-page .hero-in .sub {
  max-width: 760px;
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.home-page .tool-search {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin-top: 2.1rem;
}
.home-page .tool-search label {
  display: block;
  margin-bottom: .55rem;
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.home-page .tool-search > div {
  display: grid;
  grid-template-columns: 1fr auto;
  background: #fff;
  border: 1px solid rgba(6,20,39,.16);
  box-shadow: 0 18px 44px rgba(6,20,39,.1);
}
.home-page .tool-search input {
  width: 100%;
  min-height: 62px;
  border: 0!important;
  padding: 0 1.3rem;
  font: 500 1rem "DM Sans",sans-serif;
  color: var(--navy);
  background: #fff!important;
}
.home-page .tool-search input:focus { outline: 0!important; }
.home-page .tool-search button {
  min-width: 132px;
  border: 0;
  padding: 0 1.4rem;
  background: var(--navy);
  color: #fff;
  font: 600 .86rem "DM Sans",sans-serif;
  cursor: pointer;
}
.home-page .tool-search button:hover { background: #0c2747; }
.home-page .hero-cta { margin-top: 1.25rem; }
.home-page .hero-cta .btn { padding: .75rem 0; background: transparent; border: 0; color: var(--navy)!important; }
.home-page .hero-cta .btn:first-child { color: var(--brand-600)!important; }
.home-page .hero-cta .btn:hover { transform: none; border-bottom: 1px solid currentColor; }
.home-page .hero-visual { display: none; }

.home-page #featured {
  padding-top: 6.5rem!important;
  padding-bottom: 7rem!important;
  background: #fff;
  color: var(--navy);
}
.home-page #featured:after { display: none; }
.home-page #featured .sec-head { margin-bottom: 3.5rem; }
.home-page #featured .sec-head h2 { color: var(--navy); font-size: clamp(2.8rem,4.3vw,4.8rem); }
.home-page #featured .sec-head h2:before {
  content: "QUICK ACCESS";
  color: var(--brand-600);
}
.home-page #featured .seeall { color: var(--navy); border-color: var(--line); }
.home-page #featured .card { border-top-color: var(--line); color: var(--navy); }
.home-page #featured .card:nth-child(-n+3) { border-top-color: var(--brand); }
.home-page #featured .card h3 { color: var(--navy); }
.home-page #featured .card p { color: var(--muted); }
.home-page #featured .card .cat-chip { color: var(--brand-600)!important; }
.home-page #featured .card .cat-chip .dot { background: var(--navy)!important; color: var(--brand); }
.home-page #featured .card .badge.live { color: #168148; }

.home-page main > section.wide:not(#featured) {
  max-width: none;
  padding-left: max(5vw,calc((100vw - 1500px)/2))!important;
  padding-right: max(5vw,calc((100vw - 1500px)/2))!important;
  background: #f6f2e9;
}
.home-page main > section.wide:not(#featured) .sec-head h2 { font-size: clamp(2.8rem,4.3vw,4.8rem); }
.home-page main > section.wide:not(#featured) .sec-head h2:before { content: "ALL CATEGORIES"; }

@media (max-width: 620px) {
  .home-page .hero-band { min-height: auto; background: #f6f2e9; }
  .home-page .hero-in { padding: 62px 22px 58px; }
  .home-page .hero-in h1 { font-size: clamp(3rem,15vw,4.7rem); }
  .home-page .tool-search > div { grid-template-columns: 1fr; }
  .home-page .tool-search button { min-height: 50px; }
  .home-page .hero-cta { align-items: flex-start; }
}
