:root {
  color-scheme: light;
  --header-height: 72px;
  --ink: #0b1712;
  --muted: #52645c;
  --soft: #edf3ef;
  --paper: #f8faf7;
  --surface: #ffffff;
  --line: rgba(10, 38, 26, 0.15);
  --green: #0d603b;
  --green-2: #09281f;
  --gold: #bd9441;
  --red: #9a3436;
  --wine: #7a2b35;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 14px 30px rgba(10, 30, 20, 0.1);
  --soft-shadow: 0 1px 0 rgba(10, 38, 26, 0.04);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fbfcfa 0%, #f4f8f5 42%, #edf5ef 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  background: rgba(251, 252, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  max-width: 100vw;
  overflow-x: hidden;
}

main > section,
.site-footer {
  padding: clamp(26px, 4.4vw, 58px) 0;
  scroll-margin-top: var(--header-height);
}

main > section > .wrap,
.site-footer > .wrap {
  width: min(1120px, calc(100% - 40px));
  padding: clamp(22px, 3vw, 36px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

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

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(16, 35, 26, 0.12);
}

.brand strong,
.site-footer strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
}

.nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a,
.site-footer nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--green-2);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 650;
}

.nav a:hover,
.site-footer nav a:hover {
  background: rgba(16, 89, 54, 0.08);
}

.section-band {
  background: linear-gradient(135deg, #fbfcfa 0%, #f3f8f4 58%, #eaf3ee 100%);
}

.hero > .wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 47, 37, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 241, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero > .wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  width: auto;
  background: linear-gradient(90deg, var(--green), var(--wine), var(--gold));
}

.hero {
  padding: clamp(18px, 3vw, 34px) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.82fr);
  gap: 38px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 100%;
}

.hero-copy,
.section-heading,
.whot-elements-grid > *,
.method-layout > *,
.safety-grid > *,
.rules-grid > *,
.faq-layout > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.section-kicker {
  color: var(--muted);
  font-size: 12px;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: #0e1d16;
  font-size: 52px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: #102018;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-title {
  margin: 0;
  color: #102018;
  font-size: 34px;
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: #3e5148;
  font-size: 18px;
  line-height: 1.62;
}

.hero-whot-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 660px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-whot-terms li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(16, 89, 54, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(16, 89, 54, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--green);
  border-color: rgba(15, 81, 50, 0.32);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 20px 0 0;
  border: 1px solid rgba(22, 55, 43, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.trust-strip div {
  padding: 12px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.update-note {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  min-width: 0;
  max-width: 100%;
  margin: 0;
}

.hero-visual img {
  width: 100%;
  height: auto;
  max-height: 460px;
  aspect-ratio: 1128 / 1030;
  object-fit: contain;
  object-position: center center;
  border: 0;
  border-radius: var(--radius);
  filter: brightness(0.9) contrast(1.16) saturate(0.98);
  box-shadow: 0 18px 30px rgba(10, 30, 20, 0.16);
  background:
    linear-gradient(135deg, #f3f5f2, #ffffff 48%, #eef4ef);
}

.hero-card-feature {
  padding: 10px;
  border: 1px solid rgba(10, 38, 26, 0.12);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(232, 240, 235, 0.72)),
    #ffffff;
}

.answer-band {
  padding: clamp(18px, 2.4vw, 30px) 0;
  background: var(--green-2);
  color: var(--white);
}

.answer-band > .wrap {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: clamp(20px, 2.4vw, 30px);
}

.answer-band > .wrap,
.section-dark > .wrap,
.site-footer > .wrap {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(16, 37, 28, 0.98), rgba(10, 24, 18, 0.96)),
    #10251c;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(5, 18, 13, 0.18);
}

.answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.answer-band .section-kicker,
.section-dark .section-kicker {
  color: #f0c96a;
}

.answer-band h2,
.answer-band .section-title,
.section-dark h2,
.section-dark .section-title {
  color: var(--white);
}

.answer-band .section-title {
  max-width: 820px;
  font-size: 28px;
  line-height: 1.16;
}

.answer-band p {
  max-width: 840px;
  margin: 0;
  color: #e3eee8;
  font-size: 18px;
  line-height: 1.52;
}

.whot-elements-section {
  background: linear-gradient(180deg, #f7faf7 0%, #fbfcfa 100%);
}

.whot-elements-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.whot-board {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 72, 44, 0.96), rgba(11, 35, 26, 0.98)),
    #0b231a;
  box-shadow: 0 20px 38px rgba(16, 35, 26, 0.16);
}

.whot-board::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 12px;
}

.whot-photo-board {
  display: grid;
  gap: 14px;
  min-height: 0;
  margin: 0;
  padding: 16px;
}

.whot-photo-board::before {
  display: none;
}

.whot-photo-board img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1128 / 1030;
  object-fit: contain;
  object-position: center center;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 6px;
  filter: brightness(0.86) contrast(1.18) saturate(0.98);
  box-shadow: none;
  background: #f4f5f2;
}

.board-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.board-header span {
  color: #e5c66d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.board-header strong {
  font-size: 15px;
  color: #fff7de;
}

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

.whot-signal-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.whot-signal-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2e6c4;
  color: #6f5417;
  font-size: 12px;
  font-weight: 900;
}

.whot-signal-list p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: clamp(18px, 3vw, 38px) 0;
}

.section-tint {
  background: linear-gradient(180deg, #eef4ef 0%, #f8f7f0 100%);
}

.section-tint > .wrap {
  background: transparent;
}

.compare-section {
  background: linear-gradient(180deg, #fffaf2 0%, #f3f5ee 100%);
}

.section-dark {
  background: #10251c;
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
}

.ranking-note {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: -6px 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(16, 89, 54, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(237, 245, 240, 0.96), rgba(255, 255, 255, 0.92)),
    #f6faf7;
}

.ranking-note strong {
  color: var(--green-2);
  font-size: 15px;
  line-height: 1.25;
}

.ranking-note p {
  margin: 0;
  color: #40564b;
  line-height: 1.55;
}

.ranking-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.carousel-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.carousel-status strong {
  min-width: 42px;
  min-height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(199, 155, 59, 0.34);
  border-radius: var(--radius);
  background: rgba(242, 230, 196, 0.72);
  color: #68480e;
  font-size: 13px;
}

.carousel-status span {
  color: var(--green-2);
}

.carousel-actions {
  display: flex;
  gap: 8px;
}

.carousel-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 89, 54, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(10, 30, 20, 0.08);
}

.carousel-button:hover:not(:disabled) {
  background: var(--green);
  color: var(--white);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  box-shadow: none;
}

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

.featured-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 12px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(15, 81, 50, 0.36) rgba(15, 81, 50, 0.08);
}

.featured-grid .platform-card {
  flex: 0 0 100%;
}

.featured-grid .platform-card > p {
  max-width: 700px;
}

.platform-card {
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  min-height: 330px;
  padding: 26px;
  border: 1px solid rgba(22, 55, 43, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 247, 0.99)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.platform-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(16, 89, 54, 0.16));
}

.platform-card:first-child::before {
  background: linear-gradient(90deg, var(--gold), var(--wine));
}

.brand-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 68px;
  height: 68px;
  padding: 5px;
  border: 1px solid rgba(22, 55, 43, 0.12);
  border-radius: 16px;
  background: #fbfdfb;
  object-fit: contain;
  box-shadow: 0 10px 18px rgba(20, 33, 27, 0.1);
}

.rank-badge {
  width: 48px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(199, 155, 59, 0.34);
  border-radius: var(--radius);
  background: rgba(242, 230, 196, 0.62);
  color: #68480e;
  font-size: 13px;
  font-weight: 900;
}

.platform-card p,
.method-list p,
.rule-tiles p,
.faq-list p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.platform-card h3 {
  max-width: calc(100% - 94px);
  color: #0f1e17;
  font-size: 22px;
  line-height: 1.18;
}

.platform-card p {
  line-height: 1.55;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 8px;
  border: 1px solid rgba(16, 89, 54, 0.1);
  border-radius: 6px;
  background: #eef5f0;
  color: var(--green-2);
  font-size: 12px;
  font-weight: 780;
}

.platform-card a,
.muted-link {
  color: var(--green);
  font-weight: 850;
  text-underline-offset: 3px;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.card-links a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(16, 89, 54, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
  text-decoration: none;
}

.card-links a:hover {
  background: rgba(16, 89, 54, 0.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 0;
}

.carousel-dots button {
  width: 30px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 89, 54, 0.2);
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] {
  width: 46px;
  background: var(--green);
}

.compare-matrix {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) minmax(260px, 1fr) minmax(260px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(22, 55, 43, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.compare-head,
.compare-cell {
  min-height: 60px;
  padding: 14px;
  border-right: 1px solid rgba(22, 55, 43, 0.12);
  border-bottom: 1px solid rgba(22, 55, 43, 0.12);
}

.compare-head:nth-child(3n),
.compare-cell:nth-child(3n) {
  border-right: 0;
}

.compare-cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.compare-head {
  display: flex;
  align-items: center;
  color: var(--green-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-good {
  background: #e8f2ea;
}

.highlight-risk {
  background: #f5e7e3;
}

.compare-cell {
  color: #33473e;
}

.compare-cell.label {
  color: var(--ink);
  font-weight: 900;
}

.compare-cell.good {
  background: rgba(232, 242, 234, 0.58);
}

.compare-cell.risk {
  background: rgba(250, 238, 235, 0.58);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(22, 55, 43, 0.14);
}

.method-list div {
  display: grid;
  grid-template-columns: 48px minmax(0, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(22, 55, 43, 0.14);
}

.method-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(199, 155, 59, 0.34);
  background: rgba(242, 230, 196, 0.72);
  color: #68480e;
  font-weight: 900;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(22, 55, 43, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

caption {
  padding: 12px 14px;
  color: var(--muted);
  text-align: left;
}

th,
td {
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f8f7f1;
  color: var(--green-2);
  font-size: 13px;
  text-transform: uppercase;
}

.safety-grid,
.rules-grid,
.faq-layout,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.section-dark p {
  color: #dce9e1;
}

.compliance-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.compliance-panel article {
  position: relative;
  padding: 16px 20px 16px 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.compliance-panel article:last-child {
  border-bottom: 0;
}

.compliance-panel h3 {
  color: var(--white);
}

.compliance-panel p {
  margin: 0;
  color: #d6e7de;
}

.status-dot {
  position: absolute;
  top: 21px;
  left: 24px;
  width: 14px;
  height: 14px;
  border: 2px solid #e5c66d;
  border-radius: 50%;
  background: rgba(229, 198, 109, 0.16);
}

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

.rule-tiles article {
  position: relative;
  padding: 18px 18px 20px;
  border: 1px solid rgba(22, 55, 43, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 247, 0.99)),
    var(--white);
  box-shadow: none;
}

.rule-tiles h3 {
  margin-bottom: 10px;
  color: #102018;
}

.faq-list {
  border-top: 1px solid rgba(22, 55, 43, 0.14);
}

details {
  border-bottom: 1px solid rgba(22, 55, 43, 0.14);
}

summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--green-2);
  font-weight: 850;
}

details p {
  padding: 0 0 16px;
}

.site-footer {
  padding: clamp(20px, 3vw, 34px) 0;
  background: #0b1812;
  color: var(--white);
}

.site-footer p {
  max-width: 620px;
  margin-top: 10px;
  color: #b9c8c0;
}

.site-footer nav {
  justify-content: flex-end;
}

.site-footer nav a {
  color: #edf6f1;
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px;
  }

  .hero-grid,
  .answer-grid,
  .whot-elements-grid,
  .method-layout,
  .safety-grid,
  .rules-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  h1 {
    font-size: 42px;
  }

  h2,
  .section-title {
    font-size: 29px;
  }

  .answer-band .section-title {
    font-size: 28px;
  }

  .whot-elements-grid {
    gap: 34px;
  }

  .whot-signal-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .whot-signal-list p {
    grid-column: 2;
  }

  .compare-matrix {
    grid-template-columns: minmax(130px, 0.7fr) minmax(250px, 1fr) minmax(250px, 1fr);
    overflow-x: auto;
  }

  .ranking-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .featured-grid {
    padding-right: 2px;
  }

  .featured-grid .platform-card {
    flex-basis: 100%;
  }

  .method-list div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .method-list p {
    grid-column: 2;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 112px;
  }

  html {
    scroll-snap-type: none;
  }

  main > section,
  .site-footer {
    min-height: 0;
    padding: 14px 0;
    overflow: visible;
  }

  main > section > .wrap,
  .site-footer > .wrap {
    width: calc(100vw - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
    padding: 16px;
    overflow: visible;
  }

  .wrap {
    width: calc(100vw - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: auto;
  }

  main,
  .section,
  .section-band,
  .answer-band,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav {
    width: 100%;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav a {
    min-height: 34px;
    flex: 0 0 auto;
    padding: 7px 9px;
    font-size: 14px;
  }

  .hero {
    padding: 12px 0;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-whot-terms {
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero-whot-terms li {
    flex: 0 1 auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

  .button {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-visual {
    overflow: hidden;
    margin-top: 16px;
  }

  .hero-visual img {
    height: auto;
    max-height: 460px;
    object-fit: contain;
    object-position: center center;
    filter: brightness(0.84) contrast(1.18) saturate(1.04) drop-shadow(0 14px 18px rgba(20, 33, 27, 0.14));
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.12;
    word-break: normal;
  }

  .lede,
  .trust-strip,
  .hero-whot-terms {
    width: 100%;
    max-width: 100%;
  }

  h2,
  .section-title {
    font-size: 25px;
  }

  .answer-band > .wrap {
    padding: 18px 16px;
  }

  .answer-band .section-title {
    font-size: 23px;
    line-height: 1.18;
  }

  .lede,
  .answer-band p {
    font-size: 15px;
  }

  .trust-strip {
    display: none;
  }

  .section {
    padding: 12px 0;
  }

  .whot-board {
    min-height: auto;
    padding: 14px;
  }

  .whot-photo-board {
    gap: 10px;
    padding: 14px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .whot-photo-board img {
    aspect-ratio: 1128 / 1030;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    background: #f4f5f2;
  }

  .whot-board::before {
    inset: 14px;
  }

  .board-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .whot-signal-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 250px);
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .whot-signal-list article {
    display: block;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .whot-signal-list span {
    margin-bottom: 8px;
  }

  .whot-signal-list p {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .platform-card {
    padding: 18px;
    min-height: auto;
  }

  .carousel-controls {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .carousel-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    max-width: calc(100% - 104px);
  }

  .carousel-status span {
    line-height: 1.2;
  }

  .featured-grid {
    padding: 2px 0 10px;
    mask-image: none;
  }

  .featured-grid .platform-card {
    flex-basis: 100%;
  }

  .carousel-dots {
    margin-top: 8px;
  }

  #rankings .section-heading {
    margin-bottom: 16px;
  }

  #rankings .section-heading h2 {
    font-size: 23px;
    line-height: 1.12;
  }

  #rankings .section-heading p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .platform-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }

  .featured-grid .platform-card p {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .tag-list {
    margin: 14px 0;
  }

  .method-list div {
    display: block;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .method-list {
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 260px);
    gap: 10px;
    overflow-x: auto;
    border-top: 0;
    padding-bottom: 4px;
  }

  .method-list span {
    margin-bottom: 8px;
  }

  .method-list p,
  .compliance-panel p,
  .rule-tiles p,
  .faq-list p {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .safety-grid,
  .rules-grid,
  .faq-layout {
    gap: 20px;
  }

  .table-wrap {
    max-height: 420px;
    overflow: auto;
  }

  .compliance-panel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 260px);
    overflow-x: auto;
  }

  .compliance-panel article {
    min-height: 160px;
    padding: 44px 16px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 0;
  }

  .status-dot {
    top: 18px;
    left: 16px;
  }

  .rule-tiles {
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 300px);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 16px;
    scroll-snap-type: x mandatory;
  }

  .rule-tiles article {
    scroll-snap-align: start;
  }

  .compare-matrix {
    display: grid;
    grid-template-columns: minmax(130px, 0.7fr) minmax(250px, 1fr) minmax(250px, 1fr);
    border-radius: var(--radius);
    overflow-x: auto;
  }

  .compare-head {
    display: flex;
  }

  .compare-cell {
    min-height: auto;
    border-right: 1px solid var(--line);
    padding: 12px;
  }

  .compare-cell.label {
    padding-top: 12px;
    border-top: 0;
    background: #faf8f0;
  }

  .compare-cell.label:first-child {
    border-top: 0;
  }

  .compare-cell.good::before,
  .compare-cell.risk::before {
    display: none;
  }

  .compare-cell.good::before {
    content: "";
  }

  .compare-cell.risk::before {
    content: "";
  }
}
