/* =============================================================
   10年後の私より — グローバルスタイル
   参考UI: 柔らかいミントグリーン + オレンジアクセント
   ============================================================= */

:root {
  --bg:          #EEF8F6;
  --bg-card:     #FFFFFF;
  --bg-teal:     #C8EDE8;
  --primary:     #FF6040;
  --primary-light:#FF8060;
  --primary-dark: #E04020;
  --teal:        #5BBFB5;
  --teal-dark:   #3A9E94;
  --navy:        #1A2744;
  --text:        #1C2B3A;
  --text-sub:    #6B7A8D;
  --text-light:  #A0AEC0;
  --border:      #E2EBE8;
  --shadow:      rgba(60,100,90,0.10);
  --shadow-card: 0 4px 20px rgba(60,100,90,0.10);
  --radius:      20px;
  --radius-sm:   12px;
  --nav-h:       80px;
  --header-h:    60px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--bg);
  font-family: -apple-system, 'Hiragino Sans', 'YuGothic', 'Yu Gothic', sans-serif;
  font-size: 16px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* モバイル中央配置 */
body {
  display: flex;
  justify-content: center;
}

.app-wrapper {
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  position: relative;
  background: var(--bg);
  overflow-x: hidden;
}

/* スクロール領域 */
.page-content {
  padding: calc(var(--header-h) + 16px) 20px calc(var(--nav-h) + 24px + var(--safe-bottom));
  min-height: 100dvh;
}

.page-content--no-nav {
  padding: calc(var(--header-h) + 16px) 20px 40px;
}

/* ============ APP HEADER ============ */
.app-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--header-h);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
  border-bottom: 1px solid transparent;
}

.app-header.scrolled {
  background: rgba(238,248,246,0.95);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--border);
}

.header-logo {
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--teal-dark) 0%, #2EC4B6 60%, #5BBFB5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.header-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  color: var(--text);
  transition: background 0.15s;
}
.header-btn:active { background: var(--border); }

/* ============ BOTTOM NAV ============ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: calc(var(--nav-h) + var(--safe-bottom));
  padding-bottom: var(--safe-bottom);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding-top: 12px;
  z-index: 100;
  border-top: 1px solid var(--border);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.15s;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.nav-item span {
  font-size: 10px;
  font-weight: 500;
}

.nav-item.active {
  color: var(--primary);
}

.nav-item svg {
  width: 22px;
  height: 22px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,96,64,0.35);
}
.btn-primary:hover  { background: var(--primary-light); }
.btn-primary:active { transform: scale(0.97); box-shadow: none; }

.btn-secondary {
  background: var(--bg-teal);
  color: var(--teal-dark);
}
.btn-secondary:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent;
  color: var(--text-sub);
  box-shadow: none;
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============ CARDS ============ */
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}

.card-teal {
  background: var(--bg-teal);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.card-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  color: #fff;
}

/* ============ FORM ============ */
.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--teal);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-error {
  color: var(--primary);
  font-size: 12px;
  margin-top: 4px;
}

/* ============ SECTION TITLE ============ */
.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-sub);
  margin: -8px 0 16px;
}

/* ============ BADGE / CHIP ============ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.badge-primary { background: rgba(255,96,64,0.12); color: var(--primary); }
.badge-teal    { background: rgba(91,191,181,0.15); color: var(--teal-dark); }
.badge-gray    { background: var(--border); color: var(--text-sub); }

/* ============ DIVIDER ============ */
.divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* ============ TOAST ============ */
#toast-container {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: calc(100% - 40px);
  max-width: 390px;
  pointer-events: none;
}

.toast {
  background: var(--text);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.toast-success { background: var(--teal-dark); }
.toast.toast-error   { background: var(--primary); }

/* ============ LOADING ============ */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(238,248,246,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  backdrop-filter: blur(4px);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,43,58,0.5);
  z-index: 200;
  display: none;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; }

.modal {
  background: var(--bg-card);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 24px 20px calc(24px + var(--safe-bottom));
  width: 100%;
  max-width: 430px;
  max-height: 85dvh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.32,0.72,0,1);
}
.modal-overlay.show .modal { transform: translateY(0); }

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 0 auto 20px;
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-sub    { color: var(--text-sub); font-size: 14px; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap:  8px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ============ AUTH PAGES ============ */

/* ランディング（初回認証）画面 */
.auth-landing {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.auth-landing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1A3A5C 0%, #2C5282 45%, #1A4A3A 100%);
  z-index: 0;
}

.auth-landing-bg::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(91,191,181,0.12);
}

.auth-landing-bg::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,96,64,0.08);
}

.auth-landing-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding: 24px 28px 20px;
}

.auth-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}

.auth-hero-icon {
  font-size: 44px;
  margin-bottom: 10px;
}

.auth-hero-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.auth-hero-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin: 0;
}

.auth-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: env(safe-area-inset-bottom, 16px);
}

/* Googleボタン */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 24px;
  background: #fff;
  color: #1C2B3A;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-google:active { transform: scale(0.97); }

.btn-email-register {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.btn-email-register:active { background: rgba(255,255,255,0.18); }

.auth-login-link {
  text-align: center;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.auth-login-link a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 通常のauth画面（登録・ログイン等） */
.auth-wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.auth-logo h1 {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal-dark);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}

.auth-logo p {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
}

.auth-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 390px;
}

.auth-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 6px;
}

.auth-card-sub {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Google ボタン（白背景カード内） */
.btn-google-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  margin-bottom: 16px;
}
.btn-google-card:active { background: var(--border); }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-light);
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* エラー表示 */
.auth-error {
  background: rgba(255,96,64,0.08);
  border: 1px solid rgba(255,96,64,0.2);
  color: var(--primary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* 確認メール待ち */
.verify-icon {
  font-size: 64px;
  text-align: center;
  margin-bottom: 20px;
}

/* welcome画面 */
.welcome-wrapper {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #1A3A5C 0%, #2C5282 60%, #1A4A3A 100%);
  padding: 60px 28px 40px;
  position: relative;
  overflow: hidden;
}

.welcome-wrapper::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(91,191,181,0.1);
}

.welcome-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.welcome-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 16px;
}

.welcome-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin: 0 0 40px;
}

.welcome-persona {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.welcome-persona p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* ============ ONBOARDING ============ */
.onboarding-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}

.progress-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.progress-dot.active { background: var(--primary); }

.onboarding-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
}

.onboarding-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.3;
}

.onboarding-desc {
  font-size: 14px;
  color: var(--text-sub);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.6;
}

/* ============ ONBOARDING CHIPS ============ */

.chip-section {
  margin-bottom: 28px;
}

.chip-section-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-required {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255,96,64,0.10);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.5px;
}

.badge-optional {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-sub);
  background: var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.5px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.chip:active {
  transform: scale(0.96);
}

.chip.selected {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
  font-weight: 700;
}

/* 悩みチップは横幅を広めに */
.chip--wide {
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 14px;
}

/* 補足テキストエリア */
.supplement-textarea {
  resize: none;
  min-height: 64px;
  font-size: 14px;
}

/* ============ ONBOARDING STEP4 — 洞察カード ============ */

/* ヒーローエリア：未来の自分の名前 + 一言 */
.insight-hero {
  background: linear-gradient(135deg, var(--teal-dark), #2A7A6E);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.insight-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.75;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.insight-hero-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.insight-hero-desc {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.9;
}

/* 洞察カード群 */
.insight-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.insight-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
}

.insight-card--highlight {
  background: #FEFAEC;
  border-color: #F0D97A;
}

.insight-card-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.insight-card-body {
  flex: 1;
}

.insight-card-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.insight-card-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* 未来の自分からのメッセージ */
.insight-message {
  background: var(--bg-teal);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}

.insight-message-from {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--teal-dark);
  opacity: 0.7;
  margin-bottom: 8px;
}

.insight-message-text {
  font-size: 15px;
  color: var(--teal-dark);
  line-height: 1.8;
  font-style: italic;
  font-weight: 500;
}

/* 最初の一歩 */
.insight-first-step {
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-bottom: 8px;
}

.insight-first-step-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.insight-first-step-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
}

/* AI生成中ローディング */
.ai-steps {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-step {
  font-size: 13px;
  color: var(--teal-dark);
  opacity: 0;
  transition: opacity 0.5s;
  padding-left: 18px;
  position: relative;
}

.ai-step::before {
  content: '▸';
  position: absolute;
  left: 0;
}

/* ============ FUTURE BADGES（3年後/10年後ラベル） ============ */

.future-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.future-badge--3y {
  background: var(--bg-teal);
  color: var(--teal-dark);
}

.future-badge--10y {
  background: #E8E0F8;
  color: #6B4FA0;
}

/* 「まだわからない」系チップは控えめスタイル */
.chip--unclear {
  color: var(--text-sub);
  font-style: italic;
  border-style: dashed;
}

.chip--unclear.selected {
  background: var(--text-sub);
  border-color: var(--text-sub);
  color: #fff;
  font-style: normal;
}

/* ============ ONBOARDING FIXED CTA ============ */

/* スクロール領域：固定CTAバーの高さ（88px）+ セーフエリア分を確保 */
.ob-scroll-area {
  padding: 20px 20px calc(88px + env(safe-area-inset-bottom, 16px) + 8px);
}

/* 固定CTAバー */
.ob-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  background: rgba(238,248,246,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 200;
}

.ob-back-link {
  font-size: 14px;
  color: var(--text-sub);
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px 0;
}

.ob-back-link:active {
  opacity: 0.6;
}

.ob-next-btn {
  flex: 1;
  margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (min-width: 430px) {
  .app-wrapper {
    box-shadow: 0 0 40px rgba(60,100,90,0.15);
  }
}
