/*
 * START Rise Challenge – styles
 * Extracted from the original single-file `index.html`.
 */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --g: #00c161;
  --g2: #009e4f;
  --g-dim: rgba(0, 193, 97, 0.1);
  --g-border: rgba(0, 193, 97, 0.2);
  --bg: #050a05;
  --s1: #0b150b;
  --s2: #0f1d0f;
  --white: #ffffff;
  --off: #f4faf4;
  --dark: #080e08;
  --muted: #698b69;
  --muted2: #3e5e3e;
  --border: rgba(255, 255, 255, 0.06);
  --border-w: rgba(0, 0, 0, 0.07);
  --f: "Figtree", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--g2);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(5, 10, 5, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(5, 10, 5, 0.95);
}
.logo {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo em {
  color: var(--g);
  font-style: normal;
}
.nav-ul {
  display: flex;
  gap: 26px;
  list-style: none;
}
.nav-ul a {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-ul a:hover {
  color: var(--white);
}
.nav-btn {
  background: var(--g);
  color: #000 !important;
  font-weight: 700 !important;
  padding: 6px 16px;
  border-radius: 5px;
  transition: background 0.2s !important;
}
.nav-btn:hover {
  background: #00d96b !important;
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 76px;
  overflow: hidden;
}
#neural-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 80% at 50% 0%,
      transparent 40%,
      rgba(5, 10, 5, 0.7) 100%
    ),
    linear-gradient(
      to bottom,
      transparent 30%,
      rgba(5, 10, 5, 0.7) 65%,
      var(--bg) 100%
    );
}
.hero-c {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--g-border);
  background: var(--g-dim);
  color: var(--g);
  border-radius: 40px;
  padding: 4px 13px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 26px;
  opacity: 0;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--g);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  margin-bottom: 22px;
  opacity: 0;
}
.h1 .ac {
  color: var(--g);
}
.h1 .dm {
  color: rgba(255, 255, 255, 0.28);
}
.hsub {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 38px;
  opacity: 0;
}
.hero-logo {
  display: inline-block;
  height: 2.6em;
  width: auto;
  margin: 0 0.15em;
  vertical-align: middle;
  transform: translateY(-0.04em);
  opacity: 0.92;
}
.hbtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--g);
  color: #000;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-g:hover {
  background: #00d96b;
  transform: translateY(-2px);
}
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    border-color 0.2s,
    transform 0.15s;
}
.btn-o:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.hstats {
  position: absolute;
  bottom: 76px;
  right: 6vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
}
.hstat {
  text-align: right;
}
.hstat-n {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--g);
  line-height: 1;
}
.hstat-l {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 1);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── PARTNERS ─── */
#partners {
  background: var(--s1);
  border-bottom: 1px solid var(--border);
  padding: 24px 5vw;
}
.pi {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.plabel {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
}
.pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  padding: 5px 13px;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition:
    color 0.2s,
    border-color 0.2s;
}
.pill:hover {
  color: var(--white);
  border-color: var(--g-border);
}

/* ─── BASE SECTION ─── */
section {
  padding: 88px 5vw;
}
.w {
  max-width: 1140px;
  margin: 0 auto;
}
.ey {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--g);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ey::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--g);
}
h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
}
h2 .dm {
  color: var(--muted);
  font-weight: 400;
}
.lead {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.75;
  max-width: 500px;
}

/* ─── PHASES ─── */
#phases {
  background: var(--bg);
}
#phases .lead {
  color: var(--muted);
}
.ph-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}
.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pc {
  background: var(--s1);
  padding: 34px 26px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  opacity: 0;
  transform: translateY(28px);
}
.pc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.pc:hover {
  background: var(--s2);
}
.pc:hover::after {
  opacity: 1;
}
.pcn {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(0, 193, 97, 0.25);
  line-height: 1;
  margin-bottom: 16px;
}
.pct {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--g);
  margin-bottom: 6px;
}
.pc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 9px;
}
.pc p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}
.pco {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted2);
  font-weight: 500;
}
.pco span {
  color: var(--g);
}

/* ─── VALUE - WHITE SECTION ─── */
#value {
  background: var(--white);
  color: var(--dark);
  padding: 88px 5vw;
}
#value .ey {
  color: var(--g2);
}
#value .ey::before {
  background: var(--g2);
}
#value h2 {
  color: var(--dark);
}
#value h2 .dm {
  color: #7a9a7a;
}
#value .lead {
  color: #4a6a4a;
}
.vg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 44px;
}
.vc {
  background: var(--off);
  border: 1px solid var(--border-w);
  padding: 36px 32px;
  opacity: 0;
  transform: translateY(20px);
}
.vch {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--g2);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 193, 97, 0.15);
}
.vi {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.vi:last-child {
  margin-bottom: 0;
}
.vic {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(0, 158, 79, 0.08);
  border: 1px solid rgba(0, 158, 79, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.vic svg {
  width: 10px;
  height: 10px;
  stroke: var(--g2);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vit {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.vid {
  font-size: 0.78rem;
  color: #5a7a5a;
  line-height: 1.55;
}

/* ─── PROOF / PHOTO SECTION ─── */
#proof {
  background: var(--bg);
  padding: 0;
  overflow: hidden;
}
.proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.proof-text {
  padding: 72px 6vw 72px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--s1);
}
.proof-img {
  position: relative;
  overflow: hidden;
  background: url("https://www.startcampus.pt/hubfs/Images/START%20CAMPUS%2027-08%20v2%204K_01_00_04_040.jpg")
    center/cover no-repeat;
}
.proof-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--s1) 0%, transparent 30%);
}
.proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--g-dim);
  border: 1px solid var(--g-border);
  color: var(--g);
  border-radius: 40px;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.proof-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  margin-bottom: 16px;
}
.proof-text .lead {
  max-width: 420px;
  margin-bottom: 28px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}
.proof-divider {
  width: 40px;
  height: 1px;
  background: var(--g-border);
  margin-bottom: 28px;
}
.proof-quote {
  border-left: 2px solid var(--g);
  padding: 14px 0 14px 20px;
  margin-bottom: 32px;
}
.proof-quote p {
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 8px;
}
.proof-quote cite {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 700;
  color: var(--g);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 4px;
}
.pstat {
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.pstat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 20px;
}
.pstat:nth-child(2) {
  padding-left: 20px;
}
.pstat-n {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--g);
  line-height: 1;
}
.pstat-l {
  font-size: 0.6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* ─── ROADSHOW ─── */
#roadshow {
  background: var(--s1);
}
.rs-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.hubs {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hub {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--bg);
  transition: background 0.2s;
  opacity: 0;
  transform: translateX(-16px);
}
.hub:hover {
  background: var(--s2);
}
.hub.fin {
  border-left: 2px solid var(--g);
}
.hdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid var(--muted2);
  flex-shrink: 0;
}
.hub.fin .hdot {
  background: var(--g);
  border-color: var(--g);
}
.hinfo {
  flex: 1;
}
.hdate {
  font-size: 0.62rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.hcity {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hvenue {
  font-size: 0.72rem;
  color: var(--muted);
}
.hbadge {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--g);
  background: var(--g-dim);
  border: 1px solid var(--g-border);
  padding: 3px 9px;
  border-radius: 3px;
}
.tlcard {
  background: var(--bg);
  padding: 30px;
  opacity: 0;
  transform: translateX(16px);
}
.tlcard h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.tls {
  display: flex;
  flex-direction: column;
}
.tli {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}
.tli:first-child {
  border-top: none;
  padding-top: 0;
}
.tlp {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--g);
  font-weight: 700;
  width: 64px;
  flex-shrink: 0;
  padding-top: 2px;
}
.tld {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}
.tld strong {
  color: var(--white);
  display: block;
  margin-bottom: 1px;
  font-weight: 600;
  font-size: 0.8rem;
}

/* ─── FAQ ─── */
#faq {
  background: var(--white);
  color: var(--dark);
}
#faq .ey {
  color: var(--g2);
}
#faq .ey::before {
  background: var(--g2);
}
#faq h2 {
  color: var(--dark);
}
#faq h2 .dm {
  color: #7a9a7a;
}
#faq .lead {
  color: #4a6a4a;
}
#faq .fi {
  border-top-color: var(--border-w);
}
#faq .fi:last-child {
  border-bottom-color: var(--border-w);
}
#faq .fq {
  color: var(--dark);
}
#faq .fq:hover {
  color: var(--g2);
}
#faq .fa {
  color: #5a7a5a;
}
.faq-l {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
  margin-top: 44px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.fi {
  border-top: 1px solid var(--border);
}
.fi:last-child {
  border-bottom: 1px solid var(--border);
}
.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: color 0.2s;
}
.fq:hover {
  color: var(--g);
}
.fi-icon {
  color: var(--g);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.25s;
  font-weight: 300;
}
.fi.open .fi-icon {
  transform: rotate(45deg);
}
.fa {
  max-height: 0;
  overflow: hidden;
  font-size: 0.81rem;
  color: var(--muted);
  line-height: 1.7;
  transition:
    max-height 0.3s ease,
    padding 0.3s;
}
.fi.open .fa {
  max-height: 300px;
  padding-bottom: 14px;
}

/* ─── CTA ─── */
#cta {
  background: var(--dark);
  padding: 96px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 380px;
  background: radial-gradient(
    ellipse,
    rgba(0, 193, 97, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}
#cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  max-width: 640px;
  margin: 0 auto 16px;
}
#cta .lead {
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.45);
}
.cmeta {
  margin-top: 16px;
  font-size: 0.72rem;
  color: var(--muted2);
}
.cmeta a {
  color: var(--g);
  text-decoration: none;
}

/* ─── FOOTER ─── */
footer {
  background: var(--s1);
  border-top: 1px solid var(--border);
  padding: 30px 5vw;
}
.fi2 {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.flogo {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
}
.flogo em {
  color: var(--g);
  font-style: normal;
}
.fcopy {
  font-size: 0.7rem;
  color: var(--muted2);
}
.powered-by,
.delivered-by {
  display: inline;
}
.footer-logo {
  display: inline-block;
  height: 28px;
  max-height: 28px;
  width: auto;
  vertical-align: middle;
  opacity: 0.95;
}
.fct {
  font-size: 0.7rem;
  color: var(--muted);
}
.fct a {
  color: var(--g);
  text-decoration: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-ul {
    display: none;
  }
  .ph-head,
  .vg,
  .rs-layout,
  .faq-l,
  .proof-inner {
    grid-template-columns: 1fr;
  }
  .ph-grid {
    grid-template-columns: 1fr;
  }
  .hstats {
    display: none;
  }
  .proof-img {
    min-height: 280px;
  }
  .proof-img::before {
    background: linear-gradient(to bottom, var(--s1) 0%, transparent 40%);
  }
}
@media (max-width: 600px) {
  section {
    padding: 64px 5vw;
  }
  h2 {
    font-size: 1.75rem;
  }
  .hbtns {
    flex-direction: column;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(22px);
}
