*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:   #002626;
  --green2:  #032f2f;
  --green3:  #053b3a;
  --off:     #F2F0E9;
  --bd:      rgba(242,240,233,0.12);
  --bd2:     rgba(242,240,233,0.22);
  --muted:   rgba(242,240,233,0.45);
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
}

html, body {
  height: 100%;
  background: var(--green);
  color: var(--off);
  font-family: var(--sans);
  font-weight: 300;
  overflow: hidden;
}

.deck { width: 100vw; height: 100vh; position: relative; }

.slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: clamp(60px,9vw,130px) clamp(40px,12vw,200px);
  opacity: 0; transform: translateY(28px);
  pointer-events: none;
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.slide.active { opacity: 1; transform: translateY(0); pointer-events: all; }
.slide.exit   { opacity: 0; transform: translateY(-28px); transition: opacity .4s ease, transform .4s ease; }

.brand-mark {
  position: fixed; top: 32px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif); font-size: 14px; font-weight: 300;
  letter-spacing: .06em; color: var(--muted); z-index: 100;
}
.slide-ctr {
  position: fixed; bottom: 32px; right: 44px;
  font-size: 11px; font-weight: 300; letter-spacing: .14em; color: var(--muted); z-index: 100;
}
.nav { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 100; }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--bd2); cursor: pointer; transition: background .3s, transform .3s; }
.dot.on { background: var(--off); transform: scale(1.5); }
.arrows { position: fixed; bottom: 26px; left: 44px; display: flex; gap: 10px; z-index: 100; }
.arr {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--bd); background: transparent; color: var(--muted);
  cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, color .2s;
}
.arr:hover { border-color: var(--bd2); color: var(--off); }

/* typography */
.eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px;
}
h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px,9vw,120px); line-height: 1; color: var(--off); margin-bottom: 20px;
}
h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px,5vw,68px); line-height: 1.08; color: var(--off); margin-bottom: 22px;
}
h2 em { font-style: italic; opacity: .7; }
.body {
  font-family: var(--sans); font-size: clamp(14px,1.4vw,17px); font-weight: 300;
  line-height: 1.7; color: var(--muted); max-width: 520px;
}
.body strong { color: var(--off); font-weight: 400; }
.rule { width: 32px; height: 1px; background: var(--bd2); margin: 28px auto; }

/* slide 1 */
.tagline { font-family: var(--serif); font-style: italic; font-size: clamp(14px,1.6vw,19px); color: var(--muted); margin-bottom: 48px; }
.badge { font-size: 10px; font-weight: 300; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--bd); padding: 9px 20px; }

/* stats */
.stats { display: flex; margin-top: 44px; border: 1px solid var(--bd); }
.stat { flex: 1; padding: clamp(18px,3vw,36px) clamp(18px,3vw,40px); text-align: left; }
.stat + .stat { border-left: 1px solid var(--bd); }
.stat-n { font-family: var(--serif); font-size: clamp(28px,3.5vw,46px); font-weight: 500; color: var(--off); line-height: 1; }
.stat-d { font-size: 11px; font-weight: 300; line-height: 1.55; color: var(--muted); max-width: 130px; margin-top: 8px; }

/* pillars */
.pillars { margin-top: 40px; width: 100%; max-width: 520px; text-align: left; }
.pillar { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--bd); }
.pillar:first-child { border-top: 1px solid var(--bd); }
.p-num { font-size: 10px; letter-spacing: .14em; color: var(--muted); min-width: 22px; padding-top: 3px; }
.p-title { font-family: var(--serif); font-size: clamp(16px,1.6vw,20px); font-weight: 400; color: var(--off); margin-bottom: 5px; }
.p-desc { font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--muted); }

/* features */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--bd); margin-top: 40px; max-width: 780px; width: 100%; }
.feat { background: var(--green); padding: clamp(18px,2.5vw,28px) clamp(16px,2vw,24px); text-align: left; }
.feat-t { font-family: var(--serif); font-size: clamp(14px,1.4vw,17px); font-weight: 400; color: var(--off); margin-bottom: 8px; }
.feat-d { font-size: 12px; font-weight: 300; line-height: 1.6; color: var(--muted); }

/* market */
.mkt-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--bd); margin-top: 44px; max-width: 660px; width: 100%; }
.mkt-cell { background: var(--green2); padding: clamp(20px,3vw,32px) clamp(16px,2vw,28px); text-align: left; }
.mkt-label { font-size: 10px; font-weight: 300; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.mkt-num { font-family: var(--serif); font-size: clamp(26px,3vw,40px); font-weight: 500; color: var(--off); line-height: 1; margin-bottom: 8px; }
.mkt-sub { font-size: 11px; font-weight: 300; line-height: 1.55; color: var(--muted); }

/* cta */
.cta-links { display: flex; flex-direction: column; gap: 0; margin-top: 44px; width: 100%; max-width: 460px; border: 1px solid var(--bd); }
.cta-link { display: flex; align-items: center; gap: 16px; padding: 18px 22px; text-decoration: none; color: var(--off); transition: background .2s; border-bottom: 1px solid var(--bd); }
.cta-link:last-child { border-bottom: none; }
.cta-link:hover { background: rgba(242,240,233,.04); }
.cta-tag { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); min-width: 64px; }
.cta-val { font-size: 13px; font-weight: 300; color: rgba(242,240,233,.65); flex: 1; }
.cta-arr { font-size: 15px; color: var(--bd2); transition: color .2s; }
.cta-link:hover .cta-arr { color: var(--off); }

@media (max-width: 680px) {
  .feat-grid, .mkt-grid { grid-template-columns: 1fr; }
  .stats { flex-direction: column; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--bd); }
  .arrows { display: none; }
}

/* Texture */
.grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

/* BRAND ANIMATION */
.brand-container {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px,9vw,120px);
  line-height: 1;
  color: var(--off);
  margin-bottom: 20px;
}

.part-peer { opacity: 1; }

.part-freund {
  overflow: hidden;
  white-space: nowrap;
  width: auto;
  animation: shortenName 1.5s cubic-bezier(0.7, 0, 0.3, 1) forwards;
  animation-delay: 1.8s;
}

.part-dot {
  opacity: 0;
  animation: showDot 0.5s ease forwards;
  animation-delay: 3.1s;
  color: var(--off);
}

@keyframes shortenName {
  0% { opacity: 1; max-width: 400px; }
  100% { opacity: 0; max-width: 0px; margin-left: 0; }
}

@keyframes showDot {
  to { opacity: 1; }
}

/* ANIMATIONS */
.fade-up {
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 { animation-delay: 3.2s; }
.delay-2 { animation-delay: 3.5s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}