* {
  box-sizing: border-box;
}

:root {
  --bg: #06090f;
  --bg-2: #0a1018;
  --panel: rgba(10, 15, 24, 0.84);
  --panel-strong: rgba(8, 12, 20, 0.92);
  --panel-border: rgba(72, 202, 255, 0.16);
  --text: #f4f8ff;
  --muted: #a8b7c8;
  --primary: #4ad7ff;
  --primary-2: #9ceeff;
  --danger: #ff6e90;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius: 26px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(74, 215, 255, 0.08), transparent 24%),
    radial-gradient(circle at 85% 30%, rgba(45, 116, 255, 0.10), transparent 24%),
    linear-gradient(180deg, #05080d 0%, #071018 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 95%);
  z-index: -3;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.16;
  pointer-events: none;
  z-index: -2;
}

.glow-a {
  width: 340px;
  height: 340px;
  background: #45d8ff;
  left: -100px;
  top: 10%;
}

.glow-b {
  width: 420px;
  height: 420px;
  background: #2457ff;
  right: -120px;
  top: 30%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 8, 13, 0.62);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand span {
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  transition: color .2s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.hero,
.members-hero {
  padding: 5rem 0 2.8rem;
}

.hero-grid,
.members-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .58rem .88rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 215, 255, 0.24);
  background: rgba(74, 215, 255, 0.12);
  color: var(--primary-2);
  font-size: .92rem;
  margin-bottom: 1rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
}

h1 span {
  color: var(--primary-2);
  text-shadow: 0 0 20px rgba(74, 215, 255, 0.14);
}

.hero p,
.members-hero p,
.section-head p,
.feature-card p,
.review-card p,
.review-summary p,
.members-info-card p,
.member-card p,
.member-count {
  color: var(--muted);
  line-height: 1.72;
}

.hero-actions,
.form-actions,
.footer-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  margin-top: 1.4rem;
}

.card,
.stat-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 1.3rem;
}

.glass {
  background:
    linear-gradient(180deg, rgba(74, 215, 255, 0.08), rgba(255,255,255,0.02)),
    var(--panel-strong);
  backdrop-filter: blur(18px);
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.hero-logo {
  width: min(100%, 470px);
  filter: drop-shadow(0 0 32px rgba(74, 215, 255, 0.18));
}

.stat-card {
  padding: 1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: .4rem;
}

.stat-card span {
  color: var(--muted);
}

.section {
  padding: 2.2rem 0 4rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  margin: .2rem 0 .55rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.expect-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 1rem;
  margin-top: 1rem;
}

.wide {
  grid-row: span 2;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: .9rem 0 0;
  display: grid;
  gap: .65rem;
}

.check-list.compact {
  gap: .55rem;
  margin-top: .8rem;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: .95rem 1.2rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  padding: .7rem 1rem;
  border-radius: 14px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1f9fff);
  color: #04121a;
  box-shadow: 0 12px 28px rgba(74, 215, 255, 0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.08);
}

.btn-danger {
  background: rgba(255, 110, 144, 0.14);
  color: #ffd5de;
  border: 1px solid rgba(255, 110, 144, 0.18);
}

.reviews-layout {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 1rem;
  align-items: start;
}

.review-summary {
  position: sticky;
  top: 94px;
}

.summary-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .95rem;
}

.summary-rating {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
  color: var(--primary-2);
}

.star-row,
.stars {
  letter-spacing: 1px;
  color: #ffd86d;
}

.star-row {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.review-form {
  display: grid;
  gap: .95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: .85rem;
}

label,
.filter-label {
  display: grid;
  gap: .45rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: .92rem 1rem;
  border-radius: 16px;
  font: inherit;
  outline: none;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(74, 215, 255, 0.46);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.review-message {
  min-height: 1.3rem;
  margin: .2rem 0 0;
  font-weight: 800;
}

.review-message.is-success { color: #aef5c6; }
.review-message.is-error { color: #ffb1c3; }
.review-message.is-info { color: var(--primary-2); }

.reviews-list {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.2rem;
}

.review-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .7rem;
}

.review-card time {
  color: var(--muted);
  font-size: .88rem;
}

.empty-state {
  text-align: center;
  padding: 2.1rem;
  color: var(--muted);
}

.members-toolbar {
  margin-bottom: 1rem;
}

.toolbar-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1rem;
  align-items: start;
}

.tag-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .5rem;
}

.tag-filter {
  appearance: none;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 999px;
  padding: .62rem .88rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, outline .18s ease;
}

.tag-filter:hover,
.tag-filter.is-active {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.tag-filter.is-active {
  outline: 2px solid rgba(255,255,255,0.15);
}

.member-count {
  margin: .2rem 0 1rem;
  font-weight: 700;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.member-card {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(74, 215, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.member-top {
  display: flex;
  align-items: center;
  gap: .95rem;
  margin-bottom: 1rem;
}

.member-avatar {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 1.55rem;
  font-weight: 900;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-meta h3 {
  margin: 0 0 .28rem;
  font-size: 1.15rem;
}

.member-role {
  color: var(--primary-2);
  font-weight: 800;
  margin-bottom: .15rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .86rem;
  font-weight: 800;
}

.members-info-card h3 {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  padding: 1.2rem 0 2rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-row p {
  margin: .35rem 0 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-grid,
  .members-hero-grid,
  .feature-grid,
  .expect-layout,
  .reviews-layout,
  .members-grid {
    grid-template-columns: 1fr 1fr;
  }

  .toolbar-grid {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .nav,
  .footer-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero,
  .members-hero,
  .section {
    padding-top: 2.1rem;
  }

  .hero-grid,
  .members-hero-grid,
  .feature-grid,
  .expect-layout,
  .reviews-layout,
  .members-grid,
  .hero-stats,
  .form-row {
    grid-template-columns: 1fr;
  }

  .review-summary {
    position: static;
  }

  .hero-visual {
    min-height: 300px;
  }
}


.compact-hero {
  padding-bottom: 1.2rem;
}

.members-simple-head {
  display: grid;
  gap: .5rem;
}

.members-simple-head h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1.05;
}

.members-simple-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
}

.members-section-tight {
  padding-top: .5rem;
}

.member-count-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.member-count-card strong {
  display: block;
  margin-bottom: .3rem;
}

.member-count-card .member-count {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-2);
}

.member-search-wrap {
  display: grid;
  gap: .45rem;
}

.review-page-layout {
  display: grid;
  gap: 1rem;
}

.review-form-card {
  display: grid;
  gap: 1rem;
}

.review-form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-form-head h2 {
  margin: 0 0 .35rem;
  font-size: 1.8rem;
}

.review-form-head p {
  margin: 0;
  color: var(--muted);
}

.review-summary-inline {
  text-align: right;
}

.review-summary-inline strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--primary-2);
}

.review-summary-inline span {
  color: var(--muted);
  font-weight: 700;
}

.large-stars {
  font-size: 1.5rem;
}

.rating-picker-wrap {
  display: grid;
  gap: .55rem;
}

.rating-picker {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.rating-star {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: rgba(255, 216, 109, 0.45);
  width: 56px;
  height: 56px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 900;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.rating-star:hover,
.rating-star.is-active {
  color: #ffd86d;
  border-color: rgba(255, 216, 109, 0.28);
  background: rgba(255, 216, 109, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .member-count-card {
    grid-template-columns: 1fr;
  }

  .review-form-head {
    align-items: start;
  }

  .review-summary-inline {
    text-align: left;
  }
}


/* v3 compact tuning + faded logo */
:root {
  --container: 1120px;
}

body {
  font-size: 15px;
}




.site-header .container.nav {
  padding: 0.8rem 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.brand strong {
  font-size: 1rem;
}

.brand span {
  font-size: 0.82rem;
}

.nav-links {
  gap: 0.8rem;
}

.nav-links a:not(.btn) {
  font-size: 0.98rem;
}

.hero,
.members-hero {
  padding: 4rem 0 2.1rem;
}

.section {
  padding: 1.7rem 0 3rem;
}

.pill {
  padding: .48rem .75rem;
  font-size: .84rem;
  margin-bottom: .75rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: .8rem;
}

.hero p,
.members-hero p,
.section-head p,
.feature-card p,
.review-card p,
.review-summary p,
.members-info-card p,
.member-card p,
.member-count,
.footer-row p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.hero-actions,
.form-actions,
.footer-actions {
  gap: .7rem;
  margin-top: 1rem;
}

.btn {
  padding: .82rem 1.05rem;
  border-radius: 14px;
  font-size: .96rem;
}

.btn-small {
  padding: .62rem .92rem;
  border-radius: 12px;
}

.hero-stats {
  gap: .75rem;
  margin-top: 1rem;
}

.card {
  padding: 1.05rem;
  border-radius: 22px;
}

.stat-card {
  padding: .9rem;
  border-radius: 22px;
}

.hero-visual {
  min-height: 380px;
}

.hero-logo {
  width: min(100%, 410px);
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: .45rem;
}

.feature-grid,
.expect-layout,
.reviews-layout,
.members-grid {
  gap: .85rem;
}

.check-list {
  gap: .5rem;
}

.review-summary {
  top: 82px;
}

.summary-rating {
  font-size: 2.8rem;
}

.star-row {
  font-size: 1.15rem;
  margin-bottom: .85rem;
}

.review-form {
  gap: .8rem;
}

.form-row {
  gap: .75rem;
}

label,
.filter-label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: .82rem .9rem;
  border-radius: 14px;
  font-size: .96rem;
}

textarea {
  min-height: 115px;
}

.review-card {
  padding: 1rem;
}

.review-card-top {
  margin-bottom: .55rem;
}

.member-card {
  padding: 1rem;
}

.member-top {
  gap: .8rem;
  margin-bottom: .8rem;
}

.member-avatar {
  width: 68px;
  height: 68px;
  min-width: 68px;
  border-radius: 18px;
  font-size: 1.35rem;
}

.member-meta h3 {
  font-size: 1.05rem;
  margin-bottom: .2rem;
}

.member-role {
  font-size: .95rem;
}

.tag-list {
  gap: .45rem;
  margin-top: .8rem;
}

.tag {
  padding: .44rem .66rem;
  font-size: .8rem;
}

.member-count-card {
  grid-template-columns: 180px 1fr;
  gap: .8rem;
  margin-bottom: .85rem;
}

.members-simple-head h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.members-simple-head p {
  font-size: 0.98rem;
}

.review-form-head h2 {
  font-size: 1.55rem;
}

.review-summary-inline strong {
  font-size: 1.8rem;
}

.large-stars {
  font-size: 1.3rem;
}

.rating-picker {
  gap: .4rem;
}

.rating-star {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  font-size: 1.65rem;
}

.site-footer {
  padding: 1rem 0 1.6rem;
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: 250px;
  }
   }



/* v6: filled circular hero logo */
.bg-logo-fade {
  display: none !important;
}

.hero-visual {
  min-height: 420px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.hero-visual.card,
.hero-visual.glass {
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-visual::before {
  content: "";
  width: min(520px, 86vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: absolute;
  background:
    radial-gradient(circle at 50% 42%, rgba(74, 215, 255, 0.12) 0%, rgba(74, 215, 255, 0.06) 36%, rgba(74, 215, 255, 0.015) 58%, rgba(74, 215, 255, 0) 72%),
    linear-gradient(180deg, rgba(74, 215, 255, 0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(74, 215, 255, 0.16);
  box-shadow:
    0 0 0 14px rgba(74, 215, 255, 0.03),
    0 0 70px rgba(74, 215, 255, 0.08),
    inset 0 0 30px rgba(74, 215, 255, 0.035);
}

.hero-visual .hero-logo {
  position: relative;
  z-index: 1;
  width: min(420px, 72vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(74, 215, 255, 0.14);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(74, 215, 255, 0.12);
  filter: none;
}

@media (max-width: 760px) {
  .hero-visual {
    min-height: 290px;
  }

  .hero-visual::before {
    width: min(360px, 84vw);
    box-shadow:
      0 0 0 10px rgba(74, 215, 255, 0.028),
      0 0 46px rgba(74, 215, 255, 0.08),
      inset 0 0 22px rgba(74, 215, 255, 0.04);
  }

  .hero-visual .hero-logo {
    width: min(250px, 66vw);
  }
}

