/* Base Styles */
:root {
  --bg-color: #060415;
  --bg-card: #19162c;
  --border-card: #292452;
  --primary-btn: #ff3868;
  --primary-btn-hover: #ff1f54;
  --text-main: #ffffff;
  --text-muted: #bcbcbc;

  --font-heading: 'Sora', sans-serif;
  --font-body: 'Sora', sans-serif;
  --font-btn: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
main h1, main h2, main h3{
	color: white !important;
	font-family: var(--font-heading);
}

html,
body {
  background-color: var(--bg-color) !important;
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.4;
  font-size: 18px;
  overflow-x: hidden !important;
  width: 100% !important;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.alice-mt-16 {
  margin-top: 16px;
}

.alice-mt-32 {
  margin-top: 32px;
}

.alice-mt-48 {
  margin-top: 48px;
}

.alice-mt-64 {
  margin-top: 64px;
}

.alice-pl-64 {
  padding-left: 64px;
}

.alice-pr-64 {
  padding-right: 64px;
}

/* Background Images */
.alice-bg-img {
  position: absolute;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.alice-bg-img img {
  /* opacity: 0.6; */
	max-width: 100%
}

.alice-bg-1 {
  /* left: -30px; */
  left: 0;
  width: 600px;
}

.alice-bg-2 {
  right: 0;
  width: 996px;
}

.alice-bg-1-sports {
  top: 1600px;
  /* right: -100px; */
  right: 0;
  width: 600px;
  transform: scaleX(-1);
}

.alice-bg-1-brands {
  top: 2200px;
  /* left: -150px; */
  left: 0;
  width: 600px;
}

.alice-bg-1-why-metters {
  top: 2900px;
  /* right: -100px; */
  right: 0;
  width: 600px;
  transform: scaleX(-1);
}

/* Ambient Glow Backgrounds */
.alice-ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 56, 104, 0.12) 0%, rgba(6, 4, 21, 0) 60%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.alice-glow-1 {
  top: -200px;
  right: -100px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(82, 33, 145, 0.25) 0%, rgba(6, 4, 21, 0) 65%);
}

.alice-glow-2 {
  top: 900px;
  left: -200px;
  width: 700px;
  height: 700px;
}

.alice-glow-3 {
  top: 2200px;
  right: -200px;
}

.alice-glow-4 {
  top: 3400px;
  left: 100px;
  background: radial-gradient(circle, rgba(82, 33, 145, 0.2) 0%, rgba(6, 4, 21, 0) 70%);
}

/* Buttons */
.alice-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 16px;
  font-family: var(--font-btn);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 52px;
}

.alice-btn-primary {
  background-color: var(--primary-btn);
  color: white;
  min-width: 240px;
}

.alice-btn-primary:hover {
  background-color: var(--primary-btn-hover);
  transform: translateY(-2px);
}

.alice-btn-secondary {
  background-color: #36324D;
  color: white;
  height: 44px;
  border-radius: 12px;
  min-width: 140px;
}

.alice-btn-secondary:hover {
  background-color: #4b456b;
}

/* Header */
.alice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 156px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.alice-header .alice-logo svg {
  display: block;
}

.alice-nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-body);
}

.alice-nav-links a {
  opacity: 1;
  transition: opacity 0.2s;
}

.alice-nav-links a:hover {
  opacity: 0.8;
}

/* Hero Section */
.alice-hero {
  text-align: center;
  max-width: 1128px;
  margin: 100px auto 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.alice-hero h1 {
  font-size: 82px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.alice-hero p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 90%;
  line-height: 1.4;
}

/* Features Statement */
.alice-features-statement {
  max-width: 1128px;
  margin: 0 auto 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}

.alice-features-statement h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 48px;
  text-align: center;
}

.alice-features-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.alice-feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s;
}

.alice-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 56, 104, 0.4);
}

.alice-feature-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alice-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alice-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.alice-feature-card-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.alice-feature-card p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.4;
}

/* Content Sections */
.alice-content-sections {
  max-width: 1128px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.alice-content-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.alice-row-reverse {
  flex-direction: row-reverse;
}

.alice-content-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alice-content-text h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.alice-content-text p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.4;
}

.alice-content-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 467px;
  width: 564px;
}

/* 
.alice-glow-behind::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 56, 104, 0.2) 0%, rgba(6, 4, 21, 0) 60%);
  z-index: -1;
  pointer-events: none;
} */

.alice-scale-img {
  max-width: 130%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.5));
}

.alice-scale-img-lg {
  max-width: 160%;
  height: auto;
  object-fit: contain;
  margin-left: -15%;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.5));
}

.alice-content-image.alice-object-bottom img {
  transform: translateY(10%);
}

/* Why It Matters */
.alice-why-it-matters {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 32px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.alice-why-it-matters h3 {
  font-size: 32px;
  font-weight: 600;
  white-space: nowrap;
}

.alice-why-it-matters p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.4;
  margin: 0;
}

/* CTA Section */
.alice-cta-section {
  text-align: center;
  width: 1128px;
  max-width: 100%;
  margin: 160px auto 100px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.alice-cta-section h2 {
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
}

.alice-cta-section p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.4;
  max-width: 692px;
  margin-bottom: 20px;
}

.alice-cta-subtitle {
  font-size: 12px;
  color: #fff;
}

/* Partners Section */
.alice-partners-section {
  width: 100%;
  margin: 60px auto 0;
  position: relative;
  overflow: hidden;
}

.alice-partners-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.alice-partners-track {
  display: flex;
  width: max-content;
  animation: scroll-partners 25s linear infinite;
}

.alice-partner-img {
  height: 92px;
  width: 1440px;
  max-width: none;
  flex-shrink: 0;
  display: block;
}

@keyframes scroll-partners {
  to {
    transform: translateX(-25%);
  }
}

/* Dashboard Preview */
.alice-dashboard-preview {
  width: 100%;
  margin: 0 auto 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.alice-dashboard-preview::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 120%;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 56, 104, 0.4) 0%, rgba(255, 56, 104, 0.1) 40%, transparent 70%);
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
}

.alice-dashboard-preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  /* background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%); */
  z-index: 1;
}

.alice-dashboard-preview img {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  /* box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8); */
}

/* Footer Bottom */
.alice-footer-bottom {
  position: relative;
  z-index: 2;
  padding: 40px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

.alice-footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  justify-content: center;
  color: #bcbcbc;
}

.alice-socials {
  display: flex;
  gap: 24px;
}

.alice-socials a {
  font-weight: 600;
}

.alice-footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}

.alice-footer-copy {
  margin-top: -12px;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .alice-header {
    padding: 24px;
  }

  .alice-features-grid {
    flex-direction: column;
    align-items: center;
  }

  .alice-content-row {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }

  .alice-content-text.alice-pl-64,
  .alice-content-text.alice-pr-64 {
    padding: 0;
  }

  .alice-why-it-matters {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .alice-scale-img,
  .alice-scale-img-lg {
    max-width: 100%;
    margin-left: 0;
  }
}



@media (max-width: 1024px) {

  .alice-bg-1 {
    left: 0;
    max-width: 100%;
  }


  .alice-bg-2 {
    /* right: 0; */
    /* width: 100%; */
  }

  .alice-bg-1-sports {
    right: 0;
    max-width: 100%;
  }

  .alice-bg-1-brands {
    left: 0;
    max-width: 100%;
  }

  .alice-bg-1-why-metters {
    right: 0;
    max-width: 100%;
  }


  .alice-scale-img {
    max-width: 100%;
  }

  .alice-scale-img-lg {
    max-width: 100%;
  }

}
