*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(
    170deg,
    rgb(47, 24, 72) 0%,
    rgb(73, 37, 110) 48%,
    rgb(187, 0, 255) 85%,
    rgb(255, 188, 4) 100%
  ) fixed;
  color:rgb(230, 224, 204);
  line-height:1.6;
  min-width: 380px;
}

a { color: var(--accent); text-decoration: underline; }

p {
  line-height: 1.6;
  font-size:1rem;
  padding-bottom: 0.25rem;
}

.container{
  max-width:1200px;
  margin:auto;
  background-color: rgba(50, 30, 50, 0.3);
  padding-left: 2rem;
  padding-right: 2rem;
}

.container h2 {
  font-size: 1.75rem;
}

.bottom-rounded {
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
}

.full-rounded {
  border-radius: 27px;
}

.coming-soon {
  padding: 4rem;
}

.bordered {
  background:rgba(47, 24, 72, 0.5);
  border-radius: 15px;
  border:1px solid rgba(210, 210, 210,0.15);
  padding: 1.5rem;
}

.bottom-margin {
  margin-bottom: 6rem;
}

.bottom-margin-small {
  margin-bottom: 1rem;
}

/* LISt */

.modern-list {
  list-style: circle;
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 0;
}

.modern-list li {
  /*padding-bottom: 0.05rem;*/
}

/* REFLECTION */

.reflect-wrap {
  display: inline-block;
}

.main-img {
  display: block;
}

/* Reflection */
.reflection {
  display: block;
  /*margin-top: -5px;  */
  transform: scaleY(-1) rotateZ(-3deg) translateX(-7px);;
  /*transform: scaleY(-1) rotateX(5deg) rotateY(-10deg) translateX(-5px);*/
  transform-style: preserve-3d;
  opacity: 0.35;
  object-fit: cover;
  filter: blur(2px);
}

.reflection-wrap {
  height: 100px;
  overflow: hidden;
  perspective: 350px;
  margin-top: 5px;
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0)
  );
}

/* APP STORE BUTTON */

.appstore-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.appstore-button img {
  display: block;
  height: 48px;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.appstore-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.appstore-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* NAVBAR */
.navbar{
  position:sticky;
  top:0;
  background:rgb(47, 24, 72);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,242,0.5);
}

.nav-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;

  width:90%;
  max-width:1200px;
  margin:auto;
  padding: 0.75rem 1rem;
}

nav a{
  margin-left:2rem;
  text-decoration:none;
  color:#cfd3dc;
  font-size:0.95rem;
}

.logo{
  font-weight:600;
  font-size:1.2rem;
  padding-top:3px;
}

/* HERO */
.hero{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.privacy {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.privacy p, li {
  margin-bottom: 15px;
  color: var(--text);
}

.privacy h1{
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  font-size: 2rem;
}

.privacy h2{
  margin-top: 30px;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero h1{
  font-size:2rem;
  margin-bottom:1rem;
}

.subtitle{
  margin-bottom:2rem;
  max-width:480px;
}

.hero-actions{
  display:flex;
  gap:1rem;
}

/* BUTTONS */
.btn-primary{
  background:rgb(91, 46, 137);
  color:white;
  padding:12px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:500;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,0.2);
  padding:12px 22px;
  border-radius:10px;
  text-decoration:none;
  color:white;
}

.btn-primary.large{
  font-size:1.1rem;
  padding:16px 32px;
}

/* IMAGE PLACEHOLDERS */
.image-placeholder{
  display:flex;
  align-items:center;
  justify-content:center;
}

/* FEATURES */
.features{
  padding:40px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
  font-size:2rem;
}

.feature-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  margin: 0 auto 2rem;
}

.feature-card{
  margin-bottom: 30px;
}

.feature-spotlight-card{
  background:rgb(245, 245, 244);
  border-radius:9px;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 115%;
}

.feature-spotlight-card img {
  border-radius:9px;
  padding:5px;
}

.feature-row {
  /*display: flex;*/
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.icon-placeholder{
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background:rgb(47, 24, 72);
  border-radius: 9px;
  border:1px solid rgba(210, 210, 210,0.3);
  margin-bottom: 3px;
}

.icon {
}

.feature-card h3{
  margin-bottom:8px;
}

.feature-card p{
  color: rgb(240, 234, 214);
}

/* 3-COL */

.three-col {
  display: flex;
  align-items: center;
}

/* Left + Right stay equal */
.left,
.right {
  flex: 0 1 auto;
}

.middle {
  flex: 1;
}

/* 2-COL */
.two-column {
  display: flex;
  gap: 40px;
  padding: 2rem;
}

.left-col {
  flex: 0 1 auto;
}

.right-col {
  flex: 1;
}

.left-col {
  justify-content: flex-end;
  padding-left: 3rem;
  padding-right: 1rem;
}

.right-col {
  justify-content: flex-start;
  flex-direction: column;
}

.left-col img {
  max-width: 100%;
  height: auto;
}

.right-col p {
  margin-bottom: 1rem;
}

/* SCREENS */
.screens{
  padding:100px 0;
}

.screens-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.screen-placeholder{
  height:460px;
  background:#1b1e25;
  border-radius:24px;
  border:1px dashed rgba(255,255,255,0.15);
  display:flex;
  align-items:center;
  justify-content:center;

}

/* STACK */
.stack {
  position: relative;
  width: 300px;
  height: 300px;
  perspective: 800px;
}

.stack .img {
  position: absolute;
  width: 150px;
  transform-style: preserve-3d;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.img1 { transform: translate(0,0) rotateY(-10deg); }
.img2 { transform: translate(30px,20px) rotateY(-5deg); }
.img3 { transform: translate(60px,40px) rotateY(0deg); }
.img4 { transform: translate(90px,60px) rotateY(5deg); }

/* ABOUT */
.about{
  padding:100px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about p{

  margin-top:10px;
}

/* CTA */
.cta{
  text-align:center;
  padding: 2rem;
  max-width:1200px;
  margin: 2rem auto;
  background-color: rgba(50, 30, 50, 0.3);
  border-radius: 15px;
}

.cta p{
  color:#9da3b0;
  /*margin: 3rem;*/
  margin:20px 0 40px;
}

/* FOOTER */
.footer{
  max-width:1200px;
  margin: auto auto 1rem;
  border-radius: 27px;
  background-color: rgba(50, 30, 50, 0.3);
  border-top:1px solid rgba(255,255,255,0.05);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin: auto;
  padding: 1rem 2rem;
}

.footer-links a{
  margin-left:20px;
  text-decoration:none;
  color:#9da3b0;
}

.muted{
  color:#6e7484;
  font-size:0.9rem;
}

/* RESPONSIVE */
@media(max-width:768px){
  .bottom-margin {
    margin-bottom: 0;
  }

  .two-column {
    flex-direction: column;
  }

  .left-col,
  .right-col {
    flex: none;
  }

  .hero-grid,
  .about-grid{
    grid-template-columns:1fr;
  }

  .hero{
    padding-top:80px;
  }

  .hero h1{
    font-size:1.5rem;
  }

  .container h2 {
    font-size: 1.5rem;
  }

  nav{
    display:none;
  }
}
