:root{
  --mint:#CFEFE8;
  --cream:#F6F1DE;
  --brown:#6B554B;
  --brown2:#4A3A34;
  --coral:#FF6B4A;
  --green:#A9D8A5;
  --blue:#4FA9E6;
  --yellow:#F2C84B;
  --card:#ffffff;
  --shadow: 0 14px 30px rgba(0,0,0,.10);
  --shadow2: 0 10px 20px rgba(0,0,0,.08);
  --r-xl: 26px;
  --r-lg: 20px;
  --r-md: 16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"M PLUS Rounded 1c", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color:var(--brown);
  background: linear-gradient(180deg, var(--mint), var(--cream));
}
a{color:inherit}
img{max-width:100%; display:block}

.skip{
  position:absolute; left:-999px; top:10px;
  background:#fff; padding:10px 14px; border-radius:12px;
  box-shadow: var(--shadow2);
}
.skip:focus{left:12px; z-index:9999}

.container{width:min(1080px, 92vw); margin:0 auto}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.38);
  border-bottom: 1px solid rgba(107,85,75,.12);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{display:flex; gap:10px; align-items:center; text-decoration:none}
.brand__icon{border-radius:12px; box-shadow: 0 10px 18px rgba(0,0,0,.10)}
.brand__name{font-weight:800; letter-spacing:.02em}

.nav{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.nav a{font-weight:700; text-decoration:none; opacity:.92}
.nav a:hover{opacity:1; text-decoration:underline}
.nav__cta{
  padding:10px 14px; border-radius:999px;
  background: rgba(169,216,165,.55);
  box-shadow: var(--shadow2);
  text-decoration:none;
}

.hero{padding:34px 0 10px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:center;
}
.kicker{
  display:inline-block;
  padding:8px 12px;
  background: rgba(255,255,255,.55);
  border-radius:999px;
  box-shadow: var(--shadow2);
  font-weight:700;
}
.hero__title{margin:14px 0 8px; line-height:1.05}
.hero__titleLine{display:block; font-weight:900; font-size: clamp(42px, 5vw, 62px)}
.t-blue{color:var(--blue); -webkit-text-stroke: 6px rgba(255,255,255,.9); paint-order: stroke fill;}
.t-yellow{color:var(--yellow); -webkit-text-stroke: 6px rgba(255,255,255,.9); paint-order: stroke fill; margin-left:.05em;}
.hero__lead{margin:0 0 16px; font-size: clamp(15px, 1.7vw, 18px); color: var(--brown2)}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin:8px 0 6px}
.badgeBtn{
  border:0; cursor:not-allowed;
  border-radius: 16px;
  padding:12px 14px;
  background: rgba(255,255,255,.74);
  box-shadow: var(--shadow2);
  min-width: 170px;
  text-align:left;
}
.badgeBtn--alt{background: rgba(255,255,255,.66)}
.badgeBtn__small{display:block; font-weight:800; font-size:12px; opacity:.75}
.badgeBtn__big{display:block; font-weight:900; font-size:18px; letter-spacing:.02em}
.note{margin:6px 0 0; font-size:13px; opacity:.9}

.hero__chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px}
.chip{
  padding:8px 10px; border-radius:999px;
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow2);
  font-weight:800; font-size:12px;
}

.hero__visual{position:relative; min-height:540px}
.phoneCard{
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.40);
  box-shadow: var(--shadow);
  padding:12px;
}
.phoneCard img{border-radius: 22px}
.floatCard{
  position:absolute;
  right:-22px;
  bottom:24px;
  width: 170px;
  border-radius: 24px;
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow);
  padding:12px;
  transform: rotate(4deg);
}

.section{padding:48px 0}
.section--soft{background: rgba(255,255,255,.22)}
.sectionTitle{
  margin:0;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight:900;
}
.sectionLead{margin:10px 0 20px; color: var(--brown2); line-height:1.8}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}

.card{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:16px 16px 14px;
}
.card h3{margin:0 0 6px; font-weight:900}
.card p{margin:0; line-height:1.75; color: var(--brown2)}

.steps{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.step{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:16px;
}
.step__num{
  width:40px; height:40px;
  display:grid; place-items:center;
  border-radius: 999px;
  background: rgba(255,107,74,.18);
  color: var(--coral);
  font-weight:900;
  margin-bottom:10px;
}
.step h3{margin:0 0 6px; font-weight:900}
.step p{margin:0; color: var(--brown2); line-height:1.75}

.tips{display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:18px; align-items:center}
.tips__card{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:16px;
}
.tips__card h3{margin:0 0 10px; font-weight:900}
.tips__card ul{margin:0; padding-left:18px; line-height:1.9; color: var(--brown2)}
.tips__shot img{border-radius: var(--r-xl); box-shadow: var(--shadow2)}

.modeCard{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:16px;
}
.modeCard h3{margin:0 0 4px; font-weight:900}
.modeCard__meta{margin:0 0 10px; font-weight:800; color: var(--coral)}
.modeCard p{margin:0; line-height:1.75; color: var(--brown2)}

.future{
  margin-top:14px;
  background: rgba(255,255,255,.58);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:16px;
  border: 1px dashed rgba(107,85,75,.22);
}
.future__title{font-weight:900; margin-bottom:10px}
.future__list{margin:0; padding-left:18px; line-height:2}
.pill{
  display:inline-block;
  padding:4px 10px;
  border-radius:999px;
  background: rgba(79,169,230,.14);
  font-weight:900;
}
.future__note{margin:10px 0 0; font-size:13px; opacity:.85}

.shots{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.shot{margin:0}
.shot img{border-radius: var(--r-xl); box-shadow: var(--shadow2)}
.shot figcaption{margin-top:10px; font-weight:900; opacity:.9}

.ctaPanel{
  margin-top:18px;
  background: rgba(255,255,255,.72);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow2);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.ctaPanel h3{margin:0 0 4px; font-weight:900}
.ctaPanel p{margin:0; color: var(--brown2)}
.mailBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius: 999px;
  background: rgba(169,216,165,.70);
  box-shadow: var(--shadow2);
  text-decoration:none;
  font-weight:900;
}

.faq{display:grid; gap:10px}
.faq__item{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:12px 14px;
}
.faq__item summary{cursor:pointer; font-weight:900; list-style:none}
.faq__item summary::-webkit-details-marker{display:none}
.faq__body{margin-top:10px; color: var(--brown2); line-height:1.8}

.final{padding-top:30px; padding-bottom:60px}
.final__inner{
  background: rgba(255,255,255,.58);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow);
  padding:22px;
  text-align:center;
}
.final__inner h2{margin:0; font-weight:900}
.final__inner p{margin:10px 0 16px; color: var(--brown2)}

.footer{padding:26px 0; border-top: 1px solid rgba(107,85,75,.12); background: rgba(255,255,255,.20)}
.footer__inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
.footer__brand{font-weight:900}
.footer__meta{opacity:.92}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{text-decoration:none; font-weight:800; opacity:.9}
.footer__links a:hover{text-decoration:underline; opacity:1}

/* ===== Document pages (privacy / terms / support) ===== */
.doc-hero{
  padding:36px 0 28px;
  text-align:center;
}
.doc-hero__back{
  display:inline-flex; align-items:center; gap:6px;
  font-weight:800; font-size:14px; text-decoration:none; opacity:.85;
  margin-bottom:14px;
}
.doc-hero__back:hover{opacity:1; text-decoration:underline}
.doc-hero h1{
  margin:0; font-weight:900;
  font-size: clamp(24px, 2.8vw, 36px);
}
.doc-hero__meta{
  margin:10px 0 0; font-size:13px; opacity:.8;
}

.doc{
  max-width:760px;
  margin:0 auto;
  padding:0 0 60px;
}
.doc h2{
  margin:40px 0 10px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight:900;
  padding-bottom:8px;
  border-bottom:2px solid rgba(107,85,75,.12);
}
.doc h3{
  margin:24px 0 8px;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight:900;
  color: var(--brown2);
}
.doc p{margin:0 0 12px; line-height:1.85; color: var(--brown2)}
.doc ul, .doc ol{margin:0 0 12px; padding-left:22px; color: var(--brown2); line-height:1.9}
.doc a{color: var(--coral); font-weight:700}
.doc a:hover{text-decoration:underline}

.doc-card{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:18px 20px;
  margin:14px 0;
}
.doc-card h3{margin:0 0 10px}
.doc-card p:last-child, .doc-card ul:last-child{margin-bottom:0}

.doc-table{
  width:100%; border-collapse:collapse; margin:12px 0 16px;
  font-size:14px;
}
.doc-table th{
  background: rgba(107,85,75,.08);
  padding:10px 12px; text-align:left; font-weight:900;
  border-bottom:2px solid rgba(107,85,75,.14);
}
.doc-table td{
  padding:10px 12px; border-bottom:1px solid rgba(107,85,75,.10);
  color: var(--brown2); line-height:1.7;
}
.doc-table tr:last-child td{border-bottom:none}

.doc-notice{
  background: rgba(242,200,75,.18);
  border-left:4px solid var(--yellow);
  border-radius:0 var(--r-md) var(--r-md) 0;
  padding:12px 16px; margin:16px 0;
  font-size:14px; color: var(--brown2); line-height:1.8;
}

/* Support FAQ */
.support-faq{display:grid; gap:10px; margin:14px 0}
.support-faq .faq__item{background: rgba(255,255,255,.72)}

/* Support contact cards */
.contact-grid{display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin:14px 0}
.contact-card{
  background: rgba(255,255,255,.72);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow2);
  padding:18px; text-align:center;
}
.contact-card__icon{font-size:28px; margin-bottom:8px}
.contact-card h3{margin:0 0 6px; font-weight:900; font-size:16px}
.contact-card p{margin:0 0 12px; font-size:13px; color: var(--brown2); line-height:1.7}
.contact-card a.mailBtn{font-size:13px; padding:10px 14px}

@media (max-width: 920px){
  .contact-grid{grid-template-columns:1fr}
}

@media (max-width: 920px){
  .hero__grid{grid-template-columns: 1fr}
  .hero__visual{min-height:auto}
  .floatCard{position:static; width: 180px; margin:12px auto 0; transform:none}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .tips{grid-template-columns:1fr}
  .shots{grid-template-columns:1fr}
  .nav{display:none}
}
