:root {
  --ink: #17191b;
  --muted: #6c7072;
  --line: #d8d9d6;
  --paper: #ffffff;
  --soft: #f2f3f1;
  --mist: #e8ecea;
  --sage: #71877e;
  --charcoal: #242a2d;
  --rakuten: #bf0000;
  --amazon: #232f3e;
  --rail: 60px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.7; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 112px; }

.side-rail {
  position: fixed; inset: 0 auto 0 0; z-index: 50; width: var(--rail);
  background: rgba(255,255,255,.95); border-right: 1px solid #efefed;
}
.menu-toggle {
  position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; padding: 0;
  border: 0; background: transparent; transform: translate(-50%,-50%); cursor: pointer;
}
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 6px auto; background: var(--ink); transition: .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(35deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-35deg); }

.drawer {
  position: fixed; inset: 0 auto 0 var(--rail); z-index: 45; width: min(390px,calc(100vw - var(--rail)));
  background: rgba(255,255,255,.98); border-right: 1px solid var(--line); transform: translateX(-105%); transition: transform .32s ease;
}
.drawer.is-open { transform: translateX(0); }
.drawer__inner { display: flex; flex-direction: column; gap: 18px; height: 100%; padding: 96px 42px; }
.drawer__inner a { padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: 25px; font-weight: 600; }
.drawer__close { align-self: flex-start; padding: 0 0 7px; border: 0; border-bottom: 1px solid; background: transparent; cursor: pointer; }

.site-header {
  position: fixed; inset: 0 0 auto var(--rail); z-index: 40; min-height: 98px;
  background: rgba(255,255,255,.91); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,.035);
}
.notice { margin: 8px 0 0; color: #9a9d9c; font-size: 11px; line-height: 1.2; text-align: center; }
.brand { position: absolute; top: 44px; left: 50%; display: inline-flex; flex-direction: column; align-items: center; line-height: 1; transform: translateX(-50%); }
.brand strong { font-size: 29px; font-weight: 400; }
.brand span { margin-top: 7px; color: #a4a7a5; font-size: 9px; }
.action-dock {
  position: fixed; top: 0; right: 0; z-index: 55; display: grid; grid-template-columns: repeat(4,42px);
  height: 60px; padding: 9px 15px; background: rgba(255,255,255,.96); box-shadow: 0 4px 22px rgba(25,25,25,.045);
}
.action-dock a { display: grid; place-items: center; width: 42px; height: 42px; }
.action-dock svg { width: 24px; height: 24px; fill: none; stroke: var(--ink); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
main,.footer { margin-left: var(--rail); }

.hero {
  position: relative; display: grid; grid-template-columns: minmax(390px,.88fr) 1.12fr; align-items: center;
  min-height: 760px; height: 100vh; padding: 130px clamp(38px,7vw,112px) 70px;
  overflow: hidden; background: linear-gradient(110deg,#fff 0 43%,#eff2f0 43% 100%);
}
.hero::after { position: absolute; right: 0; bottom: 0; width: 58%; height: 1px; background: rgba(23,25,27,.14); content: ""; }
.hero__copy { position: relative; z-index: 3; max-width: 610px; }
.hero__eyebrow,.section-kicker { margin: 0 0 16px; color: var(--sage); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.hero h1 { margin: 0; font-size: clamp(50px,5.8vw,86px); font-weight: 500; line-height: 1.08; }
.hero__lead { max-width: 550px; margin: 28px 0 0; color: #4f5455; font-size: 16px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.hero-cta,.mall-button {
  position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: 12px 22px; overflow: hidden; border: 1px solid var(--ink); font-size: 13px; font-weight: 700; line-height: 1.2;
  transition: transform .2s ease, opacity .2s ease;
}
.hero-cta:hover,.mall-button:hover { transform: translateY(-1px); opacity: .91; }
.hero-cta--primary { background: var(--ink); color: #fff; }
.hero-cta--sub { background: rgba(255,255,255,.7); }
.hero__date { margin: 18px 0 0; color: #989b9a; font-size: 10px; text-transform: uppercase; }

.hero-stage { position: relative; z-index: 2; width: 100%; height: min(65vh,610px); min-height: 470px; }
.hero-product { position: absolute; display: grid; place-items: center; background: rgba(255,255,255,.92); box-shadow: 0 28px 60px rgba(22,29,27,.10); }
.hero-product img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.hero-product:nth-child(1) { right: 4%; bottom: 4%; width: 46%; height: 55%; padding: 4%; }
.hero-product:nth-child(2) { top: 2%; right: 38%; width: 35%; height: 39%; padding: 4%; }
.hero-product:nth-child(3) { top: 12%; right: 0; width: 31%; height: 36%; padding: 4%; }
.hero-product:nth-child(4) { left: 1%; bottom: 5%; width: 32%; height: 38%; padding: 3%; }
.hero-product span { position: absolute; right: 10px; bottom: 8px; color: #8b8e8d; font-size: 9px; }

.evidence-strip {
  display: grid; grid-template-columns: 160px 160px 160px 1fr; align-items: center; gap: 0;
  width: min(1180px,calc(100% - 64px)); margin: 42px auto 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.evidence-strip div { padding: 22px 24px; border-right: 1px solid var(--line); }
.evidence-strip strong { display: block; font-size: 26px; font-weight: 500; line-height: 1; }
.evidence-strip span { display: block; margin-top: 7px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.evidence-strip p { margin: 0; padding: 20px 28px; color: var(--muted); font-size: 12px; }

.top-feature { display: grid; grid-template-columns: repeat(3,1fr); width: min(1180px,calc(100% - 64px)); margin: 48px auto 0; }
.top-feature__tile { position: relative; min-height: 190px; padding: 30px; overflow: hidden; background: #dfe5e1; color: #fff; }
.top-feature__tile + .top-feature__tile { border-left: 1px solid #fff; }
.top-feature__tile::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(16,20,19,.72),rgba(16,20,19,.14)); content: ""; }
.top-feature__tile img { position: absolute; right: -3%; bottom: -22%; width: 58%; height: 130%; object-fit: contain; mix-blend-mode: multiply; transition: transform .45s ease; }
.top-feature__tile:hover img { transform: scale(1.04) rotate(-2deg); }
.top-feature__tile span,.top-feature__tile small { position: relative; z-index: 2; display: block; width: 56%; }
.top-feature__tile span { font-size: 21px; font-weight: 600; }
.top-feature__tile small { margin-top: 10px; font-size: 12px; }

.section,.usecase,.guide,.sources { width: min(1148px,calc(100% - 80px)); margin: 120px auto 0; }
.section-heading { display: flex; align-items: baseline; gap: 19px; margin-bottom: 32px; }
.section-heading h2 { margin: 0; font-size: clamp(44px,5vw,64px); font-weight: 600; line-height: 1; }
.section-heading span { color: var(--muted); font-size: 14px; white-space: nowrap; }
.section-heading .section-kicker { width: 100%; margin-bottom: 0; }
.section-heading--split { justify-content: space-between; align-items: flex-end; }
.section-heading--split > div { display: flex; flex-wrap: wrap; align-items: baseline; gap: 19px; }
.section-note { max-width: 280px; margin: 0; color: var(--muted); font-size: 11px; text-align: right; }

.product-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; background: #fff; }
.product-card__media { position: relative; display: grid; place-items: center; aspect-ratio: 1/1; padding: 10%; overflow: hidden; background: #f4f5f3; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .35s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__rank { position: absolute; top: 14px; left: 14px; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--sage); font-size: 11px; box-shadow: 0 8px 20px rgba(0,0,0,.06); }
.product-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px 20px 20px; }
.product-card__category { margin: 0 0 7px; color: var(--sage); font-size: 10px; font-weight: 700; letter-spacing: .09em; }
.product-card h3 { min-height: 48px; margin: 0; font-size: 17px; font-weight: 500; line-height: 1.4; }
.product-card h3 small { display: block; color: var(--muted); font-size: 11px; font-weight: 400; }
.product-card__summary { min-height: 61px; margin: 13px 0 0; color: #5b5f60; font-size: 12px; }
.signal-list,.spec-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 0; padding: 0; list-style: none; }
.signal-list li { padding: 5px 7px; background: #e7ece9; color: #48584f; font-size: 9px; font-weight: 700; }
.spec-list { min-height: 54px; align-content: flex-start; }
.spec-list li { padding-right: 7px; border-right: 1px solid var(--line); color: var(--muted); font-size: 10px; }
.product-card__source { margin: 12px 0 0; color: #9a9d9c; font-size: 9px; }
.product-card__ctas { display: grid; grid-template-columns: 1fr; gap: 7px; margin-top: auto; padding-top: 17px; }
.mall-button { min-height: 42px; padding: 10px 9px; color: #fff; font-size: 11px; }
.mall-button--rakuten { border-color: var(--rakuten); background: var(--rakuten); }
.mall-button--amazon { border-color: var(--amazon); background: var(--amazon); }
.mall-button::before,.hero-cta--primary::before {
  position: absolute; top: -35%; left: -72%; width: 42%; height: 170%;
  background: linear-gradient(100deg,transparent,rgba(255,255,255,.08) 28%,rgba(255,255,255,.48) 50%,rgba(255,255,255,.08) 72%,transparent);
  content: ""; pointer-events: none; transform: skewX(-18deg); animation: cta-sheen 9.6s ease-in-out infinite;
}
.mall-button--amazon::before { animation-delay: 1.4s; }
@keyframes cta-sheen { 0%,48% { left:-72%; opacity:0; } 58% { opacity:.8; } 78%,100% { left:126%; opacity:0; } }

.method { display: grid; grid-template-columns: .82fr 1.18fr; width: min(1210px,calc(100% - 40px)); margin: 130px auto 0; background: var(--charcoal); color: #fff; }
.method__intro { padding: clamp(50px,7vw,84px); background: #62746c; }
.method__intro h2 { margin: 0; font-size: clamp(48px,5vw,70px); line-height: 1.08; }
.method__intro > p:last-child { max-width: 440px; margin: 30px 0 0; color: rgba(255,255,255,.74); font-size: 14px; }
.method .section-kicker { color: #d5ded9; }
.method__list { margin: 0; padding: 35px 55px; list-style: none; }
.method__list li { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.method__list li > span { color: #95aba1; font-size: 13px; }
.method__list strong { font-size: 17px; }
.method__list p { margin: 6px 0 0; color: rgba(255,255,255,.58); font-size: 12px; }

.usecase-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.usecase-grid article { position: relative; min-height: 310px; padding: 40px 34px; }
.usecase-grid article + article { border-left: 1px solid var(--line); }
.usecase-number { position: absolute; top: 34px; right: 34px; color: #a9adaa; font-size: 11px; }
.usecase-grid article > p:first-of-type { color: var(--sage); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.usecase-grid h3 { margin: 68px 0 0; font-size: 25px; font-weight: 500; }
.usecase-grid h3 + p { color: var(--muted); font-size: 13px; }
.usecase-grid a { position: absolute; bottom: 34px; border-bottom: 1px solid; font-size: 11px; }

.category { width: min(1148px,calc(100% - 80px)); margin: 120px auto 0; padding: 74px 70px 86px; background: #f2f3f1; }
.category-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.category-grid a { display: grid; grid-template-columns: 48px 1fr; align-items: center; min-height: 118px; padding: 24px 28px; background: #fff; }
.category-grid strong { grid-row: span 2; color: #a1a5a3; font-size: 11px; }
.category-grid span { font-size: 19px; font-weight: 600; }
.category-grid small { color: var(--muted); font-size: 11px; }

.guide { display: grid; grid-template-columns: .72fr 1.28fr; background: #e3e8e5; }
.guide__header { padding: 70px; }
.guide__header h2 { margin: 0; font-size: clamp(48px,5vw,70px); line-height: 1.08; }
.guide__items { display: grid; grid-template-columns: repeat(3,1fr); background: #fff; }
.guide__items article { padding: 55px 28px; border-left: 1px solid var(--line); }
.guide__items span { color: var(--sage); font-size: 11px; }
.guide__items h3 { margin: 78px 0 12px; font-size: 21px; font-weight: 500; }
.guide__items p { color: var(--muted); font-size: 12px; }

.sources { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; margin-bottom: 120px; padding-top: 50px; border-top: 1px solid var(--ink); }
.sources h2 { margin: 0; font-size: 36px; }
.sources__body p { margin: 0 0 16px; color: #5d6162; font-size: 12px; }
.sources__body a { display: inline-block; margin-top: 8px; border-bottom: 1px solid; font-size: 11px; }

.footer { display: grid; place-items: center; gap: 28px; padding: 86px 20px 50px; background: #202424; color: #fff; text-align: center; }
.brand--footer { position: static; transform: none; }
.footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; color: rgba(255,255,255,.75); font-size: 12px; }
.footer small { color: rgba(255,255,255,.45); font-size: 10px; }
.mobile-buybar { display: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mall-button::before,.hero-cta--primary::before { animation: none; opacity: 0; }
  * { transition-duration: .01ms !important; }
}

@media (max-width: 1050px) {
  :root { --rail: 52px; }
  .hero { grid-template-columns: .88fr 1.12fr; padding-right: 35px; padding-left: 50px; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .method { grid-template-columns: 1fr; }
  .guide { grid-template-columns: 1fr; }
  .guide__items article:first-child { border-left: 0; }
}

@media (max-width: 760px) {
  :root { --rail: 0px; }
  body { padding-bottom: 66px; }
  .side-rail { top: auto; right: 0; bottom: 0; width: 100%; height: 54px; border-top: 1px solid #ececea; border-right: 0; }
  .menu-toggle { left: 27px; transform: translateY(-50%); }
  .drawer { inset: 0 0 54px 0; width: 100vw; }
  .drawer__inner { padding: 82px 28px; }
  .site-header { left: 0; min-height: 82px; }
  .notice { padding-right: 130px; padding-left: 16px; text-align: left; }
  .brand { top: 36px; left: 22px; align-items: flex-start; transform: none; }
  .brand strong { font-size: 23px; }
  .brand span { margin-top: 5px; font-size: 8px; }
  .action-dock { grid-template-columns: repeat(4,34px); height: 52px; padding: 8px 5px; }
  .action-dock a { width: 34px; height: 34px; }
  .action-dock svg { width: 21px; height: 21px; }
  main,.footer { margin-left: 0; }
  section[id] { scroll-margin-top: 88px; }

  .hero { display: block; min-height: 790px; height: auto; padding: 130px 22px 45px; background: linear-gradient(#fff 0 55%,#eff2f0 55% 100%); }
  .hero h1 { font-size: 47px; }
  .hero__lead { margin-top: 22px; font-size: 14px; }
  .hero__ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
  .hero-cta { min-width: 0; padding: 11px 8px; font-size: 11px; }
  .hero-stage { height: 330px; min-height: 0; margin-top: 36px; }
  .hero-product:nth-child(1) { width: 48%; height: 52%; }
  .hero-product:nth-child(2) { top: 0; right: 39%; width: 37%; height: 39%; }
  .hero-product:nth-child(3) { top: 8%; width: 31%; height: 35%; }
  .hero-product:nth-child(4) { bottom: 1%; width: 34%; height: 40%; }

  .evidence-strip { grid-template-columns: repeat(3,1fr); width: calc(100% - 32px); }
  .evidence-strip div { padding: 16px 10px; }
  .evidence-strip strong { font-size: 20px; }
  .evidence-strip span { font-size: 7px; }
  .evidence-strip p { grid-column: 1/-1; padding: 15px 4px; font-size: 10px; }

  .top-feature { grid-template-columns: 1fr; width: calc(100% - 32px); margin-top: 28px; }
  .top-feature__tile { min-height: 150px; }
  .top-feature__tile + .top-feature__tile { border-top: 1px solid #fff; border-left: 0; }

  .section,.usecase,.guide,.sources { width: calc(100% - 32px); margin-top: 82px; }
  .section-heading,.section-heading--split,.section-heading--split > div { align-items: flex-start; flex-direction: column; gap: 8px; }
  .section-heading h2 { font-size: 46px; }
  .section-heading .section-kicker { margin-bottom: 4px; }
  .section-note { max-width: none; text-align: left; }
  .product-grid { grid-template-columns: 1fr; gap: 12px; border: 0; background: transparent; }
  .product-card { border: 1px solid var(--line); }
  .product-card__media { aspect-ratio: 1.1/1; padding: 12%; }
  .product-card h3,.product-card__summary,.spec-list { min-height: 0; }
  .product-card__ctas { grid-template-columns: 1fr 1fr; }

  .method { width: calc(100% - 32px); margin-top: 84px; }
  .method__intro { padding: 48px 25px; }
  .method__intro h2 { font-size: 48px; }
  .method__list { padding: 18px 25px 32px; }
  .method__list li { grid-template-columns: 40px 1fr; }
  .usecase-grid { grid-template-columns: 1fr; }
  .usecase-grid article { min-height: 270px; }
  .usecase-grid article + article { border-top: 1px solid var(--line); border-left: 0; }

  .category { width: calc(100% - 32px); margin-top: 82px; padding: 48px 16px 58px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-grid a { min-height: 104px; }

  .guide__header { padding: 48px 26px; }
  .guide__header h2 { font-size: 48px; }
  .guide__items { grid-template-columns: 1fr; }
  .guide__items article { padding: 34px 26px; border-top: 1px solid var(--line); border-left: 0; }
  .guide__items h3 { margin-top: 24px; }
  .sources { grid-template-columns: 1fr; gap: 28px; margin-bottom: 90px; }
  .footer { padding-bottom: 96px; }

  .mobile-buybar { position: fixed; right: 56px; bottom: 0; left: 0; z-index: 60; display: grid; grid-template-columns: auto 1fr 1fr; align-items: center; gap: 6px; height: 54px; padding: 6px 8px; background: rgba(255,255,255,.97); border-top: 1px solid var(--line); }
  .mobile-buybar > span { padding: 0 4px; font-size: 8px; line-height: 1.2; }
  .mobile-buybar .mall-button { min-height: 40px; padding: 8px 5px; font-size: 10px; }
}

/* Amazon Associates disclosure and policy pages */
.associate-disclosure {
  position: absolute;
  top: 98px;
  right: 0;
  left: var(--rail);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  padding: 8px 70px 8px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f3f5f3;
  color: #4f5753;
  font-size: 10px;
}
.associate-disclosure strong { padding: 3px 6px; background: var(--ink); color: #fff; font-size: 9px; }
.associate-disclosure p { margin: 0; }
.associate-disclosure a { border-bottom: 1px solid currentColor; white-space: nowrap; }
.hero { padding-top: 168px; }
.sources__body a { margin-right: 18px; }

.policy-page { background: #f5f6f4; color: var(--ink); }
.policy-page .policy-header { display: flex; align-items: center; min-height: 86px; padding: 18px clamp(22px,6vw,80px); border-bottom: 1px solid var(--line); background: #fff; }
.policy-header a { display: flex; flex-direction: column; gap: 4px; }
.policy-header strong { font-size: 24px; font-weight: 500; }
.policy-header span { color: var(--muted); font-size: 10px; }
.policy-page .policy-main { width: min(900px,calc(100% - 40px)); margin: 0 auto; padding: 80px 0 120px; }
.policy-title { padding-bottom: 54px; border-bottom: 1px solid var(--ink); }
.policy-title > p:first-child { color: var(--sage); font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.policy-title h1 { margin: 12px 0 18px; font-size: clamp(42px,6vw,72px); font-weight: 500; line-height: 1.12; }
.policy-title > p:last-child { max-width: 620px; color: var(--muted); font-size: 14px; }
.policy-section { padding: 52px 0; border-bottom: 1px solid var(--line); }
.policy-section h2 { margin: 8px 0 24px; font-size: 30px; font-weight: 500; }
.policy-section > p:not(.section-kicker) { max-width: 760px; color: #555c58; font-size: 14px; line-height: 2; }
.policy-section dl { margin: 0; }
.policy-section dl div { display: grid; grid-template-columns: 150px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid var(--line); }
.policy-section dt { color: var(--muted); font-size: 12px; }
.policy-section dd { margin: 0; font-size: 14px; line-height: 1.8; }
.policy-section--sources a { border-bottom: 1px solid currentColor; }
.policy-back { display: inline-block; margin-top: 48px; padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 13px; }
.policy-footer { padding: 28px 20px; background: var(--charcoal); color: rgba(255,255,255,.6); text-align: center; }

@media (max-width: 760px) {
  .associate-disclosure {
    top: 82px;
    left: 0;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px 9px;
    min-height: 66px;
    padding: 9px 70px 9px 16px;
    line-height: 1.45;
  }
  .associate-disclosure p { flex: 1 1 230px; }
  .hero { padding-top: 184px; }
  .policy-page .policy-main { width: calc(100% - 32px); padding: 54px 0 90px; }
  .policy-title { padding-bottom: 38px; }
  .policy-title h1 { font-size: 42px; }
  .policy-section { padding: 42px 0; }
  .policy-section dl div { grid-template-columns: 1fr; gap: 7px; }
}
/* Trust review section for AdSense/Affiliate-ready gadget pages */
.trust-notes {
  width: min(1148px, calc(100% - 80px));
  margin: 120px auto 0;
  padding: 58px 0 10px;
  border-top: 1px solid var(--ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-grid article {
  min-height: 250px;
  padding: 28px 24px;
  background: #fff;
}

.trust-grid span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
}

.trust-grid h3 {
  margin: 52px 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.policy-section a {
  border-bottom: 1px solid currentColor;
}

@media (max-width: 760px) {
  .trust-notes {
    width: calc(100% - 32px);
    margin-top: 82px;
    padding-top: 44px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: 0;
    padding: 28px 24px 30px;
  }

  .trust-grid h3 {
    margin-top: 28px;
  }
}

