/* =========================================================
   WebToPin — public site styles (home, about, contact, terms, privacy)
   The app dashboards keep using style.css; this file is separate.
   ========================================================= */

@font-face { font-family: "Abril Fatface"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../fonts/AbrilFatface-Regular.woff2") format("woff2"), url("../fonts/AbrilFatface-Regular.ttf") format("truetype"); }
@font-face { font-family: "Poppins"; font-weight: 400; font-style: normal; font-display: swap;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.ttf") format("truetype"); }
@font-face { font-family: "Poppins"; font-weight: 700; font-style: normal; font-display: swap;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.ttf") format("truetype"); }

:root {
  --ink: #1f1633;
  --ink-soft: #4a4160;
  --paper: #ffffff;
  --wash: #f4f1fa;
  --line: #e2dcef;
  --red: #e60023;
  --red-dark: #b5001b;
  --teal: #0f766e;
  --coral: #ff8a65;
  --butter: #ffd166;
  --plum: #6a3d7c;
  --sage: #a7c9a4;
  --sky: #8ecae6;
  --display: "Abril Fatface", Georgia, "Times New Roman", serif;
  --body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body.wt {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 1rem; line-height: 1.7;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.wt img, .wt svg { max-width: 100%; }
.wt a { color: var(--red); text-underline-offset: 3px; }
.wt a:hover { color: var(--red-dark); }
.wt :focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 4px; }
.wt h1, .wt h2 { font-family: var(--display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 .5em; }
.wt h3, .wt h4 { font-family: var(--body); font-weight: 700; line-height: 1.3; margin: 0 0 .4em; }
.wt p { margin: 0 0 1em; }
.wt ul, .wt ol { margin: 0; padding: 0; }

.wt-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wt-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wt-skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff !important; padding: 10px 16px; border-radius: 8px; z-index: 100; }
.wt-skip:focus { left: 12px; }

/* ---------- Buttons ---------- */
.wt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 16px 28px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s;
}
.wt-btn-primary { background: var(--red); color: #fff !important; }
.wt-btn-primary:hover { background: var(--red-dark); color: #fff; text-decoration: none; }
.wt-btn-ghost { background: transparent; color: var(--ink) !important; border-color: var(--ink); }
.wt-btn-ghost:hover { background: var(--ink); color: #fff !important; text-decoration: none; }
.wt-btn-light { background: #fff; color: var(--ink) !important; }
.wt-btn-light:hover { background: var(--butter); text-decoration: none; }
.wt-btn-sm { padding: 11px 20px; font-size: .9rem; }

/* ---------- Header / menu ---------- */
.wt-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); }
.wt-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 68px; }
.wt-logo { display: inline-flex; align-items: center; gap: 8px; color: var(--ink) !important; font-weight: 700; font-size: 1.35rem; text-decoration: none !important; letter-spacing: -0.02em; }
.wt-logo-mark { color: var(--red); flex-shrink: 0; }
.wt-logo b { color: var(--red); font-weight: 700; }
.wt-nav { display: flex; align-items: center; gap: 28px; }
.wt-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
.wt-nav ul a { display: block; padding: 8px 14px; border-radius: 999px; color: var(--ink); font-size: .95rem; text-decoration: none; }
.wt-nav ul a:hover { background: var(--wash); color: var(--ink); }
.wt-nav ul a[aria-current="page"] { background: var(--wash); font-weight: 700; }
.wt-nav-actions { display: flex; align-items: center; gap: 14px; }
.wt-nav-login { color: var(--ink) !important; font-weight: 700; font-size: .95rem; text-decoration: none; padding: 8px 6px; }
.wt-nav-login:hover { text-decoration: underline; }

.wt-menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.wt-menu-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.wt-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wt-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.wt-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .wt-menu-toggle { display: flex; }
  .wt-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 24px; box-shadow: 0 18px 30px -20px rgba(31,22,51,.35); }
  .wt-nav.is-open { display: flex; }
  .wt-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .wt-nav ul a { padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .wt-nav ul a[aria-current="page"] { background: none; color: var(--red); }
  .wt-nav-actions { margin-top: 18px; flex-direction: column; align-items: stretch; text-align: center; }
  .wt-nav-actions .wt-btn { width: 100%; padding: 15px; }
}

/* ---------- Hero ---------- */
.wt-hero { background: var(--wash); padding: 72px 0 88px; overflow: hidden; }
.wt-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; }
.wt-hero h1 { font-size: clamp(2.7rem, 5.6vw, 4.5rem); margin-bottom: .35em; }
.wt-hero-lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.6rem; }
.wt-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.wt-assure { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: .92rem; color: var(--ink-soft); }
.wt-assure li { display: inline-flex; align-items: center; gap: 8px; }
.wt-assure svg { color: var(--teal); flex-shrink: 0; }

/* Pin wall (decorative) */
.wt-wall { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.wt-col { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.wt-col:nth-child(2) { margin-top: 40px; }
.wt-col:nth-child(3) { margin-top: 12px; }
.wt-pin { min-width: 0;
  position: relative; border-radius: 18px; padding: 14px; overflow: hidden; color: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate;
  animation: wt-drop .75s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--i, 0) * 110ms);
}
.wt-pin::before { content: ""; position: absolute; z-index: -1; }
.wt-pin h3 { font-family: var(--display); font-weight: 400; font-size: 1.28rem; line-height: 1.1; margin: 0 0 6px; overflow-wrap: anywhere; }
.wt-pin small { font-size: .68rem; opacity: .8; }
.wt-chip { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--ink); font-size: .68rem; font-weight: 700; padding: 4px 9px; border-radius: 999px; line-height: 1.4; display: inline-flex; align-items: center; gap: 5px; }
.wt-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }
.wt-pin-a { background: var(--coral); aspect-ratio: 2 / 3; }
.wt-pin-a::before { width: 110%; aspect-ratio: 1; left: -5%; top: 8%; border-radius: 50%; background: #fff3e6; box-shadow: inset 0 0 0 14px #ffd7c2; }
.wt-pin-b { background: var(--teal); color: #fff; aspect-ratio: 3 / 4; }
.wt-pin-b::before { width: 56%; height: 38%; right: 12%; top: 14%; border-radius: 999px 999px 0 0; background: var(--butter); }
.wt-pin-c { background: var(--butter); aspect-ratio: 4 / 5; }
.wt-pin-c::before { inset: 0; background: repeating-linear-gradient(115deg, rgba(31,22,51,.10) 0 14px, transparent 14px 32px); }
.wt-pin-d { background: var(--plum); color: #fff; aspect-ratio: 2 / 3; }
.wt-pin-d::before { width: 70%; aspect-ratio: 1; right: -18%; top: 10%; border-radius: 50%; background: var(--sky); }
.wt-pin-e { background: var(--sage); aspect-ratio: 3 / 4; }
.wt-pin-e::before { width: 38%; height: 34%; left: 14%; top: 16%; background: #fff; border-radius: 8px; transform: rotate(-8deg); box-shadow: 30px 16px 0 -4px var(--teal); }
.wt-pin-f { background: var(--sky); aspect-ratio: 4 / 5; }
.wt-pin-f::before { width: 80%; height: 40%; left: 10%; top: 16%; border-radius: 12px; background: var(--paper); box-shadow: inset 0 -12px 0 var(--coral); }
@media (max-width: 520px) { .wt-pin { padding: 10px; border-radius: 14px; } .wt-pin h3 { font-size: .98rem; } .wt-chip { font-size: .6rem; top: 8px; left: 8px; padding: 3px 7px; } .wt-hero h1 { font-size: 2.5rem; } }
@keyframes wt-drop { from { opacity: 0; transform: translateY(-22px) rotate(-2.5deg); } to { opacity: 1; transform: none; } }

@media (max-width: 920px) {
  .wt-hero { padding: 48px 0 64px; }
  .wt-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .wt-wall { max-width: 520px; }
}

/* ---------- Trust strip ---------- */
.wt-strip { border-bottom: 1px solid var(--line); }
.wt-strip ul { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.wt-strip li { padding: 22px 20px; font-size: .92rem; color: var(--ink-soft); border-right: 1px solid var(--line); }
.wt-strip li:first-child { padding-left: 0; }
.wt-strip li:last-child { border-right: 0; }
.wt-strip strong { display: block; color: var(--ink); font-size: 1rem; }
@media (max-width: 860px) {
  .wt-strip ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wt-strip li { border-bottom: 1px solid var(--line); }
  .wt-strip li:nth-child(2n) { border-right: 0; }
  .wt-strip li:nth-child(odd) { padding-left: 0; }
}

/* ---------- Generic sections ---------- */
.wt-section { padding: 96px 0; }
.wt-section-wash { background: var(--wash); }
.wt-section-head { max-width: 46rem; margin-bottom: 56px; }
.wt-section h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
.wt-section-head p { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 0; }
@media (max-width: 720px) { .wt-section { padding: 64px 0; } .wt-section-head { margin-bottom: 36px; } }

/* ---------- Feature rows ---------- */
.wt-feature { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; padding: 40px 0; border-top: 1px solid var(--line); }
.wt-feature:last-child { border-bottom: 1px solid var(--line); }
.wt-feature h3 { font-size: 1.5rem; letter-spacing: -0.01em; }
.wt-feature p { color: var(--ink-soft); max-width: 40rem; }
.wt-feature ul { list-style: none; display: grid; gap: 10px; margin-top: 4px; }
.wt-feature li { position: relative; padding-left: 30px; color: var(--ink); }
.wt-feature li::before { content: ""; position: absolute; left: 0; top: .5em; width: 16px; height: 9px; border-left: 3px solid var(--teal); border-bottom: 3px solid var(--teal); transform: rotate(-45deg) translateY(-3px); }
@media (max-width: 820px) { .wt-feature { grid-template-columns: minmax(0, 1fr); gap: 12px; padding: 30px 0; } }

/* ---------- Steps ---------- */
.wt-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.wt-step { position: relative; padding: 0 28px 0 0; }
.wt-step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
  background: var(--ink); color: #fff; font-family: var(--display); font-size: 1.5rem; margin-bottom: 20px; position: relative; z-index: 1;
}
.wt-step::after { content: ""; position: absolute; top: 26px; left: 52px; right: 0; height: 2px; background: repeating-linear-gradient(90deg, var(--ink) 0 8px, transparent 8px 16px); }
.wt-step:last-child::after { display: none; }
.wt-step h3 { font-size: 1.15rem; }
.wt-step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
@media (max-width: 900px) {
  .wt-steps { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .wt-step { padding: 0 0 0 76px; }
  .wt-step::before { position: absolute; left: 0; top: 0; margin: 0; }
  .wt-step::after { top: 52px; left: 25px; right: auto; bottom: -32px; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--ink) 0 8px, transparent 8px 16px); }
}

/* ---------- Design styles showcase ---------- */
.wt-styles { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; align-items: end; }
.wt-style-tile { margin: 0; }
.wt-style-tile .wt-pin { animation: none; aspect-ratio: auto; width: 100%; min-height: 250px; }
.wt-style-tile:nth-child(even) .wt-pin { min-height: 290px; }
.wt-style-tile figcaption { padding-top: 12px; font-size: .92rem; color: var(--ink-soft); }
.wt-style-tile figcaption strong { display: block; color: var(--ink); }
@media (max-width: 960px) { .wt-styles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .wt-styles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ---------- Use cases ---------- */
.wt-usecases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 56px; }
.wt-usecase { padding: 26px 0; border-top: 1px solid var(--line); }
.wt-usecase h3 { font-size: 1.15rem; }
.wt-usecase p { margin: 0; color: var(--ink-soft); }
@media (max-width: 760px) { .wt-usecases { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Comparison table ---------- */
.wt-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.wt-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .98rem; }
.wt-table th, .wt-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.wt-table thead th { font-weight: 700; background: var(--ink); color: #fff; }
.wt-table thead th:last-child { background: var(--red); }
.wt-table tbody th { font-weight: 700; width: 24%; }
.wt-table tbody td:nth-child(2) { color: var(--ink-soft); }
.wt-table tbody tr:last-child th, .wt-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- Article writer flow ---------- */
.wt-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.wt-split p { color: var(--ink-soft); }
.wt-flow { list-style: none; display: grid; gap: 0; }
.wt-flow li { position: relative; background: #fff; border: 2px solid var(--ink); border-radius: 16px; padding: 16px 20px; font-weight: 700; }
.wt-flow li span { display: block; font-weight: 400; font-size: .9rem; color: var(--ink-soft); }
.wt-flow li + li { margin-top: 26px; }
.wt-flow li + li::before { content: ""; position: absolute; left: 32px; top: -28px; width: 2px; height: 26px; background: var(--ink); }
.wt-flow li:nth-child(1) { background: var(--butter); }
.wt-flow li:nth-child(4) { background: var(--red); color: #fff; border-color: var(--red); }
.wt-flow li:nth-child(4) span { color: #ffe3e7; }
@media (max-width: 860px) { .wt-split { grid-template-columns: minmax(0, 1fr); gap: 36px; } }

/* ---------- FAQ ---------- */
.wt-faq { max-width: 52rem; }
.wt-faq details { border-top: 1px solid var(--line); }
.wt-faq details:last-child { border-bottom: 1px solid var(--line); }
.wt-faq summary { cursor: pointer; list-style: none; padding: 22px 48px 22px 0; font-weight: 700; font-size: 1.08rem; position: relative; }
.wt-faq summary::-webkit-details-marker { display: none; }
.wt-faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: var(--red); transition: transform .2s; }
.wt-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.wt-faq details p { color: var(--ink-soft); padding: 0 48px 22px 0; margin: 0; max-width: 46rem; }

/* ---------- CTA band ---------- */
.wt-cta { background: var(--ink); color: #fff; padding: 88px 0; }
.wt-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.wt-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 22ch; margin: 0 0 .3em; }
.wt-cta p { color: #d9d2ea; margin: 0; max-width: 34rem; }
.wt-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.wt-cta .wt-btn-ghost { color: #fff !important; border-color: #fff; }
.wt-cta .wt-btn-ghost:hover { background: #fff; color: var(--ink) !important; }

/* ---------- Inner pages (about / contact / legal) ---------- */
.wt-page-hero { background: var(--wash); padding: 72px 0 56px; }
.wt-page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 18ch; }
.wt-page-hero p { font-size: 1.15rem; color: var(--ink-soft); max-width: 40rem; margin: 0; }

.wt-prose { padding: 64px 0 24px; }
.wt-prose h2 { font-size: 1.9rem; margin-top: 2.2em; }
.wt-prose h2:first-child { margin-top: 0; }
.wt-prose h3 { font-size: 1.1rem; margin-top: 1.6em; }
.wt-prose p, .wt-prose li { color: #352b4d; }
.wt-prose ul, .wt-prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.wt-prose li { margin-bottom: .45em; }
.wt-toc { background: var(--wash); border-radius: var(--radius); padding: 20px 26px; margin-bottom: 40px; }
.wt-toc strong { display: block; margin-bottom: 8px; }
.wt-toc ol { columns: 2; column-gap: 32px; margin: 0; padding-left: 1.2em; }
.wt-toc li { margin-bottom: .3em; break-inside: avoid; }
@media (max-width: 640px) { .wt-toc ol { columns: 1; } }
.wt-note { border-left: 4px solid var(--red); background: #fff5f6; padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 0 0 1.4em; color: var(--ink); }
.wt-updated { color: var(--ink-soft); font-size: .92rem; margin-bottom: 2rem; }

.wt-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 8px 0 8px; }
.wt-values h3 { font-size: 1.15rem; margin-top: 0; }
.wt-values p { margin: 0; color: var(--ink-soft); font-size: .97rem; }
@media (max-width: 800px) { .wt-values { grid-template-columns: 1fr; gap: 20px; } }

.wt-contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 64px; padding-top: 64px; padding-bottom: 96px; }
.wt-contact-info h2 { font-size: 1.8rem; }
.wt-contact-info dl { margin: 24px 0 0; }
.wt-contact-info dt { font-weight: 700; margin-top: 18px; }
.wt-contact-info dd { margin: 2px 0 0; color: var(--ink-soft); }
.wt-form { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px; }
.wt-field { margin-bottom: 18px; }
.wt-field label { display: block; font-weight: 700; font-size: .92rem; margin-bottom: 6px; }
.wt-field input, .wt-field select, .wt-field textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  padding: 13px 14px; border: 1.5px solid #c9c0dc; border-radius: 10px;
}
.wt-field textarea { min-height: 160px; resize: vertical; }
.wt-field input:focus, .wt-field select:focus, .wt-field textarea:focus { outline: 3px solid var(--ink); outline-offset: 1px; border-color: var(--ink); }
.wt-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.wt-alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: .96rem; }
.wt-alert-ok { background: #e8f6f1; border: 1px solid #a5d8c6; color: #0b4d3f; }
.wt-alert-err { background: #fdecee; border: 1px solid #f5b3bb; color: #7d0016; }
.wt-alert ul { margin: 6px 0 0; padding-left: 1.2em; }
.wt-form .wt-btn { width: 100%; }
@media (max-width: 860px) { .wt-contact { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-top: 40px; padding-bottom: 64px; } .wt-form { padding: 22px; } }

/* ---------- Footer ---------- */
.wt-footer { background: #150e26; color: #cfc7e2; padding: 64px 0 32px; }
.wt-footer a { color: #fff; text-decoration: none; }
.wt-footer a:hover { color: var(--butter); text-decoration: underline; }
.wt-footer .wt-logo { color: #fff !important; }
.wt-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; }
.wt-footer-brand p { margin-top: 14px; font-size: .95rem; max-width: 26rem; }
.wt-footer h2 { font-family: var(--body); font-size: .95rem; font-weight: 700; color: #fff; margin: 0 0 12px; letter-spacing: 0; }
.wt-footer ul { list-style: none; }
.wt-footer li { margin-bottom: 8px; font-size: .95rem; }
.wt-footer-legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid #33284d; font-size: .85rem; }
.wt-footer-legal p { margin: 0 0 6px; }
@media (max-width: 900px) { .wt-footer-grid { grid-template-columns: 1fr 1fr; } .wt-footer-brand { grid-column: 1 / -1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .wt-pin { animation: none; }
  .wt-menu-toggle span, .wt-faq summary::after { transition: none; }
}
