/* ===========================================================
   Labanta Academia — Coming Soon
   Palette sampled directly from the brand mark:
   orange #EA5616 · magenta #CD3373 · purple #8A4C97 · teal #01ACBE
   =========================================================== */

:root{
  --orange:  #EA5616;
  --magenta: #CD3373;
  --purple:  #8A4C97;
  --teal:    #01ACBE;

  --bg:      #FFFFFF;
  --bg-2:    #FBF4EE;
  --ink:     #221F26;
  --ink-dim: #5B5762;
  --ink-mute:#83808A;
  --line:    rgba(34,31,38,0.10);

  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --max-w: 760px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(120% 120% at 50% 0%, var(--bg-2) 0%, var(--bg) 55%);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- decorative background ---------- */

.bg-blobs{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.30;
  mix-blend-mode: multiply;
  will-change: transform;
}

.blob-orange{
  width: 480px; height: 480px;
  top: -140px; left: -120px;
  background: var(--orange);
  animation: drift1 22s ease-in-out infinite alternate;
}
.blob-magenta{
  width: 420px; height: 420px;
  top: 10%; right: -140px;
  background: var(--magenta);
  animation: drift2 26s ease-in-out infinite alternate;
}
.blob-purple{
  width: 460px; height: 460px;
  bottom: -160px; left: 8%;
  background: var(--purple);
  animation: drift3 24s ease-in-out infinite alternate;
}
.blob-teal{
  width: 380px; height: 380px;
  bottom: -80px; right: 6%;
  background: var(--teal);
  animation: drift1 28s ease-in-out infinite alternate-reverse;
}

@keyframes drift1{
  from{ transform: translate(0,0) scale(1); }
  to{ transform: translate(40px, 30px) scale(1.08); }
}
@keyframes drift2{
  from{ transform: translate(0,0) scale(1); }
  to{ transform: translate(-30px, 40px) scale(1.05); }
}
@keyframes drift3{
  from{ transform: translate(0,0) scale(1); }
  to{ transform: translate(25px, -35px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce){
  .blob{ animation: none !important; }
}

/* ---------- layout ---------- */

.page{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---------- badge ---------- */

.badge{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: rise .7s ease forwards;
}

.badge::before{
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  animation: pulse 1.8s ease-in-out infinite;
}

/* ---------- brand mark ---------- */

.mark{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: rise .7s ease .08s forwards;
  animation-play-state: running;
}

.mark-icon{
  height: 58px;
  width: auto;
  animation: bob 5s ease-in-out infinite;
}

.wordmark{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.w-labanta{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--ink);
}

.w-academia{
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: .3rem;
}

/* ---------- headline ---------- */

h1{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  background: linear-gradient(100deg, var(--ink) 30%, var(--ink-dim) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: rise .7s ease .16s forwards;
}

.tagline{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  background: linear-gradient(120deg, var(--orange), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 1.6rem;
  opacity: 0;
  animation: rise .7s ease .2s forwards;
}

.lead{
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  opacity: 0;
  animation: rise .7s ease .24s forwards;
}

/* ---------- manifesto quote ---------- */

.manifesto{
  position: relative;
  margin: 0 0 3rem;
  padding-top: 1.75rem;
  max-width: 520px;
  opacity: 0;
  animation: rise .7s ease .32s forwards;
}

.manifesto::before{
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple), var(--magenta), var(--orange));
  border-radius: 2px;
}

.manifesto p{
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}

/* ---------- CTAs ---------- */

.cta-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  animation: rise .7s ease .4s forwards;
}

.cta-note{
  margin: 1rem 0 0;
  font-size: .8rem;
  color: var(--ink-mute);
  opacity: 0;
  animation: rise .7s ease .46s forwards;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.btn-primary{
  color: #fff;
  background: linear-gradient(120deg, var(--orange), var(--magenta));
  box-shadow: 0 10px 30px -10px rgba(234, 86, 22, 0.55);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -8px rgba(205, 51, 115, 0.6);
}

.btn-ghost{
  color: var(--ink-dim);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover{
  color: var(--ink);
  border-color: rgba(34,31,38,0.25);
  transform: translateY(-2px);
}

/* ---------- footer ---------- */

.site-footer{
  position: relative;
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem 2rem;
}

.footer-inner{
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-col{ display:flex; flex-direction:column; }

.footer-brand .footer-logo{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
}
.footer-brand .footer-logo em{
  font-style: normal;
  color: var(--orange);
}
.footer-brand p{
  margin: .4rem 0 0;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-mute);
}

.footer-contact a{
  color: var(--ink-dim);
  text-decoration: none;
  font-size: .88rem;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-contact a:hover{
  color: var(--ink);
  border-color: var(--line);
}

.footer-social{
  flex-direction: row;
  gap: .75rem;
}
.footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a:hover{
  color: var(--ink);
  border-color: rgba(34,31,38,0.3);
  transform: translateY(-2px);
}

.footer-bottom{
  max-width: 900px;
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: .78rem;
  color: var(--ink-mute);
}

/* ---------- motion ---------- */

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

@keyframes bob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@keyframes pulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: .5; transform: scale(1.3); }
}

@media (prefers-reduced-motion: reduce){
  .badge, .mark, h1, .tagline, .lead, .manifesto, .cta-row, .cta-note{ animation: none !important; opacity: 1 !important; }
  .mark-icon{ animation: none !important; }
}

/* ---------- responsive ---------- */

@media (max-width: 560px){
  .hero{ padding: 6.5rem 1.25rem 4rem; }
  .mark{ gap: .75rem; }
  .mark-icon{ height: 46px; }
  .w-labanta{ font-size: 1.5rem; }
  .footer-inner{ flex-direction: column; align-items: flex-start; }
  .footer-social{ align-self: flex-start; }
}
