:root {
  --violet: #2563EB;
  --lagoon: #000000;
  --gold: #C4B5FD;
  --alabaster: #FFFFFF;
  --moss: #475569;
  --ink: #153043;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(37, 99, 235, 0.14), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(196, 181, 253, 0.14), transparent 36%),
    linear-gradient(160deg, #faf8ee 0%, var(--alabaster) 48%, #edf3f7 100%);
}

.about-page {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 16px 10px;
}

.background-animation {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  filter: blur(2px);
  animation: float 14s ease-in-out infinite;
}

.circle:nth-child(1) {
  width: 140px;
  height: 140px;
  left: 4%;
  top: 10%;
}

.circle:nth-child(2) {
  width: 90px;
  height: 90px;
  right: 16%;
  top: 32%;
  animation-delay: 3s;
}

.circle:nth-child(3) {
  width: 120px;
  height: 120px;
  right: 8%;
  bottom: 14%;
  animation-delay: 6s;
}

.header,
.about-section,
.team-section,
.mission-section,
.credits-section {
  margin-bottom: 20px;
}

.header .container,
.about-section .container,
.team-section .container,
.mission-section .container,
.credits-section .container {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  padding: clamp(20px, 3.4vw, 34px);
}

.header .container {
  text-align: center;
}

.logo {
  width: 74px;
  height: 74px;
  margin: 0 auto 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 0, 0, 0.16);
  padding: 10px;
}

.title {
  margin: 0;
  color: var(--lagoon) !important;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
  font-family: "Noto Sans Georgian", sans-serif;
  line-height: 1.18;
  letter-spacing: 0.03em;
  text-shadow: 0 6px 18px rgba(255, 255, 255, 0.32);
}

.title i {
  margin-right: 10px;
  color: var(--violet);
}

.subtitle {
  margin: 12px auto 0;
  max-width: 720px;
  color: var(--ink) !important;
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.15rem);
  line-height: 1.8;
  font-weight: 600;
}

.about-section h2,
.team-section h2,
.mission-section h2,
.credits-section h2 {
  margin: 0 0 10px;
  color: var(--lagoon) !important;
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: clamp(1.45rem, 1rem + 1vw, 2rem);
  line-height: 1.22;
  letter-spacing: 0.025em;
}

.about-section p,
.mission-section p {
  margin: 0;
  color: var(--ink) !important;
  line-height: 1.75;
  font-size: 1rem;
  font-weight: 500;
}

.mission-section p + p {
  margin-top: 10px;
}

.content {
  display: grid;
  gap: 14px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.09);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-height: 100%;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
}

.team-photo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 3px solid rgba(37, 99, 235, 0.38);
}

.team-card h3 {
  margin: 0;
  color: var(--lagoon) !important;
  font-size: 1.18rem;
  font-family: "Noto Sans Georgian", sans-serif;
}

.team-card p {
  margin: 0;
  color: var(--ink) !important;
  font-size: 0.98rem;
  line-height: 1.7;
}

.social-icons {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: var(--lagoon);
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.social-icons a:hover {
  color: #fff;
  background: var(--violet);
  border-color: rgba(37, 99, 235, 0.7);
}

.team-role {
  color: var(--lagoon) !important;
  font-weight: 700;
}

.team-bio {
  max-width: 28ch;
}

.credits-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.credit-item {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(21, 48, 67, 0.96), rgba(0, 0, 0, 0.92));
  border: 1px solid rgba(196, 181, 253, 0.24);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.credit-item strong {
  display: block;
  margin-bottom: 8px;
  color: #f9d28a !important;
  font-family: "Noto Sans Georgian", sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
}

.credit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94) !important;
  line-height: 1.75;
  font-size: 0.98rem;
}

.about-journey-cta,
.join-journey-btn,
.journey-cta,
a[href*="journey"],
button[data-about-action="journey"] {
  display: none !important;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .about-page {
    padding-inline: 10px;
  }
}

/* New About page design */
body {
  background: #f8fbff;
}

.about-v2 {
  max-width: 1220px;
  padding: 0 18px 18px;
}

.about-hero-v2 {
  min-height: 318px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 76% 30%, rgba(82, 116, 255, 0.12), transparent 28%),
    linear-gradient(115deg, #f7f9ff 0%, #ffffff 48%, #edf5ff 100%);
}

.about-kicker {
  display: block;
  margin-bottom: 14px;
  color: #4f56ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.about-hero-copy h1 {
  max-width: 560px;
  margin: 0;
  color: #101936;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.about-hero-copy h1 span {
  color: #4f56ff;
}

.about-hero-copy p {
  max-width: 620px;
  margin: 20px 0 22px;
  color: #465474;
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.72;
  font-weight: 600;
}

.about-mission-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #365cff, #5a45f4);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(74, 84, 255, 0.22);
}

.about-hero-visual {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
}

.about-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(330px, 86%);
  filter: drop-shadow(0 22px 28px rgba(42, 82, 160, 0.18));
}

.about-glow {
  position: absolute;
  width: min(360px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 100, 255, 0.14), transparent 68%);
}

.about-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  color: #405dff;
  transform: rotate(45deg);
}

.about-spark::before,
.about-spark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
  background: currentColor;
}

.about-spark::before {
  width: 100%;
  height: 35%;
}

.about-spark::after {
  width: 35%;
  height: 100%;
}

.about-spark-one {
  left: 5%;
  top: 32%;
}

.about-spark-two {
  right: 7%;
  top: 20%;
}

.about-section-heading {
  text-align: center;
  margin: 28px auto 22px;
}

.about-section-heading h2 {
  margin: 0;
  color: #111936;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.2;
}

.about-section-heading p {
  max-width: 720px;
  margin: 10px auto 0;
  color: #64708c;
  font-weight: 700;
  line-height: 1.55;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-value-card {
  min-height: 200px;
  padding: 22px;
  border: 1px solid #e1e7f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(29, 45, 82, 0.06);
}

.about-value-card > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #595fff;
  background: #f0f1ff;
}

.about-value-card:nth-child(2) > i {
  color: #2682ff;
  background: #eaf4ff;
}

.about-value-card:nth-child(3) > i {
  color: #2cad68;
  background: #e9f9f0;
}

.about-value-card:nth-child(4) > i {
  color: #f29b22;
  background: #fff1dc;
}

.about-value-card h3 {
  margin: 0 0 10px;
  color: #111936;
  font-size: 1rem;
}

.about-value-card p,
.about-value-card li {
  color: #53617d;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 700;
}

.about-value-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-value-card li::before {
  content: "\f00c";
  margin-right: 7px;
  color: #29b56f;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.about-stats-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 28px;
  padding: 20px 24px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(100deg, #293df1, #4d41f5);
  box-shadow: 0 18px 28px rgba(58, 64, 235, 0.2);
}

.about-stats-v2 article {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.about-stats-v2 article:last-child {
  border-right: 0;
}

.about-stats-v2 i {
  grid-row: span 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.about-stats-v2 strong {
  font-size: 1.55rem;
  line-height: 1;
}

.about-stats-v2 span {
  font-weight: 900;
}

.about-stats-v2 small {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-team-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid #e1e7f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(29, 45, 82, 0.06);
}

.about-team-card img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: contain;
  background: #f6f8ff;
  border: 1px solid #e4e9f7;
}

.about-team-card h3 {
  margin: 0;
  color: #101936;
  font-size: 0.98rem;
}

.about-team-card span {
  display: block;
  margin-top: 3px;
  color: #5360f0;
  font-size: 0.82rem;
  font-weight: 900;
}

.about-team-card p {
  margin: 10px 0 12px;
  color: #64708c;
  font-size: 0.84rem;
  line-height: 1.55;
  font-weight: 700;
}

.about-team-card a {
  color: #315cff;
}

@media (max-width: 980px) {
  .about-value-grid,
  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stats-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .about-stats-v2 article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .about-v2 {
    padding: 0 8px 14px;
  }

  .about-hero-v2 {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 18px;
    text-align: left;
  }

  .about-hero-copy h1 {
    font-size: 1.7rem;
  }

  .about-hero-copy p {
    margin: 12px 0 16px;
    font-size: 0.82rem;
  }

  .about-mission-btn {
    padding: 9px 16px;
    font-size: 0.78rem;
  }

  .about-hero-visual {
    min-height: 150px;
  }

  .about-hero-visual img {
    width: 170px;
  }

  .about-section-heading {
    margin: 22px auto 16px;
  }

  .about-section-heading h2 {
    font-size: 1rem;
  }

  .about-section-heading p {
    font-size: 0.76rem;
  }

  .about-value-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-value-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 12px;
    padding: 14px;
  }

  .about-value-card > i {
    grid-row: span 2;
    margin: 0;
  }

  .about-value-card h3 {
    margin: 0;
    font-size: 0.86rem;
  }

  .about-value-card p,
  .about-value-card li {
    font-size: 0.74rem;
  }

  .about-stats-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
    gap: 12px;
  }

  .about-stats-v2 article {
    grid-template-columns: 34px 1fr;
    padding: 0;
    border-right: 0;
  }

  .about-stats-v2 i {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }

  .about-stats-v2 strong {
    font-size: 1rem;
  }

  .about-stats-v2 span,
  .about-stats-v2 small {
    font-size: 0.66rem;
  }

  .about-team-card {
    grid-template-columns: 52px 1fr;
    padding: 12px;
  }

  .about-team-card img {
    width: 46px;
    height: 46px;
  }

  .about-team-card h3 {
    font-size: 0.8rem;
  }

  .about-team-card span,
  .about-team-card p {
    font-size: 0.68rem;
  }
}

/* Shared shell styles (merged from shared-shell.css) */

:root {
  --gx-primary: #2563EB;
  --gx-lagoon: #000000;
  --gx-gold: #C4B5FD;
  --gx-alabaster: #FFFFFF;
  --gx-moss: #475569;
  --gx-ink: #000000;
  --gx-white: #ffffff;
  --gx-border: 1px solid rgba(0, 0, 0, 0.16);
  --gx-shadow: 0 14px 26px rgba(0, 0, 0, 0.12);
}

.sq-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: var(--gx-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sq-header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sq-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sq-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: contain;
}

.sq-logo span {
  color: var(--gx-lagoon);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.sq-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sq-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--gx-lagoon);
  font-weight: 700;
  font-size: 0.94rem;
  transition: all 0.25s ease;
}

.sq-link i {
  color: var(--gx-moss);
}

.sq-link:hover,
.sq-link.active {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.34);
  color: var(--gx-lagoon);
}

.sq-link:hover i,
.sq-link.active i {
  color: var(--gx-primary);
}

.sq-nav-item {
  position: relative;
}

.sq-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 216px;
  background: rgba(255, 255, 255, 0.96);
  border: var(--gx-border);
  border-radius: 12px;
  box-shadow: var(--gx-shadow);
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: all 0.22s ease;
}

.sq-dropdown.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sq-dropdown a {
  color: var(--gx-lagoon);
  text-decoration: none;
  border-radius: 9px;
  padding: 9px 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.sq-dropdown a i {
  margin-right: 8px;
}

.sq-dropdown a:hover {
  background: rgba(0, 0, 0, 0.08);
}

.sq-user-id {
  margin: 2px 4px 8px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.8rem;
  color: var(--gx-moss);
  font-weight: 700;
}

.sq-auth {
  display: flex;
  align-items: center;
}

.sq-auth button {
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
}

.sq-login-btn {
  background: rgba(0, 0, 0, 0.12);
  color: var(--gx-lagoon);
  border: 1px solid rgba(0, 0, 0, 0.26) !important;
}

.sq-register-btn,
.sq-profile-btn {
  background: linear-gradient(130deg, #fbc466, var(--gx-gold));
  color: #3c2d00;
  box-shadow: 0 10px 20px rgba(196, 181, 253, 0.26);
}

.sq-profile-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sq-user-avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.sq-user-name {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sq-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: var(--gx-lagoon);
  font-size: 1.2rem;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

















































@media (max-width: 980px) {
  .sq-header-container {
    flex-wrap: nowrap;
  }

  .sq-toggle {
    display: inline-grid;
  }

  .sq-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    border: var(--gx-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--gx-shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  .sq-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sq-link {
    width: 100%;
  }


}

@media (max-width: 680px) {
  .sq-logo span {
    display: none;
  }

  .sq-auth button {
    padding: 8px 11px;
    font-size: 0.84rem;
  }




}



