@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");

:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #60616b;
  --paper: #ffffff;
  --wash: #f5f5f7;
  --line: #111111;
  --soft-line: #dedee5;
  --pink: #ff3b8f;
  --mint: #25d6b6;
  --cyan: #20a8ff;
  --yellow: #ffe45f;
  --purple: #7648ff;
  --orange: #ff8a35;
  --green: #28b878;
  --shadow: 8px 8px 0 #111111;
  --soft-shadow: 0 14px 36px rgba(17, 17, 17, 0.09);
  --font-body: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-display: "Bebas Neue", "Zen Kaku Gothic New", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 3px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: #2b2b31;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--yellow);
}

.nav-links .nav-cta {
  margin-left: 8px;
  border: 2px solid var(--line);
  color: #fff;
  background: var(--ink);
}

.editorial-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 59, 143, 0.16) 0 1px, transparent 1px 26px),
    linear-gradient(0deg, rgba(17, 17, 17, 0.05) 0 1px, transparent 1px 26px),
    #fff;
}

.hero-inner {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 430px;
  align-items: center;
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  padding: 54px 0 44px;
}

.hero-poster {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  padding: 14px;
  border: 3px solid var(--line);
  background:
    repeating-linear-gradient(-45deg, #fff 0 10px, #efeff4 10px 20px);
  box-shadow: var(--shadow);
}

.poster-love {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.9;
  text-align: center;
}

.poster-note {
  display: block;
  padding: 6px;
  color: #fff;
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.section-subtitle {
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow::before,
.section-subtitle::before {
  content: "";
  width: 28px;
  height: 4px;
  margin-right: 9px;
  background: var(--pink);
}

.hero h1 {
  display: grid;
  gap: 0;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.98;
  font-weight: 900;
}

.hero h1 span:last-child {
  color: var(--pink);
}

.hero-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #2d2d33;
  font-size: 1.08rem;
  font-weight: 500;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-badges li {
  padding: 5px 10px;
  border: 2px solid var(--line);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  min-width: 178px;
  padding: 0 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--line);
}

.button.primary {
  color: #fff;
  background: var(--pink);
}

.button.secondary {
  color: #fff;
  background: var(--ink);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.button.light {
  background: #fff;
}

.button.text-button {
  border-color: transparent;
  background: transparent;
  min-width: 0;
}

.button.text-button:hover {
  box-shadow: none;
  color: var(--pink);
}

.btn-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.btn-text span {
  font-size: 0.68rem;
  font-weight: 700;
}

.btn-text strong {
  font-size: 1rem;
}

.download-note {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.88rem;
}

.entry-board {
  position: relative;
  min-height: 500px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(-45deg, #f0f0f4 0 10px, #fff 10px 20px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.entry-label {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  justify-items: center;
  line-height: 0.85;
}

.entry-label span {
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: underline;
}

.entry-label strong {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 5.3rem;
}

.feature-shot {
  position: absolute;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 5px 5px 0 var(--line);
}

.feature-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.feature-shot span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 3px 7px;
  color: #fff;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.main-shot {
  left: 28px;
  top: 86px;
  width: 255px;
  height: 210px;
  transform: rotate(-2deg);
}

.sub-shot {
  right: 32px;
  bottom: 72px;
  width: 220px;
  height: 184px;
  transform: rotate(2deg);
}

.mini-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 9px 12px;
  border: 3px solid var(--line);
  background: var(--mint);
  font-weight: 900;
}

.keyword-ribbon {
  display: flex;
  gap: 0;
  overflow-x: auto;
  border-bottom: 3px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.keyword-ribbon span {
  min-width: max-content;
  padding: 11px 22px;
  border-right: 2px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-weight: 900;
}

.keyword-ribbon span:nth-child(even) {
  color: var(--yellow);
}

.home-hero {
  border-bottom: 3px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.06) 0 1px, transparent 1px 28px),
    linear-gradient(0deg, rgba(255, 59, 143, 0.12) 0 1px, transparent 1px 28px),
    #fff;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  padding: 64px 0;
}

.home-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.14;
  font-weight: 900;
}

.home-copy p {
  max-width: 740px;
  margin: 20px 0 0;
  color: #303038;
  font-size: 1.05rem;
  font-weight: 500;
}

.home-index-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(-45deg, #f2f2f6 0 10px, #fff 10px 20px);
  box-shadow: var(--shadow);
}

.home-index-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 6px;
}

.home-index-title span {
  font-weight: 900;
  text-decoration: underline;
}

.home-index-title strong {
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.9;
}

.home-index-panel a {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 10px 12px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-index-panel a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--line);
}

.home-index-panel a span {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.home-index-panel a strong {
  font-weight: 900;
}

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

.role-card {
  min-height: 210px;
  padding: 24px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.role-card.accent {
  background: var(--yellow);
}

.role-card span {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  padding: 4px 8px;
  color: #fff;
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}

.role-card h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 900;
}

.role-card p {
  margin: 10px 0 0;
  color: #3b3b42;
}

.lp-hero .hero-inner {
  min-height: 640px;
}

.section,
.band-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.section.compact {
  padding: 64px 0;
}

.band {
  padding: 78px 0;
  border-block: 3px solid var(--line);
  background: var(--wash);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 30px;
  align-items: end;
  max-width: none;
}

.section-head h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.28;
  font-weight: 900;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.grid,
.sample-strip,
.flow-grid,
.guide-grid {
  display: grid;
  gap: 18px;
}

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

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

.card,
.sample-tile,
.flow-card,
.guide-card,
.article,
.toc,
.download-card {
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.card {
  min-width: 0;
  box-shadow: var(--soft-shadow);
}

.card.pad {
  padding: 26px;
}

.card h3,
.flow-card h3,
.download-card h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 900;
}

.card p,
.flow-card p,
.download-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.magazine-strip .sample-tile {
  position: relative;
  min-height: 285px;
  padding: 22px 16px 18px;
  background:
    repeating-linear-gradient(-45deg, #f2f2f6 0 9px, #fff 9px 18px);
  box-shadow: 5px 5px 0 var(--line);
}

.sample-tile:nth-child(2) {
  background: #f3fff9;
}

.sample-tile:nth-child(3) {
  background: #f5f1ff;
}

.sample-tile:nth-child(4) {
  background: #fff9e0;
}

.entry-no {
  display: inline-block;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.9;
}

.sample-tile img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  margin: 8px 0 14px;
}

.sample-tile strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.sample-tile span:not(.entry-no) {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.workflow-band {
  background:
    linear-gradient(90deg, rgba(255, 59, 143, 0.16) 0 1px, transparent 1px 28px),
    var(--wash);
}

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

.flow-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  overflow: hidden;
}

.flow-card span {
  display: block;
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.9;
}

.flow-card:nth-child(2) span {
  color: var(--purple);
}

.flow-card:nth-child(3) span {
  color: var(--mint);
}

.library-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
}

.topic-rail {
  display: grid;
  gap: 10px;
  align-self: start;
  position: sticky;
  top: 96px;
}

.topic-rail a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.topic-rail a:hover {
  background: var(--yellow);
}

.topic-rail span,
.row-tag {
  display: inline-flex;
  width: max-content;
  padding: 3px 7px;
  color: #fff;
  background: var(--ink);
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1;
}

.topic-rail strong {
  font-size: 1rem;
  font-weight: 900;
}

.article-queue {
  display: grid;
  gap: 12px;
}

.article-row {
  display: grid;
  grid-template-columns: 64px 96px minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 14px 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.article-row:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--line);
}

.row-no {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1;
}

.row-tag.pink {
  background: var(--pink);
}

.row-tag.cyan {
  background: var(--cyan);
}

.row-tag.orange {
  background: var(--orange);
}

.row-tag.green {
  background: var(--green);
}

.article-row strong {
  font-size: 1.05rem;
  font-weight: 900;
}

.article-row em {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

.cta-band {
  padding: 78px 0;
  color: #fff;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 20px),
    #111;
}

.cta-band .section-subtitle {
  color: var(--yellow);
}

.cta-band .section-subtitle::before {
  background: var(--yellow);
}

.cta-band h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 900;
}

.cta-band p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: center;
}

.download-card {
  padding: 26px;
  color: var(--ink);
  background: #fff;
}

.app-mini-icon {
  width: 54px;
  height: 54px;
  border: 2px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
}

.actions.vertical {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.actions.vertical .button {
  width: 100%;
}

.site-footer {
  border-top: 3px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.footer-inner strong {
  font-weight: 900;
}

.fineprint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.page-hero {
  border-bottom: 3px solid var(--line);
  background:
    repeating-linear-gradient(-45deg, #fff 0 12px, #f1f1f5 12px 24px);
}

.page-hero-inner {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 58px;
}

.page-hero h1 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.15;
  font-weight: 900;
}

.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.guide-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 380px;
  padding: 20px;
}

.guide-card.featured {
  grid-column: span 2;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
  align-items: center;
}

.guide-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background:
    repeating-linear-gradient(-45deg, #f2f2f6 0 9px, #fff 9px 18px);
}

.guide-card.featured img {
  height: 220px;
}

.guide-card h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.45;
  font-weight: 900;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.topic-roadmap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-roadmap span {
  padding: 9px 12px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: start;
}

.article {
  padding: 42px;
}

.article h1 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.25;
  font-weight: 900;
}

.article h2 {
  margin-top: 46px;
  padding-top: 30px;
  border-top: 3px solid var(--line);
  font-size: 1.65rem;
  line-height: 1.35;
  font-weight: 900;
}

.article h3 {
  margin-top: 30px;
  font-size: 1.22rem;
  font-weight: 900;
}

.article p,
.article li {
  color: #303038;
  font-size: 1.02rem;
}

.article p {
  margin: 16px 0 0;
}

.article a {
  color: #be0060;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.article ul,
.article ol {
  padding-left: 1.4em;
  margin: 16px 0;
}

.article li {
  margin-bottom: 8px;
}

.article figure {
  margin: 34px 0;
  overflow: hidden;
  border: 3px solid var(--line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(-45deg, #f2f2f6 0 10px, #fff 10px 20px);
}

.article figure img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.article figcaption {
  padding: 12px 16px;
  border-top: 3px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 78px;
  padding: 16px 18px 16px 72px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--pink);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.note {
  margin: 24px 0;
  padding: 18px 20px;
  border: 3px solid var(--line);
  border-left-width: 10px;
  border-left-color: var(--orange);
  border-radius: 8px;
  background: #fff7e6;
}

.toc {
  position: sticky;
  top: 96px;
  padding: 18px;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.toc a {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
  font-weight: 800;
}

.toc a:hover {
  color: var(--pink);
}

.article-card {
  display: grid;
  overflow: hidden;
}

.article-card .thumb {
  display: grid;
  min-height: 180px;
  place-items: center;
  background:
    repeating-linear-gradient(-45deg, #f2f2f6 0 10px, #fff 10px 20px);
}

.article-card .thumb img {
  width: 72%;
  max-height: 150px;
  object-fit: contain;
}

.article-card .body {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.article-card .meta {
  width: max-content;
  padding: 3px 7px;
  color: #fff;
  background: var(--ink);
  font-family: var(--font-display);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-poster {
    display: none;
  }

  .entry-board {
    min-height: 410px;
  }

  .split-head,
  .library-layout,
  .cta-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .topic-rail {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .guide-grid,
  .grid.three,
  .sample-strip,
  .flow-grid,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-card.featured {
    grid-column: span 2;
  }

  .article-row {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .article-row .row-tag,
  .article-row em {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    padding-bottom: 2px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 38px 0 28px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .home-copy h1 {
    font-size: 2.25rem;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .entry-board {
    min-height: 360px;
    box-shadow: 5px 5px 0 var(--line);
  }

  .entry-label strong {
    font-size: 4rem;
  }

  .main-shot {
    left: 16px;
    top: 76px;
    width: 210px;
    height: 160px;
  }

  .sub-shot {
    right: 16px;
    bottom: 66px;
    width: 178px;
    height: 145px;
  }

  .mini-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 0.86rem;
  }

  .section,
  .band-inner,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .section,
  .band,
  .cta-band {
    padding-block: 54px;
  }

  .section-head h2,
  .cta-band h2 {
    font-size: 1.72rem;
  }

  .guide-grid,
  .grid.three,
  .sample-strip,
  .flow-grid,
  .topic-rail,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .guide-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .article {
    padding: 26px 18px;
  }

  .article h1 {
    font-size: 2rem;
  }

  .article h2 {
    font-size: 1.36rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.75rem;
  }

  .entry-board {
    min-height: 330px;
  }

  .main-shot {
    width: 180px;
    height: 138px;
  }

  .sub-shot {
    width: 148px;
    height: 122px;
  }

  .feature-shot span {
    font-size: 0.62rem;
  }
}
