:root {
  --ink: #20163a;
  --muted: #675c78;
  --paper: #fff7ff;
  --white: #ffffff;
  --pink: #ff4f9a;
  --berry: #8c3cff;
  --lemon: #ffd84d;
  --mint: #25c6a6;
  --sky: #dff4ff;
  --deep: #170726;
  --violet: #3e1074;
  --line: rgba(32, 22, 58, 0.14);
  --shadow: 0 20px 55px rgba(82, 36, 120, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(255, 247, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(82, 36, 120, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 9px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #21122d;
  font-size: 15px;
  line-height: 1;
  background: linear-gradient(135deg, var(--lemon), var(--pink));
  box-shadow: 0 8px 18px rgba(255, 79, 154, 0.28);
}

.brand-logo {
  flex: 0 0 auto;
  width: 58px;
  height: 38px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(255, 79, 154, 0.22);
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.04;
}

.brand-copy strong {
  display: block;
  max-width: 152px;
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: #8f285f;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-nav a {
  padding: 12px 13px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(82, 36, 120, 0.08);
}

.nav-toggle {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.site-nav.is-open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(28, 8, 48, 0.98), rgba(56, 18, 108, 0.82) 46%, rgba(56, 18, 108, 0.14)),
    linear-gradient(90deg, rgba(28, 8, 48, 0.96), rgba(28, 8, 48, 0.25));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 250px 0 118px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #9d2a67;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  font-size: 44px;
}

.hero h1,
.hero .lead {
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(18, 7, 34, 0.34);
}

.hero .eyebrow {
  color: var(--lemon);
}

h2 {
  font-size: 28px;
}

p {
  margin: 0;
}

.lead {
  max-width: 66ch;
  margin-top: 20px;
  color: #4d425f;
  font-size: 18px;
}

.hero-checks {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #ffffff;
  font-weight: 800;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 24px;
}

.hero-checks li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lemon);
  box-shadow: 0 0 0 5px rgba(255, 216, 77, 0.18);
}

.trust-strip {
  position: absolute;
  right: 16px;
  bottom: 18px;
  left: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.trust-strip div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(18, 7, 34, 0.18);
}

.trust-strip strong,
.trust-strip span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-strip strong {
  font-size: 12px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.hero-actions,
.button {
  width: 100%;
}

.button.primary {
  color: #2b1435;
  background: linear-gradient(135deg, var(--lemon), #ff9d43);
  box-shadow: 0 16px 32px rgba(255, 157, 67, 0.28);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
}

.game-section {
  display: grid;
  gap: 20px;
  padding: 38px 16px 48px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 216, 77, 0.42), transparent 28%),
    linear-gradient(135deg, #281543, #5d257b 46%, #1f5c7e);
  color: #ffffff;
}

.game-copy {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.game-copy .eyebrow {
  color: #ffd84d;
}

.game-copy h2 {
  color: #ffffff;
}

.game-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.game-frame {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 980px);
  aspect-ratio: 16 / 11;
  min-height: 330px;
  margin: 0 auto;
  overflow: hidden;
  border: 3px solid rgba(255, 79, 154, 0.92);
  border-radius: 8px;
  background:
    linear-gradient(rgba(31, 18, 52, 0.34), rgba(31, 18, 52, 0.72)),
    url("/assets/sweet-bonanza-demo-hero.png") center / cover;
  box-shadow: 0 24px 64px rgba(18, 8, 34, 0.42);
}

.game-frame-top,
.game-frame-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(22, 13, 38, 0.76);
  backdrop-filter: blur(10px);
}

.game-frame-top span,
.game-frame-meta span {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-frame-top span:last-child {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #2b1435;
  background: var(--lemon);
}

.game-frame-body {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lemon), var(--pink));
  box-shadow: 0 16px 32px rgba(255, 79, 154, 0.38);
}

.shortcut-section {
  background: var(--deep);
  color: #ffffff;
}

.shortcut-section > h2,
.shortcut-section > .eyebrow {
  max-width: 1120px;
  margin-inline: auto;
}

.shortcut-section > .eyebrow {
  color: var(--lemon);
}

.shortcut-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1120px;
  margin: 24px auto 0;
}

.shortcut-grid a {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(140, 60, 255, 0.32), rgba(255, 79, 154, 0.12));
  color: #ffffff;
  text-decoration: none;
}

.shortcut-grid h3 {
  margin: 0;
  font-size: 20px;
}

.shortcut-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.play-symbol::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #251532;
}

.game-frame h3 {
  max-width: 18ch;
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
}

.game-frame p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.game-frame .button {
  min-height: 46px;
  margin-top: 4px;
}

.game-frame-meta {
  justify-content: center;
  flex-wrap: wrap;
}

.game-frame-meta span {
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
}

.sub-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 16px 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 79, 154, 0.22), transparent 28%),
    linear-gradient(135deg, #fff8ff 0%, #f8e9ff 46%, #e2f8ff 100%);
}

.sub-hero h1 {
  max-width: 13ch;
}

.sub-hero img {
  order: -1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section {
  padding: 46px 16px;
}

.tinted {
  background: #fff0f7;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.content-grid.reverse {
  grid-template-columns: 1fr;
}

.content-grid.reverse .copy {
  order: 0;
}

.copy {
  display: grid;
  gap: 18px;
}

.copy.narrow {
  max-width: 880px;
  margin: 0 auto;
}

.copy p {
  color: #463a55;
  font-size: 18px;
}

.text-rich,
.slot-table-section,
.checklist-section,
.strategy-section {
  display: grid;
  gap: 22px;
}

.article-flow {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.article-flow p {
  color: #463a55;
  font-size: 18px;
}

.detail-columns,
.checklist-section,
.strategy-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.read-card,
.table-note,
.rich-list,
.strategy-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(82, 36, 120, 0.1);
}

.read-card {
  padding: 22px;
}

.read-card h3 {
  margin: 0 0 8px;
}

.data-table {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.data-table div {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.data-table div:last-child {
  border-bottom: 0;
}

.data-table span {
  color: var(--muted);
  font-weight: 800;
}

.data-table strong {
  color: var(--ink);
}

.table-note {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px;
  color: #4d425f;
}

.rich-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 22px 22px 42px;
  color: #463a55;
  font-size: 17px;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.strategy-grid article {
  padding: 20px;
}

.strategy-grid h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.strategy-grid p {
  color: #4d425f;
}

.info-panel,
.link-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel h2,
.link-panel h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #4f435e;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(37, 198, 166, 0.15);
}

.link-panel {
  display: grid;
  gap: 12px;
}

.link-panel a,
.next-links a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffafb;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.slot-specs,
.compare-section,
.guide-steps {
  display: grid;
  gap: 24px;
}

.quick-facts,
.free-path,
.truth-panel {
  display: grid;
  gap: 20px;
  padding: 34px 16px;
  background: linear-gradient(135deg, var(--deep), var(--violet));
  color: #ffffff;
}

.quick-facts .eyebrow,
.free-path .eyebrow,
.truth-panel .eyebrow {
  color: var(--lemon);
}

.quick-facts h2,
.free-path h2,
.truth-panel h2 {
  color: #ffffff;
}

.quick-facts p,
.free-path p,
.truth-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.facts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
}

.facts-list div,
.path-list article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.facts-list dt {
  color: var(--lemon);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 4px 0 0;
  color: #ffffff;
  font-weight: 850;
}

.facts-list a {
  color: #ffffff;
}

.path-list {
  display: grid;
  gap: 12px;
}

.path-list h3 {
  margin: 0 0 8px;
}

.truth-panel .button {
  justify-self: start;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.spec-intro,
.compare-head,
.guide-head {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.spec-intro p,
.compare-head p,
.guide-head p {
  color: #4d425f;
  font-size: 18px;
}

.spec-grid,
.compare-grid,
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.spec-grid article,
.compare-card,
.steps li,
.safe-note,
.risk-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(82, 36, 120, 0.1);
}

.spec-grid article {
  padding: 22px;
}

.spec-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #29153a;
  font-weight: 950;
  background: linear-gradient(135deg, var(--lemon), #ff9d43);
}

.spec-grid h3,
.compare-card h3,
.steps h3,
.safe-note h3,
.risk-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.15;
}

.spec-grid p,
.steps p,
.safe-note p,
.risk-card p {
  color: #4d425f;
}

.mechanics-band,
.free-notes,
.caution-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}

.mechanics-band img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compare-card {
  padding: 22px;
}

.compare-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #4d425f;
}

.compare-card.yes {
  border-top: 5px solid var(--mint);
}

.compare-card.no {
  border-top: 5px solid var(--pink);
}

.safe-note,
.risk-card {
  padding: 22px;
  background: #251532;
  color: #ffffff;
}

.safe-note p,
.risk-card p {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 24px 22px 22px 78px;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #251532;
  font-weight: 950;
  background: var(--lemon);
}

.three-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.three-cols article {
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.three-cols h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.faq-section {
  max-width: 980px;
  margin: 0 auto;
}

.faq-section h2 {
  margin-bottom: 22px;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
  color: #4d425f;
}

.next-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}

.next-links,
.next-links a {
  width: 100%;
}

.site-footer {
  display: grid;
  gap: 16px;
  padding: 34px 16px;
  background: #251532;
  color: #fff7ff;
}

.site-footer p {
  max-width: 880px;
  color: rgba(255, 247, 255, 0.78);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

@media (min-width: 560px) {
  .hero-actions,
  .button,
  .next-links,
  .next-links a {
    width: auto;
  }
}

@media (min-width: 821px) {
  .site-header {
    gap: 24px;
    padding: 14px clamp(24px, 4vw, 56px);
  }

  .brand-copy strong {
    max-width: none;
    font-size: 20px;
  }

  .brand-logo {
    width: 66px;
    height: 42px;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 13px;
    font-size: 15px;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    min-height: 660px;
    align-items: center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(28, 8, 48, 0.95), rgba(56, 18, 108, 0.74) 42%, rgba(56, 18, 108, 0.12) 76%),
      linear-gradient(0deg, rgba(28, 8, 48, 0.72), rgba(28, 8, 48, 0.18));
  }

  .hero-content {
    width: min(680px, calc(100% - 36px));
    margin-left: clamp(18px, 6vw, 72px);
    padding: 78px 0 116px;
  }

  .hero-checks {
    grid-template-columns: repeat(3, max-content);
    gap: 18px;
  }

  .trust-strip {
    right: clamp(24px, 6vw, 72px);
    bottom: 28px;
    left: auto;
    width: min(520px, 46vw);
  }

  h1 {
    font-size: clamp(54px, 7vw, 86px);
  }

  h2 {
    font-size: clamp(32px, 3.4vw, 44px);
  }

  .lead {
    font-size: clamp(19px, 2vw, 22px);
  }

  .game-section {
    padding: 58px clamp(18px, 6vw, 72px) 68px;
  }

  .game-copy {
    text-align: center;
  }

  .game-copy p {
    justify-self: center;
    max-width: 72ch;
    font-size: 18px;
  }

  .game-frame {
    aspect-ratio: 16 / 9;
    min-height: 460px;
  }

  .game-frame-top,
  .game-frame-meta {
    padding: 13px 18px;
  }

  .game-frame h3 {
    max-width: none;
    font-size: 34px;
  }

  .play-symbol {
    width: 76px;
    height: 76px;
  }

  .sub-hero {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
    gap: clamp(28px, 5vw, 64px);
    padding: clamp(46px, 8vw, 86px) clamp(18px, 6vw, 72px);
  }

  .sub-hero img {
    order: 0;
  }

  .section {
    padding: clamp(46px, 7vw, 92px) clamp(18px, 6vw, 72px);
  }

  .content-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    gap: clamp(28px, 5vw, 62px);
  }

  .content-grid.reverse {
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  }

  .content-grid.reverse .copy {
    order: 2;
  }

  .three-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .quick-facts,
  .free-path,
  .truth-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: center;
    padding: 48px clamp(18px, 6vw, 72px);
  }

  .truth-panel {
    grid-template-columns: 1fr;
  }

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

  .path-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .mechanics-band,
  .free-notes,
  .caution-layout {
    grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  }

  .free-notes,
  .caution-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  }

  .detail-columns,
  .checklist-section {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  }

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

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

  .next-links {
    width: auto;
  }

  .site-footer {
    padding: 34px clamp(18px, 6vw, 72px);
  }
}

@media (max-width: 380px) {
  .brand-copy strong {
    max-width: 110px;
    font-size: 16px;
  }

  .brand-logo {
    width: 50px;
    height: 34px;
  }

  h1 {
    font-size: 39px;
  }
}
