/* Variables */
/* Base */
body {
  font-family: "Inter", sans-serif;
  background-color: #efefef;
  color: #212529;
  line-height: 1.6;
  margin: 0;
}

/* Decorative circle (background) */
.main-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  min-width: 250px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  z-index: 1; /* below content */
}

/* Spline layer: needs mouse tracking; sits below header, below text/content that should be clickable */
spline-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  pointer-events: auto;
}

/* Header (clickable, always on top) */
header {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 200; /* above spline */
  background-color: #333;
  box-sizing: border-box;
  border-radius: 30px;
  padding: 10px 10px;
  transform: translateX(-50%);
  margin: 30px auto 0;
  display: flex;
  align-items: center;
}
header a {
  padding: 5px 20px;
  font-weight: 300;
  font-size: 14px;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
header a.active {
  border-radius: 30px;
}
header span {
  height: 14px;
  display: inline-block;
  width: 3px;
  border-radius: 4px;
  background: #ccc;
}

/* First screen */
main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
main .about {
  min-height: 100vh;
  width: 100%;
  max-width: 1024px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  /* Prevent empty areas from intercepting events; enable them only on real content */
  pointer-events: none;
}
main .about section.hero {
  width: 50%;
  display: flex;
  box-sizing: border-box;
  pointer-events: none;
}
main .about section.hero .hero-content {
  position: relative;
  z-index: 150; /* above spline */
  max-width: 600px;
  pointer-events: none; /* text selectable, links/buttons clickable */
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
main .about section.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}
main .about section.hero h2 {
  margin: 0.2rem 0 2rem 0;
}
main .about section.hero p {
  font-size: 1.1rem;
  margin: 0 0 2rem 0;
  color: #191919;
}
main .about section.hero .btn {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0.75rem 1.2rem;
  border-radius: 2rem;
  position: relative;
  z-index: 151;
  pointer-events: auto;
  color: #333;
  text-decoration: none;
}
main .about section.hero .btn::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: #e0e0e0;
  border-radius: 50%;
  z-index: -1;
}
main .about section.hero-no {
  width: 50%;
  display: flex;
}
main .about .links {
  margin-top: auto;
  font-size: 0.95rem;
  pointer-events: auto;
  position: absolute;
  bottom: 20px;
  z-index: 120;
}
main .about .links a {
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem 0 0;
  line-height: 36px;
}
main .about .links span {
  color: #888;
  margin: 0 0.5rem 0 0;
}

@media (max-width: 767px) {
  spline-viewer {
    display: none;
  }
  main .about section.hero {
    width: 80%;
  }
  main .about section.hero-no {
    display: none !important;
  }
}
#logo {
  display: none;
}

/* Palette as CSS variables for runtime use */
:root {
  --accent-yellow: #FFC107;
  --accent-red: #DC3545;
  --accent-purple: #5B4DE3;
  --accent-green: #28A745;
  --text-dark: #212529;
  --bg-soft: #FDF8F5;
  --card-soft: #F6EFEA;
}

/*# sourceMappingURL=styles.css.map */
