:root {
  --orange:      #F26B00;
  --orange-light: #FF8C2A;
  --orange-glow: rgba(242, 107, 0, 0.4);

  --dark:  #0D0D0D;
  --dark2: #141414;
  --dark3: #1C1C1C;

  --text:      #F0EDE8;
  --text-muted: #8A8580;

  --border:  rgba(242, 107, 0, 0.2);
  --shadow:  rgba(242, 107, 0, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 999;
}

/* ─── SPEED LINES ─── */
.speed-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
  animation: speedMove 3s linear infinite;
  opacity: 0;
}
@keyframes speedMove {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(100vw); opacity: 0; }
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  z-index: 1;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.6; }
  50%       { transform: translate(-50%,-50%) scale(1.2); opacity: 1; }
}

.logo-wrap {
  position: relative;
  margin-bottom: 1rem;
  animation: fadeDown 0.9s ease both;
}
.logo-wrap img {
  width: min(320px, 72vw);
  filter: drop-shadow(0 0 30px var(--orange-glow));
  animation: logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.slogan {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 7vw, 5rem);
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1;
  animation: fadeUp 0.9s 0.2s ease both;
  position: relative;
}
.slogan span { color: var(--orange); }

.sub {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cta-btn {
  margin-top: 2.5rem;
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--orange);
  color: #0D0D0D;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.9s 0.6s ease both;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.cta-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--orange-glow); }
.cta-btn:hover::after { transform: translateX(100%); }

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  position: relative;
  z-index: 1;
}

/* ─── TEASER ─── */
#teaser {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  background: var(--dark2);
  overflow: hidden;
}
#teaser::before {
  content: '';
  position: absolute;
  left: -200px; top: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mascote-wrap { flex: 0 0 auto; position: relative; }
.mascote-wrap img {
  width: min(280px, 65vw);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
  animation: mascoteReveal 1s 0.3s ease both;
  position: relative;
  z-index: 1;
}
@keyframes mascoteReveal {
  from { opacity: 0; transform: translateX(-40px) scale(0.9); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.shadow-ring {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 30px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.teaser-text { max-width: 480px; flex: 1 1 300px; }

.teaser-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.teaser-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.2rem;
}
.teaser-headline span { color: var(--orange); }

.teaser-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.hint-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.hint-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}
.hint-list li::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ─── COUNTER ─── */
#counter-section {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
  text-align: center;
  background: var(--dark3);
}

.counter-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.counter-display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 15vw, 9rem);
  color: var(--orange);
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 0 60px var(--orange-glow);
  animation: countGlow 2s ease-in-out infinite alternate;
}
@keyframes countGlow {
  from { text-shadow: 0 0 30px var(--orange-glow); }
  to   { text-shadow: 0 0 80px rgba(242, 107, 0, 0.8); }
}

.counter-sub {
  margin-top: 0.6rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ─── CONTACT ─── */
#contact {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem;
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.contact-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
.contact-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.form-wrap {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { position: relative; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  padding: 1rem 1.2rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  border-radius: 2px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: rgba(242,107,0,0.06);
}
.form-group select option { background: var(--dark2); }
.form-group textarea { min-height: 130px; }

::placeholder { color: rgba(240,237,232,0.3); }

.submit-btn {
  padding: 1rem;
  background: var(--orange);
  color: #0D0D0D;
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  position: relative;
  overflow: hidden;
}
.submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--orange-glow); }
.submit-btn:hover::after { transform: translateX(100%); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  animation: fadeUp 0.5s ease both;
}

/* ─── SOCIAL ICONS ─── */
.social-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.8rem;
}
.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--orange);
  background: rgba(255,255,255,0.04);
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.social-bar a:hover {
  background: var(--orange);
  color: #0D0D0D;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--orange-glow);
}
.social-bar svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(242,107,0,0.15);
  background: var(--dark);
}
.footer-logo img { width: 120px; opacity: 0.7; margin-bottom: 1rem; }
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE ─── */
@media (max-width: 680px) {
  #teaser { gap: 2rem; padding: 3rem 1.5rem; }
  .teaser-text { text-align: center; }
  .hint-list li { justify-content: center; }
  .mascote-wrap img { width: min(220px, 70vw); }
}
