:root{
  --debs-yellow:#ffdc00;
  --debs-black:#050505;
  --debs-white:#ffffff;
  --debs-light:#f5f5f3;
  --debs-grey:#666666;
}

html{scroll-behavior:smooth}

body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--debs-black);
  background:var(--debs-white);
}

a{color:inherit}

.navbar{
  background:rgba(255,255,255,.97);
  border-bottom:1px solid #ececec;
}

.navbar-brand img{
  width:124px;
  height:auto;
}

.nav-link{
  color:#000;
  font-weight:600;
}

.nav-link:hover{color:#7f6d00}

.btn-debs{
  background:var(--debs-yellow);
  color:#000;
  border:0;
  border-radius:0;
  font-weight:700;
  padding:.85rem 1.35rem;
}

.btn-debs:hover{
  background:#efd000;
  color:#000;
}

.btn-outline-debs{
  border:2px solid #000;
  color:#000;
  border-radius:0;
  font-weight:700;
  padding:.75rem 1.25rem;
}

.btn-outline-debs:hover{
  background:#000;
  color:#fff;
}

.hero{
  min-height:78vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:7rem 0 5rem;
}

.hero::after{
  content:"";
  position:absolute;
  width:470px;
  height:470px;
  right:-130px;
  top:65px;
  opacity:.18;
  z-index:-1;
  transform:rotate(-4deg);
  background:
    linear-gradient(
      90deg,
      var(--debs-yellow) 0 29%,
      transparent 29% 35%,
      var(--debs-yellow) 35% 64%,
      transparent 64% 70%,
      var(--debs-yellow) 70% 100%
    );
}

.eyebrow{
  text-transform:uppercase;
  letter-spacing:.17em;
  font-size:.82rem;
  font-weight:700;
}

.hero h1{
  font-size:clamp(3rem,7vw,6.5rem);
  line-height:.95;
  letter-spacing:-.055em;
  font-weight:800;
}

.hero h1 span{
  background:var(--debs-yellow);
  padding:0 .08em;
}

.hero-lead{
  max-width:810px;
  font-size:clamp(1.15rem,2vw,1.45rem);
  line-height:1.55;
  color:#333;
}

.section{padding:6rem 0}
.section-light{background:var(--debs-light)}
.section-dark{background:#000;color:#fff}

.section-title{
  font-size:clamp(2.2rem,5vw,4rem);
  line-height:1;
  font-weight:800;
  letter-spacing:-.04em;
}

.yellow-line{
  width:70px;
  height:8px;
  background:var(--debs-yellow);
  margin:1.4rem 0;
}

.pillar{
  height:100%;
  background:#fff;
  border:1px solid #ddd;
  padding:2.2rem;
  transition:transform .2s ease,box-shadow .2s ease;
}

.pillar:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.pillar-number{
  color:var(--debs-yellow);
  font-size:3.5rem;
  line-height:1;
  font-weight:900;
}

.pillar h3{
  margin-top:1.5rem;
  font-weight:800;
}

.timeline{
  border-left:4px solid var(--debs-yellow);
  padding-left:2rem;
}

.timeline-item{padding-bottom:2.2rem}
.timeline-item:last-child{padding-bottom:0}
.timeline-item h3{font-weight:800}

.growth-word{
  font-size:clamp(3.7rem,11vw,9rem);
  line-height:.8;
  letter-spacing:-.06em;
  font-weight:900;
}

.growth-word span{color:var(--debs-yellow)}

.highlight-box{
  background:#000;
  color:#fff;
  padding:3rem;
}

.quote-section{
  display:none;
  overflow:hidden;
  padding:2rem 0;
  background:var(--debs-yellow);
  color:#000;
}

.testimonial-track{
  display:flex;
  width:max-content;
  animation:ticker 45s linear infinite;
}

.testimonial-track:hover{animation-play-state:paused}

.testimonial{
  width:500px;
  max-width:88vw;
  padding:0 3rem;
  border-right:1px solid rgba(0,0,0,.22);
}

.testimonial blockquote{
  margin:0;
  font-size:1.05rem;
  font-weight:600;
}

.testimonial cite{
  display:block;
  margin-top:.85rem;
  font-style:normal;
  font-size:.88rem;
}

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

.cta{padding:7rem 0}

.cta h2{
  font-size:clamp(3rem,7vw,6rem);
  font-weight:900;
  letter-spacing:-.055em;
}

footer{
  border-top:1px solid #ddd;
  padding:2rem 0;
  font-size:.9rem;
}

.lang-switch{
  min-width:46px;
  text-align:center;
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .testimonial-track{animation:none}
}

@media (max-width:768px){
  .hero{
    min-height:auto;
    padding-top:6rem;
  }

  .section{padding:4rem 0}
  .hero::after{opacity:.08}
  .highlight-box{padding:2rem}
}
