@charset "UTF-8";
/* 全域變數與重置 */
/* line 2, app/assets/stylesheets/story/index.scss */
:root {
  --primary-blue: #3b82f6;
  --primary-blue-dark: #2563eb;
  --slate-50: #f8fafc;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 16, app/assets/stylesheets/story/index.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 22, app/assets/stylesheets/story/index.scss */
body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.5;
  overflow-x: hidden;
}

/* line 30, app/assets/stylesheets/story/index.scss */
body.menu-open {
  overflow: hidden;
  /* 防止選單開啟時背景捲動 */
}

/* 導覽列 */
/* line 35, app/assets/stylesheets/story/index.scss */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

/* line 48, app/assets/stylesheets/story/index.scss */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1001;
}

/* line 60, app/assets/stylesheets/story/index.scss */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
}

/* line 68, app/assets/stylesheets/story/index.scss */
.logo .brand {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: 0.05em;
}

/* line 75, app/assets/stylesheets/story/index.scss */
.logo .sub-brand {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-500);
  letter-spacing: 0.2em;
}

/* 桌機版連結 */
/* line 83, app/assets/stylesheets/story/index.scss */
.nav-links {
  display: none;
  gap: 40px;
}

@media (min-width: 768px) {
  /* line 89, app/assets/stylesheets/story/index.scss */
  .nav-links {
    display: flex;
  }
}

/* line 94, app/assets/stylesheets/story/index.scss */
.nav-links a {
  text-decoration: none;
  color: var(--slate-600);
  font-weight: 500;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

/* line 102, app/assets/stylesheets/story/index.scss */
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

/* 行動版漢堡按鈕 */
/* line 108, app/assets/stylesheets/story/index.scss */
.mobile-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1002;
}

@media (min-width: 768px) {
  /* line 118, app/assets/stylesheets/story/index.scss */
  .mobile-toggle {
    display: none;
  }
}

/* line 123, app/assets/stylesheets/story/index.scss */
.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  position: relative;
  transition: var(--transition-smooth);
}

/* line 132, app/assets/stylesheets/story/index.scss */
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--slate-800);
  transition: var(--transition-smooth);
}

/* line 142, app/assets/stylesheets/story/index.scss */
.hamburger::before {
  top: -8px;
}

/* line 145, app/assets/stylesheets/story/index.scss */
.hamburger::after {
  top: 8px;
}

/* 漢堡按鈕變叉叉 */
/* line 150, app/assets/stylesheets/story/index.scss */
.mobile-toggle.active .hamburger {
  background: transparent;
}

/* line 154, app/assets/stylesheets/story/index.scss */
.mobile-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

/* line 159, app/assets/stylesheets/story/index.scss */
.mobile-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* 行動版選單選單 */
/* line 165, app/assets/stylesheets/story/index.scss */
.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

/* line 183, app/assets/stylesheets/story/index.scss */
.nav-mobile-overlay.active {
  transform: translateY(0);
}

/* line 187, app/assets/stylesheets/story/index.scss */
.nav-mobile-overlay a {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-800);
  transition: var(--transition-smooth);
}

/* line 195, app/assets/stylesheets/story/index.scss */
.nav-mobile-overlay a:hover {
  color: var(--primary-blue);
}

/* 主內容區 */
/* line 200, app/assets/stylesheets/story/index.scss */
.about-section {
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
}

/* line 209, app/assets/stylesheets/story/index.scss */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 850px) {
  /* line 220, app/assets/stylesheets/story/index.scss */
  .container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

/* 左側：視覺卡片 */
/* line 227, app/assets/stylesheets/story/index.scss */
.visual-column .section-title {
  margin-bottom: 40px;
}

/* line 231, app/assets/stylesheets/story/index.scss */
.visual-column .section-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  /* line 239, app/assets/stylesheets/story/index.scss */
  .visual-column .section-title h2 {
    font-size: 3.5rem;
  }
}

/* line 244, app/assets/stylesheets/story/index.scss */
.visual-column .section-title .title-line {
  height: 6px;
  width: 80px;
  background-color: var(--primary-blue);
  border-radius: 99px;
}

/* line 251, app/assets/stylesheets/story/index.scss */
.image-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 850px) {
  /* line 258, app/assets/stylesheets/story/index.scss */
  .image-wrapper {
    margin: 0;
  }
}

/* line 263, app/assets/stylesheets/story/index.scss */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  z-index: 0;
  transition: var(--transition-smooth);
}

/* line 276, app/assets/stylesheets/story/index.scss */
.image-wrapper:hover::before {
  top: 10px;
  left: -10px;
}

/* line 281, app/assets/stylesheets/story/index.scss */
.image-placeholder {
  position: relative;
  z-index: 1;
  background-color: var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  background-image: linear-gradient(to bottom right, #f1f5f9, #cbd5e1);
}

/* line 296, app/assets/stylesheets/story/index.scss */
.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右側：文字內容 */
/* line 303, app/assets/stylesheets/story/index.scss */
.content-column .greeting {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  /* line 311, app/assets/stylesheets/story/index.scss */
  .content-column .greeting {
    font-size: 2rem;
  }
}

/* line 316, app/assets/stylesheets/story/index.scss */
.content-column .bio {
  color: var(--slate-600);
  line-height: 1.8;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  /* line 323, app/assets/stylesheets/story/index.scss */
  .content-column .bio {
    font-size: 1.15rem;
  }
}

/* line 328, app/assets/stylesheets/story/index.scss */
.content-column .bio p {
  margin-bottom: 24px;
}

/* line 332, app/assets/stylesheets/story/index.scss */
.content-column .bio strong {
  color: var(--slate-900);
  font-weight: 700;
}

/* line 337, app/assets/stylesheets/story/index.scss */
.content-column .bio .highlight {
  color: var(--primary-blue);
  font-weight: 600;
  font-style: italic;
}

/* 標籤雲 */
/* line 344, app/assets/stylesheets/story/index.scss */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

/* line 351, app/assets/stylesheets/story/index.scss */
.tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--slate-500);
  transition: var(--transition-smooth);
  cursor: default;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* line 363, app/assets/stylesheets/story/index.scss */
.tag:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* 按鈕與社群 */
/* line 370, app/assets/stylesheets/story/index.scss */
.actions {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 540px) {
  /* line 378, app/assets/stylesheets/story/index.scss */
  .actions {
    flex-direction: row;
    align-items: center;
  }
}

/* line 384, app/assets/stylesheets/story/index.scss */
.btn-contact {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 16px 44px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

/* line 400, app/assets/stylesheets/story/index.scss */
.btn-contact i {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

/* line 405, app/assets/stylesheets/story/index.scss */
.btn-contact:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -5px rgba(59, 130, 246, 0.4);
}

/* line 411, app/assets/stylesheets/story/index.scss */
.btn-contact:hover i {
  transform: translate(4px, -4px);
}

/* line 415, app/assets/stylesheets/story/index.scss */
.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

@media (min-width: 540px) {
  /* line 422, app/assets/stylesheets/story/index.scss */
  .social-links {
    justify-content: flex-start;
  }
}

/* line 427, app/assets/stylesheets/story/index.scss */
.social-links a {
  font-size: 1.6rem;
  color: var(--slate-400);
  transition: var(--transition-smooth);
}

/* line 433, app/assets/stylesheets/story/index.scss */
.social-links a:hover {
  color: var(--primary-blue);
  transform: scale(1.1);
}

/* 頁尾 */
/* line 439, app/assets/stylesheets/story/index.scss */
.site-footer {
  background-color: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--slate-200);
  text-align: center;
  color: var(--slate-400);
  font-size: 0.9rem;
}

/* 入場動畫 */
/* line 449, app/assets/stylesheets/story/index.scss */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 主內容區 */
/* 主內容區 */
/* line 467, app/assets/stylesheets/story/index.scss */
.about-section {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
}

/* line 476, app/assets/stylesheets/story/index.scss */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 850px) {
  /* line 487, app/assets/stylesheets/story/index.scss */
  .container {
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
  }
}

/* 左側：視覺卡片 */
/* line 494, app/assets/stylesheets/story/index.scss */
.visual-column .section-title {
  margin-bottom: 32px;
}

/* line 498, app/assets/stylesheets/story/index.scss */
.visual-column .section-title h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--slate-900);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  /* line 506, app/assets/stylesheets/story/index.scss */
  .visual-column .section-title h2 {
    font-size: 3.5rem;
  }
}

/* line 511, app/assets/stylesheets/story/index.scss */
.visual-column .section-title .title-line {
  height: 6px;
  width: 80px;
  background-color: var(--primary-blue);
  border-radius: 99px;
}

/* line 518, app/assets/stylesheets/story/index.scss */
.image-wrapper {
  position: relative;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 850px) {
  /* line 526, app/assets/stylesheets/story/index.scss */
  .image-wrapper {
    margin: 0;
  }
}

/* line 531, app/assets/stylesheets/story/index.scss */
.image-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary-blue);
  border-radius: 16px;
  z-index: 0;
  transition: var(--transition-smooth);
}

/* line 544, app/assets/stylesheets/story/index.scss */
.image-placeholder {
  position: relative;
  z-index: 1;
  background-color: var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  background-image: linear-gradient(to bottom right, #f1f5f9, #cbd5e1);
}

/* line 559, app/assets/stylesheets/story/index.scss */
.image-placeholder .profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

/* 佔位圖示設為絕對定位，不會撐開空間 */
/* line 568, app/assets/stylesheets/story/index.scss */
.image-placeholder i {
  position: absolute;
  z-index: 1;
}

/* 右側：文字內容 */
/* line 574, app/assets/stylesheets/story/index.scss */
.content-column .greeting {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  /* line 582, app/assets/stylesheets/story/index.scss */
  .content-column .greeting {
    font-size: 2rem;
  }
}

/* line 587, app/assets/stylesheets/story/index.scss */
.content-column .bio {
  color: var(--slate-600);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* line 593, app/assets/stylesheets/story/index.scss */
.content-column .bio p {
  margin-bottom: 24px;
}

/* line 597, app/assets/stylesheets/story/index.scss */
.content-column .bio strong {
  color: var(--slate-900);
  font-weight: 700;
}

/* line 602, app/assets/stylesheets/story/index.scss */
.content-column .bio .highlight {
  color: var(--primary-blue);
  font-weight: 600;
  font-style: italic;
}

/* line 608, app/assets/stylesheets/story/index.scss */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

/* line 615, app/assets/stylesheets/story/index.scss */
.tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--slate-500);
  transition: var(--transition-smooth);
  cursor: default;
}

/* line 626, app/assets/stylesheets/story/index.scss */
.tag:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* line 632, app/assets/stylesheets/story/index.scss */
.actions {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 540px) {
  /* line 640, app/assets/stylesheets/story/index.scss */
  .actions {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}

/* line 647, app/assets/stylesheets/story/index.scss */
.btn-contact {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 14px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

/* line 663, app/assets/stylesheets/story/index.scss */
.btn-contact i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* line 668, app/assets/stylesheets/story/index.scss */
.btn-contact:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}

/* line 674, app/assets/stylesheets/story/index.scss */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* line 680, app/assets/stylesheets/story/index.scss */
.social-links a {
  font-size: 1.5rem;
  color: var(--slate-400);
  transition: var(--transition-smooth);
}

/* line 686, app/assets/stylesheets/story/index.scss */
.social-links a:hover {
  color: var(--primary-blue);
}

/* line 690, app/assets/stylesheets/story/index.scss */
.site-footer {
  background-color: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--slate-200);
  text-align: center;
  color: var(--slate-400);
  font-size: 0.9rem;
}

/* line 699, app/assets/stylesheets/story/index.scss */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 標籤雲 */
/* line 716, app/assets/stylesheets/story/index.scss */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

/* line 723, app/assets/stylesheets/story/index.scss */
.tag {
  padding: 8px 18px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 99px;
  font-size: 0.9rem;
  color: var(--slate-500);
  transition: var(--transition-smooth);
  cursor: default;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* line 735, app/assets/stylesheets/story/index.scss */
.tag:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

/* 按鈕與社群 */
/* line 742, app/assets/stylesheets/story/index.scss */
.actions {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 540px) {
  /* line 750, app/assets/stylesheets/story/index.scss */
  .actions {
    flex-direction: row;
    align-items: center;
  }
}

/* line 756, app/assets/stylesheets/story/index.scss */
.btn-contact {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 16px 44px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  text-decoration: none;
}

/* line 772, app/assets/stylesheets/story/index.scss */
.btn-contact i {
  margin-left: 12px;
  transition: transform 0.3s ease;
}

/* line 777, app/assets/stylesheets/story/index.scss */
.btn-contact:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px -5px rgba(59, 130, 246, 0.4);
}

/* line 783, app/assets/stylesheets/story/index.scss */
.btn-contact:hover i {
  transform: translate(4px, -4px);
}

/* line 787, app/assets/stylesheets/story/index.scss */
.social-links {
  display: flex;
  gap: 24px;
}

/* line 792, app/assets/stylesheets/story/index.scss */
.social-links a {
  font-size: 1.6rem;
  color: var(--slate-400);
  transition: var(--transition-smooth);
}

/* line 798, app/assets/stylesheets/story/index.scss */
.social-links a:hover {
  color: var(--primary-blue);
  transform: scale(1.1);
}

/* 頁尾 */
/* line 804, app/assets/stylesheets/story/index.scss */
.site-footer {
  background-color: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--slate-200);
  text-align: center;
  color: var(--slate-400);
  font-size: 0.9rem;
}

/* 入場動畫 */
/* line 814, app/assets/stylesheets/story/index.scss */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* line 830, app/assets/stylesheets/story/index.scss */
body {
  font-family: "Noto Sans TC", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
}

/* 導覽列 */
/* line 839, app/assets/stylesheets/story/index.scss */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

/* line 848, app/assets/stylesheets/story/index.scss */
nav.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

/* line 855, app/assets/stylesheets/story/index.scss */
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 864, app/assets/stylesheets/story/index.scss */
.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-blue);
  letter-spacing: -0.5px;
}

/* line 871, app/assets/stylesheets/story/index.scss */
.logo span {
  color: #9ca3af;
  font-weight: 300;
  font-size: 18px;
  margin-left: 4px;
}

/* line 878, app/assets/stylesheets/story/index.scss */
.nav-links {
  display: none;
}

@media (min-width: 768px) {
  /* line 883, app/assets/stylesheets/story/index.scss */
  .nav-links {
    display: flex;
    gap: 32px;
  }
}

/* line 889, app/assets/stylesheets/story/index.scss */
.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

/* line 897, app/assets/stylesheets/story/index.scss */
.nav-links a:hover {
  color: var(--accent-blue);
}

/* Hero 區塊 */
/* line 902, app/assets/stylesheets/story/index.scss */
.hero {
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  /* line 909, app/assets/stylesheets/story/index.scss */
  .hero {
    padding: 180px 24px 120px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
  }
}

/* line 918, app/assets/stylesheets/story/index.scss */
.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 24px;
  color: #111827;
}

/* line 925, app/assets/stylesheets/story/index.scss */
.hero-underline {
  width: 64px;
  height: 4px;
  background: var(--accent-blue);
  margin-bottom: 48px;
}

/* line 932, app/assets/stylesheets/story/index.scss */
.hero-text-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

/* line 939, app/assets/stylesheets/story/index.scss */
.hero-text-box p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 400px;
}

/* line 946, app/assets/stylesheets/story/index.scss */
.btn-contact {
  background: var(--accent-blue);
  color: white;
  padding: 12px 32px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

/* line 962, app/assets/stylesheets/story/index.scss */
.btn-contact:hover {
  background: var(--primary-blue);
  transform: translateY(-2px);
}

/* line 967, app/assets/stylesheets/story/index.scss */
.hero-image {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (min-width: 768px) {
  /* line 974, app/assets/stylesheets/story/index.scss */
  .hero-image {
    margin-top: 0;
  }
}

/* line 979, app/assets/stylesheets/story/index.scss */
.profile-placeholder {
  width: 280px;
  height: 280px;
  background: var(--bg-gray);
  border-radius: 24px;
  border: 2px dashed #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

/* 個人經歷區塊 (核心設計) */
/* line 992, app/assets/stylesheets/story/index.scss */
.experience-section {
  background: var(--bg-gray);
  padding: 100px 24px;
}

/* line 997, app/assets/stylesheets/story/index.scss */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* line 1002, app/assets/stylesheets/story/index.scss */
.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* line 1008, app/assets/stylesheets/story/index.scss */
.section-header p {
  color: var(--text-muted);
}

/* line 1012, app/assets/stylesheets/story/index.scss */
.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* 垂直線 */
/* line 1019, app/assets/stylesheets/story/index.scss */
.timeline-line {
  position: absolute;
  left: 20px;
  /* 手機端靠左 */
  top: 0;
  bottom: 0;
  width: 2px;
  background: #cbd5e1;
}

@media (min-width: 768px) {
  /* line 1029, app/assets/stylesheets/story/index.scss */
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* line 1035, app/assets/stylesheets/story/index.scss */
.timeline-item {
  position: relative;
  margin-bottom: 64px;
  width: 100%;
}

/* 圓點標記 */
/* line 1042, app/assets/stylesheets/story/index.scss */
.timeline-dot {
  position: absolute;
  left: 20px;
  width: 32px;
  height: 32px;
  background: white;
  border: 4px solid var(--accent-blue);
  border-radius: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

/* line 1058, app/assets/stylesheets/story/index.scss */
.timeline-dot i {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  /* line 1064, app/assets/stylesheets/story/index.scss */
  .timeline-dot {
    left: 50%;
  }
}

/* 內容卡片 */
/* line 1070, app/assets/stylesheets/story/index.scss */
.timeline-content {
  margin-left: 56px;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: var(--transition);
}

/* line 1080, app/assets/stylesheets/story/index.scss */
.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  border-color: var(--light-blue);
}

@media (min-width: 768px) {
  /* line 1087, app/assets/stylesheets/story/index.scss */
  .timeline-content {
    width: 42%;
    margin-left: 0;
  }
  /* line 1092, app/assets/stylesheets/story/index.scss */
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
  }
  /* line 1096, app/assets/stylesheets/story/index.scss */
  .timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
  }
}

/* line 1101, app/assets/stylesheets/story/index.scss */
.tag-year {
  display: inline-block;
  background: var(--light-blue);
  color: var(--accent-blue);
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* line 1112, app/assets/stylesheets/story/index.scss */
.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* line 1118, app/assets/stylesheets/story/index.scss */
.timeline-content h4 {
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 12px;
}

/* line 1124, app/assets/stylesheets/story/index.scss */
.timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* 底部裝飾點 */
/* line 1130, app/assets/stylesheets/story/index.scss */
.timeline-origin {
  position: absolute;
  bottom: -16px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: #cbd5e1;
  border: 3px solid white;
  border-radius: 50%;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  /* line 1143, app/assets/stylesheets/story/index.scss */
  .timeline-origin {
    left: 50%;
  }
}

/* Footer */
/* line 1149, app/assets/stylesheets/story/index.scss */
footer {
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid #f3f4f6;
}

/* line 1155, app/assets/stylesheets/story/index.scss */
.footer-quote {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

/* line 1161, app/assets/stylesheets/story/index.scss */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

/* line 1168, app/assets/stylesheets/story/index.scss */
.social-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

/* line 1175, app/assets/stylesheets/story/index.scss */
.social-links a:hover {
  color: var(--accent-blue);
}

/* line 1179, app/assets/stylesheets/story/index.scss */
.copyright {
  font-size: 12px;
  color: #d1d5db;
}

/* 回到頂部按鈕 */
/* line 1185, app/assets/stylesheets/story/index.scss */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--accent-blue);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

/* line 1206, app/assets/stylesheets/story/index.scss */
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* line 1211, app/assets/stylesheets/story/index.scss */
.back-to-top:hover {
  background: var(--bg-gray);
}
