:root {
  --gl-orange: #E24329;
  --gl-red: #FC6D26;
  --gl-yellow: #FCA326;
  --gl-purple: #6E49CB;
  --gl-charcoal: #303030;
  --gl-cream: #FAF8F5;
  --font-display: 'Anonymous Pro', monospace;
  --font-body: 'Anonymous Pro', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--gl-charcoal);
  color: var(--gl-cream);
  overflow-x: hidden;
  background-image: url('../images/canvas-texture.webp');
  background-size: cover;
  background-attachment: fixed;
}

.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.content {
  text-align: center;
  max-width: 800px;
  z-index: 10;
}

.section-hero {
  background: linear-gradient(135deg, var(--gl-charcoal) 0%, #1a1a2e 50%, var(--gl-charcoal) 100%);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--gl-orange), var(--gl-red), var(--gl-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--gl-cream);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.hero-note {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gl-purple);
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gl-cream);
  opacity: 0.6;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gl-orange);
  border-bottom: 2px solid var(--gl-orange);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(10px); }
}

.section-growth {
  background: linear-gradient(180deg, var(--gl-charcoal) 0%, #2d1f3d 100%);
}

.section-transform {
  background: linear-gradient(180deg, #2d1f3d 0%, #3d2a1f 100%);
}

.section-acknowledge {
  background: linear-gradient(180deg, #3d2a1f 0%, #2d1f3d 100%);
}

.section-farewell {
  background: linear-gradient(180deg, #2d1f3d 0%, var(--gl-charcoal) 100%);
}

.section-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(50px);
}

.section-detail {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(250, 248, 245, 0.7);
  opacity: 0;
  transform: translateY(30px);
}

.section-growth .section-text {
  background: linear-gradient(135deg, var(--gl-yellow), var(--gl-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-transform .section-text {
  background: linear-gradient(135deg, var(--gl-orange), var(--gl-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-acknowledge .section-text {
  background: linear-gradient(135deg, var(--gl-purple), var(--gl-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-morph {
  margin-top: 3rem;
  position: relative;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: absolute;
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-old {
  opacity: 1;
  filter: grayscale(50%);
}

.logo-new {
  opacity: 0;
}

.farewell-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gl-orange), var(--gl-red), var(--gl-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.8);
}

.brushstroke {
  position: fixed;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.brushstroke-1 {
  width: 300px;
  height: 200px;
  top: 20%;
  right: -100px;
  background-image: url('../images/brushstroke-1.webp');
}

.brushstroke-2 {
  width: 250px;
  height: 180px;
  bottom: 30%;
  left: -80px;
  background-image: url('../images/brushstroke-2.webp');
}

.brushstroke-3 {
  width: 200px;
  height: 150px;
  top: 60%;
  right: 10%;
  background-image: url('../images/brushstroke-3.webp');
}

@media (max-width: 768px) {
  .brushstroke {
    display: none;
  }
  
  .section {
    padding: 1.5rem;
  }
  
  .logo-morph {
    height: 60px;
  }
  
  .logo {
    height: 40px;
  }
}
