
* {
  box-sizing: border-box;
  cursor: none;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

body {
  font-family: 'LINE Seed Sans', system-ui, sans-serif;
}

.marquee {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  overflow: hidden;
  background: #f57c00;
  color: #fff;
  height: 42px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  min-width: max-content;
  animation: marquee 18s linear infinite;
  font-size: 22px;
  font-weight: 700;
  line-height: 42px;
}

.marquee-track span { padding: 0 80px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  padding-top: 42px;
}

.intro {
  position: relative;
  z-index: 10;
  padding: 40px 24px 0;
}

.intro h1 {
  font-family: 'Rammetto One', system-ui, sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.intro p {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255,255,255,.92);
  margin: 0;
}

.video-wrap {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  padding: 0 16px 144px;
}

.video-pill {
  position: relative;
  width: 100%;
  max-width: 830px;
  height: 220px;
  border-radius: 999px;
  background: #000;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 0 60px rgba(22,115,255,0.45),
    0 0 120px rgba(22,115,255,0.25);
}

.video-pill iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.icons-left {
  position: fixed;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 20;
}

.icons-right {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  opacity: .55;
  z-index: 20;
}

.icon-scale {
  display: block;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  transition: transform .2s ease;
}

.icon-scale:hover {
  transform: scale(1.05);
}

.mail-icon { width: 66px; height: 50px; display: block; }
.linkedin-icon { width: 54px; height: 54px; display: block; }
.eye-icon { width: 48px; height: 110px; display: block; }
.bird-icon { width: 58px; height: 58px; display: block; }
.crown-icon { width: 72px; height: 60px; display: block; }

.icon-scale:hover .hover-fill,
.icon-scale:hover .dark-hover-fill {
  fill: #1673ff;
}

.right-mark {
  position: absolute;
  right: 108px;
  top: 132px;
  opacity: .85;
  display: none;
}

.toast {
  position: fixed;
  left: 24px;
  bottom: 80px;
  background: #1673ff;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(22,115,255,0.6);
  opacity: 0;
  transform: translateY(8px) scale(.9);
  transition: all .3s ease;
  z-index: 30;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  border-radius: 50%;
  background: #1673ff;
  pointer-events: none;
  z-index: 9999;
}

@media (min-width: 768px) {
  .page { height: 100vh; }

  .intro {
    position: absolute;
    left: 84px;
    top: 130px;
    max-width: 285px;
    padding: 0;
  }

  .intro h1 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .intro p {
    max-width: 285px;
    font-size: 17px;
    line-height: 1.3;
  }

  .video-wrap {
    position: absolute;
    inset: 0;
    margin-top: 0;
    align-items: center;
    padding: 0 32px;
  }

  .video-pill {
    width: min(62vw, 830px);
    height: min(34vw, 465px);
    min-height: 280px;
  }

  .icons-left {
    position: absolute;
    left: 82px;
    bottom: 66px;
    gap: 48px;
  }

  .icons-right {
    position: absolute;
    right: 112px;
    bottom: 66px;
    gap: 48px;
  }

  .mail-icon { width: 74px; height: 56px; }
  .linkedin-icon { width: 60px; height: 60px; }
  .bird-icon { width: 66px; height: 66px; }
  .crown-icon { width: 82px; height: 68px; }

  .right-mark { display: block; }

  .toast {
    left: 82px;
    bottom: 128px;
    position: absolute;
  }
}

@media (max-width: 767px) {
  .marquee-track { font-size: 18px; }
}
