﻿/* About hero */

.phero.phero-about{
  padding:64px 0 56px;
  background:#fff
}

.phero-about .wrap{
  max-width:1200px
}

.phero-about h1{
  font-size:clamp(35px,4vw,51px);
  font-weight:900;
  letter-spacing:.02em;
  margin:0;
  line-height:1.4
}

.phero-about p{
  max-width:680px
}

@media (max-width:720px){
  .phero-about{
    padding:44px 0 42px
  }

  .phero-about h1{
    font-size:34px
  }
}

/* Page-hero shared */

.phero{
  padding:64px 0 56px;
  background:#fff
}

.phero .wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start
}

.phero .en{
  order:2;
  font-size:15px;
  font-weight:900;
  letter-spacing:.22em;
  color:var(--pink);
  margin:14px 0 0
}

.phero h1{
  order:1;
  font-size:clamp(35px,4vw,51px);
  font-weight:900;
  letter-spacing:.02em;
  margin:0;
  line-height:1.4
}

.phero p{
  order:3;
  font-size:17px;
  line-height:2;
  color:var(--ink-mid);
  margin-top:20px;
  max-width:680px;
  font-weight:500
}

/* Section helpers */

section.s{
  padding:80px 0
}

section.s.alt{
  background:var(--bg-soft)
}

.sec-title{
  display:flex;
  align-items:baseline;
  gap:16px;
  margin:0 0 16px
}

.sec-title h2{
  font-size:clamp(29px,3vw,37px);
  font-weight:900;
  letter-spacing:.02em;
  margin:0
}

.sec-title .en{
  font-size:15px;
  font-weight:900;
  letter-spacing:.22em;
  color:var(--pink)
}

.sec-sub{
  font-size:17px;
  color:var(--ink);
  line-height:1.95;
  margin:0 0 44px;
  font-weight:500
}

/* Buttons */

.btn-pink{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:var(--cta-bg);
  color:var(--cta-text);
  padding:16px 32px;
  border-radius:999px;
  font-size:17px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(var(--accent-rgb),.18);
  transition:transform 200ms,box-shadow 200ms
}

.btn-pink:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(var(--accent-rgb),.26)
}

.btn-ghost{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1.5px solid var(--ink);
  border-radius:999px;
  padding:12px 26px;
  font-size:16px;
  font-weight:900
}

.btn-ghost:hover{
  background:var(--ink);
  color:#fff
}

.center{
  text-align:center
}

.sp-only{
  display:none
}

.theme-switcher{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:80;
  display:flex;
  gap:8px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px;
  box-shadow:0 12px 32px rgba(20,30,50,.12);
  backdrop-filter:blur(14px)
}

.theme-dot{
  width:34px;
  height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:2px solid transparent;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.76);
  transition:transform 160ms,border-color 160ms,box-shadow 160ms
}

.theme-dot:hover{
  transform:translateY(-1px)
}

.theme-dot::after{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:#fff;
  opacity:0;
  transform:scale(.65);
  transition:opacity 160ms,transform 160ms
}

.theme-dot.is-on{
  border-color:var(--ink);
  box-shadow:0 0 0 3px rgba(var(--accent-rgb),.16),inset 0 0 0 1px rgba(255,255,255,.76)
}

.theme-dot.is-on::after{
  opacity:1;
  transform:scale(1)
}

.theme-dot.green{
  background:#60A07D
}

.theme-dot.blue{
  background:#4A8FE7
}

.theme-dot.red{
  background:#E94B5C
}

@media (max-width:720px){
  .theme-switcher{
    display:none
  }

  .theme-dot{
    width:32px;
    height:32px
  }
}

