/* Lo Kheng Hong Landing Page - Premium Investment Design */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* CSS Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Deep Blue & Gold Premium Palette */
  --deep-blue: #003366;
  --deep-blue-dark: #00264d;
  --deep-blue-darker: #001a33;
  --gold: #D4AF37;
  --gold-light: #e5c76b;
  --gold-dark: #b8982e;
  --foreground: #f5f3e7;
  --muted: #8a9bb3;
  --border: #1a3a5c;
  
  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #D4AF37, #b8982e);
  --gradient-blue: linear-gradient(180deg, #00264d, #001a33);
  --gradient-hero: linear-gradient(180deg, #003d66 0%, #001a33 100%);
  
  /* Shadows */
  --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
  --shadow-gold-glow: 0 8px 50px rgba(212, 175, 55, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--deep-blue-darker);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Background decorative elements */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: 80px;
  left: 25%;
  width: 256px;
  height: 256px;
  background: rgba(212, 175, 55, 0.05);
  filter: blur(60px);
}

.hero::after {
  bottom: 80px;
  right: 25%;
  width: 384px;
  height: 384px;
  background: rgba(212, 175, 55, 0.03);
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Avatar */
.avatar-wrapper {
  position: relative;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out forwards;
}

.avatar-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gradient-gold);
  filter: blur(12px);
  opacity: 0.5;
  transform: scale(1.1);
}

.avatar {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .avatar {
    width: 160px;
    height: 160px;
  }
}

/* Name */
.name {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .name {
    font-size: 1.5rem;
  }
}

/* Headline */
.headline {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .headline {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .headline {
    font-size: 2.25rem;
  }
}

.text-gold {
  color: var(--gold);
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheadline */
.subheadline {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 640px;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .subheadline {
    font-size: 1.25rem;
  }
}

/* ============ LINE BUTTON ============ */
.btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.btn-line {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
  padding: 20px 32px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  animation: breathing 2.5s ease-in-out infinite;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.btn-line:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

@keyframes breathing {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 50px rgba(212, 175, 55, 0.5);
  }
}

.btn-line:hover {
  animation: none;
  transform: translateY(-4px) scale(1.02);
}

.line-icon-wrapper {
  width: 40px;
  height: 40px;
  background: #06C755;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.line-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: var(--deep-blue-darker);
}

.btn-text-small {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.8;
}

.btn-text-main {
  font-size: 1rem;
  font-weight: 700;
}

/* ============ IMAGE SECTION ============ */
.image-section {
  width: 100%;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ ABOUT SECTION ============ */
.about {
  position: relative;
  padding: 64px 20px;
  background: linear-gradient(180deg, var(--deep-blue-darker) 0%, var(--deep-blue-dark) 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .about {
    padding: 96px 20px;
  }
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 288px;
  height: 288px;
  background: rgba(212, 175, 55, 0.03);
  border-radius: 50%;
  filter: blur(60px);
  transform: translateY(-50%);
}

.about-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title h2 {
    font-size: 1.875rem;
  }
}

.section-title p {
  font-size: 1.125rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .section-title p {
    font-size: 1.25rem;
  }
}

/* Gold Divider */
.gold-divider {
  height: 2px;
  width: 96px;
  margin: 0 auto 48px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Feature Cards */
.features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.feature-card {
  background: rgba(0, 38, 77, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 32px;
  }
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 0.15s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

.feature-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.25rem;
  }
}

.feature-desc {
  color: var(--muted);
  line-height: 1.8;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--deep-blue-darker);
  padding: 48px 20px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Warning Box */
.warning-box {
  background: rgba(0, 38, 77, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  font-size: 0.875rem;
  color: var(--muted);
}

.warning-item {
  margin-bottom: 16px;
}

.warning-item:last-child {
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.warning-label {
  color: var(--gold);
  font-weight: 600;
  margin-right: 8px;
}

/* Footer Nav */
.footer-nav {
  margin-bottom: 32px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  list-style: none;
}

@media (min-width: 768px) {
  .footer-nav ul {
    gap: 24px;
  }
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--gold);
}

/* Footer Divider */
.footer-divider {
  height: 2px;
  width: 100%;
  margin-bottom: 32px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Important Notice */
.important-notice {
  background: rgba(0, 38, 77, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  font-size: 0.75rem;
  color: var(--muted);
}

.notice-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.notice-text {
  line-height: 1.8;
  margin-bottom: 16px;
}

.notice-info p {
  margin-bottom: 4px;
}

.notice-company {
  font-weight: 600;
  color: var(--foreground);
}

/* Media Note */
.media-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Copyright */
.copyright {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Floating Button */
.mobile-floating-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .mobile-floating-btn {
    display: block;
  }
  
  .mobile-floating-btn .btn-line {
    max-width: 100%;
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-floating-btn .btn-text-small {
    font-size: 0.75rem;
  }
  
  .mobile-floating-btn .btn-text-main {
    font-size: 0.875rem;
  }
  
  .mobile-floating-btn .line-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  
  .mobile-floating-btn .line-icon {
    width: 20px;
    height: 20px;
  }
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 12px;
  background: rgba(0, 51, 102, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 51, 102, 0.15);
  background: rgba(212, 175, 55, 0.05);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #f5f3e7;
  margin: 0 0 12px 0;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #8a9bb3;
  margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .feature-item {
    padding: 16px 12px;
  }
  
  .feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }
  
  .feature-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .feature-desc {
    font-size: 12px;
  }
}

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