*{ margin:0; padding:0; box-sizing:border-box; }

:root{
  --sky1:#1f6fa7;
  --sky2:#2a88b8;
  --sky3:#1a5a96;
  --glass2: rgba(10,20,35,0.42);
  --border: rgba(255,255,255,0.18);
  --shadow: 0 18px 70px rgba(0,0,0,0.35);
  --accent1:#667eea;
  --accent2:#764ba2;
  --white: #fff;
}

body{
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--white);
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 20% 15%, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, var(--sky1), var(--sky2) 50%, var(--sky3));
}

.landing{
  min-height: 100vh;
  padding: 28px 22px 18px;
  display:flex;
  flex-direction: column;
  gap: 18px;
}

.top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand-badge{
  width: 110px;
  height: 90px;
  border-radius: 26px;
  background: rgba(255,255,255,0.85);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.badge-arc{
  position:absolute;
  top:-16px;
  width: 120px;
  height: 70px;
  border-radius: 0 0 70px 70px;
  background: linear-gradient(135deg, rgba(102,126,234,0.95), rgba(118,75,162,0.95));
}

.badge-text{
  position: relative;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 2.1rem;
  color: #2aa7da;
  margin-top: 18px;
}

.title-right{
  text-align:right;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
}

.title-en{
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  text-shadow: 0 8px 26px rgba(0,0,0,0.25);
}

.title-en.big{
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  margin-top: 4px;
}

.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero-left{
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.mm-head{
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.95;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.arrow-row{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 14px 0 6px;
}

.curve-arrow{
  height: 36px;
  flex: 1;
  border-bottom: 6px solid rgba(255,255,255,0.85);
  border-radius: 0 0 80px 80px;
  position: relative;
  opacity: .9;
}
.curve-arrow::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:-10px;
  width: 18px;
  height: 18px;
  border-right: 6px solid rgba(255,255,255,0.85);
  border-bottom: 6px solid rgba(255,255,255,0.85);
  transform: rotate(-45deg);
  border-radius: 4px;
}

.count{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #b7ff6a;
  text-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

/* Collage with real images */
.collage{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shot{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.shot:nth-child(2){ transform: rotate(2deg); }
.shot:nth-child(3){ transform: rotate(-3deg); }
.shot:nth-child(4){ transform: rotate(3deg); }
.shot:nth-child(5){ transform: rotate(-1deg); }
.shot:nth-child(6){ transform: rotate(2deg); }

.uimg{
  width: 100%;
  height: 110px;
  display:block;
  object-fit: cover;
}

.shot figcaption{
  padding: 10px 12px;
  font-weight: 900;
  font-size: .95rem;
  opacity: .95;
}*{ margin:0; padding:0; box-sizing:border-box; }

:root{
  --sky1:#1f6fa7;
  --sky2:#2a88b8;
  --sky3:#1a5a96;
  --glass2: rgba(10,20,35,0.42);
  --border: rgba(255,255,255,0.18);
  --shadow: 0 18px 70px rgba(0,0,0,0.35);
  --accent1:#667eea;
  --accent2:#764ba2;
  --white:#fff;
}

body{
  font-family:"Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--white);
  min-height:100vh;
  background:
    radial-gradient(1200px 700px at 20% 15%, rgba(255,255,255,0.15), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(135deg, var(--sky1), var(--sky2) 50%, var(--sky3));
}

.landing{
  min-height:100vh;
  padding: 28px 22px 18px;
  display:flex;
  flex-direction: column;
  gap: 18px;
}

.top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
}

.brand-badge{
  width: 110px;
  height: 90px;
  border-radius: 26px;
  background: rgba(255,255,255,0.85);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.badge-arc{
  position:absolute;
  top:-16px;
  width: 120px;
  height: 70px;
  border-radius: 0 0 70px 70px;
  background: linear-gradient(135deg, rgba(102,126,234,0.95), rgba(118,75,162,0.95));
}

.badge-text{
  position: relative;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 2.1rem;
  color: #2aa7da;
  margin-top: 18px;
}

.title-right{
  text-align:right;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .95;
}

.title-en{
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  text-shadow: 0 8px 26px rgba(0,0,0,0.25);
}

.title-en.big{
  font-size: clamp(1.7rem, 3.3vw, 2.4rem);
  margin-top: 4px;
}

.hero{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items:start;
}

.hero-left{
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
}

.hero-left:focus-visible{
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18), var(--shadow);
}

.hero-toprow{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.mm-head{
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.95;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.arrow-row{
  display:flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.curve-arrow{
  height: 34px;
  flex: 1;
  border-bottom: 6px solid rgba(255,255,255,0.85);
  border-radius: 0 0 80px 80px;
  position: relative;
  opacity: .9;
  max-width: 420px;
}
.curve-arrow::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:-10px;
  width: 18px;
  height: 18px;
  border-right: 6px solid rgba(255,255,255,0.85);
  border-bottom: 6px solid rgba(255,255,255,0.85);
  transform: rotate(-45deg);
  border-radius: 4px;
}

.count{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #b7ff6a;
  text-shadow: 0 10px 26px rgba(0,0,0,0.25);
}

.btn{
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  color: white;
  background: rgba(255,255,255,0.10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn.primary{
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 12px 34px rgba(102,126,234,0.35);
  white-space: nowrap;
}

.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

.btn.primary:hover{
  box-shadow: 0 16px 46px rgba(102,126,234,0.45);
}

/* Collage */
.collage{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.shot{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.shot:nth-child(2){ transform: rotate(2deg); }
.shot:nth-child(3){ transform: rotate(-3deg); }
.shot:nth-child(4){ transform: rotate(3deg); }
.shot:nth-child(5){ transform: rotate(-1deg); }
.shot:nth-child(6){ transform: rotate(2deg); }

.uimg{
  width: 100%;
  height: 120px;
  display:block;
  object-fit: cover;
}

.shot figcaption{
  padding: 10px 12px;
  font-weight: 900;
  font-size: .95rem;
  opacity: .95;
}

.hint{
  margin-top: 12px;
  opacity: .85;
}

/* Footer */
.bottom{
  text-align:center;
  opacity: .9;
  padding: 12px 0 2px;
}

/* Responsive */
@media (max-width: 980px){
  .collage{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .uimg{ height: 140px; }
}

@media (max-width: 620px){
  .hero-toprow{ flex-direction: column; align-items: stretch; }
  .btn.primary{ width: 100%; }
  .curve-arrow{ max-width: none; }
}

@media (max-width: 520px){
  .landing{ padding: 18px 14px 14px; }
  .collage{ grid-template-columns: 1fr; }
  .uimg{ height: 170px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
  .btn:hover{ transform: none; }
}


.cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn{
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  color: white;
  background: rgba(255,255,255,0.10);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary{
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 12px 34px rgba(102,126,234,0.35);
}

.btn.ghost{
  background: rgba(255,255,255,0.10);
}

.btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}

.btn.primary:hover{
  box-shadow: 0 16px 46px rgba(102,126,234,0.45);
}

.hint{
  margin-top: 10px;
  opacity: .85;
}

.bottom{
  text-align:center;
  opacity: .9;
  padding: 12px 0 2px;
}

/* Responsive */
@media (max-width: 980px){
  .collage{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .uimg{ height: 130px; }
}

@media (max-width: 520px){
  .landing{ padding: 18px 14px 14px; }
  .collage{ grid-template-columns: 1fr; }
  .uimg{ height: 160px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
  .btn:hover{ transform: none; }
}
