:root{
  --bg1:#071a66;
  --bg2:#0b2aa8;

  --ink:#111427;
  --muted:rgba(17,20,39,.65);

  --radius-xl:28px;
  --radius-lg:22px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family:"Comic Relief", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1200px 500px at 40% 15%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, var(--bg2), var(--bg1));
}

/* ===== Layout wrapper ===== */
.page{
  min-height: 100svh;            /* лучше чем 100% для мобилы */
  display:flex;
  justify-content:center;
  align-items:center;
  padding:24px;
}

/* На мобиле не центрируем по вертикали, чтобы не обрезалось */
@media (max-width: 520px){
  .page{
    align-items:flex-start;
    /* flex-direction: column; */
    /* align-items: stretch; */
    padding:14px;
  }
}

/* ===== Outer “window” ===== */
.window{
  width:min(1100px, 100%);
  padding:18px;
  border-radius:calc(var(--radius-xl) + 10px);
  background:rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.12);
}

/* ===== Card ===== */
.card{
  background:rgba(255,255,255,.92);
  border-radius:var(--radius-xl);
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* ===== Left column ===== */
/* .left{
  flex:1 1 520px;
  min-width:280px;
} */

.left{
  flex:1 1 0;
  min-width:0;
}


.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  font-weight:700;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#7ed6c7;
  box-shadow:0 0 0 4px rgba(126,214,199,.25);
}

.title{
  margin:24px 0 10px;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-0.02em;
}

.subtitle{
  margin:0 0 22px;
  max-width:520px;
  color:var(--muted);
  font-size:18px;
  line-height:1.45;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  font-weight:700;
}

.chip-ico{
  opacity:.8;
}

/* ===== Right column ===== */
.right{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Circle */
.hero-circle{
  width:360px;
  height:360px;
  border-radius:50%;
  background:
    radial-gradient(circle at 65% 35%, #bfe7ff 0 28%, transparent 29%),
    radial-gradient(circle at 25% 75%, #b6f3e8 0 26%, transparent 27%),
    radial-gradient(circle at 50% 50%, #ff86b7 0 68%, #ff86b7 69%);
  position:relative;
  overflow:hidden;
}


.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center 20%;
  transform: scale(1) translateY(6%);
  transform-origin: center;
  mix-blend-mode:multiply;
  filter: contrast(1.05);
  opacity:.92;
}


/* ===== Adaptive (tablet) ===== */
@media (max-width: 860px){
  .card{
    flex-direction:column;
    align-items:flex-start;
  }

  .right{
    width:100%;
    justify-content:center;
  }

  .hero-circle{
    width:260px;
    height:260px;
  }

  .title{
    font-size:42px;
  }
}

/* ===== Adaptive (mobile) ===== */
@media (max-width: 520px){
  .window{
    padding:12px;
    border-radius:26px;
  }

  .card{
    padding:20px;
    border-radius:22px;
    gap:18px;
  }

  .left{
    min-width:0;
    flex: 1 1 auto;
  }

  .title{
    margin:18px 0 10px;
    font-size:38px;
    line-height:1.02;
  }

  .subtitle{
    font-size:16px;
    margin:0 0 14px;
    max-width:34ch;
  }

  .chips{
    gap:10px;
  }

  .right{
    justify-content:center;
  }

  .hero-circle{
    width:230px;
    height:230px;
    margin-top:6px;
  }
}


/* ===== Bottom panel ===== */
.panel{
  margin-top:18px;
  background:rgba(255,255,255,.92);
  border-radius:var(--radius-xl);
  padding:18px;
}

.panel__title{
  margin:0 0 10px;
  font-size:14px;
  color:rgba(17,20,39,.75);
}

/* Accordion */
.acc{
  border-radius:16px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
}

.acc + .acc{ margin-top:10px; }

.acc__summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
}

.acc__summary::-webkit-details-marker{ display:none; }

.acc__left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.acc__icon{
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  border:1px solid rgba(0,0,0,.06);
  flex:0 0 auto;
}

.acc__icon--yellow{ background:rgba(255,215,102,.35); }
.acc__icon--blue{ background:rgba(191,231,255,.45); }
.acc__icon--pink{ background:rgba(255,134,183,.28); }
.acc__icon--mint{ background:rgba(126,214,199,.28); }

.acc__text{ min-width:0; }
.acc__name{
  display:block;
  font-weight:700;
  font-size:14px;
  line-height:1.1;
}

.acc__hint{
  display:block;
  font-size:12px;
  color:rgba(17,20,39,.6);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-top:2px;
}

/* “Arrow” */
.acc__chev{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.85);
  position:relative;
  flex:0 0 auto;
}

.acc__chev::before{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  width:8px;
  height:8px;
  border-right:2px solid rgba(17,20,39,.55);
  border-bottom:2px solid rgba(17,20,39,.55);
  transform: rotate(-45deg);
  top:1px;
}

.acc[open] .acc__chev{
  transform: rotate(90deg);
}

.acc__body{
  overflow: hidden;
  max-height: 0;
  transition: max-height .28s ease;
  padding: 0 14px;
}

.acc[open] .acc__body{
  padding: 0 14px 14px; 
}

/* чуть приятнее стрелка */
.acc__chev{
  transition: transform .2s ease;
}


.acc__p{
  margin:0;
  color:rgba(17,20,39,.7);
  font-size:14px;
  line-height:1.4;
}

.acc__list{
  margin:0;
  padding-left:18px;
  color:rgba(17,20,39,.7);
  font-size:14px;
  line-height:1.4;
}

/* Place */
.place{
  background:rgba(255,255,255,.75);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:12px;
}

.place__row{
  display:flex;
  gap:10px;
  align-items:baseline;
  justify-content:space-between;
}

.place__muted{
  color:rgba(17,20,39,.55);
  font-size:12px;
}

.place__link{
  display:inline-block;
  margin-top:8px;
  font-weight:700;
  font-size:12px;
  text-decoration:none;
  color:rgba(17,20,39,.85);
}

/* Photos */
.photos{
  margin-top:12px;
  display:grid;
  gap:12px;
}

/* .photo{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.75);
}

.photo img{
  display:block;
  width:100%;
  height:auto;
}

.photo__cap{
  padding:10px 12px;
  display:flex;
  flex-direction:column;
  gap:2px;
  font-size:12px;
  color:rgba(17,20,39,.65);
}

.photo__cap strong{
  font-size:13px;
  color:rgba(17,20,39,.9);
} */

/* Photos (cards like in screenshot) */
.photos{
  margin-top:12px;
  display:grid;
  gap:12px;
}

.photo{
  margin:0;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  background:rgba(255,255,255,.92); /* белый прямоугольник */
  overflow:hidden;
}

/* Фото — отдельным блоком сверху */
.photo img{
  display:block;
  width:100%;
  aspect-ratio: 16 / 9;      /* как у “широкого” фото */
  object-fit:cover;
}

/* Подписи — отдельный белый блок снизу */
.photo__cap{
  padding:12px 12px 14px;
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:12px;
  color:rgba(17,20,39,.65);
  border-top:1px solid rgba(0,0,0,.06);
}

.photo__cap strong{
  font-size:13px;
  color:rgba(17,20,39,.9);
}



/* Mobile tweaks */
@media (max-width: 520px){
  .panel{ padding:14px; border-radius:22px; }
  .acc__summary{ padding:12px; }
  .acc__hint{ white-space:normal; }
}

.photo{
  position:relative;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.photo__link{
  position:absolute;
  inset:0;
  z-index:1;
}


.photo:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}


.window-footer{
  margin-top:14px;
  padding:14px 0 4px;
  text-align:center;
  font-size:12px;
  color:rgba(255,255,255,.8);
  border-top:1px solid rgba(255,255,255,.12);
}

@media (max-width: 980px){
  .left{ min-width: 0; }
  .hero-circle{ width:300px; height:300px; }
}

.chip--link{ text-decoration:none; color:inherit; }

.ico{
  width:18px;
  height:18px;
  display:block;
  color: rgba(17,20,39,.75);
}

.chips--social{
  margin-top: 10px;
}



.chip{
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  will-change: transform;
}

/* только для кликабельных чипов */
.chip--link:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

.chip--link:active{
  transform: translateY(0px) scale(.99);
}

.acc__summary{
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border-radius:16px; /* чтобы тень красиво смотрелась */
  will-change: transform;
}

.acc__summary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  background: rgba(255,255,255,.92);
}

.acc__summary:active{
  transform: translateY(0px) scale(.995);
}

.acc__chev{
  transition: transform .2s ease;
}

.acc__summary:hover .acc__chev{
  transform: translateX(2px);
}
