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

.urban {
  font-family: "Urbanist", sans-serif;
}

/* 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;
}

main.inner {
  margin-top: 100px;
}

/* First screen */
.promo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.promo .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;
}
.promo .about section.hero {
  width: 50%;
  display: flex;
  box-sizing: border-box;
  pointer-events: none;
}
.promo .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;
}
.promo .about section.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.5rem 0;
}
.promo .about section.hero h2 {
  margin: 0.2rem 0 2rem 0;
}
.promo .about section.hero p {
  font-size: 1.1rem;
  margin: 0 0 2rem 0;
  color: #191919;
}
.promo .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;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo .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;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.promo .about section.hero .btn:hover {
  transform: translateX(15px);
}
.promo .about section.hero .btn:hover::before {
  background: #333;
  transform: translateY(-50%) translateX(-15px);
}
.promo .about section.hero-no {
  width: 50%;
  display: flex;
}
.promo .about .links {
  margin-top: auto;
  font-size: 0.95rem;
  pointer-events: auto;
  position: absolute;
  bottom: 20px;
  z-index: 120;
}
.promo .about .links a {
  color: #333;
  text-decoration: none;
  margin: 0 0.5rem 0 0;
  line-height: 36px;
}
.promo .about .links span {
  color: #888;
  margin: 0 0.5rem 0 0;
}

.cases {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Cases Section */
}
.cases section {
  min-height: 100vh;
  width: 100%;
  max-width: 1024px;
  padding: 0 16px;
}
.cases .cases-section {
  text-align: center;
  margin-bottom: 80px;
}
.cases .cases-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 3rem 0 0.5rem 0;
}
.cases .cases-section .section-subtitle {
  margin: 0.2rem 0 2rem 0;
}
.cases .cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}
.cases .cases-grid .case-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  padding-bottom: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.cases .cases-grid .case-card .case-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0;
  background-color: #fff;
  border-radius: 16px;
}
.cases .cases-grid .case-card .card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 0px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #333;
}
.cases .cases-grid .case-card .card-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
  margin-top: 0;
}
.cases .cases-grid .case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.case {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Cases Section */
}
.case section {
  min-height: 100vh;
  width: 100%;
  max-width: 1024px;
  padding: 0 16px;
}
.case .case-section {
  text-align: center;
  margin-bottom: 80px;
}
.case .case-section .case-icon {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 16px;
  margin: 3rem 0 0.5rem 0;
}
.case .case-section .section-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0rem 0 0.5rem 0;
}
.case .case-section .section-subtitle {
  margin: 0.2rem 0 2rem 0;
}
.case .case-section .case-detail {
  text-align: left;
}
.view-all-button {
  display: inline-block;
  background-color: #333;
  color: #eee;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.view-all-button span {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.view-all-button:hover {
  background-color: #333;
  color: #eee;
}
.view-all-button:hover span {
  transform: translateX(5px);
}

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

/* Palette as CSS variables for runtime use */

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