
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --bg-dark: #020617;
  --bg-card: rgba(15, 23, 42, 0.4);
  --border-light: rgba(255, 255, 255, 0.08);
  --blue-primary: #2563eb;
  --blue-glow: rgba(37, 99, 235, 0.5);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
}

body.landing-page {
  margin: 0; padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

/* Background Effects */
.site-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(100px); opacity: 0.15;
}
.bg-glow-left { top: -200px; left: -200px; background: #3b82f6; }
.bg-glow-right { bottom: -200px; right: -200px; background: #8b5cf6; }
.bg-grid-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Typography Helpers */
.text-white { color: #ffffff; }
.text-gradient-blue {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.text-gradient-purple {
  background: linear-gradient(90deg, #a78bfa, #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 48px;
}
.nav-left { display: flex; align-items: center; gap: 12px; }
.logo-box {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.logo-box svg { width: 20px; height: 20px; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-size: 16px; font-weight: 800; letter-spacing: 0.5px; }
.logo-sub { font-size: 10px; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; }

.nav-center { flex: 1; display: flex; justify-content: center; }
.trust-badge-nav {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 20px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-light);
  font-size: 13px; font-weight: 500; color: #cbd5e1;
}
.trust-icon { color: #3b82f6; width: 16px; height: 16px; }
.trust-icon svg { width: 100%; height: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link-login {
  color: #fff; text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 10px 24px; border-radius: 8px; border: 1px solid var(--border-light);
  transition: 0.2s;
}
.nav-link-login:hover { background: rgba(255,255,255,0.05); }
.nav-btn-signup {
  background: #2563eb; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600;
  padding: 10px 24px; border-radius: 8px; transition: 0.2s;
}
.nav-btn-signup:hover { background: #1d4ed8; }

/* Hero Wrapper */
.hero-wrapper {
  padding-top: 100px;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr 340px;
  gap: 32px;
  max-width: 1440px; width: 100%; padding: 0 48px;
  align-items: center;
}

/* Left Column */
.hero-left { display: flex; flex-direction: column; gap: 28px; z-index: 2; }
.main-heading { font-size: clamp(36px, 4vw, 56px); font-weight: 900; line-height: 1.1; margin: 0; letter-spacing: -1px; }
.main-desc { font-size: 16px; color: var(--text-muted); line-height: 1.6; max-width: 460px; margin: 0; }

.feature-badges { display: flex; flex-wrap: wrap; gap: 16px; }
.f-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--border-light);
}
.fb-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fb-icon svg { width: 16px; height: 16px; }
.fb-icon.blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.fb-icon.orange { background: rgba(249,115,22,0.15); color: #fb923c; }
.fb-icon.teal { background: rgba(20,184,166,0.15); color: #2dd4bf; }
.fb-text { display: flex; flex-direction: column; gap: 2px; }
.fb-title { font-size: 13px; font-weight: 700; color: #f8fafc; }
.fb-desc { font-size: 11px; color: #94a3b8; }

.cta-group { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.btn-primary {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(37,99,235,0.3); transition: 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,99,235,0.5); }
.btn-secondary {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-light);
  color: #fff; text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 16px 24px; border-radius: 12px; transition: 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }

/* Center Column */
.hero-center {
  position: relative;
  height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 1;
}
.portrait-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.35) 0%, transparent 65%);
  filter: blur(40px); z-index: 1; pointer-events: none;
}
/* Crucial for masking to work properly! */
.portrait-mask-container {
  position: relative; z-index: 2;
  width: 100%; max-width: 440px;
  /* Make sure the mask fades properly by defining a strict container */
  -webkit-mask-image: linear-gradient(to bottom, black 50%, rgba(0,0,0,0.8) 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, rgba(0,0,0,0.8) 75%, transparent 100%);
}
.portrait-image {
  width: 100%; height: auto; display: block;
  object-fit: cover; object-position: center top;
  cursor: pointer; transition: transform 0.4s ease;
}
.portrait-mask-container:hover .portrait-image { transform: scale(1.02); }

/* Right Column */
.hero-right { display: flex; flex-direction: column; gap: 24px; z-index: 3; }

.glass-card {
  background: rgba(15,23,42,0.4); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 24px; box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.creator-card { cursor: pointer; transition: 0.3s; }
.creator-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.4); box-shadow: 0 20px 50px rgba(37,99,235,0.15); }
.cc-label { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.cc-name {
  font-size: 28px; font-weight: 900; line-height: 1.1; margin: 8px 0;
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.cc-signature {
  display: block; font-family: 'Dancing Script', cursive; font-size: 22px; color: #a78bfa; margin-bottom: 20px;
}
.btn-outline {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.why-card { }
.wc-heading { font-size: 15px; font-weight: 800; margin: 0 0 20px 0; color: #fff; }
.wc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.wc-list li { display: flex; gap: 12px; align-items: flex-start; }
.wc-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center; color: #60a5fa;
}
.wc-icon svg { width: 14px; height: 14px; }
.wc-text { display: flex; flex-direction: column; gap: 4px; }
.wc-text strong { font-size: 13px; font-weight: 700; color: #f8fafc; }
.wc-text span { font-size: 11px; color: #94a3b8; line-height: 1.4; }

/* Pricing Section */
.pricing-section { max-width: 900px; margin: 60px auto 100px; padding: 0 48px; }
.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-tag {
  display: inline-block; font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px;
}
.pricing-tag span {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pricing-sub { color: #94a3b8; font-size: 15px; margin: 0; }

.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border-light);
  border-radius: 24px; padding: 40px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  transition: 0.3s;
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(59,130,246,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.price-card.pc-featured { border-color: rgba(168,85,247,0.3); background: rgba(30,15,42,0.4); }

.pc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(59,130,246,0.15); color: #60a5fa;
  display: flex; align-items: center; justify-content: center;
}
.pc-icon.purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.pc-icon svg { width: 20px; height: 20px; }
.pc-title { font-size: 18px; font-weight: 800; color: #fff; }

.pc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.pc-price .currency { font-size: 24px; font-weight: 700; color: #fff; }
.pc-price .amount { font-size: 48px; font-weight: 900; color: #fff; letter-spacing: -1px; }
.pc-price .period { font-size: 14px; color: #94a3b8; font-weight: 500; }

.pc-savings {
  display: inline-block; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; margin-bottom: 32px;
}
.pc-features { list-style: none; padding: 0; margin: 0 0 32px 0; display: flex; flex-direction: column; gap: 12px; }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #e2e8f0; font-weight: 500; }
.pc-features li span { color: #4ade80; font-weight: 900; }

.btn-plan {
  display: block; text-align: center; text-decoration: none; padding: 16px; border-radius: 12px; font-size: 15px; font-weight: 700; transition: 0.3s; border: none; cursor: pointer; color: #fff;
}
.btn-blue { background: #3b82f6; } .btn-blue:hover { background: #2563eb; }
.btn-purple { background: #a855f7; } .btn-purple:hover { background: #9333ea; }
.pc-note { text-align: center; font-size: 12px; color: #94a3b8; margin-top: 16px; }

/* Drawer Overlay & Sidebar */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: 0.3s ease; z-index: 1000;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: -480px; bottom: 0; width: 440px;
  background: #060913; border-left: 1px solid rgba(255,255,255,0.1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1001;
}
.drawer.open { right: 0; }
.drawer-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff;
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: 0.2s;
}
.drawer-close:hover { background: rgba(255,255,255,0.1); transform: scale(1.05); }
.drawer-content { padding: 48px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; overflow-y: auto; box-sizing: border-box; }
.drawer-photo { width: 220px; height: 280px; object-fit: cover; border-radius: 20px; border: 2px solid rgba(255,255,255,0.1); box-shadow: 0 16px 40px rgba(0,0,0,0.4); margin-bottom: 32px; }
.drawer-label { font-size: 13px; color: #94a3b8; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.drawer-name { font-size: 32px; font-weight: 900; margin: 0 0 12px 0; background: linear-gradient(90deg, #60a5fa, #a78bfa, #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.drawer-role { font-size: 16px; color: #cbd5e1; font-weight: 500; margin: 0 0 24px 0; }
.drawer-bio { font-size: 14px; color: #94a3b8; line-height: 1.7; margin-bottom: 32px; }

/* ================================================================
   DESKTOP ALIGNMENT FIX
   Center the creator card + why-choose vertically in the column
   so they align with the portrait center
   ================================================================ */
.hero-right {
  display: flex; flex-direction: column; gap: 24px; z-index: 3;
  justify-content: center; /* vertically center both cards */
}

/* ================================================================
   MOBILE COMPACT CREATOR CARD
   Hidden on desktop, shown on mobile only
   ================================================================ */
.mobile-creator-compact {
  display: none; /* hidden by default (desktop) */
  align-items: center; gap: 16px;
  cursor: pointer; transition: 0.3s;
  width: 100%; max-width: 400px;
}
.mobile-creator-compact:hover { transform: translateY(-3px); border-color: rgba(59,130,246,0.4); }

.mcc-photo-wrap {
  flex-shrink: 0;
  width: 90px; height: 110px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(37,99,235,0.1);
}
.mcc-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
}
.mcc-info { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.mcc-label { font-size: 10px; color: #94a3b8; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.mcc-name { font-size: 18px; font-weight: 900; line-height: 1.1; background: linear-gradient(90deg, #60a5fa, #a78bfa, #fb923c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.mcc-role { font-size: 12px; color: #94a3b8; font-weight: 500; }
.mcc-btn { margin-top: 8px; padding: 7px 14px; font-size: 12px; }

/* ================================================================
   FLUID SCALE  –  large desktops (1440px+)
   ================================================================ */
@media (min-width: 1440px) {
  .hero-container { max-width: 1440px; }
}

@media (min-width: 1920px) {
  .hero-container { max-width: 1680px; gap: 48px; }
  .main-heading { font-size: clamp(52px, 3.5vw, 72px); }
  .hero-wrapper { padding-top: 120px; }
  .portrait-glow { width: 560px; height: 560px; }
}

@media (min-width: 2560px) {
  .hero-container { max-width: 2000px; padding: 0 80px; gap: 64px; }
  .main-heading { font-size: 80px; }
  .hero-wrapper { padding-top: 160px; }
}

/* ================================================================
   TABLET LANDSCAPE  1025px – 1300px
   Keep 3-column, proportionally scaled
   ================================================================ */
@media (max-width: 1300px) {
  .hero-container {
    grid-template-columns: 1fr 1fr 300px;
    padding: 0 36px; gap: 24px;
  }
  .main-heading { font-size: clamp(32px, 3.5vw, 48px); }
  .feature-badges { gap: 12px; }
  .f-badge { padding: 10px 14px; }
  .cc-name { font-size: 24px; }
  .portrait-glow { width: 360px; height: 360px; }
}

/* ================================================================
   TABLET  768px – 1024px
   Maintain desktop feel, proportional scale, 2-col layout
   ================================================================ */
@media (max-width: 1024px) {
  .navbar { padding: 18px 28px; }
  .nav-center { display: none; }
  .hero-wrapper { padding-top: 80px; min-height: auto; }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 0 28px;
    gap: 20px;
    align-items: start;
  }

  /* Portrait spans full height of its column, top-left */
  .hero-center {
    grid-column: 2;
    grid-row: 1 / 3;
    min-height: 480px;
    align-items: flex-end;
  }
  .portrait-mask-container { max-width: 360px; }
  .portrait-glow { width: 320px; height: 320px; }

  /* Left content top-left */
  .hero-left {
    grid-column: 1;
    grid-row: 1;
    gap: 20px;
    padding-bottom: 0;
  }
  .main-heading { font-size: clamp(28px, 4vw, 42px); }
  .main-desc { font-size: 14px; max-width: 100%; }

  .feature-badges { gap: 10px; }
  .f-badge { padding: 10px 12px; }
  .fb-title { font-size: 12px; }
  .fb-desc { font-size: 10px; }

  /* Right column below left content */
  .hero-right {
    grid-column: 1;
    grid-row: 2;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    padding-bottom: 32px;
  }
  .creator-card, .why-card { width: 100%; }
  .cc-name { font-size: 22px; }
  .cc-signature { font-size: 18px; }
  .wc-heading { font-size: 13px; }
  .wc-list { gap: 10px; }
  .wc-text strong { font-size: 12px; }
  .wc-text span { font-size: 10px; }

  /* Mobile compact creator card stays hidden on tablet */
  .mobile-creator-compact { display: none !important; }

  .pricing-section { padding: 0 28px; margin-top: 40px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .price-card { padding: 28px 22px; }
  .pc-price .amount { font-size: 40px; }
  .pricing-tag { font-size: 22px; }
}

/* ================================================================
   MOBILE  481px – 767px
   Single column, full premium mobile experience
   ================================================================ */
@media (max-width: 767px) {
  /* ── Navbar ── */
  .navbar { padding: 14px 20px; }
  .nav-center { display: none; }
  .nav-link-login { display: none; }
  .nav-btn-signup { font-size: 13px; padding: 8px 18px; }

  /* ── Hero wrapper ── */
  .hero-wrapper { padding-top: 72px; min-height: auto; align-items: flex-start; }

  /* ── Single column grid ── */
  .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 20px;
    gap: 0;
    align-items: start;
    overflow: hidden; /* prevent portrait/glow from bleeding out */
  }

  /* Order: portrait → left content (heading+badges+CTAs+mobile-card) → right (hidden) */
  .hero-center {
    display: none; /* large portrait hidden on mobile — compact creator card takes over */
  }
  .hero-left   { order: 2; align-items: center; text-align: center; gap: 20px; padding-bottom: 0; }
  .hero-right  { display: none; } /* hidden — replaced by mobile-creator-compact */




  /* ── Typography ── */
  .main-heading { font-size: clamp(28px, 8vw, 40px); letter-spacing: -0.5px; }
  .main-desc { font-size: 14px; text-align: center; max-width: 380px; }

  /* ── Feature badges: single column centered ── */
  .feature-badges { flex-direction: column; align-items: center; gap: 10px; width: 100%; }
  .f-badge { width: 100%; max-width: 360px; text-align: left; }

  /* ── CTAs: full width ── */
  .cta-group { flex-direction: column; width: 100%; max-width: 360px; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; font-size: 15px; padding: 15px 24px; }

  /* ── Mobile compact creator card: SHOW ── */
  .mobile-creator-compact {
    display: flex !important;
    margin: 4px auto 0;
    max-width: 360px;
    width: 100%;
  }

  /* ── Pricing ── */
  .pricing-section { padding: 0 20px; margin: 40px auto 60px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 28px 22px; }
  .pc-price .amount { font-size: 42px; }
  .pricing-tag { font-size: 22px; }
  .pricing-sub { font-size: 14px; }
  .pricing-header { margin-bottom: 28px; }

  /* ── Drawer → bottom sheet ── */
  .drawer {
    right: 0; bottom: -100%; top: auto;
    width: 100%; height: 85vh;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 28px 28px 0 0;
  }
  .drawer.open { bottom: 0; }
  .drawer-close { top: 18px; right: 18px; }
  .drawer-content { padding: 44px 24px 32px; }
  .drawer-photo { width: 180px; height: 220px; margin-bottom: 24px; }
  .drawer-name { font-size: 26px; }
}

/* ================================================================
   SMALL MOBILE  320px – 480px
   ================================================================ */
@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .logo-title { font-size: 14px; }
  .logo-sub { display: none; }
  .nav-btn-signup { font-size: 12px; padding: 7px 14px; }

  .hero-wrapper { padding-top: 66px; }
  .hero-container { padding: 0 16px; }

  .main-heading { font-size: clamp(26px, 8.5vw, 36px); }
  .main-desc { font-size: 13px; }

  .portrait-mask-container { max-width: 240px; }
  .portrait-glow { width: 220px; height: 220px; }

  .f-badge { padding: 10px 12px; }
  .fb-title { font-size: 12px; }
  .fb-desc { font-size: 10px; }

  .btn-primary, .btn-secondary { font-size: 14px; padding: 14px 20px; }
  .mobile-creator-compact { max-width: 320px; }

  .price-card { padding: 24px 18px; }
  .pc-price .amount { font-size: 36px; }
  .pricing-tag { font-size: 20px; }
  .pricing-section { margin: 32px auto 48px; }

  .drawer-photo { width: 150px; height: 190px; }
}

/* ================================================================
   EXTRA SMALL  below 360px (iPhone SE, old Android)
   ================================================================ */
@media (max-width: 360px) {
  .hero-container { padding: 0 14px; }
  .main-heading { font-size: 26px; }
  .portrait-mask-container { max-width: 210px; }
  .portrait-glow { width: 190px; height: 190px; }
  .btn-primary, .btn-secondary { font-size: 13px; padding: 13px 18px; }
  .mcc-photo-wrap { width: 76px; height: 92px; }
  .mcc-name { font-size: 16px; }
}

/* ================================================================
   GLOBAL OVERFLOW GUARD
   Ensures absolutely no horizontal scroll at any breakpoint
   ================================================================ */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
