:root {
  --paper: #f3efe4;
  --paper-deep: #e8e1d2;
  --ink: #17211e;
  --ink-soft: #4e5a55;
  --line: rgba(23, 33, 30, .22);
  --blue: #284cff;
  --blue-deep: #1736cf;
  --acid: #cfff54;
  --coral: #ff765d;
  --white: #fffdf8;
  --shadow: 8px 8px 0 var(--ink);
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { display: block; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--acid);
  border: 2px solid var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.section-shell { width: min(1320px, calc(100% - 64px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 239, 228, .9);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; }
.brand-mark { display: flex; gap: 3px; align-items: end; width: 29px; height: 30px; padding: 5px; border: 2px solid var(--ink); border-radius: 50%; transform: rotate(-7deg); }
.brand-mark i { display: block; width: 4px; background: var(--ink); }
.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 12px; }
.brand-mark i:nth-child(3) { height: 17px; background: var(--blue); }
.brand-copy { font-size: 15px; font-weight: 800; letter-spacing: -.045em; line-height: .92; max-width: 102px; }
.brand-copy span { display: block; color: var(--blue); }
.site-nav { display: flex; gap: 30px; align-items: center; }
.site-nav a, .footer-bottom a { position: relative; font-size: 13px; font-weight: 700; }
.site-nav a::after, .footer-bottom a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  content: "";
  background: var(--blue);
  transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after, .footer-bottom a:hover::after { right: 0; }
.header-cta { justify-self: end; display: flex; gap: 16px; align-items: center; padding: 10px 14px; border: 1px solid var(--ink); font-size: 13px; font-weight: 800; transition: background .2s ease, color .2s ease; }
.header-cta:hover { color: var(--white); background: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .95fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-block: 86px;
}
.eyebrow, .kicker { margin: 0 0 21px; font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { display: inline-block; margin-right: 12px; padding: 6px 9px; color: var(--white); background: var(--blue); transform: rotate(-1deg); }
h1, h2, h3, p { text-wrap: pretty; }
h1 { max-width: 750px; margin: 0; font-size: clamp(64px, 7.3vw, 116px); font-weight: 800; letter-spacing: -.075em; line-height: .82; }
h1 em { display: block; margin-top: .08em; color: var(--blue); font-family: var(--serif); font-weight: 400; letter-spacing: -.06em; }
.hero-deck { max-width: 660px; margin: 38px 0 0; color: var(--ink-soft); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 20px; min-height: 52px; padding: 13px 18px; border: 2px solid var(--ink); font-size: 13px; font-weight: 850; }
.button-primary { background: var(--acid); box-shadow: 5px 5px 0 var(--ink); transition: transform .18s ease, box-shadow .18s ease; }
.button-primary:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.button-ink { color: var(--white); background: var(--ink); }
.text-link { font-size: 13px; font-weight: 850; border-bottom: 1px solid var(--ink); }
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 650px; margin: 62px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); }
.proof-strip div { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: end; padding-right: 22px; }
.proof-strip dt { font-family: var(--serif); font-size: 38px; line-height: .8; }
.proof-strip dd { max-width: 86px; margin: 0; color: var(--ink-soft); font-size: 10px; font-weight: 750; line-height: 1.25; text-transform: uppercase; }

.hero-map { position: relative; aspect-ratio: 1 / 1.02; border: 2px solid var(--ink); background: #f9f6ee; box-shadow: var(--shadow); overflow: hidden; }
.map-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 12.5% 12.5%; }
.map-axis { position: absolute; background: var(--ink); opacity: .75; }
.map-axis-x { left: 8%; right: 8%; top: 50%; height: 1px; }
.map-axis-y { top: 8%; bottom: 8%; left: 50%; width: 1px; }
.map-label { position: absolute; z-index: 3; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: #f9f6ee; }
.map-label-top { top: 13px; left: 50%; transform: translateX(-50%); }
.map-label-bottom { bottom: 13px; left: 50%; transform: translateX(-50%); }
.map-label-left { left: 8px; top: 50%; transform: rotate(-90deg) translateX(-50%); transform-origin: top left; }
.map-label-right { right: 8px; top: 50%; transform: rotate(90deg) translateX(50%); transform-origin: top right; }
.tool-node { position: absolute; z-index: 2; left: var(--x); top: var(--y); display: flex; align-items: center; gap: 7px; animation: node-float 4s ease-in-out var(--delay) infinite; }
.tool-node span { display: grid; place-items: center; width: 44px; height: 44px; border: 2px solid var(--ink); border-radius: 50%; color: var(--white); background: var(--blue); font-size: 10px; font-weight: 900; box-shadow: 3px 3px 0 var(--ink); }
.tool-node b { padding: 3px 6px; border: 1px solid var(--ink); background: var(--white); font-size: 8px; text-transform: uppercase; }
.node-powerbi { --x: 29%; --y: 28%; --delay: -.4s; }
.node-tableau { --x: 68%; --y: 36%; --delay: -1.2s; }
.node-tableau span { background: var(--coral); }
.node-zoho { --x: 18%; --y: 65%; --delay: -2s; }
.node-zoho span { color: var(--ink); background: var(--acid); }
.node-metabase { --x: 57%; --y: 72%; --delay: -.8s; }
.node-metabase span { background: var(--ink); }
.node-thoughtspot { --x: 76%; --y: 16%; --delay: -1.7s; }
.node-thoughtspot span { color: var(--ink); background: var(--white); }
.map-stamp { position: absolute; right: 8%; bottom: 9%; z-index: 1; display: grid; place-items: center; width: 86px; height: 86px; border: 2px dashed var(--blue); border-radius: 50%; color: var(--blue); font-family: var(--serif); font-size: 17px; font-style: italic; font-weight: 700; line-height: .86; text-align: center; transform: rotate(-12deg); }
@keyframes node-float { 50% { transform: translateY(-7px); } }

.ticker { overflow: hidden; color: var(--white); background: var(--blue); border-block: 2px solid var(--ink); transform: rotate(-.4deg) scale(1.01); }
.ticker-track { display: flex; width: max-content; gap: 34px; align-items: center; padding: 13px 0; font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; animation: marquee 28s linear infinite; }
.ticker-track i { color: var(--acid); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.finder { padding-block: 140px; }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 50px; }
.section-heading h2, .method h2, .explain h2, .newsletter h2 { margin: 0; font-size: clamp(46px, 5vw, 78px); font-weight: 780; letter-spacing: -.06em; line-height: .94; }
.section-heading > p { max-width: 420px; margin: 0; color: var(--ink-soft); font-size: 16px; }
.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.route-card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 22px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transition: background .2s ease, transform .2s ease; }
.route-card:hover { z-index: 2; background: var(--white); transform: translateY(-7px); }
.route-card-featured { background: var(--acid); }
.route-no { font-family: var(--serif); font-size: 13px; font-style: italic; }
.route-icon { display: grid; place-items: center; width: 100%; height: 115px; margin: 24px 0 28px; }
.route-icon svg { width: 120px; fill: none; stroke: var(--ink); stroke-width: 2; }
.route-card h3 { margin: 0; font-size: 27px; letter-spacing: -.04em; line-height: 1.02; }
.route-card p { margin: 14px 0 25px; color: var(--ink-soft); font-size: 13px; }
.route-link { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 850; text-transform: uppercase; }
.route-link b { font-size: 18px; }
.icon-orbit { position: relative; }
.icon-orbit i { position: absolute; width: 112px; height: 45px; border: 2px solid var(--ink); border-radius: 50%; transform: rotate(25deg); }
.icon-orbit i:nth-child(2) { transform: rotate(-25deg); }
.icon-orbit b { display: grid; place-items: center; width: 48px; height: 48px; border: 2px solid var(--ink); border-radius: 50%; background: var(--blue); color: var(--white); font-size: 13px; z-index: 1; }
.icon-pulse span { position: relative; width: 140px; height: 60px; background: linear-gradient(transparent 48%, var(--ink) 48%, var(--ink) 52%, transparent 52%); }
.icon-pulse span::after { position: absolute; inset: 0; content: ""; background: var(--ink); clip-path: polygon(0 48%, 25% 48%, 32% 22%, 43% 72%, 51% 37%, 59% 55%, 70% 48%, 100% 48%, 100% 52%, 68% 52%, 60% 61%, 52% 45%, 43% 82%, 32% 33%, 27% 52%, 0 52%); }
.icon-blocks { display: flex; gap: 6px; align-items: end; }
.icon-blocks i { width: 30px; border: 2px solid var(--ink); background: var(--coral); }
.icon-blocks i:nth-child(1) { height: 42px; }
.icon-blocks i:nth-child(2) { height: 72px; background: var(--blue); }
.icon-blocks i:nth-child(3) { height: 100px; background: var(--acid); }

.tools-section { padding-block: 120px; color: var(--white); background: var(--ink); }
.tools-heading .kicker { color: var(--acid); }
.tools-heading > p { color: rgba(255,255,255,.62); }
.tool-controls { display: flex; justify-content: space-between; gap: 30px; align-items: center; padding-block: 18px; border-block: 1px solid rgba(255,255,255,.22); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { padding: 8px 12px; border: 1px solid rgba(255,255,255,.34); border-radius: 99px; color: var(--white); background: transparent; font-size: 11px; font-weight: 750; cursor: pointer; transition: .2s ease; }
.filter-chip span { opacity: .58; margin-left: 3px; }
.filter-chip:hover, .filter-chip.is-active { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.tool-search { display: flex; gap: 8px; align-items: center; min-width: 220px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.5); }
.tool-search svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.tool-search input { width: 100%; border: 0; outline: 0; color: var(--white); background: transparent; font-size: 12px; }
.tool-search input::placeholder { color: rgba(255,255,255,.54); }
.results-note { margin: 18px 0; color: rgba(255,255,255,.48); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.23); border-left: 1px solid rgba(255,255,255,.23); }
.tool-card { display: flex; flex-direction: column; min-height: 420px; padding: 26px; border-right: 1px solid rgba(255,255,255,.23); border-bottom: 1px solid rgba(255,255,255,.23); transition: color .25s ease, background .25s ease; }
.tool-card[hidden] { display: none; }
.tool-card:hover { color: var(--ink); background: var(--white); }
.tool-card-lead { color: var(--ink); background: var(--acid); }
.tool-topline { display: flex; justify-content: space-between; align-items: start; }
.tool-monogram { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid currentColor; border-radius: 50%; font-size: 11px; font-weight: 900; background: var(--blue); color: var(--white); }
.tool-card-lead .tool-monogram { color: var(--white); }
.mono-tableau { background: var(--coral); }
.mono-qlik, .mono-metabase { background: #165c50; }
.mono-looker { background: #3268d9; }
.mono-thoughtspot { color: var(--ink); background: var(--acid); }
.mono-zoho { color: var(--ink); background: var(--white); }
.mono-sisense { background: #7b4dff; }
.mono-gooddata { color: var(--ink); background: #70e1d1; }
.mono-domo { background: #704bb8; }
.mono-alteryx { background: #1176c9; }
.mono-julius { color: var(--ink); background: #ffc567; }
.tool-tag { padding: 5px 8px; border: 1px solid currentColor; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.tool-card h3 { margin: 36px 0 12px; font-size: 28px; letter-spacing: -.045em; }
.tool-card > p { min-height: 68px; margin: 0 0 24px; color: rgba(255,255,255,.62); font-size: 13px; }
.tool-card:hover > p, .tool-card-lead > p { color: var(--ink-soft); }
.fit-row, .score-row { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 10px 0; border-top: 1px solid currentColor; font-size: 10px; text-transform: uppercase; }
.fit-row strong { text-align: right; }
.score-row b { font-family: var(--serif); font-size: 28px; font-style: italic; line-height: 1; }
.score-row small { font-family: var(--sans); font-size: 9px; font-style: normal; }
.tool-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 22px; font-size: 11px; font-weight: 850; text-transform: uppercase; }
.tools-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 38px; }
.tools-footer p { margin: 0; font-family: var(--serif); font-size: 22px; font-style: italic; }
.tools-footer .button-ink { border-color: var(--white); }

.method { display: grid; grid-template-columns: .9fr 1.15fr .65fr; gap: clamp(36px, 5vw, 80px); align-items: start; padding-block: 150px; }
.method-intro > p:not(.kicker) { max-width: 480px; margin: 28px 0; color: var(--ink-soft); }
.method-list { margin: 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.method-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.method-list li > span { font-family: var(--serif); font-style: italic; }
.method-list h3 { margin: 0 0 5px; font-size: 18px; letter-spacing: -.02em; }
.method-list p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.method-note { position: relative; margin-top: 35px; padding: 44px 25px 25px; border: 1px solid var(--ink); background: var(--acid); box-shadow: 6px 6px 0 var(--ink); transform: rotate(2deg); }
.tape { position: absolute; top: -12px; left: 50%; width: 80px; height: 25px; background: rgba(255,255,255,.65); transform: translateX(-50%) rotate(-4deg); }
.method-note > p { margin: 0 0 46px; font-family: var(--serif); font-size: 30px; line-height: 1.05; }
.method-note dl { margin: 0; }
.method-note dl div { display: flex; justify-content: space-between; gap: 15px; padding: 9px 0; border-top: 1px solid var(--ink); font-size: 9px; text-transform: uppercase; }
.method-note dd { margin: 0; font-weight: 850; text-align: right; }

.categories { padding-block: 120px; background: var(--paper-deep); border-block: 1px solid var(--line); }
.category-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--ink); }
.category-list a { display: grid; grid-template-columns: 110px 1fr auto; gap: 22px; align-items: center; min-height: 88px; padding: 16px 18px; border-bottom: 1px solid var(--line); transition: padding .2s ease, background .2s ease; }
.category-list a:nth-child(odd) { border-right: 1px solid var(--line); }
.category-list a:hover { padding-left: 28px; background: var(--acid); }
.category-list span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.category-list strong { font-size: clamp(17px, 1.5vw, 23px); letter-spacing: -.03em; }
.category-list i { font-size: 20px; font-style: normal; }

.explain { display: grid; grid-template-columns: .5fr 1.6fr .55fr; gap: 50px; padding-block: 120px; border-bottom: 1px solid var(--line); }
.explain-label span { display: inline-block; padding: 5px 8px; border: 1px solid var(--ink); font-size: 9px; font-weight: 850; text-transform: uppercase; transform: rotate(-3deg); }
.explain-copy h2 { font-size: clamp(38px, 4vw, 64px); }
.explain-copy p { max-width: 850px; margin: 30px 0 0; color: var(--ink-soft); font-family: var(--serif); font-size: clamp(20px, 2vw, 28px); line-height: 1.35; }
.explain-links { display: flex; flex-direction: column; gap: 12px; padding-top: 10px; }
.explain-links a { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.newsletter { display: grid; grid-template-columns: 130px 1fr .8fr; gap: 50px; align-items: center; margin-block: 95px; padding: 50px; border: 2px solid var(--ink); color: var(--white); background: var(--blue); box-shadow: var(--shadow); }
.newsletter .kicker { color: var(--acid); }
.newsletter h2 { max-width: 660px; font-size: clamp(36px, 4.2vw, 64px); }
.newsletter-mark { position: relative; display: grid; place-items: center; width: 120px; height: 120px; border: 2px solid var(--white); border-radius: 50%; }
.newsletter-mark::before, .newsletter-mark::after { position: absolute; inset: 12px; content: ""; border: 1px solid var(--acid); border-radius: 50%; transform: rotate(38deg) scaleY(.35); }
.newsletter-mark::after { transform: rotate(-38deg) scaleY(.35); }
.newsletter-mark span { font-family: var(--serif); font-size: 48px; font-style: italic; }
.signup-form { display: grid; grid-template-columns: 1fr auto; align-items: end; }
.signup-form label { display: block; }
.signup-form input { width: 100%; height: 52px; padding: 0 14px; border: 1px solid var(--white); border-radius: 0; outline: 0; color: var(--white); background: transparent; }
.signup-form input::placeholder { color: rgba(255,255,255,.6); }
.signup-form input:focus { box-shadow: inset 0 0 0 2px var(--acid); }
.signup-form button { height: 52px; padding: 0 16px; border: 1px solid var(--acid); background: var(--acid); font-size: 11px; font-weight: 850; cursor: pointer; }
.signup-form > p { grid-column: 1 / -1; margin: 9px 0 0; color: rgba(255,255,255,.64); font-size: 9px; }

.site-footer { color: var(--white); background: var(--ink); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; min-height: 160px; }
.brand-footer .brand-mark { border-color: var(--white); }
.brand-footer .brand-mark i { background: var(--white); }
.brand-footer .brand-mark i:nth-child(3) { background: var(--acid); }
.brand-footer .brand-copy span { color: var(--acid); }
.footer-top > p { color: rgba(255,255,255,.58); font-family: var(--serif); font-style: italic; }
.back-top { font-size: 11px; font-weight: 850; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; align-items: center; min-height: 78px; border-top: 1px solid rgba(255,255,255,.22); }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-bottom p { color: rgba(255,255,255,.43); font-size: 10px; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; gap: 6px; justify-self: end; padding: 12px; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .site-header.menu-open { background: var(--paper); }
  .site-header.menu-open .site-nav { position: absolute; top: 78px; left: 0; right: 0; display: flex; flex-direction: column; gap: 0; align-items: stretch; padding: 18px 32px 30px; border-bottom: 2px solid var(--ink); background: var(--paper); }
  .site-header.menu-open .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .site-header.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr 440px; gap: 45px; }
  h1 { font-size: clamp(58px, 7vw, 82px); }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .route-card { min-height: 390px; }
  .method { grid-template-columns: 1fr 1.2fr; }
  .method-note { grid-column: 2; margin-top: 0; }
  .newsletter { grid-template-columns: 100px 1fr; }
  .newsletter-mark { width: 90px; height: 90px; }
  .signup-form { grid-column: 2; }
}

@media (max-width: 820px) {
  .section-shell { width: min(100% - 36px, 680px); }
  .site-header { min-height: 68px; padding: 0 18px; }
  .site-header.menu-open .site-nav { top: 68px; padding-inline: 18px; }
  .hero { display: block; min-height: 0; padding-block: 65px 80px; }
  h1 { font-size: clamp(58px, 15vw, 94px); }
  .hero-deck { font-size: 17px; }
  .hero-map { max-width: 560px; margin: 70px auto 0; }
  .finder, .method { padding-block: 95px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .tool-controls { align-items: end; }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-card { min-height: 400px; }
  .method { grid-template-columns: 1fr; }
  .method-note { grid-column: auto; max-width: 360px; }
  .category-list { grid-template-columns: 1fr; }
  .category-list a:nth-child(odd) { border-right: 0; }
  .explain { grid-template-columns: 1fr; gap: 28px; }
  .newsletter { grid-template-columns: 80px 1fr; gap: 24px; width: calc(100% - 36px); padding: 30px; }
  .newsletter-mark { width: 72px; height: 72px; }
  .newsletter-mark span { font-size: 32px; }
  .signup-form { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .proof-strip { gap: 15px; }
  .proof-strip div { display: block; padding: 0; }
  .proof-strip dd { margin-top: 8px; }
  .tool-node b { display: none; }
  .map-stamp { width: 67px; height: 67px; font-size: 13px; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 360px; }
  .tools-section { padding-block: 85px; }
  .tool-controls { display: block; }
  .tool-search { margin-top: 18px; }
  .tool-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: 390px; }
  .tools-footer { align-items: flex-start; flex-direction: column; gap: 24px; }
  .category-list a { grid-template-columns: 80px 1fr auto; gap: 12px; padding-inline: 4px; }
  .category-list a:hover { padding-left: 10px; }
  .newsletter { display: block; }
  .newsletter-mark { margin-bottom: 30px; }
  .signup-form { display: block; margin-top: 28px; }
  .signup-form button { width: 100%; margin-top: 8px; }
  .footer-top { grid-template-columns: 1fr auto; padding-block: 35px; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
