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

html,body{
  margin:0;
  overflow-x: hidden;
  width:100%;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
  color: #f5f5f5;
}

.studio-hero{

height:100vh;

position:relative;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

overflow:hidden;

perspective:1200px;

background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);

}

.studio-hero::before{

content:'';

position:absolute;

inset:0;

background:url("https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?auto=format&fit=crop&w=2000&q=80");

background-size:cover;

background-position:center;

z-index:1;

animation:zoomIn 20s ease-in-out infinite;

transform: translateZ(50px);

}

@keyframes zoomIn{

0%,100%{

transform:scale(1) translateZ(50px);

}

50%{

transform:scale(1.05) translateZ(50px);

}

}
.hero-btn{

display:inline-block;

margin-top:35px;

padding:16px 42px;

border-radius:999px;

background:
rgba(95,180,255,.25);

border:
2px solid rgba(95,216,255,.5);

color:#dff8ff;

text-decoration:none;

font-weight:600;

backdrop-filter:blur(12px);

transition:.4s;

box-shadow:0 0 20px rgba(95,216,255,.3), inset 0 0 20px rgba(95,216,255,.1);

position:relative;

z-index:5;

}

.hero-btn:hover{

transform:translateY(-3px) scale(1.05);

box-shadow:
0 0 40px rgba(95,216,255,.5),
0 0 80px rgba(31,100,200,.3),
inset 0 0 20px rgba(95,216,255,.2);

background:rgba(95,180,255,.35);

}

.hero-overlay{

position:absolute;

inset:0;

background:

linear-gradient(
180deg,
rgba(10,14,39,.35),
rgba(31,100,200,.15),
rgba(10,14,39,.55)
);

z-index:2;

backdrop-filter:blur(2px);

}

.studio-overlay::before{

content:'';

position:absolute;

inset:0;

background:radial-gradient(ellipse at 50% 50%, rgba(90,180,255,.25) 0%, transparent 70%);

z-index:3;

animation:radialPulse 4s ease-in-out infinite;

}

@keyframes radialPulse{

0%,100%{

opacity:.6;

}

50%{

opacity:1;

}

}

.studio-content{

position:relative;

z-index:4;

max-width:900px;

padding:20px;

transform:translateZ(100px);

animation:float 3s ease-in-out infinite;

}

@keyframes float{

0%,100%{

transform:translateZ(100px) translateY(0);

}

50%{

transform:translateZ(100px) translateY(-15px);

}

}

.studio-content span{

letter-spacing:4px;

color:#5fd8ff;

text-transform:uppercase;

font-weight:600;

text-shadow:

0 0 20px rgba(95,216,255,.5),
0 0 40px rgba(95,216,255,.3),
0 0 60px rgba(31,100,200,.4);

display:inline-block;

animation:glow 3s ease-in-out infinite;

}

@keyframes glow{

0%,100%{

text-shadow:
0 0 20px rgba(95,216,255,.5),
0 0 40px rgba(95,216,255,.3),
0 0 60px rgba(31,100,200,.4);

}

50%{

text-shadow:
0 0 30px rgba(95,216,255,.7),
0 0 60px rgba(95,216,255,.5),
0 0 90px rgba(31,100,200,.6);

}

}

.studio-content h1{

text-shadow:

0 0 30px rgba(95,216,255,.6),

0 0 60px rgba(95,216,255,.4),

0 0 120px rgba(31,100,200,.5),
0 0 180px rgba(31,100,200,.2);

font-size:3.5rem;

letter-spacing:2px;

animation:titleGlow 3s ease-in-out infinite;

}

@keyframes titleGlow{

0%,100%{

text-shadow:
0 0 30px rgba(95,216,255,.6),
0 0 60px rgba(95,216,255,.4),
0 0 120px rgba(31,100,200,.5),
0 0 180px rgba(31,100,200,.2);

}

50%{

text-shadow:
0 0 40px rgba(95,216,255,.8),
0 0 80px rgba(95,216,255,.6),
0 0 150px rgba(31,100,200,.7),
0 0 220px rgba(31,100,200,.4);

}

}

.studio-content p{

font-size:1.5rem;

max-width:850px;

margin:auto;
color:#e0f0ff;

text-shadow:

0 0 15px rgba(95,216,255,.4),
0 0 30px rgba(31,100,200,.2);

animation:fadeInGlow 3s ease-in-out infinite;

}

@keyframes fadeInGlow{

0%,100%{

text-shadow:
0 0 15px rgba(95,216,255,.4),
0 0 30px rgba(31,100,200,.2);

}

50%{

text-shadow:
0 0 20px rgba(95,216,255,.6),
0 0 40px rgba(31,100,200,.3);

}

}
.studio-section{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

padding:120px 8%;

}

.studio-image img{

width:100%;

height:700px;

object-fit:cover;

border-radius:30px;

}

.studio-text span{

font-size:7rem;

font-weight:800;

color:#8fdfff;

opacity:.15;

text-shadow:

0 0 40px rgba(120,220,255,.25);

}

.studio-text h2{

font-size:4rem;

margin:10px 0 30px;

}

.studio-text p{

line-height:2;

font-size:1.1rem;

opacity:.75;

margin-bottom:35px;

}
.studio-text a{

display:inline-flex;

align-items:center;

gap:12px;

padding:16px 36px;

border-radius:999px;

text-decoration:none;

color:#dff8ff;

background:
rgba(120,220,255,.08);

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

backdrop-filter:blur(12px);

font-weight:600;

letter-spacing:.08em;

transition:.4s ease;

}

.studio-text a:hover{

transform:translateY(-4px);

background:
rgba(120,220,255,.14);

box-shadow:

0 0 20px rgba(120,220,255,.12),

0 0 50px rgba(120,220,255,.08);

}
.payment-lounge{

padding:140px 8%;

text-align:center;

}

.payment-lounge span{

color:#8fdfff;

letter-spacing:4px;

font-size:.9rem;

}

.payment-lounge h2{

font-size:4rem;

margin:15px 0;

}

.payment-lounge p{

max-width:700px;

margin:auto;

opacity:.75;

line-height:1.8;

}
.payment-card{

cursor:pointer;

}

.payment-card:hover{

transform:
translateY(-10px)
scale(1.03);

}
.final-cta{

padding:180px 8%;

text-align:center;

}

.final-cta h2{

font-size:5rem;

margin-bottom:25px;

}

.final-cta p{

font-size:1.2rem;

max-width:700px;

margin:auto auto 40px;

opacity:.8;

}
.final-cta a{

color:black;

text-decoration:none;

font-weight:600;

}
.reveal{

opacity:0;

transform:translateY(80px);

transition:1s ease;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}
.studio-footer{

padding:100px 8%;

text-align:center;

border-top:
1px solid rgba(255,255,255,.08);

}

.studio-footer h3{

font-size:2rem;

margin-bottom:15px;

}

.studio-footer p{

opacity:.7;

margin-bottom:25px;

}

/* AI FACE SCANNER SECTION */

.ai-face-scanner {
  padding: 100px 8%;
  min-height: auto;
  background: linear-gradient(180deg, rgba(10,14,39,0.5) 0%, rgba(15,20,40,0.3) 100%);
  border-top: 1px solid rgba(95,216,255,.15);
  border-bottom: 1px solid rgba(95,216,255,.15);
}

.scanner-container {
  max-width: 1400px;
  margin: 0 auto;
}

.scanner-header {
  text-align: center;
  margin-bottom: 60px;
}

.scanner-header span {
  letter-spacing: 4px;
  color: #5fd8ff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.9rem;
  text-shadow: 0 0 15px rgba(95,216,255,.4);
}

.scanner-header h2 {
  font-size: 3.5rem;
  margin: 15px 0 10px;
  color: #fff;
  text-shadow: 0 0 30px rgba(95,216,255,.3);
}

.scanner-header p {
  color: rgba(235,245,255,.7);
  font-size: 1.1rem;
}

.face-shapes-selector {
  background: rgba(95,216,255,.08);
  border: 1px solid rgba(95,216,255,.2);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
}

.ai-detection-section {
  background: linear-gradient(135deg, rgba(95,216,255,.12) 0%, rgba(31,100,200,.08) 100%);
  border: 2px solid rgba(95,216,255,.3);
  border-radius: 25px;
  padding: 50px;
  margin-bottom: 60px;
  backdrop-filter: blur(15px);
  text-align: center;
}

.ai-detection-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
  text-shadow: 0 0 20px rgba(95,216,255,.3);
}

.detection-controls {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.control-btn {
  padding: 14px 28px;
  background: rgba(95,216,255,.15);
  border: 2px solid rgba(95,216,255,.4);
  color: #5fd8ff;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(95,216,255,.25);
  border-color: rgba(95,216,255,.7);
  box-shadow: 0 0 20px rgba(95,216,255,.3);
  transform: translateY(-3px);
}

.detection-result {
  background: rgba(95,216,255,.1);
  border: 1px solid rgba(95,216,255,.3);
  border-radius: 15px;
  padding: 30px;
  margin-top: 25px;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detection-result p {
  color: rgba(235,245,255,.9);
  font-size: 1.1rem;
  margin: 10px 0;
}

.gender-selector {
  margin: 40px 0;
  text-align: center;
}

.gender-selector h4 {
  color: #5fd8ff;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.gender-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.gender-btn {
  padding: 12px 30px;
  background: rgba(95,216,255,.1);
  border: 2px solid rgba(95,216,255,.3);
  color: rgba(235,245,255,.7);
  border-radius: 15px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.gender-btn:hover {
  border-color: rgba(95,216,255,.5);
  background: rgba(95,216,255,.15);
  transform: translateY(-2px);
}

.gender-btn.active {
  background: rgba(95,216,255,.25);
  border-color: rgba(95,216,255,.7);
  color: #5fd8ff;
  box-shadow: 0 0 20px rgba(95,216,255,.3);
}

.face-shapes-selector h3 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #fff;
}

.face-shapes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
}

.face-shape-option {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px;
  background: rgba(15,20,40,.5);
  border: 2px solid rgba(95,216,255,.2);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-weight: 600;
  color: rgba(235,245,255,.7);
}

.face-shape-option:hover {
  border-color: rgba(95,216,255,.5);
  background: rgba(95,216,255,.15);
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(95,216,255,.2);
}

.face-shape-option.active {
  border-color: rgba(95,216,255,.8);
  background: rgba(95,216,255,.25);
  color: #5fd8ff;
  box-shadow: 0 0 30px rgba(95,216,255,.4), inset 0 0 20px rgba(95,216,255,.1);
}

.shape-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shape-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(95,216,255,.3));
  transition: filter 0.4s ease;
}

.face-shape-option:hover .shape-icon svg {
  filter: drop-shadow(0 0 12px rgba(95,216,255,.6));
}

.scanner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.face-scanner {
  position: relative;
}

.scanner-frame {
  position: relative;
  width: 300px;
  height: 380px;
  margin: 0 auto;
  background: radial-gradient(ellipse at 50% 40%, rgba(95,216,255,.1) 0%, rgba(95,216,255,.02) 100%);
  border-radius: 40px;
  overflow: hidden;
}

.scan-border {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(95,216,255,.4);
  border-radius: 40px;
  animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(95,216,255,.4), inset 0 0 20px rgba(95,216,255,.1);
  }
  50% {
    box-shadow: 0 0 30px 10px rgba(95,216,255,.2), inset 0 0 30px rgba(95,216,255,.15);
  }
}

.scan-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scan-particles::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(95,216,255,.3) 0%, transparent 50%);
  animation: particleMove 4s ease-in-out infinite;
}

.scan-particles::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 70%, rgba(31,100,200,.2) 0%, transparent 50%);
  animation: particleMove 5s ease-in-out infinite reverse;
}

@keyframes particleMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, 10px);
  }
}

.face-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.face-placeholder svg {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 0 10px rgba(95,216,255,.4));
}

.scan-line-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(95,216,255,.8), transparent);
  animation: scanLine 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes scanLine {
  0% {
    top: 0;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

.face-shape-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.shape-badge {
  display: inline-block;
  background: rgba(95,216,255,.2);
  border: 2px solid rgba(95,216,255,.5);
  color: #5fd8ff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.85rem;
  width: fit-content;
  box-shadow: 0 0 15px rgba(95,216,255,.2);
}

.shape-details {
  background: rgba(95,216,255,.08);
  border: 1px solid rgba(95,216,255,.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.shape-details p {
  color: rgba(235,245,255,.85);
  line-height: 2;
  margin-bottom: 12px;
  font-size: 1rem;
}

.shape-details p strong {
  color: #5fd8ff;
  font-weight: 600;
}

.haircuts-section {
  margin-bottom: 60px;
}

.haircuts-section h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 20px rgba(95,216,255,.2);
}

.haircuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

.haircut-card {
  position: relative;
  cursor: pointer;
  group: card;
  transition: all 0.4s ease;
}

.haircut-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 220px;
  background: linear-gradient(135deg, rgba(95,216,255,.1) 0%, rgba(31,100,200,.05) 100%);
  border: 2px solid rgba(95,216,255,.2);
  transition: all 0.4s ease;
}

.haircut-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.haircut-card:hover .haircut-image {
  border-color: rgba(95,216,255,.6);
  box-shadow: 0 0 30px rgba(95,216,255,.3), inset 0 0 20px rgba(95,216,255,.1);
}

.haircut-card:hover .haircut-image img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.haircut-card p {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
  color: rgba(235,245,255,.85);
  font-size: 0.95rem;
  transition: color 0.4s ease;
}

.haircut-card:hover p {
  color: #5fd8ff;
  text-shadow: 0 0 10px rgba(95,216,255,.4);
}

.scanner-cta {
  text-align: center;
  padding: 40px;
  background: rgba(95,216,255,.08);
  border: 1px solid rgba(95,216,255,.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.scanner-cta p {
  color: rgba(235,245,255,.8);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* =========================
   TABLET
========================= */

@media (max-width:1024px){

.studio-content h1{

font-size:4.5rem;

}

.studio-section{

grid-template-columns:1fr;

gap:50px;

padding:100px 7%;

}

.studio-image img{

height:550px;

}

.studio-text{

text-align:center;

}

.final-cta h2{

font-size:4rem;

}

.scanner-wrapper {
  grid-template-columns: 1fr;
  gap: 40px;
}

.haircuts-grid {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.detection-controls {
  flex-direction: column;
}

.control-btn {
  width: 100%;
}

.ai-detection-section {
  padding: 30px;
}

}


/* =========================
   MOBILE
========================= */

@media (max-width:768px){

.studio-hero{

padding:0 25px;

}

.studio-content span{

font-size:.8rem;

letter-spacing:3px;

}

.studio-content h1{

font-size:3rem;

line-height:1.1;

}

.studio-content p{

font-size:1rem;

max-width:100%;

margin-top:20px;

}

.hero-btn{

padding:14px 28px;

font-size:.9rem;

}

.studio-section{

grid-template-columns:1fr;

gap:35px;

padding:80px 25px;

text-align:center;

}

.studio-image{

order:1;

}

.studio-text{

order:2;

}

.studio-image img{

height:420px;

border-radius:22px;

}

.studio-text span{

font-size:4rem;

}

.studio-text h2{

font-size:2.4rem;

margin:10px 0 20px;

}

.studio-text p{

font-size:1rem;

line-height:1.8;

}

.studio-text a{

padding:14px 28px;

font-size:.9rem;

}

.payment-lounge{

padding:90px 25px;

}

.payment-lounge h2{

font-size:2.6rem;

}

.payment-grid{

grid-template-columns:1fr;

gap:18px;

}

.payment-card{

padding:30px;

}

.qr-box{

padding:25px;

}

.qr-box img{

width:220px;

}

.final-cta{

padding:120px 25px;

}

.final-cta h2{

font-size:2.8rem;

line-height:1.15;

}

.final-cta p{

font-size:1rem;

}

.studio-footer{

padding:70px 25px;

}

.studio-footer h3{

font-size:1.5rem;

}

.ai-face-scanner {
  padding: 60px 25px;
}

.scanner-header h2 {
  font-size: 2.2rem;
}

.scanner-wrapper {
  grid-template-columns: 1fr;
  gap: 30px;
}

.scanner-frame {
  width: 250px;
  height: 320px;
}

.haircuts-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.haircut-image {
  height: 160px;
}

.scanner-cta {
  padding: 25px 20px;
  margin-top: 30px;
}

.scanner-cta p {
  font-size: 1rem;
}


}
@media (max-width:768px){

.studio-hero{
    min-height:100svh;
    height:auto;
    padding:80px 25px 40px;
}

.studio-content{
    padding-top:40px;
}

.studio-content h1{
    font-size:2.8rem;
    line-height:1.2;
    margin:15px 0;
}

.studio-content{
    animation:none;


}
.studio-hero{
    min-height:100svh;
    height:auto;
}
.studio-content h1{
    text-shadow:
    0 0 20px rgba(95,216,255,.6),
    0 0 40px rgba(95,216,255,.4);
}


}
@media (max-width:768px){

.studio-hero{
    width:100%;
    min-height:100svh;
    padding:0 20px;
    perspective:none;
}

.studio-hero::before{
    transform:none;
}

.studio-content{
    width:100%;
    max-width:100%;
    padding:0;
    margin:0 auto;
    transform:none !important;
    animation:none;
}

.studio-content h1{
    font-size:2.7rem;
    line-height:1.15;
    word-break:break-word;
}

}



/* =========================
   SMALL PHONES
========================= */

@media (max-width:480px){

.studio-content h1{

font-size:2.3rem;

}

.studio-content p{

font-size:.95rem;

}

.studio-image img{

height:320px;

}

.studio-text span{

font-size:3rem;

}

.studio-text h2{

font-size:2rem;

}

.payment-lounge h2{

font-size:2rem;

}

.final-cta h2{

font-size:2.2rem;

}

.hero-btn{

width:100%;

max-width:280px;

justify-content:center;

}

.studio-text a{

width:100%;

max-width:280px;

justify-content:center;

}

.scanner-header h2 {
  font-size: 1.8rem;
}

.scanner-frame {
  width: 200px;
  height: 260px;
}

.haircuts-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.haircut-image {
  height: 140px;
}

.haircut-card p {
  font-size: 0.8rem;
  margin-top: 10px;
}
.studio-hero{
    min-height:100svh;
    height:auto;
}

}
@media (max-width:768px){

.studio-hero{
    perspective:none;
}

.studio-hero::before{
    transform:none;
}

.studio-content{
    transform:none;
    animation:none;
}

}
.studio-hero::before{
    transform:none;
}

.studio-content{
    transform:none;
}