:root {
  --bg: #f6f0e8;
  --bg-soft: rgba(255, 248, 240, 0.72);
  --paper: rgba(255, 255, 255, 0.74);
  --ink: #1e2d2f;
  --muted: #5b6b67;
  --accent: #c85c3d;
  --accent-deep: #9e4127;
  --line: rgba(30, 45, 47, 0.1);
  --shadow: 0 22px 60px rgba(63, 44, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC",
    sans-serif;
  background:
    linear-gradient(180deg, rgba(248, 239, 230, 0.07), rgba(246, 240, 232, 0.14)),
    url("./stadium-background.jpg") center top / cover no-repeat fixed;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(18px);
}

body::before {
  width: 220px;
  height: 220px;
  top: 88px;
  right: -48px;
  background: rgba(200, 92, 61, 0.14);
}

body::after {
  width: 180px;
  height: 180px;
  bottom: 80px;
  left: -40px;
  background: rgba(48, 94, 88, 0.16);
}

.page {
  position: relative;
  z-index: 1;
  width: min(100% - 20px, 430px);
  margin: 0 auto;
  padding: 16px 0 36px;
}

.hero {
  display: block;
  margin-bottom: 14px;
}

.panel {
  background: var(--paper);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-main {
  padding: 24px 20px;
  overflow: hidden;
  position: relative;
}

.hero-main::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 92, 61, 0.18), transparent 65%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Noto Serif TC", "Songti TC", "STSong", serif;
  line-height: 1.08;
}

h1 {
  margin-top: 8px;
  font-size: clamp(2.3rem, 11vw, 3.3rem);
}

.lead {
  margin: 14px 0 0;
  max-width: none;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.card {
  padding: 20px 18px;
}

.card h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.compare {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.compare-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.compare-item strong {
  font-size: 1.02rem;
}

.vs-panel {
  margin-bottom: 14px;
  padding: 20px 18px;
}

.vs-panel h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.vs-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.vs-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.vs-row {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
}

.vs-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30, 45, 47, 0.06);
  color: var(--ink);
  font-weight: 700;
}

.vs-columns {
  display: grid;
  gap: 10px;
}

.vs-side {
  padding: 12px 13px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.vs-side h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.vs-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.vs-good {
  border-color: rgba(49, 105, 99, 0.18);
  background: linear-gradient(180deg, rgba(236, 245, 242, 0.95), rgba(255, 255, 255, 0.85));
}

.vs-risk {
  border-color: rgba(200, 92, 61, 0.18);
  background: linear-gradient(180deg, rgba(255, 241, 236, 0.95), rgba(255, 255, 255, 0.85));
}

.withdraw-panel {
  margin-top: 0;
  padding: 0;
}

.withdraw-list {
  display: grid;
  gap: 14px;
  padding: 0;
}

.withdraw-item {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.withdraw-item-head {
  margin-bottom: 12px;
}

.withdraw-item-title {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 45, 47, 0.06);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.withdraw-columns {
  display: grid;
  gap: 10px;
}

.withdraw-card {
  padding: 13px 14px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.withdraw-card-good {
  border-color: rgba(49, 105, 99, 0.18);
  background: linear-gradient(180deg, rgba(236, 245, 242, 0.95), rgba(255, 255, 255, 0.85));
}

.withdraw-card-risk {
  border-color: rgba(200, 92, 61, 0.18);
  background: linear-gradient(180deg, rgba(255, 241, 236, 0.95), rgba(255, 255, 255, 0.85));
}

.withdraw-card-title {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.withdraw-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

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

.withdraw-card p strong {
  color: var(--ink);
}

.flow {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

.step-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(33, 77, 75, 0.95), rgba(49, 105, 99, 0.88));
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
}

.step div {
  padding: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.example-panel {
  margin-bottom: 14px;
  padding: 20px 18px;
}

.image-panel {
  margin-bottom: 14px;
  padding: 20px 18px;
}

.image-panel h2 {
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.image-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}

.image-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.image-note {
  margin-top: 14px;
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  line-height: 1.75;
  font-size: 0.95rem;
}

.image-frame {
  margin: 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 240, 232, 0.98));
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(63, 44, 26, 0.1);
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.image-frame figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
  text-align: center;
}

.concept-media {
  margin-top: 16px;
}

.examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.example {
  padding: 16px 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 240, 232, 0.94));
  border: 1px solid var(--line);
}

.example .score {
  display: inline-block;
  padding: 6px 11px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(200, 92, 61, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
}

.example p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.96rem;
}

.closing-panel {
  margin-bottom: 14px;
  padding: 24px 18px 20px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 241, 235, 0.76));
  border-color: rgba(255, 255, 255, 0.56);
}

.closing-panel::before,
.closing-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.closing-panel::before {
  left: -62px;
  top: 96px;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 105, 99, 0.14), transparent 70%);
}

.closing-panel::after {
  right: -42px;
  bottom: -46px;
  width: 176px;
  height: 176px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 92, 61, 0.18), transparent 68%);
}

.closing-panel > * {
  position: relative;
  z-index: 1;
}

.closing-panel h2 {
  margin-top: 0;
  max-width: none;
  font-size: clamp(2.7rem, 13vw, 3.65rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-align: center;
}

.closing-title-line {
  display: block;
  white-space: nowrap;
}

.closing-title-accent {
  position: relative;
  width: fit-content;
  margin: 10px auto 0;
  padding-right: 0.08em;
}

.closing-title-accent::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -4px;
  bottom: 0.08em;
  height: 0.26em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(49, 105, 99, 0.18), rgba(200, 92, 61, 0.18));
  z-index: -1;
}

.closing-body {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 34px rgba(63, 44, 26, 0.06);
}

.closing-body p,
.closing-note {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.closing-note {
  margin-top: 2px;
  color: var(--ink);
  font-weight: 600;
}

.closing-keywords {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(91, 107, 103, 0.82);
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.closing-manifesto {
  margin-bottom: 18px;
  padding: 18px 18px 20px;
  border-radius: 22px;
  background:
    radial-gradient(circle at right bottom, rgba(200, 92, 61, 0.3), transparent 34%),
    linear-gradient(135deg, rgba(23, 44, 47, 0.94), rgba(45, 85, 82, 0.9));
  color: rgba(247, 244, 238, 0.96);
  box-shadow: 0 20px 36px rgba(23, 38, 40, 0.24);
}

.closing-manifesto p {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.68;
}

.contact-fab {
  position: fixed;
  right: max(14px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 0;
  overflow: visible;
  isolation: auto;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: #f7fcff;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.contact-fab-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(98, 226, 255, 0.96) 0%, rgba(78, 134, 255, 0.95) 56%, rgba(90, 108, 255, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 24px rgba(17, 36, 78, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 18px rgba(27, 44, 100, 0.18);
  flex: 0 0 auto;
}

.contact-fab-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 58%);
  pointer-events: none;
}

.contact-fab-icon svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
  filter: drop-shadow(0 1px 6px rgba(8, 24, 72, 0.08));
}

.contact-fab:hover,
.contact-fab:focus-visible {
  transform: translateY(-2px) scale(1.04);
  filter: none;
}

.contact-fab:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 3px;
}

.contact-page .page {
  min-height: 100vh;
  padding-top: 22px;
  padding-bottom: 24px;
}

.contact-shell {
  display: grid;
  align-items: start;
}

.contact-panel {
  padding: 24px 18px 22px;
  position: relative;
  overflow: hidden;
}

.contact-panel::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -28px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 92, 61, 0.16), transparent 68%);
}

.contact-panel::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: 56px;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 105, 99, 0.12), transparent 70%);
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(30, 45, 47, 0.06);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-back:hover,
.contact-back:focus-visible {
  background: rgba(30, 45, 47, 0.1);
}

.contact-eyebrow {
  margin: 16px 0 0;
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.contact-panel h1 {
  margin-top: 12px;
  font-size: clamp(2.35rem, 12vw, 3.5rem);
}

.contact-intro {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.contact-method {
  display: grid;
  gap: 8px;
  padding: 16px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(30, 45, 47, 0.08);
  color: var(--ink);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(49, 105, 99, 0.16);
}

.contact-method-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(49, 105, 99, 0.1);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-method strong {
  font-size: 1rem;
  line-height: 1.45;
}

.contact-method span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact-tip {
  margin-top: 18px;
  padding: 16px 15px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.32));
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.contact-tip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-tip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

footer {
  padding: 14px 6px 4px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .page {
    width: min(100% - 28px, 460px);
    padding-top: 22px;
  }

  .hero-main,
  .card,
  .vs-panel,
  .closing-panel,
  .image-panel,
  .example-panel {
    padding: 24px 20px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .closing-panel h2 {
    max-width: none;
    font-size: 3.25rem;
  }

  .contact-fab {
    right: 22px;
    bottom: 22px;
  }

  .contact-panel {
    padding: 26px 20px 24px;
  }

  .withdraw-list {
    padding: 0;
  }
}
