:root {
  --bg: #06100c;
  --bg-alt: #091711;
  --panel: #0d2018;
  --panel-2: #112a20;
  --text: #f7faf8;
  --muted: #a9b8b1;
  --line: rgba(255, 255, 255, .10);
  --accent: #a8f238;
  --accent-strong: #c3ff62;
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --radius: 24px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 3%, rgba(168, 242, 56, .10), transparent 29rem),
    linear-gradient(180deg, #06100c 0%, #07140f 48%, #040b08 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

svg {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ddffab;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 6.5rem 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  background: white;
  color: black;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 12, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 242, 56, .7);
  box-shadow: 0 8px 24px rgba(168, 242, 56, .12);
}

.brand > span,
.footer-brand > span {
  display: grid;
  line-height: 1.14;
}

.brand strong,
.footer-brand strong {
  font-size: .98rem;
}

.brand small,
.footer-brand small {
  margin-top: .24rem;
  color: var(--muted);
  font-size: .75rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: var(--muted);
  font-weight: 760;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .nav-cta {
  padding: .65rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #06100c;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle i {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.hero {
  padding-top: 5rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 3rem;
}

.availability {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.25rem;
  padding: .44rem .72rem;
  border: 1px solid rgba(168, 242, 56, .25);
  border-radius: 999px;
  background: rgba(168, 242, 56, .06);
  color: #dfffb0;
  font-size: .82rem;
  font-weight: 760;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(168, 242, 56, .10);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: .79rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.9rem, 6.1vw, 5.8rem);
  line-height: .98;
  letter-spacing: -.057em;
}

h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.7vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.047em;
}

.lead {
  max-width: 68ch;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .86rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #06100c;
  box-shadow: 0 16px 38px rgba(168, 242, 56, .12);
}

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(168, 242, 56, .45);
}

.specialty-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.7rem;
}

.specialty-row span {
  padding: .43rem .69rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  color: #dce5e0;
  font-size: .83rem;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.profile-card,
.featured-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.profile-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.profile-card > img {
  width: 92px;
  height: 92px;
  border-radius: 18px;
  object-fit: cover;
}

.profile-card-copy {
  display: grid;
  gap: .28rem;
}

.profile-card-copy span {
  color: var(--accent);
  font-size: .79rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .075em;
}

.profile-card-copy strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

.featured-visual {
  position: relative;
}

.featured-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #06100c;
}

.visual-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: .12rem;
  padding: .8rem .95rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  background: rgba(4, 10, 7, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visual-label span {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 830;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.visual-label strong {
  font-size: 1rem;
}

.proof-strip {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .018);
}

.proof-strip div {
  padding: 1.1rem 1.2rem;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: .94rem;
}

.proof-strip span {
  margin-top: .24rem;
  color: var(--muted);
  font-size: .81rem;
}

.capability-section {
  background: rgba(255, 255, 255, .012);
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 2.7rem;
}

.section-heading > p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.capability-card {
  min-height: 280px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .034), rgba(255, 255, 255, .015));
}

.capability-card:first-child {
  border-color: rgba(168, 242, 56, .28);
  background:
    linear-gradient(145deg, rgba(168, 242, 56, .08), rgba(255, 255, 255, .015));
}

.icon-box,
.system-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 3rem;
  border-radius: 14px;
  background: rgba(168, 242, 56, .10);
  color: var(--accent);
}

.icon-box svg,
.system-icon svg {
  width: 24px;
  height: 24px;
}

.capability-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.capability-card p {
  margin: .8rem 0 0;
  color: var(--muted);
}

.work-section {
  background:
    radial-gradient(circle at 10% 28%, rgba(168, 242, 56, .08), transparent 30rem);
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, .96fr);
  overflow: hidden;
  border: 1px solid rgba(168, 242, 56, .24);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.project-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.project-topline {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.project-topline span {
  padding: .36rem .63rem;
  border-radius: 999px;
  background: rgba(168, 242, 56, .10);
  color: var(--accent);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.project-topline strong {
  font-size: .9rem;
}

.project-copy h3 {
  margin: 1.2rem 0 0;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -.036em;
}

.project-copy > p {
  color: var(--muted);
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.7rem;
}

.feature-columns ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: .62rem;
  list-style: none;
  color: #dbe4df;
  font-size: .91rem;
}

.feature-columns li {
  display: flex;
  align-items: flex-start;
  gap: .52rem;
}

.feature-columns li svg {
  width: 17px;
  height: 17px;
  margin-top: .2rem;
  color: var(--accent);
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  margin-top: 2rem;
}

.project-links a,
.project-links button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 830;
  text-decoration: none;
  cursor: pointer;
}

.project-links svg {
  width: 17px;
  height: 17px;
}

.project-image {
  min-height: 650px;
  background: #06100c;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.systems-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 1rem;
  margin-top: 1rem;
}

.system-card {
  min-height: 320px;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
}

.greedy-card {
  border-color: rgba(168, 242, 56, .25);
  background:
    radial-gradient(circle at 75% 18%, rgba(168, 242, 56, .13), transparent 16rem),
    var(--panel);
}

.system-art {
  position: relative;
  min-height: 145px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(168, 242, 56, .10), transparent 55%),
    #081610;
}

.token {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  color: #06100c;
  box-shadow: 0 16px 35px rgba(0, 0, 0, .28);
}

.token-a {
  width: 72px;
  height: 72px;
  top: 30px;
  left: 12%;
  background: var(--accent);
}

.token-b {
  width: 48px;
  height: 48px;
  top: 22px;
  left: 48%;
  background: #ffd66f;
}

.token-c {
  width: 56px;
  height: 56px;
  right: 10%;
  bottom: 24px;
  background: #c69cff;
}

.game-path {
  position: absolute;
  right: 6%;
  bottom: 24px;
  left: 8%;
  height: 3px;
  border-radius: 99px;
  background:
    linear-gradient(90deg, var(--accent), #ffd66f 48%, #c69cff);
  transform: rotate(-9deg);
  opacity: .8;
}

.system-icon {
  margin-bottom: 2rem;
}

.system-copy {
  margin-top: auto;
}

.system-label {
  color: var(--accent);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.system-copy h3 {
  margin: .65rem 0 0;
  font-size: 1.55rem;
}

.system-copy p {
  margin: .7rem 0 0;
  color: var(--muted);
}

.gallery-block {
  margin-top: 5rem;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.25rem;
}

.gallery-heading h3 {
  margin: 0;
  font-size: 2rem;
}

.gallery-heading > p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  color: var(--text);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .22s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item span {
  position: absolute;
  right: .55rem;
  bottom: .55rem;
  left: .55rem;
  padding: .52rem .62rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  background: rgba(4, 10, 7, .80);
  font-size: .79rem;
  font-weight: 760;
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.approach-section {
  background: rgba(255, 255, 255, .012);
  border-block: 1px solid rgba(255, 255, 255, .04);
}

.approach-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 4rem;
}

.approach-lead {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.approach-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
}

.approach-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.approach-list > article > span {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 900;
}

.approach-list h3 {
  margin: 0;
  font-size: 1.24rem;
}

.approach-list p {
  margin: .42rem 0 0;
  color: var(--muted);
}

.contact-section {
  padding-top: 2rem;
}

.contact-panel {
  padding: clamp(1.5rem, 4vw, 3.1rem);
  border: 1px solid rgba(168, 242, 56, .25);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(168, 242, 56, .08), transparent 46%),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-intro {
  max-width: 760px;
}

.contact-intro > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 2rem;
}

.contact-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: .8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .026);
  color: var(--text);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 242, 56, .5);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.whatsapp .contact-icon { background: #25d366; }
.email .contact-icon { background: #ea4335; }
.facebook .contact-icon { background: #1877f2; }
.fiverr .contact-icon { background: #1dbf73; }
.upwork .contact-icon { background: #14a800; }
.website .contact-icon { background: #6f63ff; }

.contact-card > span:nth-child(2) {
  display: grid;
  line-height: 1.18;
}

.contact-card small {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .78rem;
}

.contact-card > svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.footer {
  padding: 2.5rem 0 6rem;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: .9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.footer-grid p {
  margin: 0;
}

.mobile-contact-bar {
  position: fixed;
  z-index: 90;
  right: .8rem;
  bottom: .8rem;
  left: .8rem;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(5, 13, 9, .94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.mobile-contact-bar a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 12px;
  font-weight: 850;
  text-decoration: none;
}

.mobile-contact-bar a:first-child {
  background: #25d366;
  color: #04130a;
}

.mobile-contact-bar a:last-child {
  background: var(--panel-2);
}

.lightbox {
  width: min(94vw, 1100px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #030805;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, .86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox img {
  width: 100%;
  max-height: 88vh;
  border-radius: 20px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: .65rem;
  right: .65rem;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: rgba(3, 8, 5, .84);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 1060px) {
  .hero-grid,
  .featured-project,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-panel {
    max-width: 820px;
  }

  .project-image {
    min-height: 0;
  }

  .project-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .systems-grid {
    grid-template-columns: 1fr 1fr;
  }

  .greedy-card {
    grid-column: 1 / -1;
  }

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

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

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4.4rem 0;
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    padding: .75rem;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #081610;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: .8rem;
  }

  .nav-links .nav-cta {
    text-align: center;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: 15ch;
    font-size: clamp(2.55rem, 12vw, 4.25rem);
  }

  .lead {
    font-size: 1.01rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .profile-card {
    grid-template-columns: 72px 1fr;
  }

  .profile-card > img {
    width: 72px;
    height: 72px;
    border-radius: 15px;
  }

  .featured-visual img {
    aspect-ratio: 4 / 3;
    object-fit: contain;
  }

  .visual-label {
    position: static;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: var(--panel);
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .capability-grid,
  .contact-grid,
  .systems-grid,
  .feature-columns {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: auto;
  }

  .icon-box {
    margin-bottom: 2rem;
  }

  .greedy-card {
    grid-column: auto;
  }

  .featured-project {
    border-radius: 22px;
  }

  .project-image img {
    object-fit: contain;
  }

  .gallery-heading {
    display: grid;
    align-items: start;
  }

  .gallery {
    grid-auto-flow: column;
    grid-auto-columns: 84%;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: .5rem;
    scroll-snap-type: x mandatory;
  }

  .gallery-item {
    scroll-snap-align: start;
  }

  .contact-card {
    min-height: 84px;
  }

  .footer {
    padding-bottom: 7rem;
  }

  .mobile-contact-bar {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .specialty-row span {
    font-size: .77rem;
  }

  .profile-card-copy strong {
    font-size: .95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
