:root{
  --bg:#f4f7fb;
  --bg-2:#eef3fb;
  --surface:#ffffff;
  --surface-2:#f8fbff;
  --surface-3:#f3f8ff;
  --line:#d8e3f1;
  --line-strong:#bfd0e6;
  --text:#1c2b44;
  --muted:#667c9d;
  --primary:#2e62ff;
  --primary-2:#70a8ff;
  --primary-3:#1d4ed8;
  --primary-soft:#edf3ff;
  --teal:#11a39d;
  --teal-soft:#e8fbfa;
  --violet:#765dff;
  --violet-soft:#f1eeff;
  --amber:#efad3b;
  --amber-soft:#fff7e8;
  --rose:#ef6c8e;
  --rose-soft:#fff0f5;
  --success:#16a34a;
  --success-soft:#ecfdf3;
  --shadow-xs:0 4px 12px rgba(53,82,126,.05);
  --shadow-soft:0 10px 26px rgba(53,82,126,.08);
  --shadow:0 18px 44px rgba(53,82,126,.11);
  --shadow-lg:0 28px 70px rgba(53,82,126,.14);
  --radius:24px;
  --radius-lg:30px;
  --radius-md:20px;
  --radius-sm:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(46,98,255,.09), transparent 24%),
    radial-gradient(circle at top right, rgba(118,93,255,.07), transparent 18%),
    linear-gradient(180deg,#fbfcfe 0%, #f4f7fb 100%);
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.wrap{max-width:1380px;margin:0 auto;padding:0 22px}
.hidden{display:none !important}

/* top navigation */
.topbar{
  position:sticky;top:0;z-index:60;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(216,227,241,.96);
  box-shadow:0 10px 24px rgba(53,82,126,.06);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:16px 0}
.brand{display:flex;align-items:center;gap:12px;font-weight:900;font-size:24px;letter-spacing:-.02em;color:#183255}
.logo{
  width:50px;height:50px;border-radius:18px;background:linear-gradient(180deg,#fff,#f5f9ff);
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  box-shadow:var(--shadow-soft);border:1px solid var(--line)
}
.logo img{width:100%;height:100%;object-fit:cover}
.menu{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.menu a{
  padding:11px 15px;border-radius:999px;font-weight:700;font-size:14px;
  background:rgba(255,255,255,.9);border:1px solid var(--line);color:#486180;
  box-shadow:var(--shadow-xs);
  transition:.18s ease transform,.18s ease background,.18s ease border-color,.18s ease box-shadow
}
.menu a:hover{
  transform:translateY(-1px);
  background:var(--primary-soft);
  color:#244267;
  border-color:var(--line-strong);
  box-shadow:var(--shadow-soft);
}

/* generic blocks */
.card,
.panel,
.console,
.subpanel,
.tool-card,
.faq-item,
.seo-box,
.legal-card,
.stat-card,
.preview-card,
.feature-box{
  background:linear-gradient(180deg,#ffffff 0%, #fcfdff 100%);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* hero */
.hero{padding:36px 0 24px}
.hero-grid,
.hero-shell{display:grid;grid-template-columns:1.05fr .95fr;gap:22px}
.hero-main{
  padding:36px;
  background:
    linear-gradient(135deg,#ffffff 0%, #f8fbff 48%, #f3f8ff 100%);
  position:relative;overflow:hidden
}
.hero-main:before{
  content:"";
  position:absolute;right:-90px;top:-90px;width:260px;height:260px;border-radius:50%;
  background:radial-gradient(circle,rgba(98,160,255,.20) 0, rgba(98,160,255,0) 70%)
}
.hero-main:after{
  content:"";
  position:absolute;left:-60px;bottom:-60px;width:180px;height:180px;border-radius:50%;
  background:radial-gradient(circle,rgba(118,93,255,.10) 0, rgba(118,93,255,0) 70%)
}
.hero-main h1{
  margin:0 0 16px;font-size:58px;line-height:1.01;letter-spacing:-.05em;color:#13284a;
  max-width:920px
}
.hero-main p{margin:0 0 22px;font-size:18px;line-height:1.9;color:var(--muted);max-width:850px}
.hero-side{
  padding:24px;
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
}
.hero-side h2{margin:0 0 16px;font-size:24px;color:#183362}
.hero-grid-mini{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.chip{
  padding:16px 16px;border-radius:18px;border:1px solid var(--line);
  font-size:14px;font-weight:800;color:#35527c;background:#fff;
  box-shadow:var(--shadow-xs);
  transition:.18s ease transform,.18s ease box-shadow
}
.chip:hover{transform:translateY(-1px);box-shadow:var(--shadow-soft)}
.chip:nth-child(1), .stat-card:nth-child(1){background:var(--primary-soft)}
.chip:nth-child(2), .stat-card:nth-child(2){background:var(--teal-soft)}
.chip:nth-child(3), .stat-card:nth-child(3){background:var(--violet-soft)}
.chip:nth-child(4), .stat-card:nth-child(4){background:var(--amber-soft)}
.chip:nth-child(5){background:var(--rose-soft)}
.chip:nth-child(6){background:var(--surface-2)}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;margin-bottom:14px;padding:9px 13px;border-radius:999px;
  background:var(--primary-soft);border:1px solid var(--line);font-size:12px;font-weight:900;color:#4367a8;
  text-transform:uppercase;letter-spacing:.08em;
  box-shadow:var(--shadow-xs)
}

/* buttons */
.cta,.actions{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:14px 20px;border-radius:16px;border:1px solid transparent;cursor:pointer;
  font-weight:800;font-size:15px;
  transition:.18s ease transform,.18s ease box-shadow,.18s ease background,.18s ease border-color;
  position:relative;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn-primary{
  background:linear-gradient(135deg,var(--primary) 0%, var(--primary-2) 100%);
  color:#fff;
  box-shadow:0 18px 32px rgba(46,98,255,.22);
}
.btn-primary:hover{
  background:linear-gradient(135deg,var(--primary-3) 0%, var(--primary) 100%);
  box-shadow:0 22px 36px rgba(46,98,255,.26);
}
.btn-secondary{
  background:linear-gradient(180deg,#ffffff 0%, #f8fbff 100%);
  color:#244267;border-color:var(--line);
  box-shadow:var(--shadow-soft);
}
.btn-secondary:hover{
  background:#fff;
  border-color:var(--line-strong);
  box-shadow:var(--shadow);
}

/* sections */
.section{padding:24px 0}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 10px;font-size:40px;letter-spacing:-.04em;color:#15305d}
.section-head p{margin:0;color:#60759d;line-height:1.85;font-size:16px}

/* stats */
.stats-strip{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.stat-card{
  padding:18px 18px;border-radius:20px;
  box-shadow:var(--shadow-soft);
  transition:.18s ease transform,.18s ease box-shadow
}
.stat-card:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.stat-card strong{
  display:block;font-size:12px;color:#6a80a8;margin-bottom:6px;text-transform:uppercase;letter-spacing:.05em
}
.stat-card span{font-size:21px;font-weight:900;color:#20385f}

/* card grids */
.cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.tool-card{
  padding:22px;border-top:4px solid #d7e3f7;
  transition:.18s ease transform,.18s ease box-shadow,.18s ease border-color
}
.tool-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow-lg);
  border-color:var(--line-strong);
}
.tool-card h3{margin:0 0 8px;font-size:20px;color:#1b3a67}
.tool-card p{margin:0;color:#62789f;line-height:1.8}
.tool-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.tool-pill{
  display:inline-flex;align-items:center;padding:8px 10px;border-radius:999px;
  background:#f7faff;border:1px solid var(--line);font-size:13px;font-weight:700;color:#4f678b
}
.card-actions{margin-top:18px}

.feature-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.feature-box{padding:22px}
.feature-box h3{margin:0 0 8px;font-size:20px;color:#1b3a67}
.feature-box p{margin:0;color:#62789f;line-height:1.8}

/* workspace */
.workspace{display:grid;grid-template-columns:320px 1fr;gap:22px}
.panel{
  padding:22px;
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
}
.console{
  padding:22px;
  background:
    linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
}
.subpanel{
  padding:18px;
  background:linear-gradient(180deg,#ffffff 0%, #fcfdff 100%);
}
.console-head{
  display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;margin-bottom:16px
}
.console-head h3{margin:0;font-size:24px;color:#193765}
.workspace-badge{
  padding:9px 12px;border-radius:999px;background:var(--teal-soft);color:#18706d;border:1px solid #cdeceb;
  font-size:12px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;
  box-shadow:var(--shadow-xs)
}

/* sidebar tools */
.tool-menu{display:grid;gap:12px}
.tool-menu button{
  width:100%;text-align:left;padding:15px 16px;border-radius:18px;cursor:pointer;
  border:1px solid var(--line);background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  color:#28456f;font-size:15px;font-weight:800;
  box-shadow:var(--shadow-soft);
  display:flex;align-items:center;gap:10px;
  transition:.18s ease transform,.18s ease box-shadow,.18s ease border-color,.18s ease background,.18s ease color
}
.tool-menu button:hover{
  transform:translateY(-1px);
  border-color:var(--line-strong);
  box-shadow:var(--shadow);
}
.tool-menu button.active{
  background:linear-gradient(135deg,#edf3ff 0%, #f5f9ff 100%);
  border-color:#a8c1eb;
  color:#183768;
  box-shadow:0 14px 28px rgba(46,98,255,.12);
  position:relative;
}
.tool-menu button.active:before{
  content:"";
  position:absolute;left:10px;top:10px;bottom:10px;width:4px;border-radius:999px;
  background:linear-gradient(180deg,var(--primary),var(--primary-2));
}

/* status box */
.statusbar{
  display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;
  padding:18px 20px;border-radius:22px;border:1px solid var(--line);
  background:linear-gradient(135deg,#f5f8ff 0%, #fbfdff 100%);margin-bottom:18px;
  box-shadow:var(--shadow-soft)
}
.statusbar-title{font-size:14px;color:#60759d;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.statusbar-sub{margin-top:6px;color:#6c81a5;line-height:1.8}
.status-pill{
  display:inline-flex;align-items:center;gap:8px;padding:10px 12px;border-radius:999px;
  background:var(--success-soft);border:1px solid #cdeed7;color:#1f7a42;font-weight:800;
  box-shadow:var(--shadow-xs)
}

/* upload */
.upload-deck{display:grid;grid-template-columns:1.1fr .9fr;gap:18px}
.dropzone{
  border:2px dashed #c4d3eb;border-radius:24px;padding:36px;text-align:center;
  background:
    linear-gradient(180deg,#f8fbff 0%, #ffffff 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.6)
}
.dropzone.drag{
  background:#f1f6ff;border-color:#8fb0ff;
  box-shadow:0 0 0 6px rgba(46,98,255,.06)
}
.dropzone h3{margin:0;font-size:30px;color:#173562}
.dropzone p{margin:12px 0 0;color:#6580aa;line-height:1.8}

.tool-intro{
  margin-top:18px;padding:18px 20px;border-radius:22px;border:1px solid var(--line);
  background:linear-gradient(135deg,#eef4ff,#f8fbff);
  box-shadow:var(--shadow-soft)
}
.tool-intro strong{display:block;font-size:19px;margin-bottom:8px;color:#173563}
.tool-intro p{margin:0;color:#62789f;line-height:1.8}

/* file list */
.file-list{display:grid;gap:10px}
.file-row{
  display:grid;grid-template-columns:44px 1fr auto;gap:12px;align-items:center;
  padding:14px;border-radius:18px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft)
}
.file-icon{
  width:44px;height:44px;border-radius:14px;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#edf3ff,#f5f8ff);color:#3d62a1
}
.file-name{font-weight:800;color:#1d375f;word-break:break-all}
.file-meta{font-size:13px;color:#7b90b3;margin-top:4px}
.file-actions{display:flex;gap:8px;flex-wrap:wrap}

/* controls */
.controls{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin-top:18px}
.control{
  display:flex;flex-direction:column;gap:8px;padding:16px;border-radius:20px;
  border:1px solid var(--line);background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  box-shadow:var(--shadow-soft);
  transition:.18s ease transform,.18s ease box-shadow,.18s ease border-color
}
.control:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
  border-color:var(--line-strong);
}
.control label{font-size:14px;color:#45628d;font-weight:800}
.control input,
.control select,
.control textarea{
  width:100%;background:#f9fbfe;color:#17345f;border:1px solid var(--line);
  border-radius:14px;padding:12px 14px;font-size:14px;
  transition:.18s ease border-color,.18s ease box-shadow,.18s ease background
}
.control input:focus,
.control select:focus,
.control textarea:focus{
  outline:none;
  border-color:#9ebcf0;
  background:#fff;
  box-shadow:0 0 0 4px rgba(46,98,255,.08)
}
.control textarea{min-height:110px;resize:vertical}
.control small{color:#7d93b6;line-height:1.65}

/* preview */
.preview-layout{display:grid;grid-template-columns:1.1fr .9fr;gap:18px;margin-top:18px}
.preview-card{padding:18px}
.preview-card h3{margin:0 0 12px;font-size:18px;color:#1c3a67}
.canvas-wrap{
  background:
    linear-gradient(180deg,#f4f8ff 0%, #f9fbff 100%);
  border:1px solid var(--line);border-radius:20px;padding:14px;min-height:340px;
  display:flex;align-items:center;justify-content:center;overflow:auto;position:relative
}
canvas{
  max-width:100%;height:auto;border-radius:14px;background:#fff;
  box-shadow:0 18px 36px rgba(53,82,126,.16)
}
.preview-placeholder{color:#8ea4ca;text-align:center;line-height:1.8;padding:24px}

/* page queues */
.page-strip{display:grid;gap:10px;max-height:430px;overflow:auto;padding-right:4px}
.page-item{
  display:grid;grid-template-columns:52px 1fr auto;gap:12px;align-items:center;
  padding:12px;border-radius:18px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-soft);
  transition:.18s ease transform,.18s ease box-shadow,.18s ease border-color
}
.page-item:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.page-badge{
  width:52px;height:52px;border-radius:14px;background:linear-gradient(135deg,#edf3ff,#f5f8ff);
  display:flex;align-items:center;justify-content:center;font-weight:900;color:#4367a8
}
.page-item.active{border-color:var(--line-strong);background:#f8fbff}
.page-title{font-weight:800;color:#1d375f}
.page-actions{display:flex;gap:8px}

/* meta boxes */
.meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:16px}
.meta .stat{
  padding:16px;border-radius:20px;border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  background:linear-gradient(180deg,#ffffff 0%, #fbfdff 100%);
  transition:.18s ease transform,.18s ease box-shadow,.18s ease border-color
}
.meta .stat:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
  border-color:var(--line-strong);
}
.meta .stat strong{
  display:block;font-size:12px;color:#6b82a8;margin-bottom:6px;text-transform:uppercase;letter-spacing:.04em
}
.meta .stat span{font-weight:900;color:#223d67}

/* small buttons */
.mini-btn{
  background:linear-gradient(180deg,#ffffff 0%, #f9fbff 100%);
  color:#38547f;border:1px solid var(--line);
  padding:9px 12px;border-radius:12px;font-weight:800;cursor:pointer;
  box-shadow:var(--shadow-xs);
  transition:.18s ease transform,.18s ease box-shadow,.18s ease border-color,.18s ease background
}
.mini-btn:hover{
  transform:translateY(-1px);
  background:var(--primary-soft);
  border-color:var(--line-strong);
  box-shadow:var(--shadow-soft)
}

/* content blocks */
.seo-box,.legal-card{padding:24px}
.seo-box p,.seo-box li,.legal-card p{color:#62789f;line-height:1.9}
.legal-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.legal-card h3{margin:0 0 10px;font-size:22px;color:#1a3966}

/* faq */
.faq{display:grid;gap:14px}
.faq-item{overflow:hidden}
.faq-question{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 22px;background:transparent;border:0;cursor:pointer;font:inherit;text-align:left;
  color:#183563;font-weight:800;font-size:18px
}
.faq-question-text{display:flex;align-items:center;gap:10px}
.faq-toggle{
  width:34px;height:34px;flex:0 0 34px;border-radius:999px;border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;background:#f7faff;font-size:24px;color:#4b6288;line-height:1;
  box-shadow:var(--shadow-xs)
}
.faq-answer{
  max-height:0;overflow:hidden;padding:0 22px;color:#62789f;line-height:1.8;border-top:1px solid transparent;
  transition:max-height .25s ease,padding .25s ease,border-color .25s ease
}
.faq-item.open .faq-answer{max-height:220px;padding:16px 22px 22px;border-top-color:var(--line)}

/* footer */
.site-footer{padding:42px 0 60px;color:#6a81a8}
.footer-grid{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center}
.footer-links{display:flex;gap:16px;flex-wrap:wrap}
.footer-links a{color:#5c7397;font-weight:700}
.small{font-size:13px;color:#7e94b8}

@media (max-width:1180px){
  .hero-grid,.hero-shell,.workspace,.upload-deck,.preview-layout,.cards,.feature-grid,.legal-grid{grid-template-columns:1fr}
  .hero-main h1{font-size:44px}
  .controls,.meta,.stats-strip{grid-template-columns:1fr}
}
@media (max-width:740px){
  .menu{display:none}
  .hero-main{padding:24px}
  .hero-main h1{font-size:34px}
  .hero-grid-mini{grid-template-columns:1fr}
  .wrap{padding:0 14px}
  .dropzone{padding:24px}
  .page-item{grid-template-columns:44px 1fr}
  .page-actions{grid-column:1 / -1}
}
/* ===== UI LEVEL 2 ===== */

.icon{
  width:18px;
  height:18px;
  display:inline-block;
  vertical-align:middle;
  flex:0 0 18px;
}

.menu a{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.panel,
.console,
.subpanel,
.preview-card,
.tool-card,
.seo-box,
.legal-card{
  position:relative;
}

.panel:before,
.console:before,
.subpanel:before,
.preview-card:before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,255,255,0));
  opacity:.65;
}

.workspace{
  align-items:start;
}

.workspace > .panel{
  position:sticky;
  top:92px;
  align-self:start;
}

.tool-menu button{
  padding-left:18px;
  min-height:56px;
  justify-content:flex-start;
}

.tool-menu button.active{
  padding-left:22px;
}

.tool-menu button svg{
  color:#5a78a8;
}

.tool-menu button.active svg{
  color:var(--primary);
}

.statusbar{
  border-radius:24px;
  overflow:hidden;
}

.statusbar:after{
  content:"";
  position:absolute;
  right:-30px;
  top:-30px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(112,168,255,.20),rgba(112,168,255,0) 70%);
  pointer-events:none;
}

.dropzone{
  position:relative;
  overflow:hidden;
}

.dropzone:before{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:140px;
  height:140px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(46,98,255,.10),rgba(46,98,255,0) 70%);
  pointer-events:none;
}

.dropzone h3{
  letter-spacing:-.02em;
}

.dropzone .actions{
  margin-top:20px;
}

.dropzone .btn{
  min-width:150px;
}

.tool-intro{
  border-radius:24px;
}

.tool-intro strong{
  letter-spacing:-.01em;
}

.preview-card h3,
.tool-card h3,
.legal-card h3,
.feature-box h3{
  letter-spacing:-.02em;
}

.canvas-wrap{
  min-height:360px;
  border-radius:22px;
  background:
    linear-gradient(180deg,#f7faff 0%, #f3f8ff 100%);
}

.meta .stat{
  overflow:hidden;
  position:relative;
}

.meta .stat:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  opacity:.85;
}

.meta .stat:nth-child(2):before{
  background:linear-gradient(90deg,var(--teal),#4ad8cd);
}

.meta .stat:nth-child(3):before{
  background:linear-gradient(90deg,var(--violet),#a390ff);
}

.meta .stat:nth-child(4):before{
  background:linear-gradient(90deg,var(--amber),#ffc96a);
}

.meta .stat span{
  display:block;
  font-size:16px;
  line-height:1.5;
}

.file-row{
  border-radius:18px;
}

.file-icon{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.seo-box,
.legal-card,
.feature-box,
.tool-card{
  border-radius:26px;
}

.tool-card{
  background:
    linear-gradient(180deg,#ffffff 0%, #fcfdff 100%);
}

.tool-card:before{
  content:"";
  display:block;
  width:54px;
  height:6px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  margin-bottom:14px;
  opacity:.9;
}

.cards .tool-card:nth-child(2n):before{
  background:linear-gradient(90deg,var(--teal),#49d9ce);
}

.cards .tool-card:nth-child(3n):before{
  background:linear-gradient(90deg,var(--violet),#a08eff);
}

.feature-box{
  background:
    linear-gradient(135deg,#ffffff 0%, #f8fbff 100%);
}

.faq-item{
  border-radius:22px;
}

.faq-question{
  min-height:72px;
}

.faq-toggle{
  box-shadow:var(--shadow-xs);
  font-weight:900;
}

.footer-links a{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:.18s ease background,.18s ease border-color,.18s ease transform;
}

.footer-links a:hover{
  background:#fff;
  border-color:var(--line);
  transform:translateY(-1px);
}

.category-basic .tool-menu button.active{background:linear-gradient(135deg,#edf3ff,#f5f9ff)}
.category-privacy .tool-menu button.active{background:linear-gradient(135deg,#eefcf8,#f6fffd)}
.category-seo .tool-menu button.active{background:linear-gradient(135deg,#fff7e9,#fffdf6)}
.category-social .tool-menu button.active{background:linear-gradient(135deg,#eef4ff,#f8fbff)}
.category-brand .tool-menu button.active{background:linear-gradient(135deg,#fff1f6,#fff8fb)}
.category-shop .tool-menu button.active{background:linear-gradient(135deg,#fff6ec,#fffdfa)}
.category-creative .tool-menu button.active{background:linear-gradient(135deg,#f4f1ff,#fbf9ff)}
.category-utility .tool-menu button.active{background:linear-gradient(135deg,#edf6ff,#f9fcff)}
.category-batch .tool-menu button.active{background:linear-gradient(135deg,#eef5ff,#f7fbff)}

.category-privacy .tool-menu button.active:before{background:linear-gradient(180deg,var(--teal),#46d7cb)}
.category-seo .tool-menu button.active:before{background:linear-gradient(180deg,var(--amber),#ffc96a)}
.category-social .tool-menu button.active:before{background:linear-gradient(180deg,var(--primary),#7db3ff)}
.category-brand .tool-menu button.active:before{background:linear-gradient(180deg,var(--rose),#ff9ab3)}
.category-shop .tool-menu button.active:before{background:linear-gradient(180deg,#f59e0b,#ffd06f)}
.category-creative .tool-menu button.active:before{background:linear-gradient(180deg,var(--violet),#a694ff)}
.category-utility .tool-menu button.active:before{background:linear-gradient(180deg,#3b82f6,#8cc2ff)}
.category-batch .tool-menu button.active:before{background:linear-gradient(180deg,#2563eb,#7ab0ff)}

.workspace.workspace-premium{
  gap:24px;
}

.workspace-premium .console{
  box-shadow:var(--shadow-lg);
}

.tool-cluster-title{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
  color:#173563;
  font-size:18px;
  font-weight:900;
  letter-spacing:-.02em;
}

.soft-note{
  padding:14px 16px;
  border-radius:16px;
  background:#f7faff;
  border:1px solid var(--line);
  color:#6880a3;
  line-height:1.75;
}

.video-embed-section{
  padding-top:10px;
  padding-bottom:10px;
}

.video-embed-box{
  width:100%;
}

.video-embed-player{
  width:100%;
  margin:0 0 14px;
}

.video-embed-player-frame{
  width:100%;
  aspect-ratio:16 / 9;
  height:auto;
  min-height:260px;
  border:0;
  border-radius:12px;
  background:#000;
  display:block;
}

.video-embed-download{
  width:100%;
}

.video-embed-download-frame{
  width:100%;
  border:0;
  border-radius:10px;
  background:transparent;
  display:block;
}

@media (max-width: 768px){
  .video-embed-player-frame{
    min-height:220px;
    border-radius:10px;
  }

  .video-embed-download-frame{
    border-radius:8px;
  }
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.blog-card{
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.blog-card h3{
  margin:0;
  font-size:24px;
  line-height:1.25;
  letter-spacing:-.03em;
  color:#15305d;
}

.blog-card p{
  margin:0;
  color:#60759d;
  line-height:1.85;
  flex:1;
}

.topic-tag,
.meta-chip{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:var(--primary-soft);
  border:1px solid var(--line);
  color:#244267;
  font-size:12px;
  font-weight:800;
  letter-spacing:.03em;
  text-transform:uppercase;
}

.blog-meta,
.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.blog-meta span{
  color:#6a80a8;
  font-size:14px;
  font-weight:700;
}

.article-hero{
  padding:34px;
}

.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
  color:#6a80a8;
  font-size:14px;
  font-weight:700;
}

.breadcrumb a:hover{
  color:#244267;
}

.article-intro{
  margin:0 0 20px;
  max-width:920px;
  color:#60759d;
  line-height:1.9;
  font-size:18px;
}

.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) 320px;
  gap:22px;
  align-items:start;
}

.article-body,
.sidebar-card{
  padding:28px;
}

.article-body h2{
  margin:30px 0 12px;
  font-size:30px;
  letter-spacing:-.03em;
  color:#15305d;
}

.article-body p{
  margin:0 0 16px;
  color:#465d80;
  line-height:1.95;
  font-size:17px;
}

.article-body a{
  color:var(--primary-3);
  font-weight:700;
}

.article-sidebar{
  display:grid;
  gap:18px;
}

.sidebar-card h3{
  margin:0 0 12px;
  font-size:20px;
  color:#173563;
}

.sidebar-card p{
  margin:0;
  color:#60759d;
  line-height:1.8;
}

.highlight-list{
  margin:0;
  padding-left:18px;
  color:#4d6487;
}

.highlight-list li{
  margin-bottom:10px;
  line-height:1.75;
}

@media (max-width: 1100px){
  .blog-grid,
  .cards{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .article-layout,
  .hero-grid,
  .hero-shell,
  .workspace{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .blog-grid,
  .cards,
  .feature-grid,
  .stats-strip,
  .hero-grid-mini{
    grid-template-columns:1fr;
  }

  .hero-main h1{
    font-size:42px;
  }

  .section-head h2{
    font-size:32px;
  }

  .blog-card h3{
    font-size:21px;
  }

  .article-body,
  .sidebar-card,
  .article-hero{
    padding:22px;
  }

  .article-body h2{
    font-size:25px;
  }

  .article-body p{
    font-size:16px;
  }
}

/* refined site theme */
:root{
  --bg:#f3f1eb;
  --bg-2:#ece7de;
  --surface:#fffdf9;
  --surface-2:#faf6ef;
  --surface-3:#f4eee3;
  --line:#ded5c8;
  --line-strong:#c9bba7;
  --text:#1f2430;
  --muted:#5f6775;
  --primary:#1d4f5f;
  --primary-2:#2f6f83;
  --primary-3:#123845;
  --primary-soft:#e7f0f3;
  --teal:#0f766e;
  --teal-soft:#e7f7f4;
  --amber:#ad7a1f;
  --amber-soft:#fbf4e5;
  --rose:#9c5a68;
  --rose-soft:#f9edf1;
  --shadow-xs:0 8px 18px rgba(31,36,48,.05);
  --shadow-soft:0 16px 34px rgba(31,36,48,.08);
  --shadow:0 24px 48px rgba(31,36,48,.10);
  --shadow-lg:0 34px 70px rgba(31,36,48,.13);
}

body{
  font-family:"Avenir Next","Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(29,79,95,.06), transparent 28%),
    radial-gradient(circle at top right, rgba(173,122,31,.06), transparent 20%),
    linear-gradient(180deg,#faf8f3 0%, #f3f1eb 100%);
}

h1,h2,h3,h4,.brand strong{
  font-family:"Iowan Old Style","Palatino Linotype",serif;
}

.wrap{
  max-width:1240px;
  padding:0 24px;
}

.topbar{
  background:rgba(255,253,249,.92);
  border-bottom:1px solid rgba(222,213,200,.92);
  box-shadow:0 10px 30px rgba(31,36,48,.06);
}

.nav{
  gap:22px;
  padding:14px 0;
}

.brand{
  gap:14px;
  color:#18212c;
}

.brand-copy{
  display:grid;
  gap:2px;
}

.brand-copy strong{
  font-size:28px;
  letter-spacing:-.03em;
}

.brand-copy small{
  color:var(--muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.logo{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f3ede4);
}

.menu{
  gap:8px;
}

.menu a{
  background:transparent;
  border:1px solid transparent;
  box-shadow:none;
  color:#4e5663;
  padding:11px 14px;
}

.menu a:hover,
.menu a.active{
  background:var(--surface);
  border-color:var(--line);
  color:#17212d;
  box-shadow:var(--shadow-xs);
}

.hero{
  padding:42px 0 22px;
}

.hero-grid,
.hero-shell{
  grid-template-columns:minmax(0,1.2fr) 360px;
  gap:20px;
}

.card,
.panel,
.console,
.subpanel,
.tool-card,
.faq-item,
.seo-box,
.legal-card,
.stat-card,
.preview-card,
.feature-box{
  background:linear-gradient(180deg,#fffdf9 0%, #faf6ef 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.hero-main,
.hero-side,
.article-hero{
  background:linear-gradient(180deg,#fffdf9 0%, #f7f1e8 100%);
}

.hero-main{
  padding:40px;
}

.hero-main h1{
  font-size:58px;
  line-height:.98;
  color:#18212c;
  max-width:860px;
}

.hero-main p,
.hero-side p,
.section-head p,
.tool-card p,
.feature-box p,
.trust-card p,
.resource-card p{
  color:var(--muted);
}

.hero-main p{
  font-size:18px;
  line-height:1.88;
}

.hero-side{
  padding:26px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:var(--primary-soft);
  color:var(--primary-3);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.signal-list{
  display:grid;
  gap:10px;
  margin-top:20px;
}

.signal-item{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.62);
  border:1px solid var(--line);
  color:#304252;
  font-weight:700;
}

.finder-label{
  display:block;
  margin-bottom:8px;
  color:#26313d;
  font-weight:800;
}

.finder-input{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}

.finder-input:focus{
  outline:none;
  border-color:var(--primary-2);
  box-shadow:0 0 0 4px rgba(47,111,131,.12);
}

.mini-stats{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.mini-stat{
  padding:14px 16px;
  border-radius:16px;
  background:var(--surface);
  border:1px solid var(--line);
}

.mini-stat strong{
  display:block;
  font-size:22px;
  color:#16202b;
}

.mini-stat span{
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary) 0%, var(--primary-2) 100%);
  box-shadow:0 18px 32px rgba(29,79,95,.18);
}

.btn-primary:hover{
  background:linear-gradient(135deg,var(--primary-3) 0%, var(--primary) 100%);
}

.btn-secondary{
  background:#fff;
  color:#25333f;
}

.section{
  padding:28px 0;
}

.section-head h2{
  font-size:42px;
  color:#18212c;
  letter-spacing:-.035em;
}

.split-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
}

.stats-strip{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.stat-card{
  padding:22px;
}

.stat-card span{
  font-size:22px;
}

.cards,
.blog-grid,
.trust-grid,
.resource-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.cards-refined{
  margin-top:8px;
}

.tool-card,
.blog-card,
.trust-card,
.resource-card{
  padding:24px;
  border-top:1px solid var(--line);
}

.tool-card:before{
  width:42px;
  height:4px;
  margin-bottom:16px;
}

.tool-card h3,
.blog-card h3,
.trust-card h3,
.resource-card h3{
  margin:0 0 10px;
  font-size:26px;
  color:#18212c;
}

.tool-list{
  margin-top:14px;
}

.tool-pill{
  background:#fff;
  color:#425061;
}

.topic-tag,
.meta-chip{
  background:#f1ebe1;
  color:#5c503d;
  border-color:#ded2bf;
}

.trust-card,
.resource-card{
  background:linear-gradient(180deg,#fffdf9 0%, #f5efe5 100%);
}

.empty-state{
  padding:26px;
  text-align:center;
  margin-top:18px;
}

.empty-state h3{
  margin:0 0 8px;
  font-size:26px;
  color:#18212c;
}

.narrow-wrap{
  max-width:900px;
}

.faq-item{
  box-shadow:var(--shadow-soft);
}

.faq-question{
  color:#1c2733;
}

.faq-toggle{
  background:#fff;
  color:#1d4f5f;
}

.site-footer{
  margin-top:38px;
  padding:36px 0;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg,#ece6dc 0%, #e8e0d4 100%);
}

.footer-grid{
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:22px;
  align-items:start;
}

.footer-brand strong,
.footer-column h4{
  color:#18212c;
}

.footer-brand p,
.footer-note,
.small{
  color:#5a6370;
  line-height:1.8;
}

.footer-column h4{
  margin:0 0 12px;
  font-size:18px;
}

.footer-links{
  display:grid;
  gap:8px;
}

.footer-links a{
  padding:0;
  border:none;
  border-radius:0;
}

.footer-links a:hover{
  background:transparent;
  border-color:transparent;
  transform:none;
  color:#16202b;
}

.legal-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.legal-card{
  padding:24px;
}

.legal-card p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}

.resource-card .actions{
  margin-top:12px;
}

.directory-block{
  margin-bottom:30px;
}

.directory-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.directory-card{
  padding:22px;
}

.directory-card h3{
  margin:10px 0;
  font-size:23px;
  color:#18212c;
}

.directory-card p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.8;
}

.workspace,
.article-layout{
  align-items:start;
}

.article-body,
.sidebar-card{
  background:linear-gradient(180deg,#fffdf9 0%, #faf6ef 100%);
}

.article-body p{
  color:#4d5968;
}

.soft-note{
  background:#f4efe6;
  color:#465566;
}

@media (max-width: 1100px){
  .hero-grid,
  .hero-shell,
  .footer-grid,
  .legal-grid,
  .trust-grid,
  .resource-grid{
    grid-template-columns:1fr;
  }

  .split-head{
    align-items:start;
    flex-direction:column;
  }

  .stats-strip,
  .cards,
  .blog-grid,
  .directory-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .brand-copy small{
    display:none;
  }

  .hero-main{
    padding:28px;
  }

  .hero-main h1{
    font-size:42px;
  }

  .stats-strip,
  .cards,
  .blog-grid,
  .directory-grid,
  .trust-grid,
  .resource-grid,
  .legal-grid{
    grid-template-columns:1fr;
  }
}

/* compact professional refinements */
.topbar{
  position:sticky;
  top:0;
}

.wrap{
  max-width:1180px;
}

.nav{
  padding:12px 0;
}

.menu a{
  padding:10px 13px;
  font-size:13px;
}

.hero{
  padding:28px 0 12px;
}

.hero-grid-tight{
  grid-template-columns:minmax(0,1.25fr) 320px;
  gap:16px;
}

.hero-main,
.hero-side,
.article-hero{
  padding:28px;
}

.hero-main h1{
  font-size:52px;
}

.section{
  padding:18px 0;
}

.section-compact{
  padding:14px 0;
}

.section-head{
  margin-bottom:14px;
}

.section-head h2{
  font-size:36px;
  margin-bottom:8px;
}

.stats-strip,
.cards,
.blog-grid,
.trust-grid,
.resource-grid,
.directory-grid,
.legal-grid{
  gap:14px;
}

.stat-card,
.tool-card,
.blog-card,
.trust-card,
.resource-card,
.directory-card,
.legal-card,
.sidebar-card,
.article-body{
  padding:20px;
}

.compact-card{
  gap:10px;
}

.compact-grid{
  gap:12px;
}

.compact-grid-2{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.tool-card h3,
.blog-card h3,
.trust-card h3,
.resource-card h3,
.directory-card h3{
  font-size:23px;
  margin-bottom:8px;
}

.tool-card p,
.blog-card p,
.trust-card p,
.resource-card p,
.directory-card p,
.legal-card p{
  line-height:1.72;
}

.compact-signals{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.compact-signals .tool-pill{
  background:#fff;
}

.two-col-stack{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
  gap:18px;
  align-items:start;
}

.local-narrow{
  max-width:none;
}

.resource-card .actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.editorial-banner{
  padding:18px 20px;
  margin-bottom:14px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.editorial-banner strong{
  display:block;
  margin-bottom:6px;
  color:#18212c;
}

.editorial-banner p,
.editorial-inline{
  color:var(--muted);
  line-height:1.75;
}

.editorial-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.editorial-inline{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
  font-size:14px;
  font-weight:700;
}

.processing-banner{
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  background:linear-gradient(180deg,#fbf8f3 0%, #f5efe7 100%);
}

.processing-banner strong{
  display:block;
  margin-bottom:6px;
  color:#1d1d1b;
}

.processing-banner p{
  margin:0;
  color:#5f5b55;
  line-height:1.72;
}

.faq{
  gap:10px;
}

.faq-question{
  min-height:62px;
}

.site-footer{
  margin-top:24px;
  padding:28px 0;
}

.footer-grid{
  gap:18px;
}

.directory-block{
  margin-bottom:18px;
}

.directory-card .btn,
.blog-card .btn,
.resource-card .btn,
.tool-card .btn{
  align-self:flex-start;
}

@media (max-width: 1100px){
  .hero-grid-tight,
  .two-col-stack,
  .compact-grid-2,
  .editorial-banner{
    grid-template-columns:1fr;
  }

  .processing-banner{
    flex-direction:column;
  }
}

@media (max-width: 720px){
  .hero-main h1{
    font-size:40px;
  }

  .section-head h2{
    font-size:31px;
  }

  .compact-grid-2{
    grid-template-columns:1fr;
  }
}

/* newsroom-style refinement */
:root{
  --bg:#f6f3ee;
  --bg-2:#efe9e1;
  --surface:#fffdfa;
  --surface-2:#fbf8f3;
  --surface-3:#f4efe7;
  --line:#ddd4c8;
  --line-strong:#cbbda9;
  --text:#202020;
  --muted:#62605b;
  --primary:#1f3a37;
  --primary-2:#345955;
  --primary-3:#152927;
  --primary-soft:#e8efed;
  --teal:#24605a;
  --teal-soft:#e7f1ef;
  --amber:#93641a;
  --amber-soft:#f7efe0;
  --rose:#7a545d;
  --rose-soft:#f5ecef;
  --shadow-xs:0 6px 16px rgba(32,32,32,.04);
  --shadow-soft:0 12px 28px rgba(32,32,32,.06);
  --shadow:0 20px 44px rgba(32,32,32,.08);
  --shadow-lg:0 26px 60px rgba(32,32,32,.10);
}

body{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--text);
  background:
    linear-gradient(180deg,#faf8f4 0%, #f6f3ee 100%);
}

p, li, input, select, textarea, .btn, .menu a, .chip, .tool-pill, .meta-chip, .topic-tag, .brand-copy small{
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

.topbar{
  background:rgba(255,253,250,.96);
  border-bottom:1px solid rgba(221,212,200,.95);
  box-shadow:none;
}

.brand-copy strong{
  font-size:26px;
  letter-spacing:-.02em;
}

.brand-copy small{
  color:#6c6963;
}

.menu a{
  color:#514d47;
}

.menu a:hover,
.menu a.active{
  background:#fffdfa;
  color:#1f2b2a;
  border-color:var(--line);
  box-shadow:none;
}

.card,
.panel,
.console,
.subpanel,
.tool-card,
.faq-item,
.seo-box,
.legal-card,
.stat-card,
.preview-card,
.feature-box{
  background:linear-gradient(180deg,#fffdfa 0%, #fbf8f3 100%);
  border:1px solid #e2d8cc;
  box-shadow:none;
}

.hero-main,
.hero-side,
.article-hero{
  background:linear-gradient(180deg,#fffdfa 0%, #f7f2ea 100%);
}

.hero-main h1,
.section-head h2,
.tool-card h3,
.blog-card h3,
.trust-card h3,
.resource-card h3,
.directory-card h3,
.article-body h2,
.article-hero h1{
  color:#1d1d1b;
}

.hero-main h1{
  font-size:50px;
  line-height:1.02;
  max-width:900px;
}

.hero-main p,
.hero-side p,
.section-head p,
.tool-card p,
.feature-box p,
.trust-card p,
.resource-card p,
.directory-card p,
.article-body p,
.blog-card p,
.legal-card p{
  color:#5f5b55;
}

.eyebrow{
  background:#ece6dc;
  color:#4d4337;
}

.topic-tag,
.meta-chip{
  background:#f1ebe3;
  color:#5c5145;
  border-color:#ddd0bc;
}

.btn-primary{
  background:linear-gradient(135deg,#213d39 0%, #345955 100%);
  color:#fff;
  box-shadow:none;
}

.btn-primary:hover{
  background:linear-gradient(135deg,#162a28 0%, #213d39 100%);
}

.btn-secondary{
  background:#fffdfa;
  color:#2c302e;
  border-color:#d8cdc1;
  box-shadow:none;
}

.signal-item,
.mini-stat,
.soft-note{
  background:#faf6f0;
  border-color:#e0d5c8;
}

.stats-strip{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.stat-card{
  background:#f9f5ef;
}

.stat-card strong,
.blog-meta span,
.breadcrumb,
.finder-label{
  color:#6a655e;
}

.tool-card:before{
  background:linear-gradient(90deg,#213d39,#6f8f8b);
}

.news-layout{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) 380px;
  gap:18px;
  align-items:start;
}

.category-directory{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.category-block{
  padding:22px;
}

.category-block-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

.category-block h3{
  margin:8px 0 0;
  font-size:28px;
  line-height:1.15;
  color:#1d1d1b;
}

.category-block h3 a{
  color:inherit;
}

.category-more{
  color:#2c4e49;
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-weight:800;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.category-block p{
  margin:0 0 14px;
  color:#5f5b55;
  line-height:1.72;
}

.tool-link-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 14px;
}

.tool-link-list a{
  color:#2b2c2a;
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-size:14px;
  line-height:1.45;
}

.tool-link-list a:hover{
  color:#2c4e49;
}

.editorial-shell{
  border-top:1px solid #ddd4c8;
  padding-top:8px;
}

.editorial-head{
  margin-bottom:14px;
}

.lead-story{
  padding:24px;
}

.lead-story h3{
  margin:10px 0 12px;
  font-size:38px;
  line-height:1.1;
  color:#1d1d1b;
}

.lead-story p{
  margin:0 0 14px;
  color:#5d5953;
  line-height:1.82;
  font-size:17px;
}

.lead-story-notes{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
}

.lead-story-notes span{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  background:#f3eee6;
  border:1px solid #dfd4c7;
  color:#564d42;
  font-size:13px;
  font-weight:700;
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

.news-column{
  display:grid;
  gap:10px;
}

.news-column-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:12px;
  padding:4px 0 8px;
  border-bottom:1px solid #ddd4c8;
}

.news-column-head h3{
  margin:0;
  font-size:24px;
  color:#1d1d1b;
}

.news-column-head a{
  color:#2d4f4a;
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-weight:700;
}

.news-item{
  padding:18px 20px;
}

.news-item h4{
  margin:8px 0 8px;
  font-size:24px;
  line-height:1.2;
  color:#1d1d1b;
}

.news-item h4 a{
  color:inherit;
}

.news-item p{
  margin:0 0 10px;
  color:#5f5b55;
  line-height:1.72;
  font-size:15px;
}

.two-col-stack{
  gap:16px;
}

.resource-card,
.trust-card,
.blog-card,
.tool-card,
.directory-card,
.legal-card{
  border-radius:18px;
}

.compact-grid-4{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.site-footer{
  background:linear-gradient(180deg,#ece5db 0%, #e5ddd1 100%);
  border-top:1px solid #d8cdc0;
}

@media (max-width: 1100px){
  .news-layout{
    grid-template-columns:1fr;
  }

  .category-directory,
  .compact-grid-4{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .lead-story h3{
    font-size:30px;
  }

  .news-item h4{
    font-size:21px;
  }

  .tool-link-list{
    grid-template-columns:1fr;
  }
}

/* directory and newsroom reset */
:root{
  --bg:#f7f5f0;
  --bg-2:#eeeadf;
  --surface:#fffdf8;
  --surface-2:#f9f6ef;
  --surface-3:#f1ecdf;
  --line:#ddd5c8;
  --line-strong:#c8bca8;
  --text:#1f1f1b;
  --muted:#65635d;
  --primary:#264d4a;
  --primary-2:#3f6964;
  --primary-3:#173532;
  --primary-soft:#e8eeec;
  --shadow-xs:0 4px 12px rgba(31,31,27,.03);
  --shadow-soft:none;
  --shadow:none;
  --shadow-lg:none;
  --radius:18px;
  --radius-lg:20px;
  --radius-md:16px;
  --radius-sm:12px;
}

body{
  background:linear-gradient(180deg,#faf8f4 0%, #f7f5f0 100%);
}

.topbar{
  background:rgba(255,253,248,.97);
}

.wrap{
  max-width:1200px;
}

.nav{
  padding:10px 0;
}

.brand{
  gap:12px;
}

.logo{
  width:48px;
  height:48px;
  border-radius:14px;
}

.brand-copy strong{
  font-size:24px;
}

.brand-copy small{
  font-size:11px;
}

.menu{
  gap:4px;
}

.menu a{
  padding:10px 12px;
  border-radius:10px;
  font-size:13px;
}

.hero,
.section,
.section-compact{
  padding-top:16px;
  padding-bottom:16px;
}

.hero-grid-directory{
  grid-template-columns:minmax(0,1.3fr) 320px;
  gap:16px;
}

.hero-directory .hero-main,
.hero-directory .hero-side{
  padding:24px;
}

.hero-directory .hero-main h1{
  font-size:44px;
  line-height:1.04;
  max-width:820px;
}

.hero-directory .hero-main p,
.hero-directory .hero-side p{
  font-size:16px;
  line-height:1.78;
}

.directory-sidepanel{
  align-self:stretch;
}

.section-head-tight{
  margin-bottom:12px;
}

.section-head-tight h2{
  font-size:30px;
}

.category-directory-full{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.category-block{
  padding:18px 18px 16px;
}

.category-block h3{
  font-size:24px;
}

.tool-link-list{
  gap:6px 12px;
}

.tool-link-list a{
  position:relative;
  padding-left:12px;
}

.tool-link-list a::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:4px;
  height:4px;
  border-radius:999px;
  background:#8b8377;
}

.home-stack{
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
}

.compact-shelf{
  padding:20px;
}

.popular-category-list{
  display:grid;
  gap:14px;
}

.popular-category-row{
  display:grid;
  gap:10px;
  padding-top:14px;
  border-top:1px solid var(--line);
}

.popular-category-row:first-child{
  padding-top:0;
  border-top:none;
}

.popular-category-row h3,
.feature-article h3,
.headline-item h4,
.resource-strip h3,
.newsroom-feature h2,
.newsroom-item h3,
.directory-section h2,
.directory-link-card h3{
  margin:0;
  color:#1f1f1b;
}

.popular-category-row h3{
  font-size:22px;
}

.popular-category-row p,
.feature-article p,
.headline-item p,
.resource-strip p,
.newsroom-feature p,
.newsroom-item p,
.directory-section p,
.directory-link-card p{
  margin:6px 0 0;
  color:var(--muted);
  line-height:1.7;
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

.popular-tools-inline,
.directory-jump-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.popular-tools-inline a,
.directory-jump-list a{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:var(--surface);
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-size:13px;
  font-weight:700;
  color:#403f39;
}

.editorial-shelf{
  display:grid;
  gap:14px;
}

.feature-article{
  display:grid;
  gap:10px;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
}

.feature-article h3{
  font-size:30px;
  line-height:1.12;
}

.headline-list{
  display:grid;
  gap:10px;
}

.headline-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px;
  align-items:start;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}

.headline-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.headline-item h4{
  margin-top:8px;
  font-size:19px;
  line-height:1.3;
}

.headline-meta,
.newsroom-item-side span{
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-size:13px;
  color:#757068;
  font-weight:700;
}

.resource-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  padding:20px;
}

.resource-strip article{
  display:grid;
  gap:8px;
}

.resource-strip h3{
  font-size:21px;
}

.resource-strip a{
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-weight:800;
  color:#254a46;
}

.directory-toolbar{
  display:grid;
  gap:14px;
  padding:18px;
}

.directory-stack{
  display:grid;
  gap:14px;
}

.directory-section{
  padding:18px;
}

.directory-section-head{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:start;
  margin-bottom:14px;
}

.directory-section h2{
  margin-top:8px;
  font-size:32px;
}

.directory-link-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 18px;
}

.directory-link-card{
  padding:14px 0 0;
  border-top:1px solid var(--line);
}

.directory-link-card h3{
  font-size:19px;
  line-height:1.3;
}

.newsroom-layout{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:16px;
  align-items:start;
}

.newsroom-feature,
.newsroom-feed{
  padding:20px;
}

.newsroom-feature{
  display:grid;
  gap:10px;
}

.newsroom-feature h2{
  font-size:34px;
  line-height:1.08;
}

.newsroom-feed{
  display:grid;
  gap:0;
}

.newsroom-feed-head{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:end;
  padding-bottom:10px;
  border-bottom:1px solid var(--line);
}

.newsroom-feed-head h2{
  margin:0;
  font-size:28px;
}

.newsroom-feed-head span{
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-size:13px;
  color:#757068;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.newsroom-item{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:start;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.newsroom-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.newsroom-item h3{
  margin-top:8px;
  font-size:22px;
  line-height:1.22;
}

.newsroom-item-side{
  display:grid;
  gap:6px;
  text-align:right;
}

.text-preview-layout{
  grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
}

.text-output-wrap{
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  overflow:hidden;
}

.text-output-wrap textarea{
  width:100%;
  min-height:320px;
  padding:16px;
  border:none;
  resize:vertical;
  background:transparent;
  color:var(--text);
  font:14px/1.65 "Avenir Next","Segoe UI",sans-serif;
}

.text-output-wrap textarea:focus{
  outline:none;
}

.text-workspace .controls{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.site-footer{
  padding-top:22px;
  padding-bottom:22px;
}

.footer-grid{
  grid-template-columns:1.4fr 1fr 1fr 1fr;
}

@media (max-width: 1100px){
  .hero-grid-directory,
  .category-directory-full,
  .home-stack,
  .newsroom-layout,
  .resource-strip,
  .footer-grid,
  .directory-section-head,
  .text-preview-layout{
    grid-template-columns:1fr;
  }

  .directory-link-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .hero-directory .hero-main h1{
    font-size:34px;
  }

  .feature-article h3,
  .newsroom-feature h2{
    font-size:28px;
  }

  .headline-item,
  .newsroom-item{
    grid-template-columns:1fr;
  }

  .resource-strip{
    gap:12px;
  }

  .text-workspace .controls,
  .category-directory-full{
    grid-template-columns:1fr;
  }
}

/* white and gray professional theme */
:root{
  --bg:#f5f5f5;
  --bg-2:#ececec;
  --surface:#ffffff;
  --surface-2:#fafafa;
  --surface-3:#f1f1f1;
  --line:#dddddd;
  --line-strong:#c8c8c8;
  --text:#1f1f1f;
  --muted:#666666;
  --primary:#2f2f2f;
  --primary-2:#4a4a4a;
  --primary-3:#181818;
  --primary-soft:#f0f0f0;
  --teal:#4f4f4f;
  --teal-soft:#f3f3f3;
  --amber:#6a6a6a;
  --amber-soft:#f2f2f2;
  --rose:#6d6d6d;
  --rose-soft:#f4f4f4;
  --shadow-xs:none;
  --shadow-soft:none;
  --shadow:none;
  --shadow-lg:none;
}

body{
  background:linear-gradient(180deg,#fafafa 0%, #f5f5f5 100%);
  color:var(--text);
}

.topbar,
.site-footer{
  background:#ffffff;
}

.topbar{
  border-bottom:1px solid #e2e2e2;
}

.site-footer{
  border-top:1px solid #e2e2e2;
}

.logo{
  background:linear-gradient(180deg,#ffffff,#f2f2f2);
  border-color:#e0e0e0;
}

.menu a,
.btn-secondary,
.popular-tools-inline a,
.directory-jump-list a,
.tool-pill,
.topic-tag,
.meta-chip,
.signal-item,
.mini-stat,
.soft-note{
  background:#f7f7f7;
  border-color:#dddddd;
  color:#3b3b3b;
}

.menu a:hover,
.menu a.active{
  background:#f3f3f3;
  color:#161616;
  border-color:#d2d2d2;
}

.btn-primary{
  background:linear-gradient(135deg,#2f2f2f 0%, #4a4a4a 100%);
}

.btn-primary:hover{
  background:linear-gradient(135deg,#181818 0%, #2f2f2f 100%);
}

.card,
.panel,
.console,
.subpanel,
.tool-card,
.faq-item,
.seo-box,
.legal-card,
.stat-card,
.preview-card,
.feature-box,
.newsroom-feature,
.newsroom-feed,
.directory-toolbar,
.directory-section,
.compact-shelf,
.resource-strip{
  background:#ffffff;
  border-color:#dfdfdf;
}

.hero-main,
.hero-side,
.article-hero{
  background:#ffffff;
}

.hero-main h1,
.section-head h2,
.category-block h3,
.feature-article h3,
.newsroom-feature h2,
.newsroom-item h3,
.directory-section h2,
.directory-link-card h3,
.popular-category-row h3,
.resource-strip h3{
  color:#171717;
}

.hero-main p,
.hero-side p,
.section-head p,
.category-block p,
.feature-article p,
.newsroom-item p,
.directory-link-card p,
.popular-category-row p,
.resource-strip p,
.processing-banner p,
.trust-card p,
.blog-card p,
.article-body p,
.legal-card p{
  color:#666666;
}

.tool-icon-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:10px;
  background:#f3f3f3;
  border:1px solid #dddddd;
  color:#333333;
  flex:0 0 28px;
}

.tool-menu button{
  gap:12px;
  background:#ffffff;
  color:#262626;
}

.tool-menu button.active{
  background:#f6f6f6;
  border-color:#d4d4d4;
  color:#111111;
}

.tool-menu button.active:before{
  background:linear-gradient(180deg,#404040,#7a7a7a);
}

.tool-menu button .tool-icon-badge{
  width:30px;
  height:30px;
  border-radius:10px;
}

.tool-link-list a,
.popular-tools-inline a,
.directory-jump-list a,
.directory-link-card h3 a,
.headline-item h4 a,
.newsroom-item h3 a,
.feature-article h3 a{
  display:inline-flex;
  align-items:flex-start;
  gap:10px;
}

.tool-link-list a{
  padding-left:0;
}

.tool-link-list a::before{
  display:none;
}

.directory-link-card h3 a,
.headline-item h4 a,
.newsroom-item h3 a,
.feature-article h3 a{
  color:inherit;
}

.tool-link-list .tool-icon-badge,
.popular-tools-inline .tool-icon-badge,
.directory-jump-list .tool-icon-badge{
  width:24px;
  height:24px;
  border-radius:8px;
  margin-top:-2px;
}

.directory-link-card .tool-icon-badge,
.headline-item .tool-icon-badge,
.newsroom-item .tool-icon-badge,
.feature-article .tool-icon-badge{
  width:26px;
  height:26px;
  border-radius:8px;
  margin-top:1px;
}

.topic-tag,
.meta-chip{
  background:#f4f4f4;
  color:#555555;
  border-color:#dddddd;
}

/* link clarity without icons */
.tool-icon-badge{
  display:none !important;
}

.tool-link-list a,
.popular-tools-inline a,
.directory-jump-list a,
.directory-link-card h3 a,
.headline-item h4 a,
.newsroom-item h3 a,
.feature-article h3 a,
.category-more,
.news-column-head a,
.resource-strip a,
.newsroom-feed-head a{
  position:relative;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
  transition:color .18s ease, background .18s ease, border-color .18s ease, text-decoration-color .18s ease;
}

.tool-link-list a,
.popular-tools-inline a,
.directory-jump-list a{
  text-decoration:none;
}

.tool-link-list a,
.popular-tools-inline a,
.directory-jump-list a,
.category-more,
.resource-strip a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:"Avenir Next","Segoe UI",sans-serif;
  font-weight:800;
}

.tool-link-list a::after,
.popular-tools-inline a::after,
.directory-jump-list a::after,
.directory-link-card h3 a::after,
.headline-item h4 a::after,
.newsroom-item h3 a::after,
.feature-article h3 a::after,
.category-more::after,
.resource-strip a::after,
.news-column-head a::after,
.newsroom-feed-head a::after{
  content:"\2192";
  font-size:.92em;
  line-height:1;
  opacity:.78;
}

.tool-link-list a,
.directory-link-card h3 a,
.headline-item h4 a,
.newsroom-item h3 a,
.feature-article h3 a{
  color:#1f1f1f;
}

.popular-tools-inline a,
.directory-jump-list a,
.category-more,
.resource-strip a,
.news-column-head a,
.newsroom-feed-head a{
  color:#2f2f2f;
}

.tool-link-list a{
  padding:4px 0;
}

.popular-tools-inline a,
.directory-jump-list a{
  padding:8px 12px;
  border:1px solid #d8d8d8;
  background:#f8f8f8;
}

.directory-link-card h3 a,
.headline-item h4 a,
.newsroom-item h3 a,
.feature-article h3 a{
  display:inline;
}

.tool-link-list a:hover,
.popular-tools-inline a:hover,
.directory-jump-list a:hover,
.directory-link-card h3 a:hover,
.headline-item h4 a:hover,
.newsroom-item h3 a:hover,
.feature-article h3 a:hover,
.category-more:hover,
.resource-strip a:hover,
.news-column-head a:hover,
.newsroom-feed-head a:hover{
  color:#000000;
  text-decoration-color:#000000;
}

.popular-tools-inline a:hover,
.directory-jump-list a:hover{
  background:#f1f1f1;
  border-color:#cfcfcf;
}

/* minimalist redesign */
:root{
  --bg:#f3f3f1;
  --bg-2:#ececea;
  --surface:#ffffff;
  --surface-2:#fcfcfb;
  --surface-3:#f7f7f5;
  --line:#dfdfdb;
  --line-strong:#cfcfc9;
  --text:#191919;
  --muted:#6a6a66;
  --primary:#111111;
  --primary-2:#2b2b2b;
  --primary-3:#000000;
  --primary-soft:#f3f3f1;
  --radius:14px;
  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:10px;
}

body{
  background:#f6f6f4;
  color:var(--text);
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

h1,h2,h3,h4,.brand-copy strong{
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.02em;
}

.topbar{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid #e5e5e1;
  backdrop-filter:blur(10px);
}

.nav{
  padding:14px 0;
  align-items:center;
}

.wrap{
  max-width:1160px;
}

.brand-copy strong{
  font-size:23px;
}

.brand-copy small{
  letter-spacing:.02em;
  text-transform:none;
  font-size:12px;
}

.menu{
  gap:2px;
}

.menu a{
  padding:9px 12px;
  border:none;
  background:transparent;
  color:#5d5d59;
  border-radius:8px;
}

.menu a:hover,
.menu a.active{
  background:#f2f2ef;
  color:#161616;
}

.hero,
.section,
.section-compact{
  padding-top:20px;
  padding-bottom:20px;
}

.hero-grid-directory,
.home-stack,
.newsroom-layout{
  gap:20px;
}

.card,
.panel,
.console,
.subpanel,
.tool-card,
.faq-item,
.seo-box,
.legal-card,
.stat-card,
.preview-card,
.feature-box,
.newsroom-feature,
.newsroom-feed,
.directory-toolbar,
.directory-section,
.compact-shelf,
.resource-strip,
.category-block,
.editorial-banner,
.empty-state{
  background:#fff;
  border:1px solid #e2e2de;
  border-radius:14px;
  box-shadow:none;
}

.hero-main,
.hero-side,
.article-hero{
  background:#fff;
}

.hero-directory .hero-main{
  padding:28px;
}

.hero-directory .hero-side{
  padding:22px;
}

.hero-directory .hero-main h1{
  font-size:40px;
  line-height:1.08;
  max-width:760px;
  margin-bottom:14px;
}

.hero-main p,
.hero-side p,
.section-head p,
.category-block p,
.popular-category-row p,
.feature-article p,
.newsroom-item p,
.newsroom-feature p,
.resource-strip p,
.directory-section p,
.directory-link-card p,
.editorial-banner p{
  color:var(--muted);
  line-height:1.72;
  font-size:15px;
}

.eyebrow,
.topic-tag,
.meta-chip{
  background:transparent;
  border:none;
  padding:0;
  color:#777773;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:11px;
  font-weight:800;
}

.cta{
  gap:10px;
  margin-top:18px;
}

.btn{
  padding:11px 16px;
  border-radius:10px;
  font-size:14px;
  font-weight:700;
}

.btn-primary{
  background:#1c1c1c;
  color:#fff;
}

.btn-primary:hover{
  background:#000;
}

.btn-secondary{
  background:#f3f3f1;
  color:#1e1e1e;
  border:1px solid #dfdfdb;
}

.btn-secondary:hover{
  background:#ebebe7;
  border-color:#d4d4cf;
}

.mini-stats{
  gap:10px;
}

.mini-stat{
  background:#f7f7f5;
  border:1px solid #e3e3df;
  border-radius:12px;
  padding:12px 14px;
}

.mini-stat strong{
  font-size:20px;
}

.signal-list{
  gap:8px;
}

.signal-item{
  background:#fafaf8;
  border:1px solid #e5e5e1;
  padding:12px 14px;
  border-radius:12px;
  color:#53534f;
}

.section-head{
  margin-bottom:16px;
}

.section-head h2,
.section-head-tight h2,
.directory-section h2,
.newsroom-feed-head h2{
  font-size:30px;
  line-height:1.14;
  margin:0 0 6px;
}

.split-head{
  align-items:end;
}

.category-directory-full{
  gap:12px;
}

.category-block{
  padding:18px;
}

.category-block-head{
  margin-bottom:8px;
}

.category-block h3{
  font-size:24px;
  margin:4px 0 0;
}

.category-more{
  font-size:13px;
  font-weight:700;
  color:#2f2f2f;
}

.tool-link-list{
  display:grid;
  grid-template-columns:1fr;
  gap:3px;
}

.tool-link-list a{
  padding:5px 0;
  font-size:14px;
  font-weight:600;
}

.compact-shelf{
  padding:18px;
}

.popular-category-list{
  gap:12px;
}

.popular-category-row{
  gap:8px;
  padding-top:12px;
}

.popular-category-row h3{
  font-size:22px;
}

.popular-tools-inline{
  gap:7px;
}

.popular-tools-inline a,
.directory-jump-list a{
  padding:6px 10px;
  border-radius:999px;
  background:#f5f5f3;
  border:1px solid #e0e0dc;
  font-size:12px;
}

.feature-article{
  gap:8px;
  padding-bottom:12px;
}

.feature-article h3{
  font-size:28px;
  line-height:1.16;
}

.headline-list{
  gap:0;
}

.headline-item{
  padding:12px 0;
  gap:10px;
}

.headline-item h4{
  margin-top:6px;
  font-size:18px;
  line-height:1.34;
}

.headline-meta,
.blog-meta span,
.newsroom-item-side span{
  color:#7a7a76;
  font-size:12px;
}

.resource-strip{
  padding:18px;
  gap:18px;
}

.resource-strip h3{
  font-size:20px;
}

.directory-toolbar{
  padding:16px;
}

.finder-label{
  font-size:13px;
  margin-bottom:6px;
  color:#5f5f5b;
}

.finder-input{
  border-radius:10px;
  border:1px solid #deded9;
  padding:13px 14px;
  background:#fff;
}

.finder-input:focus{
  border-color:#bfbfba;
  box-shadow:none;
}

.directory-stack{
  gap:12px;
}

.directory-section{
  padding:18px;
}

.directory-section-head{
  margin-bottom:12px;
}

.directory-link-grid{
  gap:10px 18px;
}

.directory-link-card{
  padding-top:12px;
}

.directory-link-card h3{
  font-size:18px;
}

.newsroom-feature,
.newsroom-feed{
  padding:18px;
}

.newsroom-feature h2{
  font-size:30px;
  line-height:1.12;
}

.newsroom-item{
  padding:14px 0;
  gap:12px;
}

.newsroom-item h3{
  margin-top:6px;
  font-size:20px;
}

.editorial-banner{
  padding:16px 18px;
}

.site-footer{
  margin-top:24px;
  padding:24px 0;
  background:transparent;
  border-top:1px solid #e1e1dc;
}

.footer-grid{
  gap:18px;
}

.footer-brand p,
.footer-note,
.small{
  color:#6d6d68;
}

.footer-links{
  gap:7px;
}

.footer-links a{
  color:#30302e;
}

/* calmer links */
.tool-link-list a,
.popular-tools-inline a,
.directory-jump-list a,
.directory-link-card h3 a,
.headline-item h4 a,
.newsroom-item h3 a,
.feature-article h3 a,
.category-more,
.resource-strip a,
.newsroom-feed-head a{
  color:#202020;
  text-decoration:none;
}

.tool-link-list a::after,
.popular-tools-inline a::after,
.directory-jump-list a::after,
.directory-link-card h3 a::after,
.headline-item h4 a::after,
.newsroom-item h3 a::after,
.feature-article h3 a::after,
.category-more::after,
.resource-strip a::after,
.newsroom-feed-head a::after{
  content:"";
}

.tool-link-list a:hover,
.directory-link-card h3 a:hover,
.headline-item h4 a:hover,
.newsroom-item h3 a:hover,
.feature-article h3 a:hover{
  color:#000;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:3px;
}

.popular-tools-inline a:hover,
.directory-jump-list a:hover,
.resource-strip a:hover,
.category-more:hover{
  color:#000;
  background:#eeeeea;
  border-color:#d3d3ce;
}

@media (max-width: 1100px){
  .hero-grid-directory,
  .home-stack,
  .newsroom-layout,
  .resource-strip,
  .footer-grid,
  .directory-section-head{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .hero-directory .hero-main h1{
    font-size:32px;
  }

  .section-head h2,
  .section-head-tight h2,
  .directory-section h2,
  .newsroom-feed-head h2{
    font-size:26px;
  }

  .feature-article h3,
  .newsroom-feature h2{
    font-size:25px;
  }
}

/* complete interface reset */
:root{
  --bg:#f5f5f2;
  --panel:#ffffff;
  --panel-soft:#fafaf8;
  --line:#dfdfd8;
  --line-strong:#cfcfc7;
  --text:#181818;
  --muted:#66665f;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

h1,h2,h3,h4,.brand-copy strong{
  font-family:Georgia,"Times New Roman",serif;
  letter-spacing:-.025em;
  color:var(--text);
}

.topbar-minimal{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(245,245,242,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid #e4e4de;
  box-shadow:none;
}

.nav-minimal{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px 0;
}

.brand-minimal{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--text);
}

.brand-minimal .brand-copy{
  display:grid;
  gap:2px;
}

.brand-minimal .brand-copy strong{
  font-size:24px;
}

.brand-minimal .brand-copy small{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.03em;
}

.menu-minimal{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.menu-minimal a{
  display:inline-flex;
  align-items:center;
  padding:7px 0;
  border:none;
  background:transparent;
  color:#55554f;
  font-size:14px;
  font-weight:600;
  border-radius:0;
  box-shadow:none;
}

.menu-minimal a:hover,
.menu-minimal a.active{
  color:#111111;
  text-decoration:underline;
  text-underline-offset:5px;
}

.menu-minimal .icon,
.brand-minimal .logo{
  display:none !important;
}

.wrap{
  max-width:1120px;
  padding:0 24px;
}

.site-shell{
  padding:20px 0 36px;
}

.shell-hero{
  padding:34px 0 20px;
}

.shell-hero-compact{
  padding-top:26px;
}

.shell-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) 260px;
  gap:28px;
  align-items:start;
}

.shell-hero-grid-single{
  grid-template-columns:1fr;
}

.shell-hero-copy h1{
  margin:0;
  max-width:760px;
  font-size:54px;
  line-height:1.02;
}

.lead{
  max-width:760px;
  margin:16px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}

.kicker{
  margin:0 0 12px;
  color:#7a7a73;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.shell-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.shell-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font-size:14px;
  font-weight:700;
}

.shell-button-dark{
  background:#161616;
  border-color:#161616;
  color:#fff;
}

.shell-hero-aside{
  display:grid;
  gap:12px;
}

.shell-stat{
  padding:16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.shell-stat strong{
  display:block;
  font-size:22px;
  color:var(--text);
}

.shell-stat span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
}

.shell-section{
  padding:18px 0;
}

.shell-section-tight{
  padding-top:8px;
}

.shell-section-soft{
  padding-top:30px;
}

.shell-section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  margin-bottom:18px;
}

.shell-section-head h2{
  margin:0;
  font-size:34px;
  line-height:1.1;
}

.shell-inline-link{
  color:var(--text);
  font-size:14px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

.directory-panels{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.directory-panel{
  padding:18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.directory-panel-head,
.directory-section-clean-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
}

.directory-panel h3,
.directory-section-clean h2{
  margin:0;
  font-size:27px;
  line-height:1.08;
}

.directory-panel p,
.directory-section-clean p,
.lead-story-clean p,
.story-row-clean p,
.trust-panel-clean p,
.editorial-feature-clean p,
.editorial-row-clean p,
.clean-empty p{
  color:var(--muted);
  line-height:1.75;
}

.directory-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 18px;
  margin-top:14px;
}

.directory-links a,
.trust-links-clean a,
.directory-link-row h3 a,
.lead-story-clean h3 a,
.story-row-clean h4 a,
.editorial-feature-clean h2 a,
.editorial-row-clean h3 a,
.footer-minimal-links a,
.footer-minimal-meta a{
  color:var(--text);
  text-decoration:none;
}

.directory-links a{
  padding:3px 0;
  font-size:14px;
  font-weight:600;
}

.directory-links a:hover,
.directory-link-row h3 a:hover,
.lead-story-clean h3 a:hover,
.story-row-clean h4 a:hover,
.editorial-feature-clean h2 a:hover,
.editorial-row-clean h3 a:hover,
.footer-minimal-links a:hover,
.footer-minimal-meta a:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

.editorial-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:28px;
}

.editorial-column,
.trust-panel-clean{
  padding:0;
}

.lead-story-clean{
  padding:0 0 18px;
  border-bottom:1px solid var(--line);
}

.lead-story-clean h3,
.editorial-feature-clean h2{
  margin:6px 0 10px;
  font-size:36px;
  line-height:1.1;
}

.story-meta{
  margin:0;
  color:#7a7a73;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}

.story-list-clean,
.editorial-feed-clean{
  display:grid;
}

.story-row-clean,
.editorial-row-clean{
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.story-row-clean:last-child,
.editorial-row-clean:last-child{
  border-bottom:none;
}

.story-row-clean h4,
.editorial-row-clean h3{
  margin:6px 0 0;
  font-size:22px;
  line-height:1.24;
}

.trust-panel-clean{
  padding:20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.trust-panel-clean h3{
  margin:0 0 12px;
  font-size:28px;
  line-height:1.14;
}

.trust-links-clean{
  display:grid;
  gap:8px;
  margin-top:16px;
}

.trust-links-clean a,
.footer-minimal-links a{
  font-size:14px;
  font-weight:700;
}

.search-shell{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.search-shell-label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.search-shell-input{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:var(--text);
  font:inherit;
}

.search-shell-input:focus{
  outline:none;
  border-color:var(--line-strong);
}

.search-shell-jumps{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.search-shell-jumps a{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--panel-soft);
  color:#4d4d48;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.search-shell-jumps a:hover{
  color:var(--text);
  background:#f0f0eb;
}

.directory-sections-clean{
  display:grid;
  gap:12px;
}

.directory-section-clean{
  padding:20px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.directory-link-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 22px;
  margin-top:16px;
}

.directory-link-row{
  padding:12px 0 0;
  border-top:1px solid #ecece6;
}

.directory-link-row h3{
  margin:0;
  font-size:18px;
  line-height:1.28;
}

.directory-link-row p{
  margin:6px 0 0;
  font-size:14px;
}

.editorial-layout-clean{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:24px;
}

.editorial-feature-clean,
.editorial-feed-clean{
  padding:22px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.editorial-feature-clean{
  align-self:start;
}

.clean-empty{
  margin-top:14px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:14px;
  background:var(--panel);
}

.clean-empty h3{
  margin:0 0 6px;
  font-size:24px;
}

.site-footer-minimal{
  margin-top:24px;
  padding:28px 0 40px;
  background:transparent;
  border-top:1px solid #e1e1da;
}

.footer-minimal{
  display:grid;
  gap:16px;
}

.footer-minimal-head strong{
  display:block;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
}

.footer-minimal-head p,
.footer-minimal-meta{
  margin:6px 0 0;
  color:var(--muted);
  font-size:14px;
}

.footer-minimal-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}

.footer-minimal-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

@media (max-width: 980px){
  .shell-hero-grid,
  .editorial-grid,
  .editorial-layout-clean,
  .directory-link-columns,
  .directory-panels{
    grid-template-columns:1fr;
  }
}

@media (max-width: 740px){
  .menu-minimal{
    display:none;
  }

  .wrap{
    padding:0 16px;
  }

  .site-shell{
    padding-top:10px;
  }

  .shell-hero-copy h1{
    font-size:36px;
  }

  .lead{
    font-size:16px;
  }

  .shell-section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .shell-section-head h2,
  .directory-panel h3,
  .directory-section-clean h2,
  .lead-story-clean h3,
  .editorial-feature-clean h2,
  .trust-panel-clean h3{
    font-size:28px;
  }

  .directory-links{
    grid-template-columns:1fr;
  }
}

/* futuristic redesign */
:root{
  --future-bg:#07111f;
  --future-bg-2:#0b1628;
  --future-panel:rgba(15, 26, 46, .78);
  --future-panel-2:rgba(11, 21, 38, .88);
  --future-line:rgba(121, 180, 255, .18);
  --future-line-strong:rgba(121, 180, 255, .34);
  --future-text:#eef6ff;
  --future-muted:#95a9c4;
  --future-accent:#6ee7ff;
  --future-accent-2:#7c8cff;
  --future-accent-3:#9df8d3;
}

body{
  background:
    radial-gradient(circle at top left, rgba(124,140,255,.18), transparent 26%),
    radial-gradient(circle at top right, rgba(110,231,255,.14), transparent 24%),
    linear-gradient(180deg,#08111f 0%, #091526 45%, #060d18 100%);
  color:var(--future-text);
  font-family:"Sora","Avenir Next","Segoe UI",sans-serif;
}

h1,h2,h3,h4,.brand-copy strong{
  font-family:"Space Grotesk","Avenir Next","Segoe UI",sans-serif;
  letter-spacing:-.04em;
  color:var(--future-text);
}

a{
  color:inherit;
}

.future-topbar{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(7,17,31,.74);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(121,180,255,.12);
}

.future-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}

.future-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.future-brand-mark{
  width:14px;
  height:14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--future-accent),var(--future-accent-2));
  box-shadow:0 0 28px rgba(110,231,255,.55);
}

.future-brand .brand-copy{
  display:grid;
  gap:2px;
}

.future-brand .brand-copy strong{
  font-size:25px;
}

.future-brand .brand-copy small{
  color:var(--future-muted);
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.future-menu{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.future-menu a{
  padding:8px 12px;
  border:1px solid transparent;
  border-radius:999px;
  color:var(--future-muted);
  font-size:14px;
  font-weight:600;
  transition:.18s ease;
}

.future-menu a:hover,
.future-menu a.active{
  color:var(--future-text);
  border-color:rgba(121,180,255,.22);
  background:rgba(110,231,255,.06);
  box-shadow:inset 0 0 0 1px rgba(110,231,255,.05), 0 0 24px rgba(110,231,255,.06);
}

.wrap{
  max-width:1180px;
  padding:0 24px;
}

.future-page{
  padding:24px 0 48px;
}

.future-hero{
  padding:28px 0 18px;
}

.future-hero-compact{
  padding-top:18px;
}

.future-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) 280px;
  gap:24px;
  align-items:start;
}

.future-hero-grid-single{
  grid-template-columns:1fr;
}

.future-hero-copy,
.future-hero-panel,
.future-category-card,
.future-editorial-panel,
.future-trust-panel,
.future-search-panel,
.future-directory-panel,
.future-blog-feature,
.future-blog-feed,
.future-empty{
  position:relative;
  overflow:hidden;
  border:1px solid var(--future-line);
  background:linear-gradient(180deg,var(--future-panel) 0%, var(--future-panel-2) 100%);
  border-radius:24px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 20px 60px rgba(0,0,0,.28);
}

.future-hero-copy{
  padding:34px;
}

.future-hero-copy::before,
.future-trust-panel::before,
.future-blog-feature::before{
  content:"";
  position:absolute;
  inset:auto -60px -60px auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(124,140,255,.28), rgba(124,140,255,0) 68%);
  pointer-events:none;
}

.future-kicker{
  display:inline-block;
  margin-bottom:14px;
  color:var(--future-accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.future-hero-copy h1{
  margin:0;
  max-width:840px;
  font-size:64px;
  line-height:.96;
}

.future-hero-copy p{
  margin:18px 0 0;
  max-width:760px;
  color:var(--future-muted);
  font-size:17px;
  line-height:1.8;
}

.future-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.future-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid rgba(121,180,255,.22);
  background:rgba(255,255,255,.03);
  color:var(--future-text);
  font-size:14px;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.future-button-primary{
  background:linear-gradient(135deg,var(--future-accent),var(--future-accent-2));
  color:#03111f;
  border-color:transparent;
  box-shadow:0 0 32px rgba(110,231,255,.22);
}

.future-highlight-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:22px;
}

.future-highlight-card{
  padding:16px 18px;
  border:1px solid var(--future-line);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}

.future-highlight-card h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.14;
}

.future-highlight-card p{
  margin:0;
  color:var(--future-muted);
  font-size:14px;
  line-height:1.72;
}

.future-hero-panel{
  padding:20px;
  display:grid;
  gap:12px;
}

.future-metric{
  padding:16px;
  border:1px solid rgba(121,180,255,.14);
  border-radius:18px;
  background:rgba(255,255,255,.02);
}

.future-metric strong{
  display:block;
  font-size:26px;
  color:var(--future-text);
}

.future-metric span{
  display:block;
  margin-top:4px;
  color:var(--future-muted);
  font-size:14px;
}

.future-section{
  padding:20px 0;
}

.future-section-tight{
  padding-top:10px;
}

.future-section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:18px;
}

.future-section-head h2{
  margin:0;
  font-size:36px;
  line-height:1.04;
}

.future-link{
  color:var(--future-accent);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.future-link:hover{
  color:#b5fbff;
}

.future-category-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.future-category-card{
  padding:22px;
}

.future-category-visual,
.future-directory-visual{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.future-category-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  border-radius:14px;
  background:linear-gradient(135deg, rgba(110,231,255,.12), rgba(124,140,255,.16));
  border:1px solid rgba(121,180,255,.16);
  color:var(--future-text);
  font-size:14px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.future-category-label{
  color:var(--future-muted);
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.future-category-head,
.future-directory-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
}

.future-category-card h3,
.future-directory-panel h2{
  margin:0;
  font-size:28px;
  line-height:1.04;
}

.future-category-card p,
.future-directory-panel p,
.future-feature-story p,
.future-blog-feature p,
.future-blog-row p,
.future-trust-panel p,
.future-directory-item p,
.future-empty p{
  color:var(--future-muted);
  line-height:1.78;
}

.future-tool-list,
.future-trust-links{
  display:grid;
  gap:8px;
  margin-top:16px;
}

.future-tool-list a,
.future-trust-links a,
.future-directory-item h3 a,
.future-feature-story h3 a,
.future-story-row h4 a,
.future-blog-feature h2 a,
.future-blog-row h3 a,
.future-footer-links a,
.future-footer-meta a{
  color:var(--future-text);
  text-decoration:none;
}

.future-tool-list a{
  color:#d8e5f6;
  font-size:14px;
  font-weight:600;
}

.future-tool-list a:hover,
.future-trust-links a:hover,
.future-directory-item h3 a:hover,
.future-feature-story h3 a:hover,
.future-story-row h4 a:hover,
.future-blog-feature h2 a:hover,
.future-blog-row h3 a:hover,
.future-footer-links a:hover,
.future-footer-meta a:hover{
  color:var(--future-accent);
}

.future-content-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:20px;
}

.future-editorial-panel,
.future-blog-feed{
  padding:24px;
}

.future-trust-panel{
  padding:24px;
}

.future-story-visual,
.future-trust-visual{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:120px;
  padding:10px 14px;
  margin-bottom:14px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(110,231,255,.10), rgba(124,140,255,.12));
  border:1px solid rgba(121,180,255,.14);
  color:var(--future-accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.future-trust-panel h3{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.06;
}

.future-feature-story{
  padding:0 0 18px;
  border-bottom:1px solid rgba(121,180,255,.12);
}

.future-feature-story h3,
.future-blog-feature h2{
  margin:8px 0 10px;
  font-size:40px;
  line-height:1.02;
}

.future-meta-line{
  color:#7fcdee;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.future-story-list,
.future-directory-stack{
  display:grid;
  gap:12px;
}

.future-story-row,
.future-blog-row{
  padding:16px 0;
  border-bottom:1px solid rgba(121,180,255,.12);
}

.future-story-row:last-child,
.future-blog-row:last-child{
  border-bottom:none;
}

.future-story-row h4,
.future-blog-row h3{
  margin:8px 0 0;
  font-size:24px;
  line-height:1.14;
}

.future-search-panel{
  padding:20px 22px;
}

.future-search-label{
  display:block;
  margin-bottom:8px;
  color:var(--future-muted);
  font-size:13px;
  font-weight:700;
}

.future-search-input{
  width:100%;
  padding:15px 16px;
  border:1px solid rgba(121,180,255,.18);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:var(--future-text);
  font:inherit;
}

.future-search-input:focus{
  outline:none;
  border-color:rgba(110,231,255,.5);
  box-shadow:0 0 0 4px rgba(110,231,255,.08);
}

.future-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.future-chip-row a{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(121,180,255,.16);
  background:rgba(255,255,255,.03);
  color:#cfe2ff;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.future-chip-row a:hover{
  color:var(--future-text);
  border-color:rgba(110,231,255,.38);
}

.future-directory-panel{
  padding:22px;
}

.future-directory-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 22px;
  margin-top:18px;
}

.future-directory-item{
  padding-top:14px;
  border-top:1px solid rgba(121,180,255,.12);
}

.future-directory-item h3{
  margin:0;
  font-size:19px;
  line-height:1.24;
}

.future-directory-item p{
  margin:6px 0 0;
  font-size:14px;
}

.future-blog-grid{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  gap:20px;
}

.future-blog-feature{
  padding:24px;
}

.future-empty{
  margin-top:14px;
  padding:20px 22px;
}

.future-empty h3{
  margin:0 0 6px;
  font-size:24px;
}

.future-footer{
  margin-top:28px;
  padding:26px 0 42px;
  border-top:1px solid rgba(121,180,255,.12);
  background:linear-gradient(180deg, rgba(6,13,24,0) 0%, rgba(7,17,31,.65) 100%);
}

.future-footer-grid{
  display:grid;
  gap:16px;
}

.future-footer-head strong{
  display:block;
  font-size:25px;
  font-family:"Space Grotesk","Avenir Next","Segoe UI",sans-serif;
}

.future-footer-head p,
.future-footer-meta{
  margin:6px 0 0;
  color:var(--future-muted);
  font-size:14px;
}

.future-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}

.future-footer-links a{
  color:#d7e6ff;
  font-size:14px;
  font-weight:700;
}

.future-footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

@media (max-width: 980px){
  .future-hero-grid,
  .future-category-grid,
  .future-content-grid,
  .future-directory-grid,
  .future-blog-grid{
    grid-template-columns:1fr;
  }

  .future-highlight-row{
    grid-template-columns:1fr;
  }
}

@media (max-width: 740px){
  .future-menu{
    display:none;
  }

  .wrap{
    padding:0 16px;
  }

  .future-page{
    padding-top:10px;
  }

  .future-hero-copy{
    padding:24px;
  }

  .future-hero-copy h1{
    font-size:42px;
  }

  .future-section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .future-section-head h2,
  .future-category-card h3,
  .future-directory-panel h2,
  .future-trust-panel h3,
  .future-blog-feature h2,
  .future-feature-story h3{
    font-size:30px;
  }

  .future-story-row h4,
  .future-blog-row h3{
    font-size:22px;
  }
}

/* light professional override */
:root{
  --future-bg:#f6f4ef;
  --future-bg-2:#eeebe4;
  --future-panel:rgba(255,255,255,.92);
  --future-panel-2:rgba(252,250,246,.98);
  --future-line:rgba(35,54,78,.10);
  --future-line-strong:rgba(35,54,78,.18);
  --future-text:#161b22;
  --future-muted:#66707c;
  --future-accent:#0f6c86;
  --future-accent-2:#4e73df;
  --future-accent-3:#2f9d7c;
}

body{
  background:
    radial-gradient(circle at top left, rgba(78,115,223,.10), transparent 24%),
    radial-gradient(circle at top right, rgba(15,108,134,.08), transparent 22%),
    linear-gradient(180deg,#fbfaf7 0%, #f6f4ef 55%, #f2efe8 100%);
  color:var(--future-text);
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

h1,h2,h3,h4,.brand-copy strong{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--future-text);
}

.future-topbar{
  background:rgba(251,250,247,.88);
  border-bottom:1px solid rgba(35,54,78,.08);
}

.future-brand-mark{
  box-shadow:0 0 18px rgba(78,115,223,.18);
}

.future-brand .brand-copy small{
  color:var(--future-muted);
}

.future-menu a{
  color:#5d6773;
}

.future-menu a:hover,
.future-menu a.active{
  color:var(--future-text);
  border-color:rgba(35,54,78,.10);
  background:rgba(255,255,255,.7);
  box-shadow:none;
}

.future-hero-copy,
.future-hero-panel,
.future-category-card,
.future-editorial-panel,
.future-trust-panel,
.future-search-panel,
.future-directory-panel,
.future-blog-feature,
.future-blog-feed,
.future-empty{
  border:1px solid rgba(35,54,78,.08);
  background:linear-gradient(180deg,rgba(255,255,255,.96) 0%, rgba(250,248,243,.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 18px 44px rgba(31,38,48,.06);
}

.future-hero-copy::before,
.future-trust-panel::before,
.future-blog-feature::before{
  background:radial-gradient(circle, rgba(78,115,223,.14), rgba(78,115,223,0) 68%);
}

.future-kicker{
  color:var(--future-accent);
}

.future-hero-copy p,
.future-category-card p,
.future-directory-panel p,
.future-feature-story p,
.future-blog-feature p,
.future-blog-row p,
.future-trust-panel p,
.future-directory-item p,
.future-empty p,
.future-metric span,
.future-search-label,
.future-footer-head p,
.future-footer-meta{
  color:var(--future-muted);
}

.future-button{
  border-color:rgba(35,54,78,.12);
  background:#fff;
  color:var(--future-text);
}

.future-button-primary{
  background:linear-gradient(135deg,var(--future-accent),var(--future-accent-2));
  color:#fff;
  box-shadow:0 10px 26px rgba(78,115,223,.18);
}

.future-highlight-card{
  background:rgba(255,255,255,.72);
  border-color:rgba(35,54,78,.08);
}

.future-highlight-card p{
  color:var(--future-muted);
}

.future-metric{
  border-color:rgba(35,54,78,.08);
  background:rgba(255,255,255,.7);
}

.future-link{
  color:var(--future-accent);
}

.future-link:hover{
  color:#0a5063;
}

.future-tool-list a,
.future-trust-links a,
.future-directory-item h3 a,
.future-feature-story h3 a,
.future-story-row h4 a,
.future-blog-feature h2 a,
.future-blog-row h3 a,
.future-footer-links a,
.future-footer-meta a{
  color:var(--future-text);
}

.future-tool-list a:hover,
.future-trust-links a:hover,
.future-directory-item h3 a:hover,
.future-feature-story h3 a:hover,
.future-story-row h4 a:hover,
.future-blog-feature h2 a:hover,
.future-blog-row h3 a:hover,
.future-footer-links a:hover,
.future-footer-meta a:hover{
  color:var(--future-accent);
}

.future-meta-line{
  color:#54718f;
}

.future-story-row,
.future-blog-row,
.future-feature-story,
.future-directory-item{
  border-color:rgba(35,54,78,.08);
}

.future-search-input{
  border-color:rgba(35,54,78,.12);
  background:#fff;
  color:var(--future-text);
}

.future-search-input:focus{
  border-color:rgba(78,115,223,.34);
  box-shadow:0 0 0 4px rgba(78,115,223,.08);
}

.future-chip-row a{
  border-color:rgba(35,54,78,.10);
  background:rgba(255,255,255,.76);
  color:#4f5966;
}

.future-chip-row a:hover{
  color:var(--future-text);
  border-color:rgba(78,115,223,.22);
}

.future-category-badge{
  background:linear-gradient(135deg, rgba(15,108,134,.12), rgba(78,115,223,.14));
  border-color:rgba(78,115,223,.16);
  color:#23476a;
}

.future-category-label{
  color:#607083;
}

.future-footer{
  border-top:1px solid rgba(35,54,78,.08);
  background:linear-gradient(180deg, rgba(242,239,232,0) 0%, rgba(239,235,227,.85) 100%);
}

.future-footer-links a{
  color:#3f4956;
}

/* atlas redesign */
:root{
  --atlas-bg:#f4efe7;
  --atlas-paper:#fffdf9;
  --atlas-paper-2:#f8f3eb;
  --atlas-line:#ddd3c5;
  --atlas-line-strong:#cab9a2;
  --atlas-text:#1d1c19;
  --atlas-muted:#6d675f;
  --atlas-accent:#c66f2c;
  --atlas-accent-2:#124b5f;
}

body{
  background:
    radial-gradient(circle at top right, rgba(198,111,44,.08), transparent 18%),
    radial-gradient(circle at top left, rgba(18,75,95,.08), transparent 20%),
    linear-gradient(180deg,#faf7f2 0%, #f4efe7 100%);
  color:var(--atlas-text);
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

h1,h2,h3,h4,.brand-copy strong{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--atlas-text);
  letter-spacing:-.03em;
}

.atlas-topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(250,247,242,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(29,28,25,.08);
}

.atlas-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px 0;
}

.atlas-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.atlas-brand-mark{
  width:16px;
  height:16px;
  border-radius:4px;
  background:linear-gradient(135deg,var(--atlas-accent),#e5b04b);
  transform:rotate(45deg);
}

.atlas-brand .brand-copy{
  display:grid;
  gap:2px;
}

.atlas-brand .brand-copy strong{
  font-size:24px;
}

.atlas-brand .brand-copy small{
  color:var(--atlas-muted);
  font-size:12px;
  letter-spacing:.04em;
}

.atlas-menu{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.atlas-menu a{
  color:#5f5a53;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}

.atlas-menu a:hover,
.atlas-menu a.active{
  color:var(--atlas-text);
  text-decoration:underline;
  text-underline-offset:5px;
}

.atlas-page{
  padding:24px 0 44px;
}

.atlas-hero{
  padding:24px 0 20px;
}

.atlas-hero-compact{
  padding-top:16px;
}

.atlas-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) 320px;
  gap:18px;
  align-items:start;
}

.atlas-hero-copy,
.atlas-side-card,
.atlas-category-card,
.atlas-feature-story,
.atlas-note-card,
.atlas-search-card,
.atlas-directory-card,
.atlas-blog-feature,
.atlas-blog-row,
.atlas-empty{
  background:var(--atlas-paper);
  border:1px solid var(--atlas-line);
  border-radius:22px;
  box-shadow:0 14px 30px rgba(35,30,22,.05);
}

.atlas-hero-copy{
  padding:30px;
}

.atlas-kicker{
  display:inline-block;
  margin-bottom:12px;
  color:var(--atlas-accent-2);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.atlas-hero-copy h1{
  margin:0;
  max-width:760px;
  font-size:58px;
  line-height:.98;
}

.atlas-hero-copy p,
.atlas-category-card p,
.atlas-feature-copy p,
.atlas-note-card p,
.atlas-directory-intro,
.atlas-directory-item p,
.atlas-blog-feature-copy p,
.atlas-blog-row p,
.atlas-empty p,
.atlas-side-card p{
  color:var(--atlas-muted);
  line-height:1.78;
}

.atlas-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.atlas-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--atlas-line);
  background:var(--atlas-paper-2);
  color:var(--atlas-text);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.atlas-button-dark{
  background:var(--atlas-text);
  border-color:var(--atlas-text);
  color:#fff;
}

.atlas-hero-side{
  display:grid;
  gap:12px;
}

.atlas-side-card{
  padding:18px;
}

.atlas-side-card-dark{
  background:linear-gradient(135deg,#163847,#224d5f);
  color:#fff;
  border-color:#163847;
}

.atlas-side-card-dark p,
.atlas-side-card-dark .atlas-side-label{
  color:rgba(255,255,255,.78);
}

.atlas-side-label{
  display:block;
  margin-bottom:8px;
  color:var(--atlas-muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.atlas-side-card strong{
  display:block;
  font-size:32px;
}

.atlas-side-stack{
  display:grid;
  gap:12px;
}

.atlas-section{
  padding:18px 0;
}

.atlas-section-tight{
  padding-top:6px;
}

.atlas-section-soft{
  padding-top:26px;
}

.atlas-section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:18px;
  margin-bottom:16px;
}

.atlas-section-head h2{
  margin:0;
  font-size:34px;
  line-height:1.08;
}

.atlas-inline-link{
  color:var(--atlas-accent-2);
  font-size:14px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

.atlas-category-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.atlas-category-card{
  display:grid;
  grid-template-columns:92px minmax(0,1fr);
  gap:16px;
  padding:18px;
}

.atlas-category-mark,
.atlas-category-mark-small{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  border-radius:20px;
  background:linear-gradient(135deg,#f0e1cf,#f8efe2);
  border:1px solid var(--atlas-line);
  color:var(--atlas-accent);
  font-size:18px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.atlas-category-mark-small{
  width:48px;
  height:48px;
  border-radius:14px;
  font-size:14px;
}

.atlas-category-head,
.atlas-directory-head{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
}

.atlas-micro{
  margin:0 0 6px;
  color:#8a7a67;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.atlas-category-head h3,
.atlas-directory-title h2{
  margin:0;
  font-size:28px;
  line-height:1.06;
}

.atlas-link-list,
.atlas-note-links{
  display:grid;
  gap:7px;
  margin-top:14px;
}

.atlas-link-list a,
.atlas-note-links a,
.atlas-feature-copy h3 a,
.atlas-story-card h4 a,
.atlas-directory-item h3 a,
.atlas-blog-feature-copy h2 a,
.atlas-blog-row h3 a,
.atlas-footer-links a,
.atlas-footer-meta a{
  color:var(--atlas-text);
  text-decoration:none;
}

.atlas-link-list a{
  font-size:14px;
  font-weight:600;
}

.atlas-link-list a:hover,
.atlas-note-links a:hover,
.atlas-feature-copy h3 a:hover,
.atlas-story-card h4 a:hover,
.atlas-directory-item h3 a:hover,
.atlas-blog-feature-copy h2 a:hover,
.atlas-blog-row h3 a:hover,
.atlas-footer-links a:hover,
.atlas-footer-meta a:hover{
  color:var(--atlas-accent);
}

.atlas-editorial-grid,
.atlas-blog-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
}

.atlas-feature-story,
.atlas-blog-feature{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:18px;
  padding:18px;
}

.atlas-feature-art,
.atlas-blog-feature-art{
  min-height:220px;
  border-radius:18px;
  background:
    linear-gradient(135deg, rgba(198,111,44,.22), rgba(18,75,95,.16)),
    radial-gradient(circle at top right, rgba(255,255,255,.65), transparent 28%),
    linear-gradient(180deg,#f2e5d2 0%, #ede4d6 100%);
}

.atlas-feature-copy h3,
.atlas-blog-feature-copy h2{
  margin:6px 0 10px;
  font-size:36px;
  line-height:1.04;
}

.atlas-story-list,
.atlas-blog-feed{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.atlas-story-card,
.atlas-blog-row{
  padding:18px;
}

.atlas-story-card h4,
.atlas-blog-row h3{
  margin:6px 0 0;
  font-size:22px;
  line-height:1.18;
}

.atlas-note-card{
  padding:22px;
}

.atlas-note-card h3{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.08;
}

.atlas-search-card{
  padding:18px 20px;
}

.atlas-search-label{
  display:block;
  margin-bottom:8px;
  color:var(--atlas-muted);
  font-size:13px;
  font-weight:700;
}

.atlas-search-input{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--atlas-line);
  border-radius:14px;
  background:#fff;
  color:var(--atlas-text);
  font:inherit;
}

.atlas-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.atlas-chip-row a{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  background:var(--atlas-paper-2);
  border:1px solid var(--atlas-line);
  color:#5f5a53;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.atlas-directory-stack{
  display:grid;
  gap:12px;
}

.atlas-directory-card{
  padding:20px;
  background:var(--atlas-paper);
  border:1px solid var(--atlas-line);
  border-radius:22px;
  box-shadow:0 14px 30px rgba(35,30,22,.05);
}

.atlas-directory-title{
  display:flex;
  gap:12px;
  align-items:center;
}

.atlas-directory-intro{
  margin:14px 0 0;
}

.atlas-directory-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 20px;
  margin-top:16px;
}

.atlas-directory-item{
  padding-top:12px;
  border-top:1px solid #ece4d9;
}

.atlas-directory-item h3{
  margin:0;
  font-size:18px;
  line-height:1.24;
}

.atlas-directory-item p{
  margin:6px 0 0;
  color:var(--atlas-muted);
  font-size:14px;
}

.atlas-empty{
  margin-top:14px;
  padding:18px;
}

.atlas-empty h3{
  margin:0 0 6px;
  font-size:24px;
}

.atlas-footer{
  margin-top:26px;
  padding:26px 0 38px;
  border-top:1px solid #e0d7cb;
}

.atlas-footer-grid{
  display:grid;
  gap:16px;
}

.atlas-footer-head strong{
  display:block;
  font-size:24px;
}

.atlas-footer-head p,
.atlas-footer-meta{
  margin:6px 0 0;
  color:var(--atlas-muted);
  font-size:14px;
}

.atlas-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}

.atlas-footer-links a{
  color:#4e4a44;
  font-size:14px;
  font-weight:700;
}

.atlas-footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

@media (max-width: 980px){
  .atlas-hero-grid,
  .atlas-category-grid,
  .atlas-editorial-grid,
  .atlas-blog-grid,
  .atlas-directory-grid{
    grid-template-columns:1fr;
  }

  .atlas-feature-story,
  .atlas-blog-feature{
    grid-template-columns:1fr;
  }
}

@media (max-width: 740px){
  .atlas-menu{
    display:none;
  }

  .wrap{
    padding:0 16px;
  }

  .atlas-hero-copy h1{
    font-size:40px;
  }

  .atlas-section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .atlas-category-card{
    grid-template-columns:1fr;
  }

  .atlas-category-head h3,
  .atlas-directory-title h2,
  .atlas-note-card h3,
  .atlas-feature-copy h3,
  .atlas-blog-feature-copy h2{
    font-size:28px;
  }
}

/* ledger redesign */
:root{
  --ledger-bg:#fbfaf6;
  --ledger-paper:#ffffff;
  --ledger-soft:#f3eee7;
  --ledger-line:#ddd5cb;
  --ledger-line-strong:#c8baaa;
  --ledger-text:#1b1a17;
  --ledger-muted:#68625b;
  --ledger-accent:#b04a2f;
}

body{
  background:
    linear-gradient(180deg,#fffdf9 0%, #fbfaf6 100%);
  color:var(--ledger-text);
  font-family:"Avenir Next","Segoe UI",sans-serif;
}

h1,h2,h3,h4,.brand-copy strong{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--ledger-text);
  letter-spacing:-.03em;
}

.ledger-topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,253,249,.95);
  border-bottom:1px solid #e4ddd3;
}

.ledger-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
}

.ledger-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
}

.ledger-brand-mark{
  width:18px;
  height:18px;
  border-radius:3px;
  background:var(--ledger-accent);
}

.ledger-brand .brand-copy{
  display:grid;
  gap:2px;
}

.ledger-brand .brand-copy strong{
  font-size:24px;
}

.ledger-brand .brand-copy small{
  color:var(--ledger-muted);
  font-size:12px;
}

.ledger-menu{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.ledger-menu a{
  color:#5e5852;
  font-size:14px;
  font-weight:600;
  text-decoration:none;
}

.ledger-menu a:hover,
.ledger-menu a.active{
  color:var(--ledger-text);
  text-decoration:underline;
  text-underline-offset:5px;
}

.ledger-page{
  padding:24px 0 44px;
}

.ledger-hero{
  padding:26px 0 20px;
}

.ledger-hero-compact{
  padding-top:16px;
}

.ledger-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:18px;
  align-items:start;
}

.ledger-hero-main,
.ledger-stat-block,
.ledger-category-row,
.ledger-lead-article,
.ledger-note,
.ledger-search,
.ledger-directory-section,
.ledger-blog-feature,
.ledger-blog-row,
.ledger-empty{
  background:var(--ledger-paper);
  border:1px solid var(--ledger-line);
}

.ledger-hero-main{
  padding:28px;
}

.ledger-kicker{
  display:inline-block;
  margin:0 0 12px;
  color:var(--ledger-accent);
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.ledger-hero-main h1,
.ledger-simple-head h1{
  margin:0;
  max-width:760px;
  font-size:60px;
  line-height:.98;
}

.ledger-lead,
.ledger-hero-main p,
.ledger-category-content p,
.ledger-lead-article-copy p,
.ledger-note p,
.ledger-directory-description,
.ledger-tool-item p,
.ledger-blog-feature-copy p,
.ledger-blog-row p,
.ledger-empty p,
.ledger-stat-block p{
  color:var(--ledger-muted);
  line-height:1.78;
}

.ledger-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.ledger-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border:1px solid var(--ledger-line);
  background:var(--ledger-soft);
  color:var(--ledger-text);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.ledger-button-dark{
  background:var(--ledger-text);
  border-color:var(--ledger-text);
  color:#fff;
}

.ledger-hero-side{
  display:grid;
  gap:12px;
}

.ledger-stat-block{
  padding:18px;
}

.ledger-stat-label{
  display:block;
  margin-bottom:6px;
  color:var(--ledger-muted);
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ledger-stat-block strong{
  display:block;
  font-size:32px;
}

.ledger-section{
  padding:18px 0;
}

.ledger-section-tight{
  padding-top:6px;
}

.ledger-section-soft{
  padding-top:28px;
}

.ledger-section-head{
  margin-bottom:16px;
}

.ledger-section-head h2{
  margin:0;
  font-size:34px;
  line-height:1.08;
}

.ledger-category-list,
.ledger-directory-stack,
.ledger-article-list,
.ledger-blog-feed{
  display:grid;
  gap:12px;
}

.ledger-category-row{
  display:grid;
  grid-template-columns:78px minmax(0,1fr);
  gap:18px;
  padding:18px;
}

.ledger-category-index{
  display:inline-flex;
  align-items:flex-start;
  justify-content:flex-start;
  color:#b39a84;
  font-size:26px;
  font-weight:700;
  line-height:1;
}

.ledger-category-top,
.ledger-directory-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
}

.ledger-micro{
  margin:0 0 6px;
  color:#8a7a67;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ledger-category-top h3,
.ledger-directory-title h2{
  margin:0;
  font-size:28px;
  line-height:1.06;
}

.ledger-inline-link{
  color:var(--ledger-accent);
  font-size:14px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:4px;
}

.ledger-inline-links,
.ledger-note-links,
.ledger-chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  margin-top:14px;
}

.ledger-inline-links a,
.ledger-note-links a,
.ledger-lead-article-copy h3 a,
.ledger-article-row h4 a,
.ledger-tool-item h3 a,
.ledger-blog-feature-copy h2 a,
.ledger-blog-row h3 a,
.ledger-footer-links a,
.ledger-footer-meta a{
  color:var(--ledger-text);
  text-decoration:none;
}

.ledger-inline-links a{
  font-size:14px;
  font-weight:600;
}

.ledger-inline-links a:hover,
.ledger-note-links a:hover,
.ledger-lead-article-copy h3 a:hover,
.ledger-article-row h4 a:hover,
.ledger-tool-item h3 a:hover,
.ledger-blog-feature-copy h2 a:hover,
.ledger-blog-row h3 a:hover,
.ledger-footer-links a:hover,
.ledger-footer-meta a:hover{
  color:var(--ledger-accent);
}

.ledger-editorial-grid,
.ledger-blog-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:18px;
}

.ledger-lead-article,
.ledger-blog-feature{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:18px;
  padding:18px;
}

.ledger-lead-article-art,
.ledger-blog-feature-visual{
  min-height:220px;
  background:
    linear-gradient(135deg, rgba(176,74,47,.18), rgba(240,222,203,.9)),
    linear-gradient(180deg,#f5ecdf 0%, #efe5d7 100%);
}

.ledger-lead-article-copy h3,
.ledger-blog-feature-copy h2{
  margin:6px 0 10px;
  font-size:36px;
  line-height:1.04;
}

.ledger-article-row,
.ledger-blog-row{
  padding:18px;
}

.ledger-article-row h4,
.ledger-blog-row h3{
  margin:6px 0 0;
  font-size:22px;
  line-height:1.18;
}

.ledger-note{
  padding:22px;
}

.ledger-note h3{
  margin:0 0 10px;
  font-size:30px;
  line-height:1.08;
}

.ledger-search{
  padding:18px 20px;
}

.ledger-search-label{
  display:block;
  margin-bottom:8px;
  color:var(--ledger-muted);
  font-size:13px;
  font-weight:700;
}

.ledger-search-input{
  width:100%;
  padding:14px 15px;
  border:1px solid var(--ledger-line);
  background:#fff;
  color:var(--ledger-text);
  font:inherit;
}

.ledger-chip-list a{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  background:var(--ledger-soft);
  border:1px solid var(--ledger-line);
  color:#5f5851;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.ledger-directory-section{
  padding:20px;
}

.ledger-directory-title{
  display:flex;
  align-items:center;
  gap:12px;
}

.ledger-directory-description{
  margin:14px 0 0;
}

.ledger-tool-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 20px;
  margin-top:16px;
}

.ledger-tool-item{
  padding-top:12px;
  border-top:1px solid #ece3d7;
}

.ledger-tool-item h3{
  margin:0;
  font-size:18px;
  line-height:1.24;
}

.ledger-tool-item p{
  margin:6px 0 0;
  font-size:14px;
}

.ledger-simple-head{
  background:var(--ledger-paper);
  border:1px solid var(--ledger-line);
  padding:24px;
}

.ledger-empty{
  margin-top:14px;
  padding:18px;
}

.ledger-empty h3{
  margin:0 0 6px;
  font-size:24px;
}

.ledger-footer{
  margin-top:26px;
  padding:26px 0 38px;
  border-top:1px solid #e0d7cb;
}

.ledger-footer-grid{
  display:grid;
  gap:16px;
}

.ledger-footer-head strong{
  display:block;
  font-size:24px;
}

.ledger-footer-head p,
.ledger-footer-meta{
  margin:6px 0 0;
  color:var(--ledger-muted);
  font-size:14px;
}

.ledger-footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
}

.ledger-footer-links a{
  color:#4e4a44;
  font-size:14px;
  font-weight:700;
}

.ledger-footer-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
}

@media (max-width: 980px){
  .ledger-hero-grid,
  .ledger-editorial-grid,
  .ledger-blog-grid,
  .ledger-tool-grid{
    grid-template-columns:1fr;
  }

  .ledger-lead-article,
  .ledger-blog-feature{
    grid-template-columns:1fr;
  }
}

@media (max-width: 740px){
  .ledger-menu{
    display:none;
  }

  .wrap{
    padding:0 16px;
  }

  .ledger-hero-main h1,
  .ledger-simple-head h1{
    font-size:40px;
  }

  .ledger-category-row{
    grid-template-columns:1fr;
  }

  .ledger-category-top,
  .ledger-directory-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .ledger-category-top h3,
  .ledger-directory-title h2,
  .ledger-note h3,
  .ledger-lead-article-copy h3,
  .ledger-blog-feature-copy h2{
    font-size:28px;
  }
}

.future-story-visual,
.future-trust-visual{
  background:linear-gradient(135deg, rgba(15,108,134,.10), rgba(78,115,223,.12));
  border-color:rgba(78,115,223,.14);
  color:#385d84;
}

.ledger-trust-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.ledger-trust-item{
  padding:18px;
  background:var(--ledger-paper);
  border:1px solid var(--ledger-line);
}

.ledger-trust-item h3{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.14;
}

.ledger-trust-item p:last-child{
  margin:0;
  color:var(--ledger-muted);
  line-height:1.74;
}

.ledger-lead-article-art,
.ledger-blog-feature-visual,
.ledger-article-row-media,
.ledger-blog-row-visual,
.blog-card-visual{
  display:block;
  overflow:hidden;
}

.ledger-lead-article-art img,
.ledger-blog-feature-visual img,
.ledger-article-row-media img,
.ledger-blog-row-visual img,
.blog-card-visual img,
.article-hero-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ledger-lead-article-art,
.ledger-blog-feature-visual{
  min-height:220px;
  border:1px solid #ece3d7;
  background:#f6f1ea;
}

.ledger-article-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) 132px;
  gap:16px;
  align-items:center;
}

.ledger-article-row-media{
  height:96px;
  border:1px solid #ece3d7;
  background:#f6f1ea;
}

.ledger-blog-row{
  display:grid;
  grid-template-columns:188px minmax(0,1fr);
  gap:18px;
  align-items:start;
}

.ledger-blog-row-visual{
  height:144px;
  border:1px solid #ece3d7;
  background:#f6f1ea;
}

.ledger-blog-row-copy p:last-child{
  margin-bottom:0;
}

.article-hero-shell{
  padding-bottom:12px;
}

.article-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:22px;
  align-items:start;
}

.article-hero-copy h1{
  margin:0;
}

.article-hero-media{
  min-height:280px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f4f6f8;
}

.article-hero-media img{
  min-height:280px;
}

.blog-card-visual{
  aspect-ratio:16 / 10;
  margin-bottom:16px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#f3f4f6;
}

@media (max-width: 980px){
  .ledger-trust-strip,
  .article-hero-grid{
    grid-template-columns:1fr;
  }

  .ledger-blog-row{
    grid-template-columns:1fr;
  }
}

@media (max-width: 740px){
  .ledger-article-row{
    grid-template-columns:1fr;
  }

  .ledger-article-row-media{
    height:120px;
  }
}

.blog-news-shell{
  display:grid;
  gap:14px;
  padding:28px;
  background:var(--ledger-paper);
  border:1px solid var(--ledger-line);
}

.blog-news-head h1{
  margin:0;
  max-width:980px;
  font-size:58px;
  line-height:.98;
}

.blog-news-head p:last-child{
  max-width:820px;
}

.blog-news-topline{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  padding-top:14px;
  border-top:1px solid #ece3d7;
}

.blog-news-date{
  color:#6f655c;
  font-size:13px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.blog-news-cats{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.blog-news-cats span{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border:1px solid #e5dccf;
  background:#faf7f2;
  color:#5b554d;
  font-size:12px;
  font-weight:700;
}

.blog-news-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) 360px;
  gap:18px;
  align-items:start;
}

.blog-news-lead,
.blog-news-headlines,
.blog-news-strip-item,
.blog-news-note,
.blog-news-archive-row{
  background:var(--ledger-paper);
  border:1px solid var(--ledger-line);
}

.blog-news-lead{
  display:grid;
  grid-template-columns:minmax(0,1fr);
}

.blog-news-lead-visual{
  display:block;
  aspect-ratio:16 / 9;
  overflow:hidden;
  background:#f5f1ea;
  border-bottom:1px solid #ece3d7;
}

.blog-news-lead-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.blog-news-lead-copy{
  padding:22px;
}

.blog-news-lead-copy h2{
  margin:6px 0 10px;
  font-size:42px;
  line-height:1.02;
}

.blog-news-lead-copy h2 a,
.blog-news-headline h3 a,
.blog-news-strip-item h3 a,
.blog-news-archive-copy h3 a{
  color:var(--ledger-text);
  text-decoration:none;
}

.blog-news-lead-copy h2 a:hover,
.blog-news-headline h3 a:hover,
.blog-news-strip-item h3 a:hover,
.blog-news-archive-copy h3 a:hover{
  color:var(--ledger-accent);
}

.blog-news-headlines{
  padding:20px;
}

.blog-news-headlines-head{
  padding-bottom:14px;
  border-bottom:1px solid #ece3d7;
}

.blog-news-headlines-head h2{
  margin:0;
  font-size:28px;
  line-height:1.08;
}

.blog-news-headline-list{
  display:grid;
  gap:0;
}

.blog-news-headline{
  padding:16px 0;
  border-bottom:1px solid #ece3d7;
}

.blog-news-headline:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.blog-news-headline h3{
  margin:6px 0 8px;
  font-size:22px;
  line-height:1.14;
}

.blog-news-headline p:last-child,
.blog-news-strip-item p:last-child,
.blog-news-note p:last-child,
.blog-news-archive-copy p:last-child{
  margin-bottom:0;
  color:var(--ledger-muted);
  line-height:1.76;
}

.blog-news-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.blog-news-strip-item{
  padding:18px;
}

.blog-news-strip-item h3{
  margin:6px 0 8px;
  font-size:24px;
  line-height:1.12;
}

.blog-news-utility{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:18px;
  align-items:start;
}

.blog-news-note{
  padding:20px;
}

.blog-news-note h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.08;
}

.blog-news-archive{
  display:grid;
  gap:12px;
}

.blog-news-archive-row{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:18px;
  padding:18px;
  align-items:start;
}

.blog-news-archive-visual{
  display:block;
  height:154px;
  overflow:hidden;
  background:#f5f1ea;
}

.blog-news-archive-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.blog-news-archive-copy h3{
  margin:6px 0 8px;
  font-size:28px;
  line-height:1.08;
}

.blog-news-pagination{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid #ece3d7;
}

.blog-news-page-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.blog-news-page-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 12px;
  border:1px solid #e5dccf;
  background:#fff;
  color:var(--ledger-text);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.blog-news-page-link:hover{
  color:var(--ledger-accent);
  border-color:#d9cbb9;
}

.blog-news-page-link.is-active{
  background:var(--ledger-text);
  border-color:var(--ledger-text);
  color:#fff;
}

.blog-news-page-nav{
  min-width:96px;
}

@media (max-width: 980px){
  .blog-news-grid,
  .blog-news-utility,
  .blog-news-strip{
    grid-template-columns:1fr;
  }

  .blog-news-topline{
    flex-direction:column;
    align-items:flex-start;
  }

  .ledger-tool-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 740px){
  .blog-news-shell{
    padding:22px 18px;
  }

  .blog-news-head h1{
    font-size:40px;
  }

  .blog-news-lead-copy h2,
  .blog-news-archive-copy h3{
    font-size:30px;
  }

  .blog-news-archive-row{
    grid-template-columns:1fr;
  }

  .blog-news-pagination{
    flex-direction:column;
    align-items:flex-start;
  }
}

.wrap{
  max-width:1320px;
  padding:0 18px;
}

.ledger-page{
  padding-bottom:8px;
}

.ledger-hero{
  padding:18px 0 14px;
}

.ledger-hero-compact{
  padding-top:12px;
}

.ledger-section{
  padding:14px 0;
}

.ledger-section-tight{
  padding-top:4px;
}

.ledger-section-soft{
  padding-top:18px;
}

.ledger-section-head{
  margin-bottom:12px;
}

.ledger-section-head h2{
  font-size:32px;
}

.ledger-hero-main,
.ledger-simple-head,
.ledger-stat-block,
.ledger-category-row,
.ledger-search,
.ledger-directory-section,
.ledger-note,
.ledger-trust-item{
  padding:20px;
}

.ledger-hero-grid,
.ledger-editorial-grid,
.ledger-blog-grid,
.blog-news-grid,
.blog-news-utility{
  gap:14px;
}

.ledger-trust-strip,
.ledger-category-list,
.ledger-directory-stack,
.ledger-article-list,
.ledger-blog-feed,
.blog-news-strip,
.blog-news-archive{
  gap:10px;
}

.ledger-trust-strip,
.blog-news-strip{
  grid-auto-rows:1fr;
}

.ledger-trust-item,
.blog-news-strip-item{
  height:100%;
}

.ledger-category-row{
  grid-template-columns:64px minmax(0,1fr);
  gap:16px;
}

.ledger-category-top h3,
.ledger-directory-title h2{
  font-size:26px;
}

.ledger-tool-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px 18px;
  margin-top:14px;
}

.ledger-tool-item{
  padding-top:10px;
}

.ledger-tool-item h3{
  font-size:17px;
}

.ledger-note h3,
.blog-news-note h3{
  font-size:26px;
}

.ledger-search{
  padding:16px 18px;
}

.ledger-search-input{
  padding:13px 14px;
}

.ledger-lead-article,
.ledger-blog-feature{
  gap:16px;
  padding:16px;
}

.ledger-article-row{
  gap:14px;
  padding:16px;
}

.blog-news-shell{
  padding:24px;
}

.blog-news-head h1{
  font-size:54px;
}

.blog-news-lead-copy,
.blog-news-headlines,
.blog-news-strip-item,
.blog-news-note,
.blog-news-archive-row{
  padding:18px;
}

.blog-news-archive-row{
  gap:16px;
}

.blog-news-archive-copy h3{
  font-size:26px;
}

.ledger-topbar{
  padding:14px 0 10px;
}

.ledger-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 18px;
  border:1px solid rgba(215, 204, 188, .92);
  border-radius:24px;
  background:rgba(255, 255, 255, .92);
  box-shadow:0 16px 42px rgba(36, 32, 28, .08);
  backdrop-filter:blur(10px);
}

.ledger-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
}

.ledger-brand-mark,
.ledger-footer-brand-mark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  border-radius:16px;
  background:linear-gradient(180deg, #ffffff 0%, #f4eee6 100%);
  border:1px solid rgba(221, 210, 194, .92);
  box-shadow:0 10px 24px rgba(60, 49, 37, .12);
  overflow:hidden;
}

.ledger-brand-mark{
  width:48px;
  height:48px;
}

.ledger-brand-mark img,
.ledger-footer-brand-mark img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.ledger-brand .brand-copy strong{
  font-size:21px;
  letter-spacing:-.02em;
}

.ledger-brand .brand-copy small{
  color:#756c63;
}

.ledger-menu{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.ledger-menu a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  border:1px solid transparent;
  color:#4c4741;
  background:transparent;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
  transition:.18s ease background,.18s ease color,.18s ease border-color,.18s ease box-shadow,.18s ease transform;
}

.ledger-menu a:hover{
  transform:translateY(-1px);
  background:#f7f3ee;
  border-color:#e6ddd1;
  color:var(--ledger-text);
  box-shadow:0 10px 20px rgba(62, 50, 38, .07);
}

.ledger-menu a.active{
  background:var(--ledger-text);
  border-color:var(--ledger-text);
  color:#fff;
  box-shadow:0 12px 22px rgba(31, 28, 25, .18);
}

.ledger-menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  width:48px;
  height:48px;
  padding:0;
  border:1px solid #dccfbe;
  border-radius:16px;
  background:#fff;
  color:var(--ledger-text);
  box-shadow:0 10px 22px rgba(55, 44, 33, .08);
  cursor:pointer;
  transition:.18s ease background,.18s ease border-color,.18s ease box-shadow,.18s ease transform;
}

.ledger-menu-toggle:hover{
  transform:translateY(-1px);
  background:#faf6f1;
  border-color:#d2c3b1;
  box-shadow:0 14px 26px rgba(55, 44, 33, .12);
}

.ledger-menu-toggle:focus-visible{
  outline:2px solid var(--ledger-text);
  outline-offset:3px;
}

.ledger-menu-toggle-line{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:.18s ease transform,.18s ease opacity;
}

.ledger-hero-main,
.ledger-simple-head,
.ledger-stat-block,
.ledger-category-row,
.ledger-search,
.ledger-directory-section,
.ledger-note,
.ledger-trust-item,
.ledger-lead-article,
.ledger-article-row,
.blog-news-lead,
.blog-news-headlines,
.blog-news-strip-item,
.blog-news-note,
.blog-news-archive-row,
.article-hero,
.article-body,
.sidebar-card,
.blog-card,
.ledger-empty{
  border-radius:24px;
  box-shadow:0 16px 34px rgba(44, 38, 32, .07);
}

.ledger-lead-article-art,
.ledger-blog-feature-visual,
.ledger-article-row-media,
.ledger-blog-row-visual,
.blog-card-visual,
.blog-news-lead-visual,
.blog-news-archive-visual,
.article-hero-media{
  border-radius:18px;
  overflow:hidden;
}

.ledger-footer{
  margin-top:24px;
  padding:18px 0 34px;
  border-top:none;
}

.ledger-footer-grid{
  gap:14px;
  padding:22px 24px;
  border:1px solid rgba(215, 204, 188, .92);
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,244,238,.98) 100%);
  box-shadow:0 18px 40px rgba(40, 33, 28, .09);
}

.ledger-footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.ledger-footer-brand-mark{
  width:44px;
  height:44px;
}

.ledger-footer-head strong{
  font-size:22px;
  letter-spacing:-.02em;
}

.ledger-footer-links{
  gap:10px 12px;
}

.ledger-footer-links a{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 12px;
  border-radius:14px;
  background:#fff;
  border:1px solid #e5dccf;
  box-shadow:0 10px 20px rgba(61, 50, 37, .05);
}

.ledger-footer-meta{
  align-items:center;
}

.ledger-footer-meta a{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 10px;
  border-radius:12px;
  background:#fff;
  border:1px solid #e5dccf;
}

@media (max-width: 980px){
  .ledger-nav{
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
  }

  .ledger-brand{
    flex:1 1 auto;
  }

  .ledger-menu-toggle{
    display:inline-flex;
  }

  .ledger-menu{
    width:100%;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    padding-top:4px;
  }

  .ledger-nav.is-menu-open .ledger-menu{
    display:flex;
  }

  .ledger-nav.is-menu-open .ledger-menu-toggle-line:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .ledger-nav.is-menu-open .ledger-menu-toggle-line:nth-child(2){
    opacity:0;
  }

  .ledger-nav.is-menu-open .ledger-menu-toggle-line:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .ledger-menu a{
    width:100%;
    justify-content:flex-start;
    padding:0 16px;
  }
}

@media (max-width: 720px){
  .ledger-nav{
    padding:12px 14px;
    border-radius:20px;
  }

  .ledger-brand-mark{
    width:44px;
    height:44px;
  }

  .ledger-brand .brand-copy small{
    display:none;
  }
}
