:root{
  --bg:#07080a;
  --fg:#f5f7fb;
  --muted:rgba(245,247,251,.74);
  --line:rgba(255,255,255,.14);
  --glass:rgba(255,255,255,.12);
  --glassBorder:rgba(255,255,255,.20);
}

*{box-sizing:border-box}

body{
  margin:0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.10), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.07), transparent 20%),
    linear-gradient(180deg,#050505 0%,#0b0c10 45%,#111317 100%);
  color:var(--fg);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Segoe UI","Noto Sans JP","Hiragino Sans",sans-serif;
}

.wrap{max-width:1180px;margin:0 auto;padding:28px 16px 108px;}
.top{display:grid;grid-template-columns:.85fr 1.15fr;gap:22px;align-items:start;}
@media (max-width:860px){.top{grid-template-columns:1fr;}}

.hero{
  max-width:560px;
  margin:0 auto;

  position:relative;
  aspect-ratio: 3/4;
  min-height:auto;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0d0d0d;
  box-shadow:0 24px 90px rgba(0,0,0,.35);
}
@media (max-width:860px){
  .hero{min-height:42svh;}
  max-width:560px;
  margin:0 auto;

}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.10), transparent 26%),
    linear-gradient(180deg, rgba(7,8,10,.12) 0%, rgba(7,8,10,.36) 45%, rgba(7,8,10,.68) 100%);
  z-index:1;
  pointer-events:none;
}

.hero-video{
  object-position: 50% 20%;

  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:grayscale(1) contrast(1.08) brightness(.60);
  z-index:0;
  background:#0d0d0d;
}

.badge{
  position:absolute;
  left:16px;
  top:16px;
  background:rgba(0,0,0,.36);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
  z-index:3;
}
.badge .icons{
  display:inline-flex;
  gap:6px;
  padding-left:10px;
  border-left:1px solid rgba(255,255,255,.14);
  opacity:.95;
}

.hero-glass{
  position:absolute;
  z-index:3;
  min-width:220px;
  max-width:min(320px,72%);
  padding:15px 16px;
  border-radius:22px;
  backdrop-filter:blur(22px) saturate(160%);
  -webkit-backdrop-filter:blur(22px) saturate(160%);
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border:1px solid var(--glassBorder);
  box-shadow:0 20px 60px rgba(0,0,0,.24);
  color:#fff;
  opacity:0;
  transform:translateY(12px) scale(.985);
  transition:opacity .7s ease, transform .7s ease;
  pointer-events:none;
}

.hero-glass small{
  display:block;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,.74);
  margin-bottom:6px;
}

.hero-glass strong{
  display:block;
  font-size:18px;
  line-height:1.35;
  font-weight:750;
}

.hero-glass.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

.g1{top:19%;left:4%;}
.g2{top:34%;right:4%;}
.g3{bottom:22%;left:7%;}
.g4{bottom:10%;right:6%;}

@media (max-width:860px){
  .hero-glass{min-width:0;max-width:74%;}
  .g1{top:18%;left:4%;}
  .g2{top:34%;right:4%;}
  .g3{bottom:24%;left:4%;}
  .g4{bottom:10%;right:4%;}
}

.proof{
  margin:14px auto 0;
  max-width:92%;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.proof img{
  display:block;
  width:100%;
  height:auto;
  filter:grayscale(1) contrast(1.02);
  opacity:.82;
}
.proofCap{
  padding:10px 12px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}
.proofCap strong{color:var(--fg)}

.panel{
  border-radius:28px;
  border:1px solid var(--line);
  padding:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);
  box-shadow:0 24px 90px rgba(0,0,0,.24);
}

h1{margin:0 0 12px;font-size:32px;line-height:1.18;letter-spacing:-.02em}
h2{margin:20px 0 10px;font-size:16px;letter-spacing:.02em}
h3{margin:14px 0 6px;font-size:14px;letter-spacing:.02em}

.lead{margin:0 0 14px;color:var(--muted);line-height:1.8}
.lead strong{color:var(--fg)}
.tagline{margin:12px 0 0;font-weight:900;letter-spacing:.02em}
.meta{margin-top:12px;color:var(--muted);font-size:12px;letter-spacing:.06em;text-transform:uppercase}

.links{display:flex;flex-direction:column;gap:12px;margin-top:16px}
.link-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:16px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  backdrop-filter:blur(14px) saturate(145%);
  -webkit-backdrop-filter:blur(14px) saturate(145%);
  text-decoration:none;
  color:var(--fg);
  transition:transform .24s ease, background .24s ease, border-color .24s ease;
  cursor:pointer;
  user-select:none;
}
.link-card:hover{
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.28);
}
.link-card .icon{font-size:16px;opacity:.95;display:flex;align-items:center;justify-content:center}
.link-card .label{flex:1;font-weight:850}
.link-card .sub{display:block;font-size:12px;color:var(--muted);font-weight:650;margin-top:3px}
.link-card .arrow{opacity:.6;transition:.2s}
.link-card:hover .arrow{opacity:1;transform:translateX(4px)}

.ig-cta{
  border-color:rgba(255,255,255,.20);
  background:linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
}
.ig-glyph{width:22px;height:22px;display:block;flex:0 0 auto}

.chips{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0 0}
.chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--fg);
  font-size:12px;
  letter-spacing:.02em;
}
.chip .dot{width:6px;height:6px;border-radius:999px;background:rgba(246,247,251,.55);display:inline-block}

ul{margin:8px 0 0 18px;color:var(--muted);line-height:1.8}
li strong{color:var(--fg)}
.small{font-size:12px;color:var(--muted);line-height:1.7}
.small a{color:var(--fg);text-decoration:underline;text-underline-offset:2px}

details{
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.05);
  padding:12px 14px;
  margin:10px 0;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
summary{
  cursor:pointer;
  font-weight:800;
  outline:none;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details[open]{background:rgba(255,255,255,.08)}
.faq-a{margin-top:8px;color:var(--muted);line-height:1.75}

.hr{height:1px;background:rgba(255,255,255,.12);margin:18px 0}

.mono{
  margin-top:18px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  padding:14px;
  background:rgba(0,0,0,.28);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:13px;
  line-height:1.65;
  white-space:pre-wrap;
}
.k{color:#9ad1ff}
.v{color:#b6f7c1}
.s{color:#ffd1a6}

.sticky-ig{
  position:fixed;left:0;right:0;bottom:0;
  padding:10px 12px;
  background:rgba(11,12,16,.72);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.12);
  display:none;
  z-index:50;
}
.sticky-ig a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 15px;
  border-radius:16px;
  text-decoration:none;
  color:var(--fg);
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
  font-weight:900;
  letter-spacing:.02em;
}
.sticky-ig small{
  display:block;
  color:var(--muted);
  font-weight:650;
  margin-top:2px;
}
@media (max-width:860px){
  .sticky-ig{display:block}
  .wrap{padding-bottom:118px}
}

/* ===== hide AIO / helper blocks ===== */
.panel .mono,
.panel > p.small:last-of-type{
  display:none !important;
}
/* ===== /hide ===== */


/* ===== ensure hero video visible ===== */
.hero-video{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  z-index:1 !important;
}
/* ===== /ensure ===== */


/* ===== right panel polish v1 ===== */
@media (min-width: 861px){
  .panel{
    padding:26px 26px 24px;
    border-radius:30px;
  }

  h1{
    font-size:clamp(30px, 3.2vw, 52px);
    line-height:1.08;
    letter-spacing:-.035em;
    margin:0 0 14px;
    max-width:11ch;
  }

  .lead{
    font-size:16px;
    line-height:1.82;
    color:rgba(245,247,251,.82);
    margin-bottom:16px;
  }

  .chips{
    gap:8px;
    margin-top:12px;
    margin-bottom:8px;
  }

  .chip{
    padding:8px 11px;
    font-size:11px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.13);
  }

  .tagline{
    margin:14px 0 0;
    font-size:15px;
    line-height:1.6;
  }

  .links{
    gap:11px;
    margin-top:16px;
  }

  .link-card{
    padding:14px 15px;
    border-radius:16px;
  }

  .link-card .label{
    font-size:15px;
    line-height:1.35;
  }

  .link-card .sub{
    font-size:11px;
    margin-top:4px;
  }

  .meta{
    margin-top:14px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.10);
    font-size:11px;
    letter-spacing:.08em;
  }

  h2{
    margin:18px 0 10px;
    font-size:15px;
    line-height:1.4;
  }

  ul{
    margin:6px 0 0 18px;
    line-height:1.72;
  }

  .small{
    font-size:12px;
    line-height:1.62;
  }

  details{
    padding:11px 13px;
    margin:8px 0;
    border-radius:14px;
    background:rgba(255,255,255,.04);
  }

  summary{
    font-size:13px;
    line-height:1.45;
  }

  .faq-a{
    font-size:13px;
    line-height:1.7;
  }

  .hr{
    margin:16px 0;
  }
}
/* ===== /right panel polish v1 ===== */

