/* BowlBowl — 品牌色 #389cff */

:root {
  --bowl-50: #05101f;
  --bowl-100: #0a1d35;
  --bowl-200: #13345b;
  --bowl-300: #1f548b;
  --bowl-400: #2f82d8;
  --bowl-500: #389cff;
  --bowl-600: #167ee6;
  --bowl-700: #0d63bd;
  --bowl-800: #0a4d95;
  --bowl-900: #b6d9ff;

  --ink-50: #000;
  --ink-100: #06070a;
  --ink-200: #171b22;
  --ink-300: #28303a;
  --ink-400: #7f8998;
  --ink-500: #a8b0bc;
  --ink-600: #c7ced8;
  --ink-700: #dbe1ea;
  --ink-800: #eaf0f7;
  --ink-900: #f5f7fb;
  --ink-950: #fff;

  --max-w: 72rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 18px 48px rgba(56, 156, 255, 0.18);
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --bg-pattern: url("../assets/bg/main.png");
  --bg-pattern-opacity: 0.72;
  --bg-parallax-y: 0px;
}

@font-face {
  font-family: "Bowlbowl UI";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("PingFang SC Regular"), local("PingFangSC-Regular"), local("PingFang SC"), local("Microsoft YaHei"), local("Microsoft YaHei UI");
  unicode-range: U+4E00-9FFF, U+3400-4DBF, U+F900-FAFF, U+3000-303F, U+FF00-FFEF, U+2E80-2EFF, U+31C0-31EF;
}

@font-face {
  font-family: "Bowlbowl UI";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("PingFang SC Medium"), local("PingFangSC-Medium");
  unicode-range: U+4E00-9FFF, U+3400-4DBF, U+F900-FAFF, U+3000-303F, U+FF00-FFEF, U+2E80-2EFF, U+31C0-31EF;
}

@font-face {
  font-family: "Bowlbowl UI";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("PingFang SC Semibold"), local("PingFangSC-Semibold"), local("PingFang SC Medium"), local("PingFangSC-Medium"), local("Microsoft YaHei Bold"), local("Microsoft YaHei");
  unicode-range: U+4E00-9FFF, U+3400-4DBF, U+F900-FAFF, U+3000-303F, U+FF00-FFEF, U+2E80-2EFF, U+31C0-31EF;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  background: #000;
  color: var(--ink-900);
  font-family: -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", "Bowlbowl UI", sans-serif;
  font-size: 1.015625rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: min(1000px, 100vh);
  background-image: var(--bg-pattern);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: var(--bg-pattern-opacity);
  transform: translate3d(0, var(--bg-parallax-y), 0);
  will-change: transform;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: #000;
  pointer-events: none;
}

body[data-page="company"] {
  --bg-pattern: url("../assets/bg/main.png");
  --bg-pattern-opacity: 0.76;
}

body[data-page="app"] {
  --bg-pattern: url("../assets/bg/main.png");
  --bg-pattern-opacity: 0.76;
}

body[data-page="contact"] {
  --bg-pattern: url("../assets/bg/sub.png");
  --bg-pattern-opacity: 0.74;
}

body[data-page="terms"],
body[data-page="privacy"] {
  --bg-pattern: url("../assets/bg/sub.png");
  --bg-pattern-opacity: 0.68;
}

a {
  color: inherit;
  text-decoration: none;
}

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

main {
  flex: 1;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  isolation: isolate;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  padding-top: env(safe-area-inset-top, 0);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: -2.5rem;
  left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 100%);
  pointer-events: none;
}

.header-inner {
  position: relative;
  max-width: none;
  margin: 0 auto;
  padding: 1rem 30px;
  padding-left: max(30px, env(safe-area-inset-left, 0px));
  padding-right: max(30px, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo,
.footer-logo,
.section-title,
.hero-title,
.hero-app-name,
.company-hero-title,
.company-wordmark,
.page-header h1,
.roadmap-title,
.cta-box h2,
.card h3,
.footer-col h3,
.pillar-model-value,
.vision-name,
.btn {
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

.logo,
.footer-logo,
.section-title,
.hero-title,
.hero-app-name,
.company-hero-title,
.company-wordmark,
.page-header h1,
.roadmap-title,
.cta-box h2 {
  font-weight: 600;
}

.logo {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  transition: color 0.15s;
}

.logo:hover {
  color: var(--bowl-600);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  border-radius: 9999px;
  background: transparent;
  padding: 0.4375rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink-600);
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.nav-desktop a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink-950);
}

.nav-desktop a.is-active {
  background: #fff;
  color: #000;
}

.mobile-menu {
  position: relative;
  display: block;
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-menu-button {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bowl-200);
  border-radius: 9999px;
  background: transparent;
  color: var(--ink-800);
  font: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.mobile-menu-button:hover,
.mobile-menu.is-open .mobile-menu-button {
  border-color: var(--bowl-400);
  background: transparent;
  color: var(--bowl-700);
}

.mobile-menu-button:focus-visible {
  outline: 3px solid rgba(56, 156, 255, 0.24);
  outline-offset: 3px;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.625rem);
  right: 0;
  display: none;
  min-width: 10rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu.is-open .mobile-menu-panel {
  display: block;
}

.mobile-menu-panel a {
  display: block;
  margin: 0;
  border-radius: 9999px;
  padding: 0.75rem 1rem;
  color: var(--ink-700);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.mobile-menu-panel a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink-950);
}

.mobile-menu-panel a.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink-950);
}

.language-toggle {
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 3.25rem;
  border: 1px solid var(--bowl-200);
  border-radius: 9999px;
  background: transparent;
  padding: 0 0.875rem;
  color: var(--ink-700);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.language-toggle:hover {
  border-color: var(--bowl-400);
  background: transparent;
  color: var(--bowl-700);
}

.language-toggle:focus-visible {
  outline: 3px solid rgba(56, 156, 255, 0.24);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu {
    display: none;
  }
}

.btn {
  display: inline-block;
  border: none;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--bowl-600);
  color: #fff;
}

.btn-primary:hover {
  background: var(--bowl-700);
}

.btn-secondary {
  border: 1px solid var(--bowl-300);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-700);
}

.btn-secondary:hover {
  border-color: var(--bowl-400);
  background: rgba(255, 255, 255, 0.14);
}

.btn-outline-light {
  border: 1px solid var(--ink-600);
  background: transparent;
  color: var(--ink-200);
}

.btn-outline-light:hover {
  border-color: var(--ink-500);
  color: #fff;
}

.btn-lg {
  padding: 0.875rem 2rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-label {
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bowl-600);
}

.section-title {
  margin-top: 0.75rem;
  color: var(--ink-950);
  font-size: 1.875rem;
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: 1.0625rem;
  line-height: 1.74;
}

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

.gradient-hero {
  background: transparent;
  padding: 4rem 0 5rem;
}

.gradient-section {
  background: transparent;
}

.bg-white {
  background: rgba(0, 0, 0, 0.28);
}

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

@media (min-width: 768px) {
  .gradient-hero {
    padding: 6rem 0 7rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

.hero-inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.app-hero .hero-inner {
  max-width: var(--max-w);
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 7rem;
  height: 7rem;
  border-radius: 1.75rem;
  box-shadow: 0 8px 32px rgba(56, 156, 255, 0.18);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--bowl-200);
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.38);
  padding: 0.375rem 1rem;
  margin-bottom: 1.25rem;
  color: var(--bowl-700);
  font-size: 0.9375rem;
  font-weight: 500;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bowl-500);
}

.hero-title {
  color: var(--ink-950);
  font-size: 1.75rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-app-name {
  display: block;
  margin-bottom: 0;
  color: var(--ink-950);
  font-size: 2rem;
}

.hero-highlight {
  display: block;
  color: var(--bowl-500);
  font-weight: 400;
}

.hero-desc {
  max-width: 36rem;
  margin: 0 auto;
  color: var(--ink-600);
  font-size: 1.125rem;
  line-height: 1.78;
}

.app-hero-desc {
  max-width: var(--max-w);
  margin-bottom: 1.25rem;
}

.app-hero-badge {
  margin-bottom: 1.25rem;
}

.app-hero-slogan {
  margin: 0 auto;
  font-size: 2.25rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-btns {
  justify-content: center;
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .hero-logo {
    width: 8.5rem;
    height: 8.5rem;
    border-radius: 2rem;
  }

  .hero-app-name {
    font-size: 2.5rem;
  }

  .app-hero-slogan {
    font-size: 2.75rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

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

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-2-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  color: var(--ink-900);
  font-size: 1.1875rem;
  font-weight: 500;
}

.card p {
  margin-top: 0.5rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.72;
}

.card p.card-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(56, 156, 255, 0.4);
  border-radius: 9999px;
  background: rgba(56, 156, 255, 0.2);
  margin-top: 0.625rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  color: var(--bowl-900);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.card-en {
  display: inline-block;
  margin-top: 0.375rem;
  margin-bottom: 0.25rem;
  color: var(--bowl-600);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.card-icon {
  font-size: 1.875rem;
}

.journey-item,
.compare-card,
.info-card,
.value-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.journey-item {
  display: flex;
  gap: 1.25rem;
  background: rgba(56, 156, 255, 0.08);
}

.journey-step {
  color: var(--bowl-400);
  font-size: 1.5rem;
  font-weight: 700;
}

.compare-card.is-highlight {
  border: 2px solid var(--bowl-500);
}

.compare-card h3,
.info-card h3 {
  color: var(--ink-900);
  font-weight: 500;
}

.compare-card.is-highlight h3 {
  color: var(--bowl-700);
}

.compare-card ul,
.list-dots,
.boundary-list,
.footer-col ul {
  list-style: none;
}

.compare-card li,
.list-dots li,
.boundary-list li,
.info-card p,
.value-card p,
.faq dd {
  margin-top: 0.5rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.72;
}

.positioning-grid {
  text-align: left;
}

blockquote.quote {
  margin-top: 2rem;
  border-left: 3px solid var(--bowl-400);
  padding-left: 1.25rem;
  color: var(--ink-700);
  font-size: 1.125rem;
  font-style: italic;
}

.pillar-card {
  display: flex;
  flex-direction: column;
}

.pillar-model {
  margin-top: auto;
  padding-top: 1.25rem;
}

.pillar-model-label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink-500);
  font-size: 0.8125rem;
  font-weight: 500;
}

.pillar-model-value {
  color: var(--bowl-600);
  font-size: 0.9375rem;
  font-weight: 500;
}

.cta-box {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid rgba(56, 156, 255, 0.2);
  border-radius: 1.5rem;
  background-color: rgba(56, 156, 255, 0.1);
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../assets/bg/main.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0.5;
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: 1.875rem;
}

.cta-box p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-store-btn {
  display: inline-block;
  margin-top: 2rem;
}

.page-header h1 {
  margin-top: 0.75rem;
  color: var(--ink-950);
  font-size: 2.25rem;
}

.page-header p {
  margin-top: 1.5rem;
  color: var(--ink-600);
  font-size: 1.125rem;
}

.contact-email {
  padding: 2.5rem 0 1rem;
  text-align: center;
}

.contact-email-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--bowl-600);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.15s;
}

.contact-email-link:hover {
  color: var(--bowl-700);
}

.legal-page {
  background: transparent;
}

.legal-hero {
  padding: 4.5rem 0 2rem;
}

.legal-hero-inner {
  max-width: var(--max-w);
}

.legal-hero h1 {
  margin-top: 0;
  color: var(--ink-950);
  font-size: 2.25rem;
  line-height: 1.18;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.875rem;
}

.legal-meta span {
  color: var(--ink-600);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}

.legal-intro {
  max-width: 44rem;
  margin-top: 1.5rem;
  color: var(--ink-700);
  font-size: 1.125rem;
  line-height: 1.95;
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.legal-layout-single {
  max-width: var(--max-w);
}

.legal-summary,
.legal-document {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.legal-summary {
  padding: 1.5rem;
}

.legal-summary h2 {
  color: var(--ink-900);
  font-size: 1.0625rem;
  font-weight: 600;
}

.legal-summary ul {
  margin-top: 1rem;
  list-style: none;
}

.legal-summary li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.legal-summary li + li {
  margin-top: 0.75rem;
}

.legal-summary li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--bowl-500);
}

.legal-document {
  padding: 1.5rem;
}

.legal-section + .legal-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-200);
}

.legal-section h2,
.legal-document > h2 {
  color: var(--ink-950);
  font-size: 1.1875rem;
  line-height: 1.35;
}

.legal-document > h2 {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-200);
}

.legal-document > h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-section p,
.legal-document > p {
  margin-top: 0.875rem;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 2;
}

.legal-switch {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-200);
}

@media (min-width: 900px) {
  .legal-hero {
    padding-top: 6rem;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-layout {
    grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 1fr);
    gap: 2rem;
  }

  .legal-layout-single {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: sticky;
    top: 6.5rem;
  }

  .legal-document {
    padding: 2.25rem;
  }
}

.mission-box {
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 2.5rem;
}

.mission-box h2 {
  font-size: 1.5rem;
}

.mission-box p {
  margin-top: 1rem;
  color: var(--ink-700);
}

.values-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline {
  margin-top: 2rem;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  border-left: 2px solid var(--bowl-300);
  padding: 1.5rem 0 1.5rem 2rem;
}

.timeline-dot {
  position: absolute;
  left: -1.05rem;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--bowl-400);
  border-radius: 50%;
  background: #000;
}

.timeline-year {
  color: var(--bowl-700);
  font-weight: 600;
}

.timeline-event {
  margin-top: 0.25rem;
  color: var(--ink-600);
}

.roadmap-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}

.roadmap-step {
  position: relative;
  min-height: 9rem;
  padding: 0.5rem 0.25rem;
  overflow: hidden;
  text-align: center;
}

.roadmap-num {
  position: absolute;
  top: -0.25rem;
  left: 50%;
  z-index: 0;
  transform: translateX(-50%);
  color: var(--bowl-200);
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}

.roadmap-content {
  position: relative;
  z-index: 1;
  padding-top: 2.75rem;
}

.roadmap-title {
  color: #fff;
  font-size: 1.625rem;
  letter-spacing: -0.02em;
}

.roadmap-desc {
  margin-top: 0.5rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .roadmap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .roadmap-step {
    min-height: 11rem;
    padding: 0.5rem 1rem;
  }

  .roadmap-num {
    top: -0.5rem;
    font-size: 8rem;
  }

  .roadmap-content {
    padding-top: 3.25rem;
  }

  .roadmap-title {
    font-size: 1.75rem;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--bowl-700);
  font-size: 0.875rem;
  font-weight: 600;
}

.link-arrow:hover {
  color: var(--bowl-800);
}

.app-teaser-icon {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.25rem;
  border-radius: 1.375rem;
  box-shadow: 0 8px 24px rgba(56, 156, 255, 0.16);
}

.app-teaser .section-title {
  margin-top: 0;
}

.company-hero {
  padding: 5rem 0 6rem;
}

.company-hero .hero-inner {
  max-width: var(--max-w);
}

.company-wordmark {
  margin-bottom: 72px;
  color: #fff;
}

.company-logo-wordmark {
  display: block;
  width: min(35vw, 12.5rem);
  height: auto;
  margin-top: 72px;
  margin-left: auto;
  margin-right: auto;
}

.company-hero-title {
  margin: 0 auto;
  color: var(--ink-950);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.company-hero .hero-desc {
  max-width: 48rem;
  margin-top: 2.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .company-hero-title {
    font-size: 4.75rem;
  }

  .company-hero .hero-desc {
    margin-top: 3rem;
  }
}

.showcase-section {
  padding: 4rem 0;
}

.showcase-head {
  max-width: 42rem;
}

.showcase-scroll {
  margin-top: 3rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-left: max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1.25rem max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem)) 0.25rem;
}

.showcase-scroll:focus {
  outline: 3px solid rgba(56, 156, 255, 0.2);
  outline-offset: 6px;
}

.showcase-scroll::-webkit-scrollbar {
  display: none;
}

.showcase-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 0 1.25rem;
}

.showcase-track::after {
  content: "";
  flex: 0 0 max(1.5rem, calc((100vw - var(--max-w)) / 2 + 1.5rem));
}

.showcase-slide {
  flex: 0 0 min(82vw, 46rem);
  scroll-snap-align: start;
}

.showcase-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  box-shadow: none;
}

.showcase-row {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.showcase-media {
  display: flex;
  justify-content: center;
}

.showcase-img {
  width: 100%;
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2rem;
  box-shadow: none;
}

.showcase-text {
  max-width: 28rem;
}

@media (min-width: 900px) {
  .showcase-row {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .showcase-text {
    padding: 0;
  }
}

@media (max-width: 899px) {
  .showcase-row {
    gap: 1.5rem;
  }

  .showcase-media {
    order: -1;
  }

  .showcase-text {
    max-width: none;
    text-align: center;
  }

  .showcase-slide {
    flex-basis: min(86vw, 28rem);
  }

  .showcase-card {
    padding: 1.5rem;
  }

  .showcase-img {
    max-width: 220px;
  }
}

.nearby-icon {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
}

.nearby-note {
  max-width: 42rem;
  margin: 3rem auto 0;
  color: var(--ink-500);
  font-size: 0.9375rem;
  line-height: 1.9;
  text-align: left;
}

.vision-title {
  color: var(--ink-500);
  font-weight: 500;
}

.vision-list {
  text-align: center;
}

.vision-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin: 0;
}

.vision-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
}

.vision-quote {
  flex: 1;
  margin: 1.25rem 0 0;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.85;
  font-style: normal;
}

.vision-name {
  margin-top: 1rem;
  color: var(--ink-500);
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-card label {
  display: block;
  margin-bottom: 0.375rem;
  color: var(--ink-700);
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--bowl-200);
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.32);
  padding: 0.625rem 1rem;
  color: var(--ink-900);
  font: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  border-color: var(--bowl-400);
  box-shadow: 0 0 0 3px rgba(56, 156, 255, 0.15);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-note {
  margin-top: 1rem;
  color: var(--ink-400);
  font-size: 0.8125rem;
}

.faq dt {
  color: var(--ink-800);
  font-size: 0.9375rem;
  font-weight: 500;
}

.faq > div {
  margin-bottom: 1rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 3.5rem 0;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-logo {
  color: var(--ink-900);
  font-size: 1.25rem;
}

.footer-desc {
  max-width: 20rem;
  margin-top: 1rem;
  color: var(--ink-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.footer-col h3 {
  color: var(--ink-500);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  margin-top: 1rem;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--ink-600);
  font-size: 0.875rem;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--bowl-600);
}

.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid var(--ink-200);
  padding-top: 2rem;
  color: var(--ink-500);
  font-size: 0.875rem;
  text-align: center;
}

.footer-legal {
  margin-top: 0.5rem;
}

.footer-legal a {
  color: inherit;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--bowl-600);
}

.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (max-width: 767px) {
  .container,
  .header-inner {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .header-inner {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .logo {
    min-width: 0;
    font-size: 1.125rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-sm {
    padding: 2.5rem 0;
  }

  .gradient-hero,
  .company-hero {
    padding: 2.5rem 0 3.5rem;
  }

  .company-wordmark {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 1.625rem;
    line-height: 1.22;
  }

  .company-hero-title {
    position: relative;
    left: 50%;
    width: calc(100vw - 1rem);
    max-width: none;
    transform: translateX(-50%);
    font-size: clamp(3rem, 13vw, 4rem);
    line-height: 1.02;
  }

  .page-header h1,
  .legal-hero h1 {
    font-size: 1.875rem;
    line-height: 1.18;
  }

  .page-header p {
    font-size: 1rem;
  }

  .hero-logo {
    width: 6rem;
    height: 6rem;
    border-radius: 1.5rem;
  }

  .hero-app-name {
    font-size: 1.875rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-highlight {
    margin-top: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .app-hero-slogan {
    font-size: 2.125rem;
    line-height: 1.18;
  }

  .hero-desc,
  .section-subtitle,
  .company-hero .hero-desc {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-btns,
  .hero-btns .btn-lg {
    width: 100%;
  }

  .cta-store-btn {
    width: min(100%, 18rem);
  }

  .badge {
    padding: 0.3125rem 0.875rem;
    font-size: 0.875rem;
  }

  .card h3 {
    font-size: 1.125rem;
    line-height: 1.35;
  }

  .roadmap-title {
    font-size: 1.375rem;
    line-height: 1.25;
  }

  .showcase-section {
    padding: 2.25rem 0;
  }

  .showcase-scroll {
    margin-top: 2rem;
    scroll-padding-left: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
  }

  .showcase-track {
    gap: 1rem;
  }

  .showcase-slide {
    flex-basis: 84vw;
  }

  .showcase-card {
    padding: 1.25rem;
  }

  .showcase-img {
    max-width: 180px;
    border-radius: 1.375rem;
    box-shadow: 0 12px 32px rgba(56, 156, 255, 0.1), 0 2px 8px rgba(20, 23, 28, 0.05);
  }

  .showcase-text .section-title {
    font-size: 1.5rem;
  }

  .showcase-text .section-subtitle {
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  blockquote.quote {
    padding-left: 1rem;
    font-size: 1rem;
    text-align: left;
  }

  .cta-box {
    border-radius: 1.25rem;
    padding: 2.25rem 1.25rem;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  .contact-email-link {
    font-size: 1.125rem;
    word-break: break-word;
  }

  .contact-card-grid {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .vision-avatar {
    width: 5rem;
    height: 5rem;
  }

  .vision-quote {
    font-size: 0.9375rem;
  }

  .nearby-note {
    margin-top: 2rem;
    font-size: 0.875rem;
    line-height: 1.85;
  }

  .site-footer {
    padding: 2.5rem 0;
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
  }

  .mt-12 { margin-top: 2rem; }
  .mt-14 { margin-top: 2.5rem; }
  .mt-20 { margin-top: 3rem; }
}

@media (max-width: 374px) {
  .header-inner {
    gap: 0.5rem;
  }

  .mobile-menu-button {
    width: 2.375rem;
    min-width: 2.375rem;
    height: 2.375rem;
    padding: 0;
  }

  .language-toggle {
    height: 2.375rem;
    min-width: 3rem;
    padding: 0 0.75rem;
  }

  .company-logo-wordmark {
    width: min(38vw, 9rem);
  }
}
