

html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #06070f;
  font-family: var(--font-body);
}

.snap-container {
  width: 100%; height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.snap-container::-webkit-scrollbar { display: none; }

.snap-section {
  position: relative;
  width: 100%; height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}

.section-history-b { background: #06070f; }
.section-mv, .section-history-a { background: #030d2e; }

.section-values {
  background: #06070f url('../assets/images/Our-values.webp') center / cover no-repeat;
}

.section-values .value-card {
  background: rgba(6, 10, 28, 0.52);
  border: 1px solid rgba(100, 155, 255, 0.22);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 36px rgba(0,0,40,0.50);
}

.section-values .value-card:hover {
  background: rgba(8, 14, 38, 0.58);
  border-color: rgba(110, 165, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.11), 0 14px 48px rgba(20,50,200,0.28);
}

.section-hero {
  background: #06070f url('../assets/images/Who%20we%20are.webp') center / cover no-repeat;
  justify-content: flex-start;

  padding-top: clamp(260px, 38vh, 460px);
}

@media (min-width: 1440px) {
  .section-hero {
    padding-top: clamp(360px, 46vh, 560px);
  }
}

.section-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

.section-inner {

  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  padding: 0 48px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(120, 165, 255, 0.68);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(225, 235, 255, 0.97);
  line-height: 1.05;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--color-text-body);
  line-height: 1.75;
  max-width: 540px;
}

.glass-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(100,150,255,0.16);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 8px 40px rgba(0,0,40,0.4);
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), transform var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(100,160,255,0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09), 0 12px 50px rgba(30,60,200,0.18);
  transform: translateY(-2px);
}

.hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-glow {
  position: absolute; top: 50%; left: 30%;
  transform: translate(-50%,-50%);
  width: 600px; height: 380px;
  background: radial-gradient(ellipse, rgba(30,70,200,0.11) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}

.hero-logo { margin-bottom: 20px; }

.hero-logo-img {
  height: 52px;
  width: auto;
}

.hero-eyebrow {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(120,165,255,0.60);
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.02em;
  line-height: 1.06;
  color: rgba(235, 242, 255, 0.97);
  text-shadow: 0 0 60px rgba(40,90,220,0.28), 0 2px 0 rgba(0,0,0,0.4);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: var(--color-text-body);
  max-width: 500px;
}

.scroll-hint {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(205, 225, 255, 0.95);
  cursor: pointer;
  animation: scrollBob 2.2s ease-in-out infinite;
}

.scroll-hint-label {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: currentColor;
}

@keyframes scrollBob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(6px); }
}

.mv-section-title { margin-bottom: 28px; }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.mv-card {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}

.card-icon {
  width: 74px; height: 74px;
  border-radius: 15px;
  background: rgba(40,80,200,0.11);
  border: 1px solid rgba(80,130,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(215, 230, 255, 0.95);
  margin-bottom: 8px;
}

.card-body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-body);
}

.values-header { text-align: center; margin-bottom: 40px; }
.values-header .section-subtitle { margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.value-card {
  padding: 28px 24px;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 14px;
}

@media (max-width: 768px) {
  .values-header { margin-bottom: 18px; }
  .values-grid { gap: 10px; }
  .value-card { padding: 16px 14px; gap: 10px; }
  .value-title { font-size: 16px; }
  .value-phrase { font-size: 13px; }

  .section-values { background-position: 80% center; }
}

@media (max-width: 480px) {
  .values-header { margin-bottom: 14px; }
  .value-card { padding: 12px 10px; gap: 8px; }
  .value-title { font-size: 15px; }
}

.value-icon {
  width: 52px; height: 52px;
  border-radius: 11px;
  background: rgba(30,70,200,0.10);
  border: 1px solid rgba(80,130,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.value-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: rgba(215, 230, 255, 0.94);
}

.value-phrase {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-body);
}

.values-cta {
  margin-top: 28px;
  text-align: center;
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.07em;
  color: rgba(120, 155, 215, 0.52);
}

@media (max-width: 768px) {
  .values-cta { margin-top: 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .values-cta { margin-top: 12px; font-size: 12px; }
}

.values-cta-link {
  color: rgba(140,180,255,0.70);
  border-bottom: 1px solid rgba(120,165,255,0.25);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.values-cta-link:hover {
  color: rgba(175, 210, 255, 0.95);
  border-color: rgba(150,195,255,0.55);
}

.history-header { margin-bottom: 30px; }

.timeline {
  display: flex; flex-direction: column;
  position: relative;
  padding-left: 130px;
}

.timeline::before {
  content: '';
  position: absolute; left: 104px;
  top: 14px; bottom: 14px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(80,130,255,0.32) 10%, rgba(80,130,255,0.32) 90%, transparent);
}

.timeline-item {
  display: flex; align-items: flex-start;
  gap: 24px; padding: 0 0 22px;
  position: relative;
}

@media (max-width: 768px) {
  .history-header { margin-bottom: 16px; }
  .timeline-item { padding: 0 0 12px; gap: 12px; }
}

@media (max-width: 480px) {
  .history-header { margin-bottom: 12px; }
  .timeline-item { padding: 0 0 8px; gap: 10px; }
}

.timeline-marker {
  position: absolute; left: -130px; top: 16px;
  width: 130px;
  display: flex; align-items: center; gap: 12px;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(120, 170, 255, 0.80);
  text-align: right; flex: 1;
  line-height: 1;
}

.timeline-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(80,140,255,0.55);
  border: 1.5px solid rgba(120,180,255,0.75);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(80,140,255,0.38);
}

.timeline-card { flex: 1; padding: 20px 24px; }

.timeline-event-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(215, 230, 255, 0.95);
  margin-bottom: 8px;
}

.timeline-body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.78;
  color: var(--color-text-body);
}

@media (max-width: 768px) {
  .timeline-card { padding: 12px 14px; }
  .timeline-event-title { font-size: 15px; margin-bottom: 6px; }
  .timeline-body { font-size: 13px; line-height: 1.6; }
}

@media (max-width: 480px) {
  .timeline-card { padding: 10px 12px; }
  .timeline-event-title { font-size: 14px; margin-bottom: 4px; }
  .timeline-body { font-size: 12px; }
}

.last-section-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
}

.page-cta { margin-top: 28px; text-align: right; padding-right: 2px; }

.page-cta-link {
  display: inline-flex; flex-direction: column; align-items: flex-end; gap: 3px;
  opacity: 0.52; transition: opacity var(--transition-normal);
}

.page-cta-link:hover { opacity: 1; }

.page-cta-line {
  font-size: var(--text-sm); font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(130,170,230,0.80); font-style: italic;
}

.page-cta-arrow {
  font-size: var(--text-sm); font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(120,175,255,0.78);
  border-bottom: 1px solid rgba(110,165,255,0.28); padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.page-cta-link:hover .page-cta-arrow {
  color: rgba(160,205,255,0.98);
  border-color: rgba(150,200,255,0.55);
}

.progress-nav {
  position: fixed; right: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}

.progress-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(100,150,255,0.22);
  border: 1px solid rgba(100,150,255,0.28);
  cursor: pointer;
  transition: all var(--transition-normal);
  padding: 0;
}

.progress-dot:hover  { background: rgba(100,160,255,0.5); transform: scale(1.4); }
.progress-dot--active {
  background: rgba(100,160,255,0.82);
  border-color: rgba(140,190,255,0.72);
  box-shadow: 0 0 8px rgba(80,140,255,0.45);
  transform: scale(1.3);
}

@media (max-width: 1200px) {

  .section-inner { max-width: 920px; padding: 0 36px; }

  .mv-grid   { gap: 18px; }
  .mv-card   { padding: 26px 22px; }

  .values-grid { gap: 14px; }
  .value-card  { padding: 22px 18px; }

  .timeline { padding-left: 116px; }
  .timeline::before { left: 92px; }
  .timeline-marker  { left: -116px; width: 116px; }

  .section-title    { font-size: clamp(30px, 4vw, 48px); }
  .hero-headline    { font-size: clamp(34px, 5.5vw, 64px); }
}

@media (max-width: 900px) {

  .section-inner { padding: 0 24px; max-width: 100%; }

  .mv-grid     { grid-template-columns: 1fr; gap: 14px; margin-top: 22px; }
  .mv-card     { padding: 22px 18px; flex-direction: row; align-items: flex-start; gap: 14px; }
  .card-icon   { width: 50px; height: 50px; flex-shrink: 0; }
  .card-title  { font-size: 20px; }
  .card-body   { font-size: 15px; }

  .values-header { margin-bottom: 18px; }
  .values-grid   { grid-template-columns: 1fr; gap: 10px; }
  .value-card    { flex-direction: row; align-items: flex-start; gap: 10px; padding: 14px 12px; }
  .value-icon    { width: 46px; height: 46px; flex-shrink: 0; }
  .value-title   { font-size: 16px; }
  .value-phrase  { font-size: 13px; }
  .values-cta    { text-align: left; margin-top: 12px; }

  .timeline          { padding-left: 108px; }
  .timeline::before  { left: 84px; }
  .timeline-marker   { left: -108px; width: 108px; }
  .timeline-year     { font-size: 15px; }
  .timeline-card     { padding: 12px 14px; }
  .timeline-body     { font-size: 13px; }

  .page-footer-nav { padding: 0 24px 28px; }
}

@media (max-width: 768px) {

  .snap-section { padding-top: 40px; }

  .section-hero {
    justify-content: flex-start;
    padding-top: 62vh;
  }

  .progress-nav { display: none; }

  .timeline          { padding-left: 0; }
  .timeline::before  { display: none; }

  .timeline-item {
    flex-direction: column; gap: 6px;
    padding: 0 0 10px;
    padding-left: 28px;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute; left: 8px;
    top: 20px; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(80,130,255,0.35), transparent);
  }

  .timeline-item:last-child::before { display: none; }

  .timeline-marker {
    position: static;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    width: auto;
    margin-bottom: 4px;
    margin-left: -20px;
  }

  .timeline-year { font-size: 14px; text-align: left; flex: none; }
  .timeline-dot  { width: 9px; height: 9px; }
  .timeline-card { margin-left: 0; padding: 12px 14px; }
  .timeline-event-title { font-size: 15px; margin-bottom: 4px; }
  .timeline-body        { font-size: 13px; }

  .hero-headline {
    font-size: clamp(28px, 8vw, 46px);
    white-space: normal;
  }
  .hero-sub      { font-size: 14px; }

  .section-title    { font-size: clamp(26px, 6.5vw, 38px); }
  .section-subtitle { font-size: 14px; }

  .scroll-hint { display: flex; bottom: max(18px, env(safe-area-inset-bottom)); }

  .page-footer-nav { padding: 0 20px 24px; }
}

@media (max-width: 480px) {

  .section-inner { padding: 0 16px; }

  .snap-section { padding-top: 36px; }

  .section-hero { padding-top: 58vh; }

  .mv-card, .value-card { flex-direction: column; gap: 8px; }
  .card-icon, .value-icon { width: 44px; height: 44px; }

  .value-title { font-size: 15px; }
  .card-body, .value-phrase, .timeline-body, .section-subtitle { font-size: 12px; }
  .timeline-card { padding: 10px 12px; }
  .timeline-event-title { font-size: 14px; margin-bottom: 3px; }

  .glass-card { border-radius: 12px; }
  .page-cta   { margin-top: 18px; }
}

@media (max-width: 360px) {
  .snap-section { padding-top: 34px; }

  .section-hero   { padding-top: 58vh; }
  .hero-headline  { font-size: 26px; }
  .section-title  { font-size: 22px; }
  .section-inner  { padding: 0 12px; }
  .value-card { padding: 10px 8px; gap: 6px; }
  .timeline-card { padding: 8px 10px; }
  .timeline-event-title { font-size: 13px; }
  .timeline-body { font-size: 11px; }
}
