:root {
  color-scheme: light;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-dark: #0c1231;
  --bg-light: #f5f7fb;
  --accent: #6a5be2;
  --accent-strong: #4b39d3;
  --accent-soft: rgba(106, 91, 226, 0.12);
  --primary: #ff8a65;
  --gradient-1: linear-gradient(135deg, #6a5be2, #8f75ff);
  --gradient-2: linear-gradient(135deg, #ff8a65, #ff6374);
  --text-main: #1a1d2f;
  --text-muted: #63667b;
  --border-light: rgba(255, 255, 255, 0.15);
  --card-bg: rgba(255, 255, 255, 0.9);
  --spacing: clamp(16px, 1.5vw, 24px);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  background-color: var(--bg-dark);
  color: var(--text-main);
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: radial-gradient(circle at 10% 10%, rgba(106, 91, 226, 0.18), transparent 50%),
    radial-gradient(circle at 90% 20%, rgba(255, 138, 101, 0.18), transparent 55%),
    var(--bg-dark);
  color: var(--text-main);
  line-height: 1.75;
  overflow-x: hidden;
}

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

.no-wrap {
  white-space: nowrap;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3vw, 36px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  position: sticky;
  top: 0;
  background: rgba(12, 18, 49, 0.8);
  backdrop-filter: blur(24px);
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.logo-image {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.logo-text strong {
  font-size: 1.1rem;
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  gap: 18px;
}

.site-nav a,
.site-nav .nav-signout {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-signout:hover,
.site-nav .nav-signout:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.cta-nav {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.site-nav .nav-signout {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 380px);
  gap: clamp(48px, 6vw, 120px);
  padding: clamp(90px, 12vw, 160px) clamp(28px, 8vw, 120px) clamp(90px, 11vw, 150px)
    clamp(24px, 5.5vw, 80px);
  border-radius: 36px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: radial-gradient(circle at 16% 18%, rgba(106, 91, 226, 0.55), rgba(12, 18, 49, 0.92) 60%),
    radial-gradient(circle at 82% 26%, rgba(255, 138, 101, 0.22), rgba(12, 18, 49, 0.9) 62%);
  box-shadow: 0 40px 80px rgba(8, 15, 40, 0.45);
  overflow: visible;
  color: #f8fafc;
  align-items: start;
}

.hero-orbs {
  position: absolute;
  inset: -10% -6% -20% -16%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.hero-orb.orb-lg {
  width: 320px;
  height: 320px;
  top: -6%;
  right: 4%;
  background: var(--gradient-1);
}

.hero-orb.orb-md {
  width: 220px;
  height: 220px;
  bottom: 18%;
  left: 8%;
  background: var(--gradient-2);
}

.hero-orb.orb-sm {
  width: 140px;
  height: 140px;
  bottom: -8%;
  right: 28%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  max-width: 540px;
  justify-items: start;
}

.hero-topline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.82);
  white-space: nowrap;
}



.mobile-break {
  display: inline;
  white-space: nowrap;
}

.hero-topline::before,
.hero-topline::after {
  content: "";
  width: clamp(60px, 8vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, rgba(226, 232, 240, 0), rgba(147, 197, 253, 0.8));
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 4.3vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.headline-inline {
  white-space: nowrap;
}

.hero h1 strong {
  display: inline-block;
  background: linear-gradient(90deg, #0ea5e9, #8b5cf6);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
}

.hero-copy {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 520px;
}

.hero-actions {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: rgba(226, 232, 240, 0.75);
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero .video-card {
  position: relative;
  z-index: 1;
  padding: 16px;
  border-radius: 28px;
  background: rgba(12, 18, 49, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px rgba(8, 15, 40, 0.35);
  width: clamp(300px, 32vw, 360px);
  justify-self: end;
  margin-right: clamp(-80px, -8vw, -20px);
}

.video-still {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: radial-gradient(circle at 20% 12%, rgba(106, 91, 226, 0.35), rgba(12, 18, 49, 0.85) 65%);
  box-shadow: inset 0 -40px 80px rgba(8, 15, 40, 0.55);
}

.video-still::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(12, 18, 49, 0), rgba(12, 18, 49, 0.42));
  pointer-events: none;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: rgba(8, 15, 40, 0.85);
  border: none;
  border-radius: inherit;
}

@supports not (aspect-ratio: 1 / 1) {
  .video-still {
    position: relative;
    padding-top: 178%;
  }

  .video-player {
    position: absolute;
    inset: 0;
    height: 100%;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: clamp(70px, 10vw, 120px) clamp(20px, 6vw, 68px);
    gap: clamp(32px, 5vw, 52px);
  }

  .hero-content {
    align-items: center;
    text-align: center;
    justify-items: center;
  }

  .hero-topline {
    justify-content: center;
    white-space: normal;
    letter-spacing: 0.18em;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .headline-inline {
    white-space: normal;
  }

  .hero-actions,
  .hero-highlights {
    justify-content: center;
  }

  .hero .video-card {
    width: clamp(260px, 70vw, 360px);
    justify-self: center;
    margin-right: 0;
  }

  .pricing-title {
    white-space: normal;
    text-align: center;
  }

  .about-copy {
    white-space: normal;
  }

  #member-auth .section-header h2 {
    white-space: normal;
    text-align: center;
  }

  .team-card,
  .team-card.compact {
    grid-template-columns: 1fr;
  }

  .team-profile {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.primary-btn {
  background: var(--gradient-2);
  color: #fff;
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ghost-btn {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid rgba(106, 91, 226, 0.4);
}

.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.hero-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.75;
}

.orb-1 {
  width: 240px;
  height: 240px;
  background: var(--gradient-1);
  top: 0;
  right: 0;
}

.orb-2 {
  width: 160px;
  height: 160px;
  background: var(--gradient-2);
  bottom: 20%;
  left: 28%;
}

.orb-3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent);
  top: 40%;
  left: -20%;
}

.hero-card {
  position: relative;
  background: rgba(12, 18, 49, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 320px;
  margin: 60px auto 0;
  backdrop-filter: blur(22px);
  z-index: 2;
}

.hero-card h2 {
  margin: 0 0 12px;
}

.hero-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.85;
}

.hero-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 9px;
}

.section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 92px);
  margin-bottom: clamp(32px, 4vw, 56px);
  box-shadow: 0 32px 48px rgba(12, 18, 49, 0.15);
}

.section.highlight {
  background: linear-gradient(135deg, rgba(106, 91, 226, 0.14), rgba(255, 138, 101, 0.2));
  color: #fefcff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(12, 18, 49, 0.3);
}

.section.highlight .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.section.soft {
  background: linear-gradient(180deg, rgba(106, 91, 226, 0.08), rgba(12, 18, 49, 0.04));
  border: 1px solid rgba(148, 163, 184, 0.14);
  box-shadow: 0 24px 42px rgba(12, 18, 49, 0.18);
}

.section.soft .section-header p,
.section.soft .form-note,
.section.soft label,
.section.soft select,
.section.soft input,
.section.soft textarea {
  color: rgba(255, 255, 255, 0.88);
}

.section.soft .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

.section.highlight#contact label,
.section.highlight#contact .btn.disabled {
  color: rgba(26, 29, 47, 0.85);
}

.section.highlight#contact .btn.disabled {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.25);
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 12px 24px rgba(12, 18, 49, 0.18);
}

.section.soft .join-title {
  color: #fff;
}

.pricing-title {
  white-space: nowrap;
}

.experts-title {
  white-space: nowrap;
}

.about-copy {
  white-space: normal;
}

.section.soft .join-form {
  background: #0c132f;
  color: #e7e9ff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
  max-width: 620px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section.accent .section-header {
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent-strong);
}

.section.accent .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.section-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: inherit;
}
#member-auth .section-header h2 {
  color: #ffffff;
  white-space: normal;
}

.section-header p {
  color: var(--text-muted);
  margin: 0;
}

#member-auth .join-copy span {
  display: block;
  margin-bottom: 4px;
  color: rgba(244, 247, 255, 0.88);
}

#member-auth .join-copy span:last-child {
  margin-bottom: 0;
}

.section.accent .section-header p {
  color: rgba(231, 233, 255, 0.8);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.feature-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.vision-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: start;
}

.vision-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.vision-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.vision-points li::before {
  content: "◯";
  color: var(--primary);
  font-size: 0.8rem;
}

.vision-timeline {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vision-timeline h3 {
  margin-top: 0;
}

.vision-timeline ol {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.vision-timeline li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 22px;
}

.vision-timeline strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.vision-timeline li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 6px;
}

.join-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.join-form,
.contact-form {
  background: rgba(245, 247, 251, 0.95);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(106, 91, 226, 0.12);
}

.contact-centered {
  align-items: center;
  text-align: center;
  gap: 18px;
  color: #1a1d2f;
}

.contact-centered h2 {
  margin: 0;
  color: inherit;
}

.contact-centered p {
  margin: 0;
  color: inherit;
}

.contact-form .btn.contact-submit-btn,
.contact-form .btn.contact-submit-btn:visited {
  background: #ffffff;
  color: #1a1d2f !important;
  border: 1px solid rgba(26, 29, 47, 0.2);
  text-decoration: none;
}

.contact-form .btn.contact-submit-btn:hover,
.contact-form .btn.contact-submit-btn:focus-visible {
  background: #f3f4f7;
  color: #1a1d2f !important;
}

.contact-form .contact-note {
  font-size: 0.85rem;
  color: #1a1d2f;
}

.team-section {
  background: linear-gradient(180deg, rgba(253, 253, 255, 0.98), rgba(244, 247, 255, 0.92));
  border: 1px solid rgba(106, 91, 226, 0.08);
  padding: clamp(36px, 6vw, 72px);
}

.team-card,
.team-card.compact {
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: clamp(18px, 3vw, 36px);
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  align-items: start;
}

.team-photo {
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle at 25% 15%, rgba(106, 91, 226, 0.22), rgba(255, 182, 139, 0.08));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 22px rgba(12, 18, 49, 0.15);
  aspect-ratio: 1 / 1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-profile-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-role {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--accent-strong);
  margin: 0;
  text-transform: uppercase;
}

.team-name {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
  color: var(--text-main);
}

.team-title {
  margin: -4px 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(26, 29, 47, 0.75);
}

.team-lede {
  margin: 0;
  color: rgba(15, 23, 42, 0.85);
  line-height: 1.7;
}

.team-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-badges li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(106, 91, 226, 0.15);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.team-meta {
  background: rgba(247, 248, 253, 0.98);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  border: 1px solid rgba(106, 91, 226, 0.12);
}

.team-meta h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 29, 47, 0.8);
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(106, 91, 226, 0.2);
  background: #fff;
  font-size: 0.85rem;
  color: var(--text-main);
}

.team-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-main);
  line-height: 1.6;
}

.team-list.compact-list {
  padding-left: 16px;
}

.team-history-block {
  padding: 18px 20px;
}

.team-history-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.team-history-list li {
  padding-left: 18px;
  position: relative;
}

.team-history-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 9px;
}

.team-note {
  font-size: 0.85rem;
  color: rgba(26, 29, 47, 0.7);
  margin: 4px 0 0;
}

.join-form h3 {
  margin: 0;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid rgba(26, 29, 47, 0.12);
  padding: 12px 16px;
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.join-info {
  display: grid;
  gap: 20px;
}

.info-card {
  background: rgba(245, 247, 251, 0.6);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(12, 18, 49, 0.08);
}

.info-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.info-card li {
  margin-bottom: 8px;
}

.join-guide {
  background: rgba(12, 18, 49, 0.78);
  color: rgba(235, 238, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.join-guide .form-note {
  color: rgba(235, 238, 255, 0.8);
}

.join-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(235, 238, 255, 0.88);
}

.join-steps li {
  line-height: 1.7;
}

.join-cta {
  margin-top: 18px;
}

.join-hint {
  color: rgba(235, 238, 255, 0.75);
}

.member-header .logo-text small {
  color: rgba(255, 255, 255, 0.6);
}

.member-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  padding: clamp(60px, 10vw, 100px) clamp(20px, 4vw, 40px);
  background: radial-gradient(circle at 20% 20%, rgba(106, 91, 226, 0.18), transparent 50%),
    radial-gradient(circle at 80% 12%, rgba(255, 138, 101, 0.18), transparent 55%), rgba(12, 18, 49, 0.85);
  border-radius: var(--radius-lg);
  margin-bottom: clamp(48px, 8vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 80px rgba(10, 15, 40, 0.35);
}

.member-hero-content h1 {
  margin-top: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #fff;
}

.member-hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.member-hero-copy {
  color: rgba(244, 247, 255, 0.85);
  font-size: 1.05rem;
}

.member-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.member-alert {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 211, 112, 0.4);
  background: rgba(255, 211, 112, 0.18);
  color: rgba(255, 238, 200, 0.95);
  font-size: 0.95rem;
}

.member-summary {
  background: rgba(12, 18, 49, 0.72);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 247, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.member-summary h2 {
  margin: 0;
  font-size: 1.3rem;
}

.member-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.member-summary li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.summary-label {
  font-size: 0.9rem;
  color: rgba(244, 247, 255, 0.78);
}

.member-summary strong {
  font-size: 1.4rem;
  color: #fff;
}

.member-section {
  margin-bottom: clamp(56px, 9vw, 88px);
}

.member-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.member-card {
  background: rgba(245, 247, 251, 0.9);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(106, 91, 226, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.member-card.accent {
  background: linear-gradient(135deg, rgba(106, 91, 226, 0.18), rgba(106, 91, 226, 0.06));
  border: 1px solid rgba(106, 91, 226, 0.28);
}

.member-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.member-card .btn {
  align-self: flex-start;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(106, 91, 226, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.profile-details {
  margin: 0;
  display: grid;
  gap: 16px;
}

.profile-details div {
  display: grid;
  gap: 4px;
}

.profile-details dt {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.profile-details dd {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.6;
  white-space: pre-line;
}

.profile-form {
  background: rgba(12, 18, 49, 0.82);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 14px;
  color: rgba(244, 247, 255, 0.92);
}

.profile-form input,
.profile-form textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.profile-form input::placeholder,
.profile-form textarea::placeholder {
  color: rgba(244, 247, 255, 0.65);
}

.profile-form textarea {
  resize: vertical;
  min-height: 120px;
}

.profile-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-form-actions .btn {
  flex: 1;
  min-width: 140px;
}

.profile-form-message {
  min-height: 1.4em;
  font-size: 0.9rem;
  color: rgba(244, 247, 255, 0.8);
}
.profile-form-message[data-variant="success"] {
  color: #98f7c2;
}
.profile-form-message[data-variant="error"] {
  color: #ffd5d5;
}

.member-events {
  display: grid;
  gap: 24px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 24px;
  background: rgba(245, 247, 251, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 18, 49, 0.08);
  padding: clamp(20px, 3vw, 28px);
}

.event-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-strong);
}

.event-date span {
  font-size: 1.6rem;
}

.event-date small {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-body h3 {
  margin: 0 0 8px;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.video-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid rgba(106, 91, 226, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-card.upcoming {
  background: rgba(12, 18, 49, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(244, 247, 255, 0.9);
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(12, 18, 49, 0.75);
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-thumb.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(106, 91, 226, 0.18), rgba(255, 138, 101, 0.18));
}

.video-thumb.placeholder span {
  background: rgba(12, 18, 49, 0.65);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.video-body {
  overflow-x: hidden;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.video-card.upcoming .video-body {
  overflow-x: hidden;
  color: rgba(244, 247, 255, 0.92);
}

.video-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.video-card.upcoming .video-meta {
  color: rgba(244, 247, 255, 0.7);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(106, 91, 226, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-card .btn {
  align-self: flex-start;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
  background: rgba(12, 18, 49, 0.7);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(244, 247, 255, 0.9);
}

.support-grid.single {
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
}

.support-contact {
  background: rgba(8, 12, 34, 0.65);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-contact.full h2 {
  color: #fff;
}

.member-footer {
  margin-top: 60px;
}

#member-auth .join-copy span {
  display: block;
  margin-bottom: 4px;
  color: rgba(244, 247, 255, 0.88);
}

#member-auth .join-copy span:last-child {
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(106, 91, 226, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.plan-card li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  color: var(--text-muted);
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(106, 91, 226, 0.1);
  padding: 6px 12px;
  border-radius: 99px;
}

.plan-badge.popular {
  background: rgba(255, 99, 116, 0.12);
  color: #ff5162;
}

.plan-card.featured {
  border: 2px solid rgba(255, 99, 116, 0.5);
  box-shadow: 0 24px 36px rgba(255, 99, 116, 0.25);
}

.plan-card:hover,
.plan-card.hovered {
  transform: translateY(-6px);
  box-shadow: 0 26px 40px rgba(12, 18, 49, 0.18);
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 18px 0;
  color: var(--text-main);
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.expert-card {
  background: rgba(245, 247, 251, 0.8);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 18, 49, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expert-avatar {
  align-self: flex-start;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(106, 91, 226, 0.15);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.expert-focus {
  color: var(--text-muted);
  font-size: 0.95rem;
}

details {
  background: rgba(245, 247, 251, 0.9);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  border: 1px solid rgba(106, 91, 226, 0.1);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 48px 0 60px;
  font-size: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-links {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.auth-wrapper {
  display: grid;
  gap: 28px;
  background: rgba(12, 18, 49, 0.72);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 80px rgba(10, 15, 40, 0.35);
}

.auth-panel {
  background: rgba(16, 23, 54, 0.88);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: rgba(244, 247, 255, 0.96);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-heading {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(244, 247, 255, 0.95);
}

.auth-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 12, 34, 0.65);
  font-weight: 700;
}

.auth-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(244, 247, 255, 0.85);
}

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.auth-form input::placeholder {
  color: rgba(244, 247, 255, 0.7);
}

.auth-form input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.auth-password-note,
.auth-social-note,
.auth-session-note {
  font-size: 0.82rem;
  color: rgba(244, 247, 255, 0.75);
  line-height: 1.6;
}

.auth-form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-form-actions .btn {
  width: 100%;
}

.auth-message {
  min-height: 1.6em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.auth-message[data-variant="error"] {
  color: #ffb4b4;
}

.auth-message[data-variant="success"] {
  color: #8ce9b1;
}

.auth-message[data-variant="loading"] {
  color: #ffe08a;
}

.auth-session-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: rgba(8, 12, 34, 0.65);
  color: rgba(244, 247, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 14px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(244, 247, 255, 0.8);
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.05)
  );
}

.auth-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(8, 12, 34, 0.6);
}

.auth-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-google-btn {
  background: #fff;
  color: #1a1d2f;
  font-size: 1.1rem;
}

.auth-google-btn:hover,
.auth-google-btn:focus-visible {
  background: #f3f4f7;
  color: #1a1d2f;
}

.auth-session-email,
.auth-session-provider {
  font-size: 0.9rem;
  color: rgba(244, 247, 255, 0.9);
}

.auth-verification {
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 211, 112, 0.16);
  color: rgba(255, 230, 170, 0.95);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-session-actions .btn {
  width: 100%;
}

@media (min-width: 960px) {
  .auth-wrapper {
    grid-template-columns: minmax(0, 1fr);
  }

  .auth-form-actions {
    flex-direction: row;
  }

  .auth-form-actions .btn {
    flex: 1;
  }

  .auth-session-actions .btn {
    width: auto;
    align-self: flex-start;
  }
}

@media (max-width: 599px) {
  .auth-wrapper {
    padding: 20px;
  }

  .auth-google-btn {
    font-size: 0.95rem;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .site-header {
    gap: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .member-hero {
    padding: 36px 20px;
  }

  .member-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .support-grid {
    padding: 24px;
  }

  .profile-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .profile-form-actions .btn {
    width: 100%;
  }

  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: clamp(20px, 3vw, 36px);
    flex-direction: column;
    background: rgba(12, 18, 49, 0.95);
    padding: 16px 22px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 12px;
  }

  .site-nav .nav-signout {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 42px 28px;
  }

  .hero-card {
    margin-top: 20px;
  }
}


@media (max-width: 720px) {
  .team-name {
    text-align: center;
  }

  .team-title {
    text-align: center;
  }

  .team-profile-body {
    text-align: center;
  }

  .team-info {
    text-align: left;
  }
}

@media (max-width: 600px) {
  .mobile-break {
    display: block;
    white-space: normal;
    text-align: center;
  }

  
  .hero h1 {
    font-size: 2.4rem;
    text-align: center;
  }

  .hero-copy {
    font-size: 0.95rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-topline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.14em;
    white-space: normal;
    text-align: center;
  }

  .hero-topline::before,
  .hero-topline::after {
    display: none;
  }

  .headline-inline {
    white-space: normal;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-actions .btn {
    width: clamp(220px, 70%, 320px);
  }

  .hero-highlights {
    flex-direction: column;
    align-items: center;
  }

  .page-shell {
    padding: 0 18px;
  }

  .member-summary li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .site-footer {
    padding: 36px 0 44px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .footer-links a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
  }
}
.plan-card h3 {
  margin: 18px 0 8px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-strong);
}

.plan-card.featured h3 {
  color: #ff5162;
}

/* === Blog layout v2 overrides === */
.blog-main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: clamp(32px, 4vw, 72px) 0 96px;
}

.blog-hero-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, rgba(106, 91, 226, 0.3), rgba(12, 18, 49, 0.9));
  border-radius: 32px;
  padding: clamp(36px, 4vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-text .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-text h1 {
  color: #fff;
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.hero-text p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px 22px;
  color: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stat strong {
  color: #fff;
  font-size: 1.6rem;
}

.blog-layout-simple {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

@media (max-width: 960px) {
  .blog-layout-simple {
    grid-template-columns: 1fr;
  }
}

.blog-feed-panel {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(12, 18, 49, 0.08);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-feed-display {
  min-height: 0;
  max-height: none;
  overflow: visible;
  padding: 0;
}

.blog-feed-entry {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 28px;
  border: 1px solid rgba(12, 18, 49, 0.08);
  background: #fff;
  padding: clamp(20px, 3vw, 36px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.blog-feed-body {
  flex: 1;
  line-height: 1.8;
}

.blog-feed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-feed-tags span {
  background: rgba(106, 91, 226, 0.12);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.85rem;
}

.blog-feed-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.blog-sidebar-simple {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: rgba(12, 18, 49, 0.75);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.blog-title-list,
.blog-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-title-list button,
.blog-category-list button {
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.blog-title-list button.active,
.blog-category-list button.active {
  background: rgba(255, 255, 255, 0.2);
}

.blog-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tag-cloud button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}

.blog-tag-cloud button.active {
  background: rgba(255, 255, 255, 0.2);
}

.blog-feed-display::-webkit-scrollbar,
.blog-feed-body::-webkit-scrollbar {
  width: 6px;
}

.blog-feed-display::-webkit-scrollbar-thumb,
.blog-feed-body::-webkit-scrollbar-thumb {
  background: rgba(12, 18, 49, 0.2);
  border-radius: 999px;
}

@media (max-width: 640px) {
  .blog-hero-simple {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

.partner-section .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.partner-section .section-header {
  color: #fff;
}

.partner-section .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

.partner-card {
  padding: 20px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.partner-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.partner-image {
  width: 260px;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(12, 18, 49, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  background: #fff;
}

.partner-name {
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}
