/* ---- Hero ---- */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 78% 18%, #FBF8F2 0%, #F4EFE5 46%, #ECE4D5 100%);
  overflow: hidden;
  padding: clamp(28px, 3.5vw, 48px) 0 clamp(36px, 4.5vw, 56px);
  min-height: calc(100vh - var(--head-h) - var(--bar-h));
  display: flex;
  align-items: center;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__orb--1 { width: 520px; height: 520px; top: -120px; right: -60px;
  background: radial-gradient(circle, rgba(199,163,100,0.34), transparent 70%); }
.hero__orb--2 { width: 460px; height: 460px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(36,64,92,0.16), transparent 70%); }
.hero__grain {
  position: absolute; inset: 0; opacity: 0.4; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.hero__in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: 56px; align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__title { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; margin: 14px 0 16px; max-width: 11.5em; }
.hero__sub { max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }

.hero__trust { display: flex; align-items: center; gap: 22px; margin-top: 28px; }
.hero__trust-item { display: flex; flex-direction: column; line-height: 1.3; }
.hero__trust-item strong { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.hero__trust-item span { font-size: 13px; color: var(--t-on-light-muted); }
.hero__trust-sep { width: 1px; height: 34px; background: linear-gradient(var(--mist), transparent); }

/* visual */
.hero__visual { position: relative; height: 520px; display: flex; align-items: center; justify-content: center; }
.hero__ring {
  position: absolute; width: 440px; height: 440px; border-radius: 50%;
  border: 1.5px solid rgba(156,123,62,0.4);
}
.hero__arc {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  border: 1.5px dashed rgba(36,64,92,0.18);
}
.hero__portrait {
  position: relative; width: 400px; height: 480px;
  border-radius: 220px 220px 26px 26px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: linear-gradient(180deg, #EDEFF2, #E4E7EB);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 92% 20%; }

.hero__chip {
  position: absolute;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--r);
  box-shadow: var(--sh);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 3px;
}
.hero__chip-k { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); }
.hero__chip-v { font-size: 12.5px; color: var(--t-on-light-soft); }
.hero__chip--name { left: -28px; top: 64px; }
.hero__chip--stat { right: -30px; bottom: 86px; max-width: 190px; }
.hero__stars { display: flex; gap: 3px; color: var(--gold-500); margin-bottom: 4px; }
.hero__stars svg { width: 13px; height: 13px; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t-on-light-muted); z-index: 3;
}
.hero__scroll svg { width: 18px; height: 18px; animation: bob 2s var(--ease) infinite; color: var(--gold-600); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

@media (max-width: 980px) {
  .hero__in { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { max-width: 100%; }
  .hero__sub { max-width: 100%; }
  .hero__visual { height: 480px; order: -1; }
  .hero__portrait { width: 320px; height: 400px; }
  .hero__ring { width: 360px; height: 360px; }
  .hero__arc { width: 410px; height: 410px; }
  .hero__scroll { display: none; }
}
@media (max-width: 560px) {
  .hero__trust { flex-wrap: wrap; gap: 16px; }
  .hero__visual { height: 420px; }
  .hero__portrait { width: 250px; height: 330px; }
  .hero__ring { width: 290px; height: 290px; }
  .hero__arc { width: 330px; height: 330px; }
  .hero__chip { padding: 11px 14px; }
  .hero__chip--name { left: 0; top: 28px; }
  .hero__chip--stat { right: 0; bottom: 40px; max-width: 170px; }
  .hero__cta .btn { flex: 1 1 auto; justify-content: center; }
}
