/* ========== Web3 科技感 · 深色主題 ========== */
:root {
  --bg: #0a0a0f;
  --bg-card: rgba(18, 22, 32, 0.9);
  --bg-card-border: rgba(0, 173, 239, 0.25);
  --primary: #00ADEF;
  --primary-glow: rgba(0, 173, 239, 0.45);
  --primary-hover: #00c8ff;
  --secondary: #FFD700;
  --secondary-dim: rgba(255, 215, 0, 0.12);
  --text: #e8ecf4;
  --text-muted: #9098b0;
  --text-strong: #f0f4fc;
  --risk: #ff6b6b;
  --risk-glow: rgba(255, 107, 107, 0.25);
  --radius: 12px;
  --font: 'Noto Sans TC', sans-serif;
  --font-heading: 'Orbitron', 'Noto Sans TC', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  min-width: 0;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 173, 239, 0.04) 50%, transparent 100%),
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 173, 239, 0.1), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 215, 0, 0.03), transparent),
    linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.02) 50%, transparent 100%);
}

h1, h2, h3, .success-title {
  font-family: var(--font-heading);
  color: var(--text-strong);
  letter-spacing: 0.03em;
}

/* ========== 每頁滿屏容器 ========== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

/* ========== 頂部 Logo + 進度 ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-card-border);
}

.site-logo-wrap {
  display: inline-block;
  background: var(--bg);
  padding: 6px;
  border-radius: 8px;
  line-height: 0;
}

.site-logo {
  height: 52px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .site-logo {
    height: 56px;
  }
}

.site-logo-transparent {
  mix-blend-mode: screen;
  vertical-align: middle;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.pagination a:hover {
  color: var(--primary);
  background: rgba(0, 173, 239, 0.1);
}

.pagination .dots {
  display: flex;
  gap: 6px;
  margin: 0 4px;
}

.pagination .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
}

.pagination .dot.active {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 12px var(--primary-glow);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-left: auto;
}

.site-header .lang-switcher-in-header {
  position: static !important;
  top: auto;
  right: auto;
  margin: 0;
}

.site-header .lang-switcher-in-header .lang-btn {
  padding: 6px 10px;
  font-size: 13px;
}

.site-header .lang-switcher-in-header .lang-divider {
  margin: 0 2px;
}

.btn-logout {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-logout:hover {
  color: var(--primary);
  background: rgba(0, 173, 239, 0.1);
}

.page-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.page-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.4;
  text-indent: -9999px;
  display: block;
  transition: opacity 0.2s, background 0.2s;
}

a.page-dot:hover {
  opacity: 0.8;
  background: var(--primary);
}

.page-dot.active {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 12px var(--primary-glow);
}

.intro-page {
  padding-top: 100px;
  padding-bottom: 60px;
  justify-content: flex-start;
}

.intro-page h2 {
  font-size: clamp(22px, 3.5vw, 28px);
  color: var(--text-strong);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 600;
}

/* ========== 第四頁：挑選 Bot（豎排、Web3 動態高級）========= */
.bot-choose-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}

.bot-option {
  cursor: pointer;
  display: block;
  margin: 0;
}

.bot-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.bot-card {
  display: block;
  position: relative;
  padding: 28px 28px 28px 60px;
  background: linear-gradient(145deg, rgba(18, 22, 32, 0.95) 0%, rgba(10, 14, 24, 0.98) 100%);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

.bot-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  filter: blur(12px);
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: -1;
}

.bot-option:hover .bot-card .bot-card-glow {
  opacity: 0.25;
}

.bot-option input:checked + .bot-card {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), 0 0 40px var(--primary-glow);
}

.bot-option input:checked + .bot-card .bot-card-glow {
  opacity: 0.35;
}

.bot-card-tick {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.bot-option input:checked + .bot-card .bot-card-tick {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow), inset 0 0 0 4px rgba(10, 10, 15, 0.95);
}

.bot-card-body h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.bot-desc {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bot-roi {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%);
  border: 1px solid rgba(0, 173, 239, 0.25);
  border-radius: 10px;
}

.bot-roi-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bot-roi-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.bot-specs {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.bot-specs li {
  position: relative;
  padding-left: 1em;
}

.bot-specs li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.bot-option-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.bot-card-coming {
  opacity: 0.75;
  border-style: dashed;
  padding-left: 60px;
}

.bot-card-tick-disabled {
  border-color: var(--text-muted);
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-disabled {
  cursor: not-allowed;
}

/* ========== 第四頁：啟動中 Loading ========== */
.launch-loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 15, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.launch-loading.is-active {
  opacity: 1;
  visibility: visible;
}

.launch-loading-inner {
  text-align: center;
}

.launch-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 3px solid var(--bg-card-border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: launch-spin 0.8s linear infinite;
}

@keyframes launch-spin {
  to { transform: rotate(360deg); }
}

.launch-loading-text {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
}

/* ========== 第五頁：Bot 已成功啟動 ========== */
.success-page {
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: #0a0a0f;
  background: linear-gradient(135deg, var(--primary) 0%, #00c8ff 100%);
  border-radius: 50%;
  box-shadow: 0 0 40px var(--primary-glow);
  animation: success-pop 0.5s ease;
}

@keyframes success-pop {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--text);
  margin: 0 0 12px;
}

.success-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-platform {
  min-width: 260px;
}

.success-disclaimer {
  margin: 32px auto 0;
  max-width: 520px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bot-coming-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  padding: 6px 12px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ========== 按鈕 ========== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0f;
  background: linear-gradient(135deg, var(--primary) 0%, #00c8ff 100%);
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-ghost:hover {
  background: rgba(0, 173, 239, 0.15);
  box-shadow: 0 0 20px var(--primary-glow);
}

.btn-large {
  padding: 18px 36px;
  font-size: 18px;
}

/* ========== 中英切換 ========== */
body.lang-zh .lang-en { display: none; }
body.lang-en .lang-zh { display: none; }

.lang-switcher {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

.lang-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.lang-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn.active {
  color: var(--primary);
  font-weight: 600;
}

.lang-divider {
  opacity: 0.5;
  user-select: none;
}

/* ========== Page 1: Hero（首頁無頂欄、僅一顆 CTA）========== */
/* 首頁背景改為接近 logo 的黑，減少色塊感 */
.hero-page-first {
  background: #000000;
  background-image: none;
}

.hero-page .hero-content {
  text-align: center;
  max-width: 640px;
}

/* 第一頁 Logo：無背景框、僅柔和光暈，不凸顯矩形 */
.hero-page-first .hero-logo-wrap {
  margin-bottom: 28px;
  background: transparent !important;
  padding: 0;
  border: none !important;
  box-shadow: none !important;
}

.hero-page .hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-page .hero-logo {
  width: 200px;
  height: auto;
  max-width: 90vw;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 32px rgba(0, 173, 239, 0.25)) drop-shadow(0 0 60px rgba(0, 173, 239, 0.12));
}

/* 首頁 logo：圖檔已去背透明，僅保留柔和光暈 */
.hero-page-first .hero-logo {
  width: 240px;
  filter: drop-shadow(0 0 70px rgba(0, 173, 239, 0.18));
}

@media (min-width: 600px) {
  .hero-page-first .hero-logo {
    width: 280px;
  }
}

.hero-page h1 {
  font-size: clamp(26px, 5vw, 40px);
  color: var(--text-strong);
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* 英文時標題不換行 */
body.lang-en .hero-page h1 {
  white-space: nowrap;
}
@media (max-width: 520px) {
  body.lang-en .hero-page h1 {
    white-space: normal;
  }
}

.hero-page .hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 auto 40px;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* 英文時副標題不換行、維持居中 */
body.lang-en .hero-page .hero-sub {
  white-space: nowrap;
}
@media (max-width: 640px) {
  body.lang-en .hero-page .hero-sub {
    white-space: normal;
  }
}

.hero-page .btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-page-first .btn-wrap {
  justify-content: center;
}

.server-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  padding: 12px 24px;
  background: rgba(255, 107, 107, 0.15);
  border-bottom: 1px solid var(--risk);
  color: var(--text);
  font-size: 14px;
  text-align: center;
}
.server-notice a {
  color: var(--primary);
  margin-left: 8px;
  word-break: break-all;
}

/* ========== Page 2: 註冊頁（無頂欄，與第一頁一致）========== */
.register-page {
  padding-top: 80px;
  padding-bottom: 60px;
  justify-content: flex-start;
}

.register-page h2 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
}

.register-form {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.register-form .form-row {
  margin-bottom: 20px;
}

.register-form label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.register-form input[type="text"],
.register-form input[type="email"],
.register-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 15px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  color: var(--text);
}

.register-form input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.register-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.register-form input.error {
  border-color: var(--risk);
}

.form-error {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--risk);
}

.form-error.hidden {
  display: none;
}

.terms-details {
  margin: 24px 0;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.terms-details summary {
  padding: 16px 20px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

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

.terms-details summary::after {
  content: '▼';
  float: right;
  font-size: 14px;
}

.terms-details[open] summary::after {
  content: '▲';
}

.terms-list {
  margin: 0;
  padding: 0 20px 20px;
  padding-left: 36px;
  border-top: 1px solid var(--bg-card-border);
  padding-top: 16px;
  margin-top: 0;
}

.terms-list li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.checkbox-label {
  margin: 0 !important;
  font-size: 14px !important;
  color: var(--text) !important;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.form-actions .btn {
  min-width: 140px;
}

/* ========== Page 2 (舊): Features ========== */
.features-page h2 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
}

.features-grid-6 {
  max-width: 1000px;
}

.feature {
  background: linear-gradient(160deg, rgba(18, 24, 36, 0.95) 0%, var(--bg-card) 100%);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.feature:hover {
  border-color: rgba(0, 173, 239, 0.5);
  box-shadow: 0 0 28px var(--primary-glow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(0, 200, 255, 0.3) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature h3 {
  color: var(--text);
  font-size: 18px;
  margin: 0 0 10px;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Page 3: Process ========== */
.process-page h2 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
}

.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, #00c8ff 100%);
  color: #0a0a0f;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 0 20px var(--primary-glow);
}

.step p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
}

.step-arrow {
  color: var(--primary);
  font-size: 24px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
}

/* ========== Page 4: Risk ========== */
.risk-page h2 {
  font-size: 28px;
  color: var(--text);
  margin-bottom: 32px;
  text-align: center;
}

.risk-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 520px;
}

.risk-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--risk);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  padding: 16px 20px;
  background: rgba(255, 107, 107, 0.06);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: var(--radius);
}

.risk-list li::before {
  content: '⚠';
  flex-shrink: 0;
  font-size: 18px;
}

/* ========== Page 5: CTA + Form + FAQ ========== */
.cta-page .section {
  margin-bottom: 48px;
  text-align: center;
}

.cta-page .section:last-of-type {
  margin-bottom: 0;
}

.lead-form h2,
.cta-page h2 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
}

.lead-form-desc,
.form-note {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0 0 24px;
}

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px;
}

.form-inline input {
  padding: 14px 18px;
  font-family: var(--font);
  font-size: 15px;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  color: var(--text);
  min-width: 180px;
}

.form-inline input::placeholder {
  color: var(--text-muted);
}

.form-inline input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-glow);
}

.cta-section {
  margin-top: 40px;
}

/* FAQ */
.faq {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--primary);
  font-size: 20px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
  color: var(--text-muted);
  border-top: 1px solid var(--bg-card-border);
  padding-top: 16px;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
}

/* 頁面導航按鈕區 ========== */
.page-nav {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .page {
    padding: 80px 20px 40px;
  }
  .btn-large {
    min-width: 260px;
    text-align: center;
  }
}
