@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --meet-purple: #3d2784;
  --meet-deep-purple: #26155f;
  --meet-gold: #c98b10;
  --meet-dark: #17213a;
  --meet-muted: #667087;
  --meet-white: #ffffff;
  --meet-light: #f7f6fb;
  --meet-border: rgba(61, 39, 132, 0.13);
}

* {
  box-sizing: border-box;
}

.attendees-section {
  position: relative;
  overflow: hidden;
  padding: 50px 16px;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(201, 139, 16, 0.09),
      transparent 24%
    ),
    radial-gradient(
      circle at 93% 88%,
      rgba(61, 39, 132, 0.11),
      transparent 27%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8f7fc 100%);
}

.attendees-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(61, 39, 132, 0.08);
  border-radius: 50%;
}

.attendees-section::after {
  content: "";
  position: absolute;
  bottom: -190px;
  left: -130px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(201, 139, 16, 0.11);
  border-radius: 50%;
}

.attendees-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.attendees-header {
  max-width: 650px;
  margin: 0 auto 40px;
  text-align: center;
}

.attendees-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--meet-purple);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.attendees-label::before,
.attendees-label::after {
  content: "";
  width: 27px;
  height: 2px;
  background: var(--meet-gold);
}

.attendees-header h2 {
  margin: 0;
  color: var(--meet-deep-purple);
  font-family: "DM Serif Display", serif;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.05;
}

.attendees-header p {
  max-width: 670px;
  margin: 20px auto 0;
  color: var(--meet-muted);
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.attendees-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.attendees-list {
  display: grid;
  gap: 8px;
}

.attendee-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 125px;
  padding: 10px 7px;
  overflow: hidden;
  border: 1px solid var(--meet-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(36, 24, 83, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.attendee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--meet-purple),
    var(--meet-gold)
  );
}

.attendee-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(61, 39, 132, 0.04);
}

.attendee-card:hover {
  transform: translateX(7px);
  border-color: rgba(61, 39, 132, 0.25);
  box-shadow: 0 22px 55px rgba(36, 24, 83, 0.12);
}

.attendee-number {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(0, 0, 0, 0.1);
  font-family: "DM Serif Display", serif;
  font-size: 46px;
  line-height: 1;
}

.attendee-icon {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 62px;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    var(--meet-purple),
    var(--meet-deep-purple)
  );
  color: var(--meet-white);
  box-shadow: 0 12px 25px rgba(61, 39, 132, 0.2);
}

.attendee-icon svg {
  width: 30px;
  height: 30px;
}

.attendee-content {
  position: relative;
  z-index: 1;
}

.attendee-content h3 {
  margin: 0 0 8px;
  color: var(--meet-deep-purple);
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.attendee-content p {
  max-width: 500px;
  margin: 0;
  color: var(--meet-muted);
  font-family: "Manrope", sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.7;
}

.conversation-panel {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 48px 42px;
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(61, 39, 132, 0.98),
      rgba(38, 21, 95, 0.99)
    );
  box-shadow: 0 24px 65px rgba(38, 21, 95, 0.2);
}

.conversation-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -75px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.conversation-panel::after {
  content: "";
  position: absolute;
  right: -135px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(201, 139, 16, 0.13);
}

.panel-eyebrow,
.conversation-panel h3,
.conversation-panel p,
.panel-divider,
.conversation-panel blockquote {
  position: relative;
  z-index: 2;
}

.panel-eyebrow {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #f5d28a;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.conversation-panel h3 {
  margin: 0;
  color: var(--meet-white);
  font-family: "DM Serif Display", serif;
  font-size: clamp(30px, 3vw, 43px);
  font-weight: 400;
  line-height: 1.2;
}

.conversation-panel > p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.panel-divider {
  width: 62px;
  height: 3px;
  margin: 30px 0;
  border-radius: 10px;
  background: var(--meet-gold);
}

.conversation-panel blockquote {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.75;
}

.quote-accent {
  position: absolute;
  right: 28px;
  bottom: -35px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.07);
  font-family: "DM Serif Display", serif;
  font-size: 190px;
  line-height: 1;
}

@media (max-width: 950px) {
  .attendees-section {
    padding: 75px 22px;
  }

  .attendees-layout {
    grid-template-columns: 1fr;
  }

  .conversation-panel {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .attendees-section {
    padding: 60px 18px;
  }

  .attendees-header {
    margin-bottom: 40px;
  }

  .attendees-header h2 {
    font-size: 41px;
  }

  .attendees-header p {
    font-size: 15px;
  }

  .attendee-card {
    align-items: flex-start;
    gap: 18px;
    min-height: auto;
    padding: 25px 22px 25px 26px;
  }

  .attendee-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .attendee-icon svg {
    width: 26px;
    height: 26px;
  }

  .attendee-content h3 {
    padding-right: 24px;
    font-size: 18px;
  }

  .attendee-content p {
    font-size: 14px;
  }

  .attendee-number {
    top: 18px;
    right: 18px;
    font-size: 38px;
  }

  .conversation-panel {
    min-height: auto;
    padding: 38px 27px;
    border-radius: 20px;
  }

  .conversation-panel h3 {
    font-size: 31px;
  }

  .conversation-panel > p {
    font-size: 14px;
  }

  .conversation-panel blockquote {
    font-size: 15px;
  }
}