@charset "UTF-8";

/* 作者：搭客佬
官网：https://www.flaisapp.cn/ */

:root {
  --green: #00c96b;
  --green-dark: #008c4a;
  --green-soft: #e9f8f0;
  --green-pale: #f4fbf7;
  --ink: #111713;
  --muted: #5d6962;
  --line: #d7e4dc;
  --paper: #f8faf7;
  --white: #ffffff;
  --header-height: 76px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-touch-callout: none;
}

button,
summary {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

button {
  color: inherit;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

.container,
.header-inner,
.hero-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 26px 0 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--green-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  background: var(--green);
}

.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--white);
  cursor: pointer;
}

.icon-menu,
.icon-download,
.icon-globe,
.icon-top {
  display: inline-block;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-menu {
  width: 21px;
  height: 21px;
  background-image: url("../icons/menu.svg");
}

.icon-download {
  width: 18px;
  height: 18px;
  background-image: url("../icons/download.svg");
}

.icon-globe {
  width: 20px;
  height: 20px;
  background-image: url("../icons/globe.svg");
}

.icon-top {
  width: 22px;
  height: 22px;
  background-image: url("../images/top.png");
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 201, 107, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 201, 107, 0.06) 1px, transparent 1px),
    var(--white);
  background-size: 42px 42px;
}

.hero::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  content: "";
  background: rgba(0, 201, 107, 0.13);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 72px;
  min-height: 700px;
  padding: 72px 0;
}

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

.eyebrow,
.section-index {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 10px;
  color: var(--green);
  font-size: clamp(86px, 9vw, 138px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-title {
  max-width: 560px;
  margin-top: 24px;
  font-size: clamp(32px, 3vw, 50px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.hero-desc {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.hero-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 30px;
}

.primary-link,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  color: var(--white);
  background: var(--green);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.primary-link:hover,
.primary-link:focus-visible,
.download-link:hover,
.download-link:focus-visible {
  background: var(--green-dark);
}

.age-label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.hero-tags {
  display: flex;
  gap: 0;
  margin-top: 28px;
}

.hero-tags li {
  padding: 0 20px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags li:first-child {
  padding-left: 0;
}

.hero-tags li:last-child {
  border-right: 0;
}

.dialogue-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(190px, 0.75fr);
  gap: 14px;
  align-items: stretch;
  width: 100%;
}

.stage-main,
.group-panel,
.template-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(17, 23, 19, 0.13);
}

.stage-main {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  padding: 24px;
}

.stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 800;
}

.online-state {
  padding: 5px 10px;
  border: 1px solid rgba(0, 201, 107, 0.5);
  border-radius: 999px;
  color: #7ff5ba;
  font-size: 12px;
}

.dialogue-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 28px 0;
}

.message {
  max-width: 82%;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.65;
}

.message-left {
  align-self: flex-start;
  color: #e8efeb;
  background: #2a342e;
}

.message-right {
  align-self: flex-end;
  color: var(--ink);
  background: var(--green);
}

.memory-state {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
}

.memory-state strong {
  font-size: 13px;
}

.memory-state > span:last-child {
  color: var(--muted);
  font-size: 12px;
}

.memory-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
}

.stage-side {
  display: grid;
  gap: 14px;
}

.group-panel,
.template-panel {
  padding: 22px;
}

.group-panel > p,
.template-panel > p {
  font-size: 14px;
  font-weight: 800;
}

.group-avatars {
  display: flex;
  gap: 8px;
  margin: 22px 0 14px;
}

.group-avatars span,
.role-line > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--white);
  background: #263129;
  font-size: 13px;
  font-weight: 800;
}

.group-panel small {
  display: block;
  color: #aebbb3;
  font-size: 12px;
  line-height: 1.6;
}

.template-panel ul {
  margin-top: 18px;
}

.template-panel li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #dbe5df;
  font-size: 12px;
}

.template-panel > span {
  display: block;
  margin-top: 18px;
  color: #5eeaa7;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 100px 0;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-top: 7px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-heading > p:last-child,
.section-heading-row > p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading-row > p {
  margin: 0 0 8px;
  text-align: right;
}

.experience {
  background: var(--paper);
}

.feature-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 340px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.feature-dialogue,
.feature-memory,
.feature-group,
.feature-template {
  grid-column: auto;
  grid-row: auto;
}

.feature-dialogue {
  background: var(--green-soft);
}

.feature-memory {
  background: #f5f8e8;
}

.feature-group {
  background: var(--ink);
  color: var(--white);
}

.feature-number {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.feature-group .feature-number {
  color: #73f0b2;
}

.feature h3 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.feature > p {
  max-width: 520px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.feature-group > p {
  color: #b8c5bd;
}

.mini-chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
}

.mini-chat span {
  max-width: 84%;
  padding: 12px 14px;
  border: 1px solid #cce9da;
  border-radius: 10px;
  background: var(--white);
  font-size: 12px;
}

.mini-chat span:last-child {
  align-self: flex-end;
  color: var(--white);
  background: var(--green-dark);
}

.memory-list,
.template-tags {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 26px;
}

.memory-list li,
.template-tags span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.role-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 32px;
}

.role-line small {
  margin-left: 8px;
  color: #aebbb3;
  font-size: 12px;
}

.interface {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.shot-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.shot-viewport {
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--white);
}

.shot-viewport img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shot-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}

.shot-card figcaption span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.shot-card figcaption strong {
  font-size: 16px;
}

.story-path {
  background: var(--green-soft);
}

.path-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(300px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #b9deca;
  background: var(--white);
}

.path-steps li {
  position: relative;
  display: flex;
  gap: 16px;
  min-height: 184px;
  padding: 32px 24px;
  border-right: 1px solid #b9deca;
}

.path-steps li:last-child {
  border-right: 0;
}

.path-steps li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.path-steps strong {
  font-size: 16px;
}

.path-steps p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.prompt-shelf {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  color: var(--white);
  background: var(--ink);
}

.prompt-shelf > span {
  color: #68edae;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.prompt-shelf h3 {
  margin-top: 10px;
  font-size: 21px;
  line-height: 1.4;
}

.prompt-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.prompt-items p {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #d9e6de;
  font-size: 12px;
}

.guide {
  background: var(--paper);
}

.faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--ink);
}

.faq-item {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item summary,
.official-disclosure summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker,
.official-disclosure summary::-webkit-details-marker {
  display: none;
}

.faq-item summary > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.faq-item summary strong,
.official-disclosure summary strong {
  font-size: 15px;
}

.faq-item summary > i,
.official-toggle {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item summary > i::before,
.faq-item summary > i::after,
.official-toggle::before,
.official-toggle::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--ink);
}

.faq-item summary > i::after,
.official-toggle::after {
  transform: rotate(90deg);
}

.faq-item[open] summary > i::after,
.official-disclosure[open] .official-toggle::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 68px 22px;
}

.faq-answer p,
.official-answer {
  color: var(--muted);
  font-size: 14px;
}

.official-disclosure {
  width: 100%;
  margin-top: 26px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.official-disclosure summary {
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  min-height: 78px;
}

.official-answer {
  padding: 0 54px 24px;
}

.official-answer a {
  color: var(--green-dark);
  font-weight: 700;
  word-break: break-all;
}

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

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

.review-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  background: var(--paper);
}

.review-author {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
}

.review-author > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.review-author strong {
  font-size: 14px;
}

.review-author time {
  color: var(--muted);
  font-size: 12px;
}

.review-card > p {
  margin-top: 22px;
  color: #334039;
  font-size: 14px;
  line-height: 1.85;
}

.download {
  padding: 70px 0;
  color: var(--white);
  background: #0b2417;
}

.download-ticket {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  align-items: stretch;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: var(--white);
  color: var(--ink);
}

.ticket-code {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px dashed #8eaa9a;
  color: var(--green-dark);
}

.ticket-code span {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
}

.ticket-code i {
  width: 100%;
  height: 32px;
  margin-top: 18px;
  background: repeating-linear-gradient(90deg, var(--green-dark) 0 2px, transparent 2px 5px);
}

.ticket-copy {
  align-self: center;
  padding: 28px 44px;
}

.ticket-copy p {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ticket-copy h2 {
  margin-top: 6px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.ticket-copy > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.download-link {
  align-self: stretch;
  min-height: 100%;
  font-size: 17px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  padding: 44px 0 24px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
}

.footer-brand .brand-copy span {
  color: #aab7af;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 28px;
}

.footer-nav a {
  color: #dce6e0;
  font-size: 13px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #6ceead;
}

.footer-bottom {
  padding-top: 22px;
  text-align: center;
}

.footer-bottom p {
  color: #aab7af;
  font-size: 12px;
}

.back-top {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--green);
  cursor: pointer;
}

.back-top.is-visible {
  display: inline-flex;
}

:focus-visible {
  outline: 3px solid rgba(0, 201, 107, 0.42);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .site-nav ul {
    gap: 24px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    gap: 36px;
  }

  .dialogue-stage {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .group-panel,
  .template-panel {
    padding: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-top: var(--header-height);
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy span {
    max-width: 122px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
  }

  .mobile-actions {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: 990;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

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

  .site-nav ul {
    display: block;
    width: min(calc(100% - 24px), var(--container));
    margin: 0 auto;
  }

  .site-nav li {
    border-bottom: 1px solid var(--line);
  }

  .site-nav li:last-child {
    border-bottom: 0;
  }

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

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
    padding: 74px 0;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-title,
  .hero-desc {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-action {
    align-items: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .dialogue-stage {
    grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.65fr);
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .feature-dialogue,
  .feature-memory,
  .feature-group,
  .feature-template {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

  .download-ticket {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .download-link {
    grid-column: 1 / -1;
    min-height: 66px;
  }
}

@media (max-width: 680px) {
  .container,
  .hero-inner,
  .footer-inner {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .hero-inner {
    padding: 62px 0 72px;
  }

  .hero h1 {
    font-size: clamp(74px, 25vw, 108px);
  }

  .hero-title {
    margin-top: 18px;
    font-size: 34px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-tags li {
    padding: 0 12px;
    font-size: 12px;
  }

  .dialogue-stage {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 430px);
  }

  .stage-main {
    min-height: 420px;
  }

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

  .memory-state {
    grid-template-columns: 34px 1fr;
  }

  .memory-state > span:last-child {
    grid-column: 2;
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    margin-top: 14px;
    text-align: left;
  }

  .section-heading h2 {
    font-size: 38px;
  }

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

  .feature-dialogue,
  .feature-memory,
  .feature-group,
  .feature-template {
    grid-column: auto;
  }

  .feature {
    min-height: 300px;
  }

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

  .shot-card figcaption {
    min-height: 62px;
    padding: 12px;
  }

  .shot-card figcaption strong {
    font-size: 13px;
  }

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

  .path-steps li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #b9deca;
  }

  .path-steps li:last-child {
    border-bottom: 0;
  }

  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 20px;
    min-height: 68px;
    padding: 0 16px;
  }

  .faq-item summary strong,
  .official-disclosure summary strong {
    font-size: 14px;
  }

  .faq-answer {
    padding: 0 50px 20px;
  }

  .official-disclosure summary {
    padding: 0 16px;
  }

  .official-answer {
    padding: 0 48px 22px;
  }

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

  .review-card {
    min-height: auto;
  }

  .download-ticket {
    grid-template-columns: minmax(0, 1fr);
  }

  .ticket-code {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px dashed #8eaa9a;
  }

  .ticket-code i {
    max-width: 180px;
  }

  .ticket-copy {
    padding: 30px 28px;
  }

  .download-link {
    grid-column: auto;
    min-height: 64px;
  }

  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav ul {
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-brand {
    justify-content: center;
  }

  .back-top {
    right: 14px;
    bottom: 14px;
    width: 46px;
    height: 46px;
  }

}

@media (hover: none), (pointer: coarse) {
  a,
  button,
  summary,
  [role="button"] {
    transition: none !important;
    animation: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }

  a:active,
  button:active,
  summary:active,
  [role="button"]:active {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .primary-link:active,
  .download-link:active {
    color: var(--white);
    background: var(--green);
  }

  .mobile-download:active {
    color: var(--white);
    background: var(--ink);
  }

  .menu-toggle:active,
  .faq-item summary:active,
  .official-disclosure summary:active {
    color: var(--ink);
    background: var(--white);
  }
}

@media (max-width: 430px) {
  .header-inner {
    width: calc(100% - 20px);
  }

  .brand-copy span {
    max-width: 96px;
  }

  .mobile-download {
    min-height: 40px;
    padding: 0 10px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-title {
    font-size: 30px;
  }

  .hero-tags li {
    padding: 0 9px;
  }

  .stage-side {
    grid-template-columns: minmax(0, 1fr);
  }

  .group-avatars {
    justify-content: center;
  }

  .shot-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .review-author {
    grid-template-columns: 42px 1fr;
  }

  .review-author time {
    grid-column: 2;
  }
}

@media (max-width: 350px) {
  .brand-copy span {
    max-width: 72px;
  }

  .mobile-download {
    padding: 0 8px;
  }
}
