:root{
  --bg:#fafafa;
  --card:#ffffff;
  --border:#ececec;
  --text:#111111;
  --muted:#6f6f6f;

  --lavender:#cfc8ff;
  --pink:#ffe6ef;
  --blue:#dfe9ff;

}

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

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  overflow-x:hidden;
  position:relative;
}

/* =========================
BACKGROUND
========================= */

.background{
  position:fixed;
  inset:0;
  z-index:-2;
  overflow:hidden;
}

.glow{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:.7;
}

.glow-1{
  width:650px;
  height:650px;
  background:rgba(207,200,255,.45);
  top:-180px;
  left:-180px;
}

.glow-2{
  width:500px;
  height:500px;
  background:rgba(255,225,236,.55);
  bottom:-180px;
  right:-100px;
}

.grid{
  position:absolute;
  inset:0;
  background-image:
  linear-gradient(rgba(0,0,0,.02) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,0,0,.02) 1px, transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(circle at center, black 30%, transparent 90%);
}

/* =========================
LAYOUT
========================= */

.wrapper{
  width:100%;
  min-height:100vh;

  padding:
  48px 48px 60px;

  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
}

.container{
  width:100%;
  max-width:1440px;
  margin:0 auto;

  display:grid;

  grid-template-columns:
  minmax(0, 1fr)
  minmax(520px, 640px);

  gap:80px;

  align-items:center;
}

/* =========================
LEFT SIDE
========================= */

.left{
  position:relative;
  z-index:2;
}

.logo{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:90px;
}

.logo-mark{
  width:62px;
  height:62px;
  overflow: hidden;
}

.logo-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.logo-content h2{
  font-size:24px;
  letter-spacing:6px;
  font-weight:500;
  font-family:'Cormorant Garamond',serif;
}

.logo-content p{
  margin-top:5px;
  font-size:12px;
  font-family:'Cormorant Garamond',serif;
  color:#777;
  letter-spacing:2px;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(207,200,255,.5);
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(10px);
  color:#7d6ff2;
  font-size:12px;
  letter-spacing:3px;
  margin-bottom:28px;
}

.title{
  font-family:'Cormorant Garamond',serif;

  font-size:
  clamp(72px, 7vw, 118px);

  line-height:.9;

  font-weight:500;

  letter-spacing:-3px;

  margin-bottom:24px;
}

.line{
  width:80px;
  height:2px;
  background:var(--lavender);
  margin-bottom:35px;
}

.desc{
  max-width:620px;
  font-size:20px;
  line-height:1.9;
  color:var(--muted);
  font-weight:300;
  margin-bottom:45px;
}

/* =========================
FORM
========================= */

.form{
  width:100%;
  max-width:620px;
  display:flex;
  gap:14px;
  padding:12px;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:24px;
  box-shadow:
  0 20px 60px rgba(0,0,0,.05);
}

.form input{
  flex:1;
  border:none;
  background:transparent;
  outline:none;
  font-size:16px;
  padding:0 20px;
  color:#111;
}

.form button{
  border:none;
  background:#111;
  color:#fff;
  padding:18px 28px;
  border-radius:18px;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:.3s ease;
}

.form button:hover{
  transform:translateY(-2px);
  opacity:.92;
}

/* =========================
FORM RESPONSE
========================= */

#responseMessage{
  margin-top:18px;
}

.success-message{
  width:100%;
  max-width:620px;
  padding:18px 22px;
  border-radius:18px;
  background:
  rgba(219,255,233,.65);

  border:1px solid
  rgba(102,213,145,.25);

  color:#1f7a45;

  font-size:15px;

  backdrop-filter:blur(10px);

  animation:fadeUp .4s ease;
}

.error-message{
  width:100%;
  max-width:620px;
  padding:18px 22px;
  border-radius:18px;
  background:
  rgba(255,230,230,.75);

  border:1px solid
  rgba(255,120,120,.18);

  color:#b42323;

  font-size:15px;

  backdrop-filter:blur(10px);

  animation:fadeUp .4s ease;
}

/* =========================
FEATURES
========================= */

.features{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:28px;
}

.feature{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 18px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:18px;
  font-size:14px;
  color:#555;
}

.icon{
  width:38px;
  height:38px;
  border-radius:12px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  border:1px solid var(--border);
}

/* =========================
SIGNATURE
========================= */

.signature{
  margin-top:70px;
  font-family:'Cormorant Garamond',serif;
  font-style:italic;
  font-size:44px;
  color:#555;
  line-height:1.15;
}

/* =========================
RIGHT SIDE
========================= */

.right{
  position:relative;

  height:780px;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* IMAGE AREA */

.image-wrapper{
  position:absolute;
  inset:0;
  border-radius:40px;
  overflow:hidden;
}

.image-wrapper::before{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(to left, rgba(250,250,250,0) 20%, #fafafa 92%);
  z-index:2;
}

.image-wrapper::after{
  content:"";
  position:absolute;
  inset:0;
  background:
  linear-gradient(to top, rgba(250,250,250,.1), rgba(250,250,250,.05));
  z-index:1;
}

.image-wrapper img{
  width:100%;
  height:100%;

  object-fit:cover;

  object-position:center center;
}

/* =========================
FLOATING UI CARDS
========================= */

.card{
  position:absolute;
  width:280px;
  padding:24px;
  border-radius:28px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.8);
  box-shadow:
  0 20px 50px rgba(0,0,0,.08);
  z-index:5;
  animation:float 5s ease-in-out infinite;
}

.card small{
  color:#8c8c8c;
  font-size:13px;
}

.card h3{
  margin-top:14px;
  font-size:20px;
  margin-bottom:8px;
}

.card p{
  color:#555;
  line-height:1.7;
  font-size:14px;
}

.price{
  font-size:40px;
  font-weight:600;
  margin-top:12px;
}

.card-1{
  top:10%;
  left:-2%;
  animation-delay:0s;
}

.card-2{
  top:38%;
  right:-5%;
  animation-delay:1.5s;
}

.card-3{
  bottom:18%;
  left:8%;
  animation-delay:3s;
}

/* =========================
COUNTDOWN
========================= */

.timer{
  position:absolute;
  bottom:40px;
  right:20px;
  z-index:10;
  padding:28px 34px;
  border-radius:28px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.8);
}

.timer-title{
  letter-spacing:4px;
  color:#8b7cf6;
  font-size:12px;
  margin-bottom:18px;
}

.countdown{
  display:flex;
  align-items:center;
  gap:14px;
  font-family:'Cormorant Garamond',serif;
  font-size:54px;
}

.countdown span{
  min-width:52px;
}

/* =========================
ANIMATIONS
========================= */

.fade-up{
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp 1s forwards;
}

.delay-1{ animation-delay:.2s; }
.delay-2{ animation-delay:.4s; }
.delay-3{ animation-delay:.6s; }
.delay-4{ animation-delay:.8s; }

@keyframes fadeUp{

  to{
    opacity:1;
    transform:translateY(0);
  }

}

@keyframes float{

  0%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-12px);
  }

  100%{
    transform:translateY(0px);
  }

}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1024px){

  .container{
    grid-template-columns:1fr;
    gap:70px;
  }

  .right{
    min-height:700px;
  }

  .card-1{
    left:5%;
  }

  .card-2{
    right:5%;
  }

}

@media(max-width:768px){

  .wrapper{
    padding:24px;
  }

  .logo{
    margin-bottom:50px;
  }

  .logo-content h2{
    font-size:18px;
    letter-spacing:4px;
  }

  .badge{
    font-size:11px;
    letter-spacing:2px;
  }

  .desc{
    font-size:17px;
    line-height:1.8;
  }

  .form{
    flex-direction:column;
    padding:14px;
  }

  .form input{
    height:56px;
    padding:0 10px;
  }

  .form button{
    width:100%;
  }

  .features{
    flex-direction:column;
  }

  .signature{
    font-size:34px;
    margin-top:50px;
  }

  .right{
    min-height:620px;
  }

  .card{
    width:220px;
    padding:18px;
  }

  .card-1{
    top:0;
    left:0;
  }

  .card-2{
    right:0;
    top:35%;
  }

  .card-3{
    bottom:18%;
    left:5%;
  }

  .price{
    font-size:30px;
  }

  .timer{
    left:50%;
    transform:translateX(-50%);
    bottom:10px;
    width:90%;
    text-align:center;
  }

  .countdown{
    justify-content:center;
    font-size:34px;
    gap:8px;
  }
}