:root {
  --ink: #172033;
  --text: #1f2937;
  --muted: #667085;
  --line: #d8e0ea;
  --paper: #ffffff;
  --cloud: #f8fafc;
  --warm: #fff7ed;
  --blue: #2563eb;
  --orange: #f97316;
  --cyan: #06b6d4;
  --green: #16a34a;
  --yellow: #facc15;
  --shadow: 0 22px 60px rgba(23, 32, 51, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cloud);
  font-family: "Zen Kaku Gothic New", "Zen Kaku Gothic", system-ui, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
}

.nav-shell {
  width: min(1160px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  color: #fff;
  background: rgba(23, 32, 51, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(23, 32, 51, 0.2);
  backdrop-filter: blur(18px) saturate(150%);
  pointer-events: auto;
  transition: transform 0.25s ease, background 0.25s ease;
}

.site-header.is-compact .nav-shell {
  transform: translateY(-6px);
  background: rgba(23, 32, 51, 0.92);
}

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

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.story-link,
.story-inline {
  color: inherit;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

.story-link:hover,
.story-inline:hover,
.story-link:focus-visible,
.story-inline:focus-visible {
  color: var(--orange);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.28);
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
}

.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgba(23, 32, 51, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  padding: 118px 0 54px;
  background:
    linear-gradient(120deg, rgba(255, 247, 237, 0.96), rgba(248, 250, 252, 0.94)),
    radial-gradient(circle at 86% 12%, rgba(6, 182, 212, 0.18), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(250, 204, 21, 0.2), transparent 32%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 32, 51, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 51, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

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

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.45rem, 5.2vw, 4.9rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero h1 .h1-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .accent {
  color: var(--orange);
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 35rem;
  color: #344054;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-sub {
  margin: 18px 0 0;
  max-width: 36rem;
  color: #475467;
}

.hero-sub span {
  display: block;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-badges span,
.pill-label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 32, 51, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: 0;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.13);
}

.ticker {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  padding: 12px 24px;
  font-weight: 900;
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  padding: 104px 0;
}

.section.alt {
  background: var(--warm);
}

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

.section.dark .eyebrow,
.section.dark .section-copy,
.section.dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head.center {
  display: block;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.section h2,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3.15rem;
  line-height: 1.22;
  font-weight: 900;
}

.section.dark h2 {
  color: #fff;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.message-section {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.message-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(249, 115, 22, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(37, 99, 235, 0.2), transparent 56%);
  pointer-events: none;
}

.message-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.message-section h2 {
  color: #fff;
}

.message-section .kicker {
  color: var(--yellow);
}

.message-body {
  display: grid;
  gap: 18px;
  padding-left: 28px;
  border-left: 5px solid var(--orange);
}

.message-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  font-weight: 700;
}

.visual-band {
  background:
    linear-gradient(180deg, #fff, var(--cloud)),
    radial-gradient(circle at 12% 10%, rgba(250, 204, 21, 0.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(6, 182, 212, 0.14), transparent 30%);
}

.visual-pair {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.visual-copy {
  max-width: 560px;
}

.visual-frame {
  margin: 0 auto;
  padding: 14px;
  border: 2px solid rgba(23, 32, 51, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  border-radius: 6px;
}

.visual-frame.wide {
  max-width: 1120px;
}

.visual-frame.tall {
  max-width: 600px;
}

.visual-frame.comic-frame {
  max-width: 520px;
}

.lead-desk {
  position: relative;
  min-height: 560px;
}

.tab-window {
  position: absolute;
  left: 0;
  top: 22px;
  width: min(540px, 92%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-bar {
  display: flex;
  gap: 7px;
  height: 38px;
  align-items: center;
  padding: 0 14px;
  background: #eef2f7;
  border-bottom: 1px solid var(--line);
}

.window-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.window-bar i:nth-child(2) {
  background: var(--yellow);
}

.window-bar i:nth-child(3) {
  background: var(--cyan);
}

.tab-list {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.tab-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cloud);
  font-weight: 700;
}

.tab-item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.tab-item small {
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.74rem;
}

.memo-sheet {
  position: absolute;
  right: 0;
  top: 112px;
  width: min(500px, 88%);
  padding: 34px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: #fff;
  box-shadow: 14px 14px 0 rgba(249, 115, 22, 0.16);
  transform: rotate(1deg);
}

.memo-sheet time {
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.memo-sheet p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.9;
  font-weight: 900;
}

.memo-sheet mark {
  background: linear-gradient(transparent 58%, rgba(250, 204, 21, 0.62) 58%);
  color: inherit;
}

.reply-pill {
  position: absolute;
  left: 8%;
  bottom: 24px;
  max-width: 560px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.relation-grid,
.feature-grid,
.offer-grid,
.post-grid,
.page-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.info-panel,
.feature,
.offer,
.post-card,
.faq-pair,
.profile-panel,
.privacy-box,
.route-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(23, 32, 51, 0.08);
}

.info-panel {
  padding: 30px;
}

.info-panel h3,
.feature h3,
.offer h3,
.post-card h3,
.route-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.4;
}

.info-panel strong {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
}

.info-panel.is-main {
  border-color: rgba(249, 115, 22, 0.45);
  background: linear-gradient(180deg, #fff, #fff7ed);
}

.promise-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 36px;
  align-items: center;
}

.promise-image {
  position: relative;
}

.promise-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 rgba(6, 182, 212, 0.18);
}

.feature {
  padding: 24px;
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 16px;
}

.steps-board {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.diagram {
  position: sticky;
  top: 110px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.diagram img {
  width: 100%;
}

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

.step-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.step-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
}

.step-card h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.25rem;
}

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

.step-card small {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
}

.workshop {
  overflow: hidden;
}

.workshop-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.workshop-photo {
  position: relative;
}

.workshop-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.28);
}

.schedule {
  display: grid;
  gap: 14px;
}

.schedule-row {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.schedule-row b {
  display: block;
  color: #fff;
  font-size: 1.25rem;
}

.schedule-row span {
  color: rgba(255, 255, 255, 0.72);
}

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

.ba-panel {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
}

.ba-panel.after {
  background: var(--ink);
  color: #fff;
}

.ba-panel h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.ba-panel ul,
.offer ul,
.privacy-box ul,
.route-card ul {
  padding-left: 1.2em;
  margin: 0;
}

.ba-panel li + li,
.offer li + li,
.privacy-box li + li,
.route-card li + li {
  margin-top: 8px;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
}

.offer img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.offer .price {
  margin: 14px 0;
  color: var(--orange);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
}

.offer .btn {
  margin-top: auto;
}

.offer.featured {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 18px 56px rgba(249, 115, 22, 0.14);
}

.faq-chat {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-pair {
  padding: 20px;
  background: #fff;
}

.faq-pair dt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.faq-pair dt::before {
  content: "Q";
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.faq-pair dd {
  margin: 12px 0 0 40px;
  color: var(--muted);
}

.post-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 14px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.post-card:hover {
  transform: translateY(-2px);
}

.post-card img {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 6px;
}

.post-card time,
.post-card span {
  display: inline-block;
  color: var(--blue);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.cta-section {
  padding: 108px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(250, 204, 21, 0.28), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--ink));
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.cta-section h2 {
  margin: 0;
  color: #fff;
  font-size: 4rem;
  line-height: 1.12;
  font-weight: 900;
}

.cta-section p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.cta-action {
  min-height: 138px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-action b {
  font-size: 1.06rem;
}

.cta-action span {
  align-self: flex-end;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
}

.site-footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(120deg, rgba(249, 115, 22, 0.2), transparent 56%),
    #111c34;
}

.footer-cta .wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 46px 0;
}

.footer-cta h2 {
  margin: 0;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.35;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1.8fr;
  gap: 38px;
  padding: 46px 0 30px;
}

.footer-brand p {
  max-width: 28rem;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

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

.footer-cols h3 {
  margin: 0 0 10px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
}

.footer-cols a {
  display: block;
  padding: 3px 0;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  padding: 142px 0 74px;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 24%, rgba(6, 182, 212, 0.2), transparent 28%),
    linear-gradient(135deg, #fff7ed, #f8fafc);
}

.page-hero p {
  max-width: 48rem;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.page-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.profile-panel {
  padding: 24px;
}

.profile-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
}

.route-card {
  padding: 24px;
}

.privacy-box {
  padding: 28px;
  margin-top: 18px;
}

.contact-box {
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  box-shadow: 12px 12px 0 rgba(6, 182, 212, 0.18);
}

.contact-box h2 {
  font-size: 2rem;
}

.muted {
  color: var(--muted);
}

.article {
  max-width: 820px;
  margin: 0 auto;
}

.article img.hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin: 28px 0;
}

.article-visual {
  margin: 34px auto;
}

.article-visual.wide {
  max-width: 860px;
}

.article-visual.comic-frame {
  max-width: 500px;
}

.article h2 {
  margin-top: 42px;
  font-size: 2rem;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .message-layout,
  .promise-layout,
  .steps-board,
  .workshop-grid,
  .cta-grid,
  .footer-main,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: rgba(23, 32, 51, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px 4px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

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

  .diagram {
    position: static;
  }
}

@media (max-width: 780px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 112px;
  }

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

  .section h2,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .cta-section h2 {
    font-size: 2.6rem;
  }

  .hero-photo {
    aspect-ratio: 16 / 10;
  }

  .memo-sheet {
    top: 300px;
    left: 4%;
    right: auto;
    width: 92%;
  }

  .lead-desk {
    min-height: 720px;
  }

  .reply-pill {
    left: 0;
    right: 0;
    border-radius: 8px;
  }

  .message-layout {
    gap: 28px;
  }

  .message-body {
    padding-left: 18px;
  }

  .relation-grid,
  .feature-grid,
  .offer-grid,
  .post-grid,
  .ba-grid,
  .visual-pair,
  .cta-actions,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .visual-pair {
    gap: 28px;
  }

  .visual-frame {
    padding: 8px;
  }

  .visual-frame.comic-frame,
  .visual-frame.tall {
    max-width: 430px;
  }

  .step-card,
  .post-card {
    grid-template-columns: 1fr;
  }

  .step-card img,
  .post-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .footer-cta .wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-head.center {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    border-radius: 24px;
  }

  .brand small {
    display: none;
  }

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

  .hero-photo {
    aspect-ratio: 4 / 3;
  }
}
