@font-face {
  font-family:'AkzidenzGroteskBE-Ex';
  src: url(assets/fonts/AkzidenzGroteskBE-Ex.otf);
}

@font-face {
  font-family:'Outfit';
  src: url(assets/fonts/Outfit-Light.ttf);
}

/* === GLOBAL SETTINGS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:'Outfit';
  background: radial-gradient(circle at top left, #0f0f0f, #121212 60%);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 6rem 8%;
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4 {
  font-family:'AkzidenzGroteskBE-Ex';
  color: #fff;
  line-height: 1.2;
}

span {
  background: linear-gradient(90deg, #a26ff1, #60d2a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* === HERO SECTION === */
.hero {
position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: radial-gradient(circle at center, rgba(162,111,241,0.15), transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  pointer-events: none; /* allow clicks to pass through overlay */
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  right: -100px;
  bottom: -100px;
  background: linear-gradient(135deg, rgba(162,111,241,0.1), rgba(96,210,167,0.1));
  filter: blur(100px);
  z-index: 0;
}
.hero-left,
.hero-right,
.hero-offer-box {
  position: relative;
  z-index: 2; /* ensure form stays above all overlays */
}
.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -1px;
}

.hero h1 span {
  color: #a26ff1;
}

.hero-subtext {
  margin: 1.2rem auto 2.5rem;
  font-size: 1.1rem;
  color: #ccc;
  max-width: 640px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #a26ff1, #60d2a7);
  color: #fff;
  box-shadow: 0 0 18px rgba(162,111,241,0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(162,111,241,0.6);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* === VALUE SECTION === */
.value-section {
  background: #161616;
  text-align: center;
}

.value-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: linear-gradient(-45deg, rgba(162,111,241,1), rgba(96,210,167,1));
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: #000
  font-size: 0.95rem;
}

/* === POTENTIAL SECTION === */
.potential-section {
  background: linear-gradient(180deg, #101010, #161616);
  text-align: center;
}

.potential-section h2 {
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.usecase {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 14px;
  transition: all 0.3s ease;
}

.usecase:hover {
  background: linear-gradient(-45deg, rgba(162,111,241,1), rgba(96,210,167,1));
  transform: translateY(-5px);
}

.usecase h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.usecase p {
  font-size: 0.95rem;
  color: #fff;
}

/* === VALUATION SECTION === */
.valuation-section {
  background: #141414;
  text-align: center;
}

.valuation-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}

.valuation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.valuation-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.valuation-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(-45deg, rgba(162,111,241,1), rgba(96,210,167,1));
}

.valuation-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #a26ff1, #60d2a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.valuation-card p {
  color: #000
  font-size: 0.95rem;
}

/* === OFFER FORM SECTION === */
.offer-section {
  background: #101010;
  text-align: center;
}

.offer-section h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.offer-section p {
  color: #ccc;
  margin-bottom: 2.5rem;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1rem;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #a26ff1;
  box-shadow: 0 0 8px rgba(162,111,241,0.4);
}

button.btn-primary {
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

#form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: #60d2a7;
}

/* === FOOTER === */
.footer {
  background: #0f0f0f;
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #aaa;
  font-size: 0.9rem;
}

.footer a {
  color: #a26ff1;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #60d2a7;
}

.footer .copyright {
  margin-top: 0.5rem;
  color: #777;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 6%;
    height: 90vh;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  section {
    padding: 4rem 6%;
  }

  .btn-primary, .btn-secondary {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }
}

/* === HERO GRID LAYOUT === */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  height: 100vh;
  padding: 6rem 8%;
  text-align: left;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-offer-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(162, 111, 241, 0.1);
  backdrop-filter: blur(10px);
}

.hero-offer-box h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #a26ff1, #60d2a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-offer-box input,
.hero-offer-box textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 0.8rem;
  width: 100%;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.hero-offer-box input:focus,
.hero-offer-box textarea:focus {
  border-color: #a26ff1;
  outline: none;
  box-shadow: 0 0 8px rgba(162, 111, 241, 0.4);
}

.hero-offer-box button {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 50px;
}

#hero-form-status {
  margin-top: 0.8rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* === RESPONSIVE HERO === */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    height: auto;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }

  .hero-left {
    margin-bottom: 2rem;
  }

  .hero-offer-box {
    max-width: 100%;
  }
}

