:root {
  --bg: #040612;
  --panel: rgba(7, 11, 22, 0.78);
  --panel-soft: rgba(9, 14, 27, 0.62);
  --line: rgba(90, 123, 190, 0.18);
  --text: #f3f7fb;
  --muted: #8d9cb7;
  --muted-2: #b3bfd4;
  --cyan: #73deff;
  --amber: #ffb15a;
  --violet: #aa94ff;
  --mint: #5af3c0;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(98, 222, 255, 0.1), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(255, 169, 78, 0.08), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(164, 143, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #040612 0%, #07101d 46%, #04070f 100%);
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
}

.page-shell::before {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -80px;
  background: rgba(91, 211, 255, 0.16);
}

.page-shell::after {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 36%;
  background: rgba(255, 169, 78, 0.1);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(4, 7, 14, 0.58);
  border-bottom: 1px solid rgba(88, 122, 190, 0.12);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(112, 146, 211, 0.18);
  background: rgba(9, 15, 29, 0.72);
  color: rgba(242, 246, 252, 0.92);
}

.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(103, 137, 205, 0.16);
  background: rgba(8, 13, 26, 0.44);
  color: rgba(229, 236, 247, 0.8);
  font-size: 0.84rem;
}

.topbar-link.primary {
  color: #071018;
  background: linear-gradient(180deg, #f6fbff, #d5e8ff);
  border-color: transparent;
}

.page-main {
  padding: 38px 0 70px;
}

.page-main.about-page {
  padding-top: 30px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.about-hero {
  width: min(100%, 760px);
  margin: 0 auto;
}

.about-hero .hero-copy {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.about-hero .hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.02;
}

.about-hero .hero-copy p {
  max-width: 44ch;
  font-size: 0.98rem;
}

.about-content-minimal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(88, 122, 190, 0.08);
}

.about-text-block {
  display: grid;
  gap: 8px;
  align-content: start;
}

.about-text-block p {
  margin: 0;
  max-width: 30ch;
  color: rgba(203, 214, 231, 0.72);
  line-height: 1.62;
  font-size: 0.9rem;
}

.hero-copy,
.hero-media,
.section-card,
.stat-card,
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(88, 122, 190, 0.18);
  background:
    radial-gradient(circle at 10% 12%, rgba(115, 222, 255, 0.08), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 177, 90, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(7, 11, 22, 0.82), rgba(5, 9, 18, 0.72));
  box-shadow: var(--shadow);
}

.about-hero .hero-copy::before {
  display: none;
}

.hero-copy,
.section-card,
.cta-card {
  padding: 24px 22px;
}

.hero-copy::before,
.hero-media::before,
.section-card::before,
.stat-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  pointer-events: none;
}

.kicker {
  margin-bottom: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy p {
  max-width: 55ch;
  margin-top: 16px;
  color: var(--muted-2);
  line-height: 1.66;
  font-size: 0.96rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(101, 137, 205, 0.16);
  background: rgba(10, 16, 30, 0.56);
  color: rgba(232, 238, 248, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #04070f;
  background: linear-gradient(180deg, #f7fbff, #d2e7ff);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(101, 137, 205, 0.18);
}

.hero-media {
  min-height: 420px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media.besties {
  display: grid;
  place-items: center;
  padding: 28px;
}

.besties-visual {
  position: relative;
  width: min(100%, 440px);
  height: 100%;
  min-height: 360px;
}

.besties-visual::before {
  content: "";
  position: absolute;
  inset: 8% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 151, 255, 0.26), transparent 62%);
  filter: blur(18px);
}

.besties-phone {
  position: absolute;
  inset: 7% 29% 11%;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(28, 20, 42, 0.9), rgba(13, 16, 30, 0.88));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.besties-top-card,
.besties-event-card,
.besties-circle-card {
  position: absolute;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.besties-top-card {
  top: 10%;
  left: 4%;
  width: 44%;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, rgba(244, 161, 255, 0.16), rgba(90, 76, 152, 0.12));
}

.besties-event-card {
  right: 4%;
  top: 34%;
  width: 48%;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 223, 149, 0.14), rgba(92, 66, 28, 0.12));
}

.besties-circle-card {
  left: 8%;
  bottom: 8%;
  width: 54%;
  padding: 16px;
  background: linear-gradient(180deg, rgba(120, 255, 220, 0.14), rgba(28, 96, 86, 0.12));
}

.besties-title {
  font-size: 0.82rem;
  color: rgba(240, 246, 255, 0.72);
}

.besties-value {
  margin-top: 10px;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.besties-sub {
  margin-top: 8px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(222, 230, 242, 0.74);
}

.section-grid,
.stats-grid,
.case-links {
  display: grid;
  gap: 16px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  padding: 18px;
}

.stat-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stat-note {
  margin-top: 10px;
  color: var(--muted-2);
  line-height: 1.54;
  font-size: 0.88rem;
}

.section-card h2,
.section-card h3,
.cta-card h3 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-card p,
.cta-card p {
  margin-top: 14px;
  color: var(--muted-2);
  line-height: 1.64;
  font-size: 0.95rem;
}

.mini-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mini-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(228, 236, 247, 0.8);
  line-height: 1.62;
}

.mini-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--amber), var(--cyan));
  box-shadow: 0 0 20px rgba(115, 222, 255, 0.32);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(101, 137, 205, 0.18);
  background: rgba(10, 16, 30, 0.54);
  color: rgba(235, 241, 249, 0.8);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.stack-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(101, 137, 205, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(236, 242, 251, 0.82);
  font-size: 0.82rem;
}

.case-link-card {
  display: grid;
  gap: 14px;
}

.case-link-card h3 {
  font-size: 1.3rem;
}

.case-link-card .button {
  width: fit-content;
  margin-top: 6px;
}

.footer {
  padding: 26px 0 42px;
  color: rgba(202, 214, 231, 0.72);
}

.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(88, 122, 190, 0.12);
}

@media (max-width: 1080px) {
  .page-hero,
  .section-grid,
  .stats-grid,
  .case-links {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .about-content-minimal {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 340px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .brand {
    gap: 10px;
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .topbar-links {
    width: 100%;
    justify-content: flex-start;
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 2px 2px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }

  .topbar-links::-webkit-scrollbar {
    display: none;
  }

  .topbar-link {
    flex: 0 0 auto;
    padding: 8px 12px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .topbar-link.primary {
    display: none;
  }

  .page-main {
    padding-top: 24px;
  }

  .page-main.about-page {
    padding-top: 18px;
  }

  .hero-copy,
  .hero-media,
  .section-card,
  .cta-card,
  .stat-card {
    border-radius: 26px;
  }

  .hero-copy,
  .section-card,
  .cta-card {
    padding: 20px 16px;
  }

  .about-hero .hero-copy {
    padding: 22px 16px;
  }

  .hero-media {
    min-height: 280px;
  }

  .besties-visual {
    min-height: 280px;
  }

  .besties-phone {
    inset: 8% 24% 10%;
  }

  .besties-top-card,
  .besties-event-card,
  .besties-circle-card {
    border-radius: 20px;
  }

  .besties-top-card {
    width: 48%;
    left: 0;
  }

  .besties-event-card {
    width: 52%;
    right: 0;
  }

  .besties-circle-card {
    width: 58%;
    left: 4%;
  }

  .footer-shell {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .brand span:last-child {
    font-size: 0.92rem;
  }

  .topbar-link {
    padding: 7px 11px;
    font-size: 0.72rem;
  }
}
