:root {
  color-scheme: light;
  --bg: #f8f8fa;
  --bg-soft: #f0f0f2;
  --surface: #ffffff;
  --surface-warm: #f5f5f7;
  --surface-green: #f0faf0;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #7a7a7a;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.12);
  --accent: #f77f4e;
  --accent-dark: #e86733;
  --yellow: #ffc74a;
  --pink: #ff6b9d;
  --green: #52c77f;
  --blue: #4a9fe6;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-tight: 0 1px 3px rgba(0, 0, 0, 0.04);
  --radius: 16px;
  --font-snifff: "SnifffKKTWeb", -apple-system, BlinkMacSystemFont, "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

@font-face {
  font-family: "SnifffKKTWeb";
  src: url("fonts/snifff-kkt-zh-cn.woff") format("woff");
  font-display: optional;
  font-weight: 100 900;
}

@font-face {
  font-family: "SnifffLaihuWebTW";
  src: url("fonts/snifff-laihu-zh-tw.woff") format("woff");
  font-display: optional;
  font-weight: 100 900;
}

@font-face {
  font-family: "SnifffLaihuWebEN";
  src: url("fonts/snifff-laihu-en.woff") format("woff");
  font-display: optional;
  font-weight: 100 900;
}

@font-face {
  font-family: "SnifffJapaneseWeb";
  src: url("fonts/snifff-japanese-ja.woff") format("woff");
  font-display: optional;
  font-weight: 100 900;
}

@font-face {
  font-family: "SnifffKoreanWeb";
  src: url("fonts/snifff-korean-ko.woff") format("woff");
  font-display: optional;
  font-weight: 100 900;
}

html[lang="zh-CN"] {
  --font-snifff: "SnifffKKTWeb", "PingFang SC", "Microsoft YaHei", sans-serif;
}

html[lang="zh-TW"] {
  --font-snifff: "SnifffLaihuWebTW", "PingFang TC", "PingFang SC", sans-serif;
}

html[lang="en"] {
  --font-snifff: "SnifffLaihuWebEN", "Avenir Next", -apple-system, BlinkMacSystemFont, sans-serif;
}

html[lang="ja"] {
  --font-snifff: "SnifffJapaneseWeb", "Hiragino Sans", "Yu Gothic", sans-serif;
}

html[lang="ko"] {
  --font-snifff: "SnifffKoreanWeb", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font: 16px/1.65 var(--font-snifff);
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(232, 119, 61, 0.45);
  outline-offset: 4px;
}

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

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

.site-shell,
.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

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

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  overflow: hidden;
  flex: 0 0 auto;
  border: none;
  border-radius: 10px;
  background: var(--surface-warm);
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

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

.site-nav > a,
.lang-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  color: var(--ink-soft);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: color 200ms, background 200ms;
}

.site-nav > a:hover,
.site-nav > a.active,
.lang-switcher.open .lang-current {
  border-color: transparent;
  background: var(--surface-warm);
  color: var(--ink);
}

.site-nav .nav-cta {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-warm);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.lang-switcher {
  position: relative;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lang-switcher.open .lang-menu {
  display: grid;
  gap: 2px;
}

.lang-option {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 200ms;
}

.lang-option:hover,
.lang-option.active {
  background: var(--surface-warm);
  color: var(--ink);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(255, 127, 78, 0.05) 0%, rgba(74, 159, 230, 0.05) 100%);
}

.hero-section::after,
.memory-section::before,
.philosophy-card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background: none;
  opacity: 0;
}

.hero-section::after {
  display: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.memory-copy h2,
.showcase-copy h2,
.philosophy-card h2,
.legal-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  background: var(--surface-warm);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-device {
  position: relative;
  min-height: 620px;
}

.phone-shell {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(330px, 78vw);
  transform: translateX(-50%) rotate(0deg);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: #1a1a1a;
  box-shadow: var(--shadow);
}

.phone-speaker {
  width: 72px;
  height: 8px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.phone-screen {
  min-height: 550px;
  overflow: hidden;
  padding: 16px;
  border-radius: 32px;
  background: #f9f9fb;
  background-size: auto;
}

.screen-status,
.app-card,
.screen-list div,
.memory-card,
.scenario-card,
.workflow-step,
.quote-card,
.faq-item,
.summary-panel,
.legal-article,
.legal-aside nav,
.download-card,
.philosophy-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.screen-status {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
}

.app-card img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
}

.app-card span,
.memory-card span,
.award-grid span,
.floating-note span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.app-card strong,
.memory-card strong,
.award-grid strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.chart-card {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-warm);
}

.chart-card span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--green), rgba(82, 199, 127, 0.7));
  box-shadow: none;
}

.chart-card span:nth-child(1) { height: 48%; }
.chart-card span:nth-child(2) { height: 70%; }
.chart-card span:nth-child(3) { height: 56%; }
.chart-card span:nth-child(4) { height: 78%; }
.chart-card span:nth-child(5) { height: 64%; }

.screen-list {
  display: grid;
  gap: 10px;
}

.screen-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
}

.screen-list span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.screen-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 2;
  width: 140px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(0deg);
}

.floating-note strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.note-one {
  right: 20px;
  top: 60px;
}

.note-two {
  left: 20px;
  bottom: 60px;
  transform: rotate(0deg);
}

.award-strip {
  padding: 22px 0 72px;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.award-grid div {
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-block,
.memory-section,
.workflow-section,
.showcase-section,
.testimonial-section,
.philosophy-section,
.creator-section,
.faq-section,
.download-section,
.content-band {
  padding: 80px 0;
}

.section-heading {
  width: min(780px, calc(100% - 40px));
  text-align: center;
}

.section-heading.align-left {
  width: auto;
  margin: 0;
  text-align: left;
}

.section-heading h2,
.memory-copy h2,
.showcase-copy h2,
.philosophy-card h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.section-heading + .scenario-rail,
.section-heading + .testimonial-grid,
.section-heading + .faq-list {
  margin-top: 34px;
}

.scenario-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.scenario-card {
  min-height: 320px;
  padding: 22px;
  border-radius: 28px;
  scroll-snap-align: start;
}

.scenario-card:nth-child(1) { background: linear-gradient(135deg, #fff9e6 0%, #fff3d0 100%); }
.scenario-card:nth-child(2) { background: linear-gradient(135deg, #e8f7e0 0%, #d4f1c8 100%); }
.scenario-card:nth-child(3) { background: linear-gradient(135deg, #ffe8db 0%, #ffd4bd 100%); }
.scenario-card:nth-child(4) { background: linear-gradient(135deg, #fde8f0 0%, #f8cfe2 100%); }

.scenario-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 800;
  font-size: 18px;
}

.scenario-card h3,
.workflow-step h3,
.faq-item h3,
.summary-panel h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.scenario-card p,
.workflow-step p,
.quote-card p,
.faq-item p,
.memory-copy p,
.showcase-copy p,
.philosophy-card p,
.summary-panel p,
.legal-article p,
.legal-article li {
  color: var(--ink-soft);
}

.memory-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(74, 159, 230, 0.03) 50%, transparent 100%);
}

.memory-section::before {
  display: none;
}

.memory-grid,
.workflow-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 44px;
}

.memory-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--surface);
  transform: rotate(0deg);
}

.memory-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.memory-card img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  box-shadow: none;
}

.memory-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.memory-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px dashed rgba(86, 54, 35, 0.2);
}

.memory-card dt {
  color: var(--muted);
  font-weight: 900;
}

.memory-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.workflow-section {
  background: transparent;
}

.workflow-grid {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.workflow-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  padding: 18px;
  border-radius: 12px;
}

.workflow-step span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.workflow-step p {
  margin: 8px 0 0;
}

.showcase-grid {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
}

.showcase-board {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-warm);
  background-size: auto;
  box-shadow: var(--shadow);
}

.mini-window {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.window-main {
  left: 40px;
  top: 40px;
  width: 240px;
  min-height: 220px;
  padding: 16px;
  transform: rotate(0deg);
}

.window-main img {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  border-radius: 12px;
}

.window-main span {
  display: block;
  height: 10px;
  margin-top: 10px;
  border-radius: 4px;
  background: var(--surface-warm);
}

.window-main span:nth-of-type(2) {
  width: 70%;
}

.window-main span:nth-of-type(3) {
  width: 50%;
}

.window-side {
  right: 30px;
  top: 80px;
  display: grid;
  gap: 10px;
  width: 200px;
  padding: 16px;
  transform: rotate(0deg);
}

.window-side div {
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
}

.window-side div:nth-child(2) {
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.window-side div:nth-child(3) {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.window-bottom {
  left: 150px;
  bottom: 40px;
  width: 240px;
  padding: 16px;
  transform: rotate(0deg);
}

.window-bottom strong {
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
}

.window-bottom span {
  display: block;
  height: 6px;
  margin-top: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

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

.quote-card {
  padding: 20px;
  border-radius: 12px;
  background: var(--surface);
}

.quote-card p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
}

.quote-card span {
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
}

.philosophy-section {
  padding-top: 48px;
}

.philosophy-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 60px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 199, 74, 0.1) 0%, rgba(82, 199, 127, 0.1) 100%);
  text-align: center;
  border: 1px solid var(--line);
}

.philosophy-card::before {
  display: none;
}

.philosophy-card p {
  width: min(720px, 100%);
  margin: 20px auto 0;
  font-size: 18px;
}

.home-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-item {
  padding: 18px;
  border-radius: 12px;
  background: var(--surface);
}

.faq-item p {
  margin: 8px 0 0;
  font-size: 15px;
}

.download-card {
  display: grid;
  justify-items: center;
  padding: clamp(32px, 6vw, 56px);
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
}

.download-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: none;
}

.download-card h2 {
  width: min(680px, 100%);
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}

.download-card p {
  width: min(620px, 100%);
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.creator-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
  background: linear-gradient(135deg, rgba(255, 127, 78, 0.08) 0%, rgba(74, 159, 230, 0.08) 100%);
}

.creator-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.creator-hero-text h1 {
  margin: 0 0 20px;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1;
  color: var(--ink);
}

.creator-hero-text > p:first-of-type {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-hero-text .hero-lede {
  width: min(620px, 100%);
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
}

.creator-hero-visual {
  display: grid;
  gap: 16px;
}

.visual-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 300ms ease;
}

.visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 32px;
  flex: 0 0 auto;
}

.card-text strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.card-text small {
  color: var(--muted);
  font-size: 12px;
}

.card-1 { border-left: 3px solid var(--yellow); }
.card-2 { border-left: 3px solid var(--pink); }
.card-3 { border-left: 3px solid var(--green); }

.how-to-join-section {
  padding: 80px 0;
}

.how-to-heading {
  text-align: center;
  margin-bottom: 50px;
}

.how-to-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.1;
  color: var(--ink);
}

.how-to-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.how-to-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.step-card {
  position: relative;
  padding: 32px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.step-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
}

.step-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.rewards-section {
  padding: 80px 0;
  background: var(--surface-warm);
}

.rewards-heading {
  text-align: center;
  margin-bottom: 50px;
}

.rewards-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.1;
  color: var(--ink);
}

.rewards-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.reward-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.reward-card.highlight {
  border: 2px solid var(--accent);
  transform: scale(1.05);
  box-shadow: var(--shadow);
}

.reward-badge {
  display: inline-block;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 127, 78, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reward-badge.gold {
  background: rgba(255, 199, 74, 0.15);
  color: var(--yellow);
}

.reward-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
  color: var(--ink);
}

.reward-card ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.reward-card li {
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.reward-card li:last-child {
  border-bottom: none;
}

.guidelines-section {
  padding: 80px 0;
}

.guidelines-heading {
  text-align: center;
  margin-bottom: 50px;
}

.guidelines-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.1;
  color: var(--ink);
}

.guidelines-heading p {
  color: var(--ink-soft);
  font-size: 18px;
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.guideline-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.guideline-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.3;
  color: var(--ink);
}

.guideline-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255, 127, 78, 0.08) 0%, rgba(82, 199, 127, 0.08) 100%);
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-card h2 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  color: var(--ink);
}

.cta-card > p {
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.small-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-row strong {
  font-size: 18px;
}

.footer-row p,
.footer-note p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a,
.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.footer-note {
  margin-top: 18px;
}

.footer-note a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-note a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main,
body[data-page="support"] main {
  background: transparent;
}

.legal-hero {
  padding: 76px 0 42px;
}

.legal-hero-inner {
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(42px, 6vw, 74px);
}

.lead,
.lead-en {
  width: min(760px, 100%);
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.lead-en,
.legal-en,
.small-muted {
  color: var(--muted);
}

.content-band.band-alt {
  background: var(--surface-warm);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 96px;
}

.legal-aside nav {
  display: grid;
  gap: 4px;
  padding: 10px;
  border-radius: 12px;
}

.legal-aside a {
  padding: 10px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms;
}

.legal-aside a:hover {
  background: var(--surface-warm);
  color: var(--ink);
}

.legal-article {
  padding: clamp(24px, 4vw, 40px);
  border-radius: 16px;
}

.legal-article section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px dashed rgba(86, 54, 35, 0.18);
}

.legal-article h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.legal-article p,
.legal-article li {
  font-size: 16px;
}

.legal-article ul,
.detail-list {
  padding-left: 1.2em;
}

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

.summary-panel {
  padding: 20px;
  border-radius: 12px;
}

.summary-panel p {
  margin: 10px 0 0;
  font-size: 15px;
}

.detail-list.tight {
  margin: 12px 0 0;
}

.is-hidden {
  opacity: 0;
  transform: translateY(22px);
}

.scroll-reveal {
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-reveal,
  .button,
  .hamburger span {
    transition: none;
  }

  .is-hidden {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hamburger {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    display: none;
    width: min(300px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.nav-open {
    display: grid;
    gap: 6px;
  }

  .site-nav > a,
  .lang-current {
    justify-content: flex-start;
    width: 100%;
  }

  .lang-switcher {
    width: 100%;
  }

  .lang-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }

  .hero-layout,
  .memory-grid,
  .workflow-grid,
  .showcase-grid,
  .legal-layout,
  .creator-hero-content {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 58px;
  }

  .hero-device {
    min-height: 580px;
  }

  .phone-shell {
    width: min(330px, 88vw);
  }

  .award-grid,
  .testimonial-grid,
  .home-faq,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scenario-rail {
    grid-template-columns: repeat(4, 250px);
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-shell,
  .container {
    width: min(100% - 28px, 1140px);
  }

  .header-row {
    min-height: 68px;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy h1,
  .section-heading h2,
  .memory-copy h2,
  .showcase-copy h2,
  .philosophy-card h2,
  .legal-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .footer-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-device {
    min-height: 540px;
  }

  .phone-screen {
    min-height: 500px;
  }

  .floating-note {
    width: 126px;
    padding: 12px;
  }

  .note-one {
    right: -4px;
    top: 44px;
  }

  .note-two {
    left: -4px;
    bottom: 42px;
  }

  .award-grid,
  .testimonial-grid,
  .home-faq,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section-block,
  .memory-section,
  .workflow-section,
  .showcase-section,
  .testimonial-section,
  .philosophy-section,
  .creator-section,
  .faq-section,
  .download-section,
  .content-band {
    padding: 58px 0;
  }


  .scenario-card {
    min-height: 280px;
  }

  .showcase-board {
    min-height: 390px;
  }

  .window-main {
    left: 18px;
    top: 32px;
    width: 214px;
  }

  .window-side {
    right: 16px;
    top: 128px;
    width: 176px;
  }

  .window-bottom {
    left: 54px;
    bottom: 28px;
    width: 230px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .creator-hero {
    padding: 60px 0 40px;
  }

  .step-card {
    padding: 24px;
  }

  .reward-card.highlight {
    transform: scale(1);
  }

  .cta-card {
    padding: 32px 24px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .how-to-steps,
  .rewards-grid,
  .guidelines-grid {
    grid-template-columns: 1fr;
  }
}
