/* ==========================================================================
   Sugar Daddy Glasgow — main stylesheet
   Palette: light blue / white, soft & premium
   ========================================================================== */

:root {
  --blue-50:  #f2f9fd;
  --blue-100: #e3f2fb;
  --blue-200: #cbe9f7;
  --blue-300: #a3d7f0;
  --blue-400: #6fbde6;
  --blue-500: #3fa0d6;
  --blue-600: #2483bb;
  --blue-700: #1c6795;
  --blue-800: #184f72;
  --blue-900: #123a54;

  --ink:      #1c2b36;
  --ink-soft: #4a5c68;
  --white:    #ffffff;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 10px rgba(24, 79, 114, 0.08);
  --shadow-md: 0 10px 30px rgba(24, 79, 114, 0.12);
  --shadow-lg: 0 20px 50px rgba(24, 79, 114, 0.16);

  --container: 1160px;
  --font-body: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
  --font-head: "Georgia", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.2; color: var(--blue-900); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
.section--tint { background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%); }
.section--blue {
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 100%);
  color: var(--white);
}
.section--blue h2, .section--blue p { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  font-weight: 700;
  margin-bottom: 14px;
}
.section--blue .eyebrow { color: var(--blue-100); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.section--blue .section-head p { color: var(--blue-100); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--blue-700); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-ghost {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-200);
}
.btn-ghost:hover { border-color: var(--blue-500); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--blue-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue-800);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-400), var(--blue-700));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-700); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn { padding: 10px 22px; font-size: .92rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-200);
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--blue-700);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle::before { transform: translateY(-6px); position: absolute; }
.nav-toggle::after { transform: translateY(6px); position: absolute; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 22px;
  border-top: 1px solid var(--blue-100);
  background: var(--white);
}
.mobile-panel a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--blue-50);
}
.mobile-panel .nav-cta { flex-direction: column; margin-top: 12px; }
.mobile-panel .btn { width: 100%; }

body.nav-open .mobile-panel { display: flex; }
body.nav-open .nav-toggle span { opacity: 0; }
body.nav-open .nav-toggle::before { transform: rotate(45deg); }
body.nav-open .nav-toggle::after { transform: rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 20% 20%, var(--blue-100), transparent 55%),
              radial-gradient(circle at 85% 10%, var(--blue-200), transparent 45%),
              linear-gradient(180deg, var(--blue-50), var(--white));
  padding: 90px 0 70px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-600);
}
.hero .hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.hero--banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.hero-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,58,84,.15) 0%, rgba(18,58,84,.45) 55%, rgba(12,40,58,.88) 100%),
              linear-gradient(90deg, rgba(12,40,58,.55) 0%, rgba(12,40,58,.1) 55%);
}
.hero-banner-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 90px 24px 64px;
  color: var(--white);
}
.hero-banner-content .eyebrow { color: var(--blue-200); }
.hero-banner-content h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin-bottom: 20px;
}
.hero-banner-content h1 em {
  font-style: normal;
  color: var(--blue-300);
}
.hero-banner-content .hero-sub {
  font-size: 1.15rem;
  color: var(--blue-100);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-role-btn {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 26px;
  border-radius: var(--radius-md);
  min-width: 220px;
}
.hero-role-btn small {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
  font-weight: 700;
}
.hero-role-btn strong { font-size: 1.15rem; font-family: var(--font-head); }
.role-daddy { background: var(--blue-600); color: var(--white); box-shadow: var(--shadow-md); }
.role-daddy:hover { background: var(--blue-700); transform: translateY(-3px); }
.role-baby { background: rgba(255,255,255,.95); color: var(--blue-700); border: 2px solid transparent; }
.role-baby:hover { background: var(--white); transform: translateY(-3px); }

.hero-trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--blue-100);
  font-size: .88rem;
  font-weight: 600;
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 18px; height: 18px; color: var(--blue-300); flex-shrink: 0; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* ==========================================================================
   About
   ========================================================================== */
.about-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-panel {
  background: linear-gradient(160deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.about-panel ul { display: flex; flex-direction: column; gap: 20px; }
.about-panel li { display: flex; gap: 14px; align-items: flex-start; }
.about-panel .ico {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
}
.about-panel .ico svg { width: 20px; height: 20px; }
.about-panel strong { display: block; margin-bottom: 2px; }
.about-panel span { font-size: .88rem; color: var(--blue-100); }

.about-copy .lead {
  font-size: 1.35rem;
  font-family: var(--font-head);
  color: var(--blue-800);
  margin-bottom: 18px;
}
.about-copy p { color: var(--ink-soft); }
.about-copy strong { color: var(--blue-700); }

/* ==========================================================================
   Featured members
   ========================================================================== */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.member-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-100);
  transition: transform .18s ease, box-shadow .18s ease;
}
.member-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member-photo {
  aspect-ratio: 1/1;
  position: relative;
  background: var(--blue-200);
}
.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.member-photo .badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,.92);
  color: var(--blue-700);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.member-info { padding: 18px 20px 22px; }
.member-info h3 { margin-bottom: 2px; font-size: 1.05rem; }
.member-info .role { font-size: .82rem; color: var(--blue-600); font-weight: 700; margin-bottom: 10px; }
.member-info p { color: var(--ink-soft); font-size: .9rem; margin: 0; }

.members-note {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-soft);
  font-size: .92rem;
}

/* ==========================================================================
   Offline experience
   ========================================================================== */
.offline-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.offline-wrap p { color: var(--ink-soft); }

.offline-photo {
  border-radius: var(--radius-lg);
  background: var(--blue-200);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.offline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.offline-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6,16,26,0) 45%, rgba(6,16,26,.92) 100%);
  pointer-events: none;
}
.offline-photo .tag {
  position: absolute;
  z-index: 2;
  bottom: 22px; left: 22px; right: 22px;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ==========================================================================
   Success stories
   ========================================================================== */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-100);
  position: relative;
}
.story-quote-mark {
  font-family: var(--font-head);
  font-size: 3.4rem;
  color: var(--blue-200);
  line-height: 1;
  margin-bottom: -10px;
}
.story-title {
  font-size: 1.15rem;
  color: var(--blue-800);
  margin-bottom: 12px;
}
.story-card p.story-text {
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-style: italic;
}
.story-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--blue-100);
}
.story-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--blue-200);
}
.story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-person strong { display: block; }
.story-person span { font-size: .85rem; color: var(--blue-600); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--blue-800);
  cursor: pointer;
}
.faq-category {
  display: block;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-500);
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-question .plus {
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
  font-size: 1.1rem;
  font-weight: 700;
}
.faq-item.open .faq-question .plus { transform: rotate(45deg); background: var(--blue-600); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-banner p { max-width: 560px; margin: 0 auto 30px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--blue-900);
  color: var(--blue-100);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: var(--blue-200); font-size: .92rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.footer-social a:hover { background: var(--blue-600); }
.footer-social svg { width: 17px; height: 17px; }

.footer-col h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--blue-200); font-size: .93rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  color: var(--blue-300);
}
.footer-disclaimer {
  font-size: .78rem;
  color: var(--blue-400);
  margin-top: 10px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
}
.contact-info {
  background: linear-gradient(160deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.contact-info h2, .contact-form-card h2 { color: var(--white); margin-bottom: 10px; font-size: 1.17rem; }
.contact-form-card h2 { color: var(--blue-900); }
.contact-info p { color: var(--blue-100); }
.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
}
.contact-method .ico {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
}
.contact-method .ico svg { width: 20px; height: 20px; }
.contact-method strong { display: block; margin-bottom: 2px; }
.contact-method a, .contact-method span { color: var(--blue-100); font-size: .95rem; }
.contact-method a:hover { color: var(--white); text-decoration: underline; }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue-800);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--blue-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--ink);
  background: var(--blue-50);
  transition: border-color .15s ease, background .15s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .9rem;
  display: none;
}
.form-status.visible { display: block; }

/* ==========================================================================
   404 page
   ========================================================================== */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: radial-gradient(circle at 30% 20%, var(--blue-100), transparent 55%),
              radial-gradient(circle at 80% 80%, var(--blue-100), transparent 50%),
              var(--white);
}
.error-code {
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--blue-300);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.error-page p { color: var(--ink-soft); max-width: 460px; margin: 0 auto 30px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.error-icon {
  width: 90px; height: 90px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.error-icon svg { width: 44px; height: 44px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-wrap, .offline-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .hero--banner { min-height: 560px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .member-photo { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 26px; }
  .hero-role-btn { flex: 1 1 100%; }
  .footer-bottom { flex-direction: column; }
  .hero--banner { min-height: 480px; }
  .hero-banner-content { padding: 64px 20px 44px; }
}

@media (max-width: 420px) {
  .members-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Signup / Join page
   ========================================================================== */
.trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--blue-700);
  font-size: .88rem;
  font-weight: 600;
  margin: 0 auto 28px;
  text-align: center;
}
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row svg { width: 18px; height: 18px; color: var(--blue-500); flex-shrink: 0; }
.signup-form-card { max-width: 620px; margin: 0 auto; }
.role-pills { display: flex; gap: 14px; flex-wrap: wrap; }
.role-pill { flex: 1 1 160px; cursor: pointer; }
.role-pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.role-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border: 1.5px solid var(--blue-200);
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--blue-800);
  text-align: center;
  transition: .15s;
}
.role-pill span:hover { border-color: var(--blue-500); }
.role-pill input:checked + span { background: var(--blue-700); border-color: var(--blue-700); color: var(--white); }

/* ==========================================================================
   Blog article
   ========================================================================== */
.article-hero { padding: 56px 0 36px; }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-meta { color: var(--ink-soft); font-size: .88rem; margin-bottom: 14px; }
.article-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--blue-900); }
.article-lead { font-size: 1.1rem; color: var(--ink-soft); }
.article-body h2 {
  font-size: 1.4rem;
  color: var(--blue-800);
  margin-top: 2em;
  margin-bottom: .6em;
}
.article-body p { color: var(--ink-soft); font-size: 1.02rem; }
.article-body ul {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin: 0 0 1.2em;
  padding-left: 1.3em;
}
.article-body li { margin-bottom: .4em; }
.article-body strong { color: var(--blue-800); }
.article-quote {
  border-left: 3px solid var(--blue-300);
  padding-left: 18px;
  margin: 0 0 1.2em;
  font-style: italic;
  color: var(--blue-700);
}
.article-cta {
  margin-top: 44px;
  padding: 36px;
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-cta h3 { margin-bottom: 10px; }
.article-cta p { color: var(--ink-soft); margin-bottom: 20px; }
