:root {
  --color-coral: #ef5a47;
  --color-coral-strong: #d94a38;
  --color-coral-surface: #fdeee9;
  --color-teal: #1b9e9e;
  --color-teal-strong: #178888;
  --color-teal-surface: #eef7f6;
  --color-ink: #15384a;
  --color-sand: #f6f3ea;
  --color-surface: #ffffff;
  --color-warm: #fff5e9;
  --color-warm-border: #f3dcb4;
  --color-info: #dfeeec;
  --color-subtle: #5d6b6d;
  --color-faint: #8a8470;
  --color-line: #e6e1d4;
  --color-line-strong: #d9d2c0;
  --color-disabled: #d4cebd;
  --color-sun: #f0b94e;
  --color-sun-strong: #d99a2b;
  --color-grape: #9a6fc4;

  --font-sans: "Noto Sans JP", sans-serif;
  --font-heading: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-numeric: "Poppins", "Noto Sans JP", sans-serif;

  --page-max-width: 960px;
  --page-gutter: 20px;
}

@media (min-width: 768px) {
  :root {
    --page-gutter: 40px;
  }
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: var(--color-sand);
  color: var(--color-ink);
  font-family: var(--font-sans);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.35;
}


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

a {
  color: var(--color-teal);
}

.page {
  flex: 1 0 auto;
  width: 100%;
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 var(--page-gutter) 48px;
}

@media (min-width: 768px) {
  .page {
    padding-bottom: 64px;
  }

  .tabs {
    max-width: 560px;
    box-shadow: 0 0 0 100vmax var(--color-sand);
    clip-path: inset(0 -100vmax);
  }
}

.tabs {
  display: flex;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 12px 0;
  background: var(--color-sand);
  border-bottom: 1px solid var(--color-line);
}

.tab {
  flex: 1;
  padding: 10px 0;
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-subtle);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tab[aria-selected="true"] {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-surface);
}

.panel[hidden] {
  display: none;
}

.cta {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--color-coral);
  color: var(--color-surface);
  font-weight: 700;
  text-decoration: none;
}

.cta:hover {
  background: var(--color-coral-strong);
}

.note {
  color: var(--color-subtle);
  font-size: 0.875rem;
}

.notes {
  margin-top: 44px;
}

.notes-card {
  max-width: 720px;
  margin: 20px auto 0;
  padding: 24px 22px 26px;
  border-radius: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
}

.notes-about p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-ink);
}

.notes-about p + p {
  margin-top: 10px;
}

.notes-about a {
  color: var(--color-teal-strong);
  font-weight: 700;
  text-underline-offset: 3px;
}

.notes-about .pending {
  color: var(--color-subtle);
}

.notes-heading {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-teal-strong);
}

.notes-safe {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed var(--color-line-strong);
}

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

.notes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-ink);
}

.notes-check {
  flex: none;
  margin-top: 4px;
  color: var(--color-teal-strong);
}

.notes-env {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px dashed var(--color-line-strong);
}

.notes-env p {
  margin: 10px 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-ink);
}

.notes-caveat {
  color: var(--color-subtle);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .notes {
    margin-top: 56px;
  }

  .notes-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 36px;
    max-width: 880px;
    padding: 32px 36px 34px;
  }

  .notes-about {
    grid-column: 1 / -1;
  }

  .notes-safe,
  .notes-env {
    margin-top: 0;
    padding-top: 22px;
    border-top: 1px dashed var(--color-line-strong);
  }
}

.footer {
  margin-top: 8px;
  padding: 36px var(--page-gutter) 40px;
  background: var(--color-ink);
  color: var(--color-sand);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-surface);
}

.footer-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 16px 0 0;
}

.footer-credit {
  display: flex;
  gap: 10px;
  margin: 0;
}

.footer-credit dt {
  flex: none;
  color: rgba(246, 243, 234, 0.7);
}

.footer-credit dt::after {
  content: ":";
}

.footer-credit dd {
  margin: 0;
  font-weight: 500;
}

.footer-contact {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 243, 234, 0.18);
  color: rgba(246, 243, 234, 0.85);
}

.footer-contact-mail {
  white-space: nowrap;
}

.footer-legal a {
  display: inline-block;
  padding: 10px 2px;
  margin: -10px 0;
}

.footer-contact a {
  color: var(--color-surface);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 8px;
  margin: 14px 0 0;
  color: rgba(246, 243, 234, 0.85);
}

.footer-legal a {
  color: var(--color-surface);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-sep {
  color: rgba(246, 243, 234, 0.55);
}

.footer-contact .pending {
  color: rgba(246, 243, 234, 0.7);
}

@media (min-width: 768px) {
  .footer {
    padding: 40px var(--page-gutter) 44px;
  }

  .footer-credits {
    gap: 8px 36px;
  }
}

@media (min-width: 1024px) {
  .nowrap {
    white-space: nowrap;
  }
}

.keep {
  white-space: nowrap;
}

.pc-only {
  display: none;
}

@media (min-width: 1024px) {
  .pc-only {
    display: inline;
  }
}

.hero {
  position: relative;
  margin: 0 calc(-1 * var(--page-gutter));
  padding: 28px var(--page-gutter) 0;
  overflow: hidden;
  background: radial-gradient(
    120% 80% at 50% 0%,
    color-mix(in srgb, var(--color-sand), var(--color-surface) 50%),
    var(--color-sand)
  );
}

.hero-body {
  position: relative;
  z-index: 1;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--color-ink);
}

.hero-squiggle {
  color: var(--color-coral);
}

.hero-title {
  margin: 18px 0 0;
  font-weight: 900;
  font-size: clamp(1.75rem, 7.6vw, 2.75rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-ink);
}

.hero-underline {
  position: relative;
  display: inline-block;
}

.hero-underline svg {
  position: absolute;
  left: 0;
  bottom: -0.16em;
  width: 100%;
  height: 0.26em;
  color: var(--color-coral);
}

.hero-subtitle {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.125rem, 5vw, 1.75rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-teal-strong);
}

.hero-lead {
  margin: 14px 0 0;
  font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-subtle);
}

.hero-dates {
  margin: 10px 0 0;
  font-size: clamp(0.9375rem, 2.4vw, 1.0625rem);
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-ink);
}

.hero-dates-link {
  font-weight: 700;
  color: var(--color-teal-strong);
}

.hero-cta {
  margin: 24px 0 0;
}

.cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  padding: 16px 36px;
  font-size: 1.125rem;
  box-shadow: 0 8px 20px rgba(239, 90, 71, 0.25);
}

.cta-arrow {
  margin-left: 0.5em;
}

.hero-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 14px 0 0;
  padding: 8px 14px;
  border: 2px solid var(--color-teal);
  border-radius: 24px;
  background: var(--color-surface);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-ink);
}

.hero-note svg {
  flex: none;
  margin-top: 0.05em;
  color: var(--color-teal);
}

.hero-screens {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 360px;
  margin: 32px auto 0;
  padding: 12px 0 0;
}

.hero-screen {
  width: 46%;
  height: auto;
  border: 1px solid var(--color-line-strong);
  border-radius: 22px;
  filter: drop-shadow(0 18px 32px rgba(21, 56, 74, 0.2));
}

.hero-screen-type {
  margin-top: 40px;
  margin-right: -6%;
  transform: rotate(-6deg);
}

.hero-screen-home {
  transform: rotate(4deg);
}

.hero-street {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -36px;
  overflow: hidden;
  --street-green: #b9ddd8;
  --street-slate: #55707a;
  --street-mint: #8fb8b2;
}

.hero-street svg {
  display: block;
  flex: none;
  width: max(100%, 900px);
  height: auto;
}

@media (min-width: 768px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(280px, 34vw, 340px);
    column-gap: 16px;
    align-items: start;
    padding-top: 48px;
  }

  .hero-body {
    padding-bottom: 24px;
  }

  .hero-title {
    margin-top: 28px;
    font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  }

  .hero-subtitle {
    margin-top: 24px;
    font-size: clamp(1.125rem, 2.4vw, 1.75rem);
  }

  .hero-lead {
    margin-top: 18px;
    font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  }

  .hero-cta {
    margin-top: 28px;
  }

  .cta-large {
    width: auto;
  }

  .hero-screens {
    max-width: none;
    margin: 16px 0 0;
    padding: 0;
  }

  .hero-screen {
    width: 50%;
  }

  .hero-screen-type {
    margin-top: 56px;
    margin-right: -8%;
  }

  .hero-street {
    grid-column: 1 / -1;
    margin-top: -64px;
  }
}

.section {
  margin-top: 48px;
  scroll-margin-top: 84px;
}

.section-title {
  margin: 0;
  font-size: clamp(1.375rem, 5vw, 1.875rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-ink);
}

.about-lead {
  max-width: 720px;
  margin: 16px auto 0;
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-subtle);
}

.features {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature {
  padding: 22px 22px 20px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-surface);
}

.feature-num {
  display: block;
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-coral);
}

.feature-title {
  margin: 10px 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-ink);
}

.feature-text {
  margin: 8px 0 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-subtle);
}

@media (min-width: 768px) {
  .section {
    margin-top: 72px;
  }

  .about-lead {
    text-align: center;
  }

  .features {
    gap: 20px;
    margin-top: 36px;
  }

  .feature {
    padding: 26px 24px 24px;
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps-list {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0 0 0 44px;
  list-style: none;
}

.steps-list::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 15px;
  border-left: 3px dotted var(--color-coral);
}

.step-card {
  position: relative;
  padding: 18px 18px 18px 20px;
  border: 2px solid var(--color-info);
  border-radius: 16px;
  background: var(--color-surface);
}

.step-num {
  position: absolute;
  top: 18px;
  left: -46px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-coral);
  color: var(--color-surface);
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 0.9375rem;
  line-height: 1;
}

.step-icon {
  display: block;
  fill: none;
  stroke: var(--color-teal);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--color-teal);
}

.step-title {
  margin: 10px 0 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-ink);
}

.step-label {
  display: block;
  font-family: var(--font-numeric);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--color-coral);
}

.step-text {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-subtle);
}

.step-types-box {
  margin-top: 10px;
  padding: 14px 18px 16px;
  border-radius: 16px;
  background: var(--color-teal-surface);
}

.step-types-lead {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-teal-strong);
}

.step-types-note {
  margin: 8px 0 0;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-ink);
}

.step-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.step-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: calc(33.333% - 4px);
  min-width: 0;
  font-size: 0.625rem;
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--color-ink);
}

.step-type svg {
  display: block;
  fill: none;
  stroke: var(--color-teal);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-type .dot {
  fill: var(--color-teal);
  stroke: none;
}

.step-type .nose {
  fill: var(--color-coral);
  stroke: none;
}

.step-type-name > span {
  display: block;
  font-weight: 500;
  color: var(--color-subtle);
}

@media (max-width: 389px) {
  .step-type {
    width: calc(50% - 3px);
  }
}

.steps-more {
  margin: 20px 0 0;
  text-align: center;
}

.steps-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 10px 22px;
  border: 2px solid var(--color-teal);
  border-radius: 999px;
  font-weight: 700;
  color: var(--color-teal-strong);
  text-decoration: none;
  background: var(--color-surface);
}

.steps-more-link:hover {
  background: var(--color-teal-surface);
}

@media (min-width: 768px) {
  .steps-list {
    margin-top: 36px;
  }

  .step-type {
    width: auto;
    min-width: 88px;
    font-size: 0.6875rem;
  }

  .step-types {
    gap: 10px 6px;
  }
}

@media (min-width: 1024px) {
  .steps-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-flow: row dense;
    gap: 16px 14px;
    padding: 46px 0 0;
  }

  .steps-list::before {
    top: 16px;
    right: 10%;
    bottom: auto;
    left: 10%;
    border-left: 0;
    border-top: 3px dotted var(--color-coral);
  }

  .step-2 {
    display: contents;
  }

  .step-card {
    height: 100%;
    padding: 18px 14px 18px;
  }

  .step-num {
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
  }

  .step-title {
    font-size: 1rem;
  }

  .step-text {
    font-size: 0.875rem;
  }

  .step-types-box {
    grid-column: 1 / -1;
    margin-top: 0;
    padding: 14px 22px 16px;
    text-align: center;
  }

  .step-types-lead::before {
    content: "STEP 2 ";
    font-family: var(--font-numeric);
    color: var(--color-coral);
  }

  .step-types {
    justify-content: center;
    gap: 10px 16px;
    margin-top: 10px;
  }

  .step-type {
    min-width: 104px;
  }
}

.cube-card {
  display: grid;
  gap: 8px;
  padding: 24px 22px 26px;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  background: var(--color-surface);
  --cube-shadow: #efe9dc;
  --street-green: #b9ddd8;
  --street-mint: #8fb8b2;
  --cube-top: #f3705e;
  --cube-side: #e9553f;
  --cube-side-dark: #c9432f;
  --cube-seam: #c43f2d;
  --cube-seam-top: #d95a48;
  --cube-line: #a83321;
  --cube-ground: #e6dfd0;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-teal-strong);
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  width: 28px;
  border-top: 2px solid var(--color-teal);
  opacity: 0.6;
}

.cube-figure {
  width: min(78%, 260px);
  margin: 0 auto;
}

.cube-figure svg {
  display: block;
  width: 100%;
  height: auto;
}

.cube-title {
  text-align: center;
}

.cube-lead {
  margin: 12px 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-ink);
}

.cube-lead-em {
  font-style: normal;
  color: var(--color-coral-strong);
}

.cube-text {
  margin: 10px 0 0;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-subtle);
}

.cube-tip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--color-teal-surface);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-ink);
}

.cube-tip svg {
  flex: none;
  margin-top: 0.1em;
  color: var(--color-teal);
}

.cube-credit {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--color-faint);
}

.cube-credit-label {
  font-family: var(--font-numeric);
  font-weight: 700;
}

@media (min-width: 768px) {
  .section-kicker {
    margin-bottom: 18px;
    font-size: 1.0625rem;
  }

  .section-kicker::before,
  .section-kicker::after {
    width: 40px;
  }

  .cube-card {
    grid-template-columns: 260px minmax(0, 1fr);
    column-gap: 32px;
    align-items: center;
    padding: 32px 36px;
  }

  .cube-figure {
    width: 100%;
    margin: 0;
  }

  .cube-title {
    text-align: left;
  }

  .cube-lead {
    margin-top: 14px;
    font-size: 1.125rem;
  }

  .cube-text {
    font-size: 1rem;
  }

  .cube-credit {
    margin-top: 22px;
  }
}

.badges {
  padding: 40px 0 44px;
  background: var(--color-teal-surface);
  box-shadow: 0 0 0 100vmax var(--color-teal-surface);
  clip-path: inset(0 -100vmax);
}

.badges-lead {
  max-width: 640px;
  margin: 16px auto 0;
  font-weight: 500;
  line-height: 1.9;
  color: var(--color-subtle);
}

.badge-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0 0;
}

.badge {
  width: clamp(56px, 16vw, 72px);
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(21, 56, 74, 0.12));
}

.badge-teal {
  --badge-bg: var(--color-teal);
}

.badge-sun {
  --badge-bg: var(--color-sun);
}

.badge-coral {
  --badge-bg: var(--color-coral);
}

.badge-grape {
  --badge-bg: var(--color-grape);
}

.badge:nth-child(even) {
  transform: translateY(10px);
}

.reward-text {
  max-width: 640px;
  margin: 30px auto 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-ink);
}

.badges-note {
  max-width: 640px;
  margin: 10px auto 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-subtle);
}

@media (min-width: 768px) {
  .badges-lead,
  .badges-note,
  .reward-text {
    text-align: center;
  }

  .badge-row {
    gap: 20px;
    margin-top: 32px;
  }

  .badges {
    padding: 56px 0 60px;
  }

  .reward-text {
    max-width: 800px;
    margin-top: 40px;
    font-size: 1.0625rem;
  }
}

.howto {
  margin-top: 32px;
}

.howto-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
}

.howto-jump a {
  flex: none;
  padding: 7px 14px;
  border: 1.5px solid var(--color-line-strong);
  border-radius: 999px;
  background: var(--color-surface);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
}

.howto-jump a:hover {
  border-color: var(--color-teal);
  color: var(--color-teal-strong);
}

.howto-section-title {
  margin: 40px 0 0;
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-ink);
  scroll-margin-top: 84px;
}

.howto-section-lead {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  text-align: center;
  color: var(--color-subtle);
}

.howto-feature {
  scroll-margin-top: 84px;
}

.howto-feature .howto-card {
  margin-top: 16px;
}

.howto-card > .howto-step-lead {
  margin-top: 0;
}

.howto-steps {
  display: grid;
  gap: 20px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.howto-step,
.howto-card {
  min-width: 0;
  padding: 22px 20px 20px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: var(--color-surface);
  scroll-margin-top: 84px;
}

.howto-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.howto-step-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-coral);
  color: var(--color-surface);
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1;
}

.howto-step-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-ink);
}

.howto-step-lead {
  margin: 12px 0 0;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-subtle);
}

.howto-step-lead a,
.howto-todo a {
  color: var(--color-teal-strong);
}

.howto-step-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 14px;
}

.shots {
  display: flex;
  justify-content: center;
}

.shot {
  width: 100%;
  max-width: 120px;
  margin: 0;
}

.shot-frame {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border: 1px solid var(--color-line-strong);
  border-radius: 22px;
  background: var(--color-sand);
  box-shadow: 0 8px 20px rgba(21, 56, 74, 0.08);
  overflow: hidden;
}

img.shot-frame {
  height: auto;
  object-fit: cover;
  object-position: top;
}

.shot-pending {
  display: grid;
  place-content: center;
  gap: 6px;
  padding: 12px;
  border-style: dashed;
  box-shadow: none;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-faint);
}

.shot-pending b {
  color: var(--color-subtle);
}

.shot-pending code {
  font-size: 0.6875rem;
  word-break: break-all;
}

.shot figcaption {
  margin-top: 6px;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-subtle);
}

.howto-todo {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.howto-todo li {
  position: relative;
  padding: 8px 0 8px 22px;
  border-top: 1px solid var(--color-line);
  font-size: 0.875rem;
  line-height: 1.7;
}

.howto-todo li:first-child {
  border-top: 0;
}

.howto-todo li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-teal);
}

.howto-todo-compact li {
  padding: 6px 0 6px 20px;
  font-size: 0.875rem;
  line-height: 1.65;
}

.howto-todo-compact li::before {
  top: 14px;
  width: 8px;
  height: 8px;
}

.ui {
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 8px;
  border: 1px solid var(--color-line-strong);
  border-radius: 12px;
  background: var(--color-sand);
  font-size: 0.85em;
  font-weight: 700;
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: anywhere;
  vertical-align: 0.06em;
}

.howto-step .step-types-box {
  margin-top: 16px;
}

.howto-end {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 28px 0 0;
}

.howto-end .cta {
  padding: 10px 22px;
  border: 2px solid var(--color-coral);
}

.howto-end .cta:hover {
  border-color: var(--color-coral-strong);
}

@media (min-width: 768px) {
  .howto {
    margin-top: 48px;
  }

  .howto-jump {
    justify-content: center;
    margin-top: 24px;
  }

  .howto-steps {
    gap: 24px;
    margin-top: 32px;
  }

  .howto-step {
    padding: 26px 28px 26px;
  }

  .howto-step-title {
    font-size: 1.375rem;
  }

  .howto-step-lead {
    font-size: 1rem;
  }

  .howto-step,
  .howto-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    grid-template-rows: 1fr auto auto auto auto 1fr;
    grid-template-areas:
      "shot ."
      "shot head"
      "shot lead"
      "shot todo"
      "shot types"
      "shot .";
    column-gap: 28px;
    align-items: start;
  }

  .howto-step-body {
    display: contents;
  }

  .shot {
    max-width: none;
  }

  .howto-step-head {
    grid-area: head;
  }

  .howto-step-lead,
  .howto-card > .howto-step-lead {
    grid-area: lead;
    margin-top: 8px;
  }

  .shots {
    grid-area: shot;
    align-self: center;
  }

  .shot {
    width: 180px;
  }

  .howto-todo {
    grid-area: todo;
    margin-top: 12px;
    max-width: 62ch;
  }

  .howto-todo li {
    font-size: 0.9375rem;
  }

  .howto-step .step-types-box {
    grid-area: types;
    display: block;
    margin-top: 14px;
    padding: 14px 18px 16px;
  }

  .howto-step .step-types-lead {
    margin-bottom: 8px;
  }

  .howto-step .step-types-lead::before {
    content: none;
  }

  .howto-section-title {
    margin-top: 52px;
  }
}

.faq-lead {
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
  margin: 20px auto 0;
}

.qa {
  border: 1px solid var(--color-line);
  border-radius: 16px;
  background: var(--color-surface);
  overflow: hidden;
}

.qa[open] {
  border-color: var(--color-teal);
  box-shadow: 0 6px 18px rgba(21, 56, 74, 0.06);
}

.qa > summary {
  display: grid;
  grid-template-columns: 30px 1fr 12px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-ink);
}

.qa > summary::-webkit-details-marker {
  display: none;
}

.qa > summary::before {
  content: "Q";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-coral);
  color: var(--color-surface);
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 0.9rem;
}

.qa > summary::after {
  content: "";
  width: 12px;
  height: 12px;
  margin: -4px 4px 0 0;
  border-right: 2.5px solid var(--color-teal);
  border-bottom: 2.5px solid var(--color-teal);
  transform: rotate(45deg);
  transition: transform 0.2s;
}

.qa[open] > summary::after {
  margin-top: 6px;
  transform: rotate(-135deg);
}

.qa > summary:hover {
  background: var(--color-teal-surface);
}

.qa > summary:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: -2px;
}

.qa > :not(summary) {
  margin: 0;
  padding: 0 16px 12px 58px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-ink);
}

.qa > summary + * {
  position: relative;
  padding-top: 12px;
  border-top: 1px dashed var(--color-line);
}

.qa > summary + *::before {
  content: "A";
  position: absolute;
  top: 13px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-teal);
  color: var(--color-surface);
  font-family: var(--font-numeric);
  font-weight: 800;
  font-size: 0.9rem;
}

.qa a {
  color: var(--color-teal-strong);
  font-weight: 700;
  text-underline-offset: 3px;
}

.faq-group-title {
  max-width: 720px;
  margin: 26px auto 0;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--color-line-strong);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-teal-strong);
  scroll-margin-top: 84px;
}

.faq-group-title + .faq-list {
  margin-top: 12px;
}

.qa > ul {
  padding-left: 74px;
  list-style: disc;
}

.qa > ul li {
  margin-top: 2px;
}

.faq-contact-card {
  display: block;
  max-width: 720px;
}

.faq-contact-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-ink);
}

.faq-contact-card p + p {
  margin-top: 10px;
}

@media (max-width: 480px) {
  .qa > summary {
    gap: 10px;
    padding: 13px 13px;
    font-size: 0.9375rem;
  }

  .qa > :not(summary) {
    padding-left: 53px;
    padding-right: 13px;
  }

  .qa > summary + *::before {
    left: 13px;
  }

  .qa > ul {
    padding-left: 69px;
  }
}

.privacy-nav {
  padding: 16px 0;
}

.privacy-back {
  font-weight: 700;
  text-decoration: none;
}

.privacy-back:hover {
  text-decoration: underline;
}

.privacy {
  max-width: 720px;
  margin: 8px auto 0;
  padding: 28px var(--page-gutter) 36px;
  border-radius: 20px;
  background: var(--color-surface);
  font-size: 0.9375rem;
  line-height: 1.9;
}

.privacy h1 {
  margin: 0 0 16px;
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  font-weight: 700;
}

.privacy h2 {
  margin: 32px 0 8px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  font-size: 1.0625rem;
  font-weight: 700;
}

.privacy p {
  margin: 0 0 12px;
}

.privacy ul {
  margin: 0 0 12px;
  padding-left: 1.4em;
}

.privacy li {
  margin-bottom: 6px;
}

.privacy a {
  font-weight: 700;
}

.privacy-contact {
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--color-sand);
}

.privacy-contact p {
  margin: 0;
}

.privacy-contact-name {
  font-weight: 700;
}

.privacy-enacted {
  margin-top: 28px;
  color: var(--color-subtle);
  font-size: 0.875rem;
  text-align: right;
}

@media (min-width: 768px) {
  .privacy {
    padding: 40px 48px 48px;
  }
}
