/* ============================================================
   ABOUT US — about-us.css
   Merged: internal <style> block + about-us.css
   No clamp(), no vw-based font sizing.
   Nothing changed — only combined into one file.
============================================================ */

/* ══════════════════════════════════════════════════════════
   RESET & CUSTOM PROPERTIES
   (was in internal <style>)
══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════
   WEB FONTS
══════════════════════════════════════════════════════════ */
/* @font-face declarations and shared :root tokens now live in
   assets/css/root.css (loaded before this file on every page) */

:root {
  --card-w: 20svw;
}

/* ── Border utilities ── */
.gradient-frame {
  border: 16px solid;
  border-image-source: linear-gradient(90deg,
      #0337C1 -1.96%, #1548B6 7.34%,
      #689982 53.47%, #9DCC62 86.07%,
      #B1E055 101.95%);
  border-image-slice: 1;
}

.frame {
  border: 16px solid var(--green);
}

/* ── Hero title entrance (JS adds .is-visible) ── */
.page-hero__title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
  font-weight: 900;
}

.page-hero__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Brands ticker keyframe ── */
@keyframes brandsTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-30%);
  }
}

/* ── Scroll-reveal base + visible states ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .85s cubic-bezier(.16, 1, .3, 1),
    transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: .12s;
}

.reveal-delay-2 {
  transition-delay: .22s;
}

.reveal-delay-3 {
  transition-delay: .32s;
}

/* ── Reduced-motion overrides ── */
@media (prefers-reduced-motion: reduce) {
  .au-brands__track {
    animation: none;
  }

  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}




/* ══════════════════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 247px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
}

/* base styles — entrance state handled above via .is-visible */
.page-hero__title {
  position: relative;
  z-index: 2;
  font-family: 'Helvetica', sans-serif;
  font-size: 75px;
  font-weight: 800;
  letter-spacing: -3.75px;
  background: linear-gradient(90deg, #d2f670 0%, #193ad3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════════════════ */
.au-intro {
  background: var(--black);
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.au-intro__visual {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 72%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0 auto;
}

.au-intro__visual img {
  width: 100%;
  height: auto;
  display: block;
  will-change: opacity;
  transition: opacity .25s ease;
}

.au-intro__visual-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.au-intro__text {
  position: relative;
  z-index: 2;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: var(--black);
}

.au-intro__heading {
  font-family: 'Cal Sans', sans-serif;
  font-size: 100px;
  color: var(--green-alt);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -3px;
  margin: 0;
  width: 100%;
}

.au-intro__inline-photo {
  display: inline-block;
  width: 182px;
  height: 106px;
  vertical-align: middle;
  overflow: hidden;
  border-radius: 0;
  margin: 0 12px;
  position: relative;
  top: -4px;
}

.au-intro__inline-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.au-intro__desc {
  font-family: 'HelveticaL', sans-serif;
  font-size: 22px;
  line-height: 1.75;
  color: var(--cream);
  text-align: center;
  max-width: 820px;
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   DATA-LED
══════════════════════════════════════════════════════════ */
.au-data {
  background: var(--black);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.au-data .au-data-container {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin: 0 14px;
  width: 100%;
}

.au-data__img {
  flex: 0 0 46%;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}

.au-data__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.au-data__content {
  flex: 1;
  min-width: 0;
  /* prevents flex overflow */
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  /* clips watermark */
}

/* Watermark — clipped inside content box */
.au-data .au-gradientlogo {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%) scaleX(-1);
  width: 560px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* All content children sit above watermark */
.au-data__content>* {
  position: relative;
  z-index: 1;
}

.au-data__subtitle {
  font-family: 'HelveticaL', sans-serif;
  font-size: 25px;
  line-height: 1.6;
  color: var(--cream);
  margin: 0;
}

.au-data__heading {
  font-family: 'Cal Sans', sans-serif;
  font-size: 50px;
  color: var(--green-alt);
  line-height: 1.05;
  margin: 0;
}

.au-data__cols {
  display: grid;
  grid-template-columns: 1fr;
  /* gap: 14px 32px; */
}

.au-data__col p {
  font-family: 'HelveticaL', sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--cream);
  margin: 0 0 16px;
}


/* ══════════════════════════════════════════════════════════
   BRANDS TICKER
══════════════════════════════════════════════════════════ */
.au-brands {
  background: var(--black);
  overflow: hidden;
  padding: 20px 0;
}

.au-brands__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: brandsTicker 18s linear infinite alternate;
}

.au-brands__track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(.8);
}


/* ══════════════════════════════════════════════════════════
   CREATOR ECONOMY
══════════════════════════════════════════════════════════ */
.au-creator {
  background: var(--black);
  display: flex;
  align-items: center;
  /* NOT stretch — preserves aspect-ratio */
  overflow: hidden;
  position: relative;
  min-height: 580px;
  padding: 40px 90px;
}

.au-creator__watermark {
  position: absolute;
  left: 58%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.au-creator__watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.au-creator__content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 60px 60px;
}

.au-creator__text {
  font-family: 'HelveticaL', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--cream);
  margin: 0;
}

.au-creator__result-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
  margin: 0;
  background: linear-gradient(90deg,
      var(--green) 0%, var(--green) 8%, #D2F670 16%,
      #6bb85e 28%, #4e9aaa 42%, #4479dd 56%,
      #3a5ef5 70%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.au-creator__result-label .au-result {
  font-size: 28px;
}

.au-creator__img-wrap {
  flex: 0 0 auto;
  width: 42%;
  aspect-ratio: 1 / 1;
  /* square at every size */
  position: relative;
  padding: 14px;
  background: linear-gradient(145deg,
      var(--green) 0%,
      #6aad5a 30%,
      #0fabff 60%,
      var(--blue) 100%);
  margin: 14px 0 14px 0;
  flex-shrink: 0;
}

.au-creator__img-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.au-creator__img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}


/* ══════════════════════════════════════════════════════════
   BORN IN ASIA
══════════════════════════════════════════════════════════ */
.au-born {
  background: var(--blue);
  position: relative;
  padding: 120px 93px;
  overflow: hidden;
}

.au-born__bg {
  position: absolute;
  inset: 0;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 70%;
}

.au-born__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.au-born__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 70px;
}

.au-born__heading {
  font-family: 'Cal Sans', sans-serif;
  font-size: 60px;
  color: var(--white);
  line-height: 1.05;
  flex: 0 0 40%;
  margin: 0;
}

.au-born__desc {
  font-family: 'HelveticaL', sans-serif;
  font-size: 20px;
  line-height: 1.75;
  color: var(--cream);
  margin: 0;
}


/* ══════════════════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════════════════ */
.au-team {
  background: var(--black);
}

.au-team__panel {
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle farthest-corner at 50% 100%, #2c2c30, var(--black));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.au-team__heading {
  font-family: 'Cal Sans', sans-serif;
  font-size: 55px;
  color: var(--green-alt);
  text-align: center;
  margin: 0;
  line-height: 1;
  letter-spacing: -1px;
  padding-top: 4.75rem;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.au-team__sub {
  font-family: 'HelveticaL', sans-serif;
  font-size: 14px;
  color: rgba(216, 213, 199, .55);
  margin-top: 0.35rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.au-team__stage {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.au-team__stack {
  position: relative;
  width: var(--card-w);
  height: calc(var(--card-w) * 1.5);
  flex-shrink: 0;
}

.au-team__card {
  /* width: var(--card-w); */
  /* height: calc(var(--card-w) * 1.5); */
  width: 300px;
  height: 380px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  border: 10px solid transparent;
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(135deg, var(--green-alt) 0%, #0fabff 50%, var(--blue) 100%) border-box;
  will-change: transform, opacity;
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: rgba(0, 0, 0, .25) 0 8px 24px;
}

.au-team__card-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.au-team__card-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  display: block;
}

.au-team__card-gradient {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  z-index: 1;
  background: linear-gradient(0deg, var(--black) 3%, transparent);
  pointer-events: none;
}

.au-team__card--c1 {
  z-index: 4;
}

.au-team__card--c2 {
  z-index: 3;
}

.au-team__card--c3 {
  z-index: 2;
}

.au-team__card--c4 {
  z-index: 1;
}

.au-team__card-info {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
}

.au-team__card-name {
  font-family: 'Cal Sans', sans-serif;
  font-size: 22px;
  color: var(--white);
  line-height: 1.15;
  text-transform: uppercase;
}

.au-team__card-role {
  font-family: 'HelveticaL', sans-serif;
  font-size: 12px;
  color: var(--white);
  margin-top: 3px;
  opacity: .75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}


/* ══════════════════════════════════════════════════════════
   CTA
══════════════════════════════════════════════════════════ */
.au-cta__center {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 32px !important;
  width: auto !important;
  text-align: center;
}

.au-cta__eyes {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
}

.au-cta__eye-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.au-cta__btn-label {
  font-family: 'HelveticaL', sans-serif;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: color .2s;
}

.au-cta__btn-label:hover {
  color: var(--green-alt);
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   1480px  wide desktop
   1280px  large laptop
   1100px  small laptop — team switches to static grid
   1024px  landscape tablet
    900px  tablet portrait — two-col sections stack
    768px  tablet portrait small
    600px  phone portrait
    479px  small phone
══════════════════════════════════════════════════════════ */

@media (max-width: 1600px) {
  .au-intro__heading {
    font-size: 90px;
  }
}

/* ── 1480px ── */
@media (max-width: 1480px) {
  .au-intro__heading {
    font-size: 70px;
    width: 96%;
  }

  .au-born__heading {
    font-size: 55px;
  }

  .au-creator__text {
    font-size: 16px;
  }

  .au-born__inner {
    gap: 40px;
  }
}

/* ── 1280px ── */
@media (max-width: 1280px) {
  .au-intro__heading {
    font-size: 56px;
    width: 100%;
  }

  .au-data__heading {
    font-size: 44px;
  }

  .au-data__subtitle {
    font-size: 22px;
  }

  .au-data__col p {
    font-size: 16px;
  }

  .au-creator__content {
    padding: 50px 44px;
  }

  .au-creator__text {
    font-size: 15px;
  }

  .au-born__heading {
    font-size: 50px;
  }

  .au-team__card {
    width: 260px;
    height: 320px;
  }
}

/* ── 1100px: team → static grid (tablet + mobile) ── */
@media (max-width: 1100px) {

  .au-team__panel {
    height: auto;
    padding-bottom: 3rem;
    overflow: visible;
  }

  .au-team__stage {
    overflow: visible;
    flex: none;
    padding: 2rem 1rem;
  }

  .au-team__stack {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .au-team__card {
    position: relative;
    top: auto;
    left: auto;
    width: 38svw;
    height: calc(38svw * 1.5);
    transform: none !important;
    opacity: 1 !important;
    transition: box-shadow 0.3s ease;
  }

  .au-team__card:hover {
    box-shadow: rgba(0, 0, 0, .45) 0 16px 40px;
  }

  .au-team__card--c1,
  .au-team__card--c2,
  .au-team__card--c3,
  .au-team__card--c4 {
    z-index: auto;
  }

  .au-team__heading {
    font-size: 40px;
  }

  .au-team__card-name {
    font-size: 16px;
  }

  .au-team__card-role {
    font-size: 10px;
  }
}

/* ── 1024px: landscape tablet ── */
@media (max-width: 1024px) {
  .page-hero__title {
    font-size: 58px;
    letter-spacing: -2.5px;
  }

  .au-intro__heading {
    font-size: 50px;
    letter-spacing: -2px;
  }

  .au-intro__desc {
    font-size: 18px;
  }

  .au-intro__inline-photo {
    width: 110px;
    height: 64px;
  }

  .au-data__img {
    flex: 0 0 40%;
    min-height: 480px;
  }

  .au-data__content {
    padding: 36px 32px;
    gap: 16px;
  }

  .au-data__heading {
    font-size: 38px;
  }

  .au-data__subtitle {
    font-size: 18px;
  }

  .au-data__col p {
    font-size: 15px;
    line-height: 1.65;
  }

  .au-data__cols {
    gap: 20px 24px;
  }

  .au-data .au-gradientlogo {
    display: none;
  }

  .au-creator {
    padding: 40px 48px;
    min-height: unset;
  }

  .au-creator__content {
    padding: 40px 32px;
    gap: 18px;
  }

  .au-creator__text {
    font-size: 15px;
  }

  .au-creator__result-label {
    font-size: 15px;
  }

  .au-creator__result-label .au-result {
    font-size: 24px;
  }

  .au-creator__img-wrap {
    width: 46%;
  }

  .au-born {
    padding: 80px 48px;
  }

  .au-born__heading {
    font-size: 48px;
    flex: 0 0 50%;
  }

  .au-born__desc {
    font-size: 17px;
  }

  .au-team__card {
    width: 36svw;
    height: calc(36svw * 1.5);
  }

  .au-team__heading {
    font-size: 34px;
  }

  .au-team__card-name {
    font-size: 15px;
  }

  .au-cta__btn-label {
    font-size: 18px;
  }

  .au-cta__eyes {
    gap: 56px;
  }
}

/* ── 900px: portrait tablet — all two-col sections stack ── */
@media (max-width: 900px) {

  .page-hero__title {
    font-size: 44px;
    letter-spacing: -2px;
  }

  .au-intro__visual {
    width: 90%;
    position: relative;
    top: auto;
  }

  .au-intro__text {
    padding: 40px 24px;
    gap: 24px;
  }

  .au-intro__heading {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -1.5px;
  }

  .au-intro__inline-photo {
    width: 72px;
    height: 44px;
    margin: 0 6px;
    border-radius: 4px;
  }

  .au-intro__desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .au-data {
    flex-direction: column;
  }

  .au-data .au-data-container {
    flex-direction: column;
    margin: 0;
  }

  .au-data__img {
    flex: none;
    width: 100%;
    height: 400px;
    min-height: unset;
  }

  .au-data__content {
    padding: 36px 24px;
    gap: 16px;
    overflow: visible;
  }

  .au-data__heading {
    font-size: 34px;
  }

  .au-data__subtitle {
    font-size: 17px;
  }

  .au-data__col p {
    font-size: 15px;
    line-height: 1.7;
  }

  .au-data__cols {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .au-data .au-gradientlogo {
    display: none;
  }

  .au-creator {
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    min-height: unset;
  }

  .au-creator__content {
    padding: 0 0 32px;
    width: 100%;
    gap: 16px;
  }

  .au-creator__text {
    font-size: 16px;
    line-height: 1.75;
  }

  .au-creator__result-label {
    font-size: 15px;
  }

  .au-creator__result-label .au-result {
    font-size: 22px;
  }

  .au-creator__img-wrap {
    width: calc(54% - 28px);
    height: auto;
    margin: 0 auto 14px 0;
    padding: 10px;
  }

  .au-creator__watermark {
    display: none;
  }

  .au-born {
    padding: 60px 24px;
  }

  .au-born__inner {
    flex-direction: column;
    gap: 28px;
  }

  .au-born__heading {
    flex: none;
    font-size: 52px;
  }

  .au-born__desc {
    font-size: 16px;
  }

  .au-team__card {
    width: 40svw;
    height: calc(40svw * 1.5);
  }

  .au-team__heading {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .au-team__card-name {
    font-size: 14px;
  }

  .au-cta__eyes {
    gap: 40px;
  }

  .au-cta__btn-label {
    font-size: 16px;
  }
}

/* ── 768px: smaller tablet portrait ── */
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .au-intro__heading {
    font-size: 34px;
  }

  .au-intro__desc {
    font-size: 15px;
  }

  .au-data__heading {
    font-size: 30px;
  }

  .au-data__subtitle {
    font-size: 15px;
  }

  .au-data__col p {
    font-size: 14px;
  }

  .au-data__img {
    height: 380px;
  }

  .au-creator__text {
    font-size: 15px;
  }

  .au-creator__result-label {
    font-size: 14px;
  }

  .au-creator__result-label .au-result {
    font-size: 20px;
  }

  .au-born__heading {
    font-size: 44px;
  }

  .au-born__desc {
    font-size: 15px;
  }

  .au-team__card {
    width: 44vw;
    height: calc(44vw * 1.5);
  }

  .au-team__card-name {
    font-size: 13px;
  }

  .au-team__card-role {
    font-size: 9px;
  }

  .au-team__heading {
    font-size: 26px;
  }
}

/* ── 600px: phone portrait ── */
@media (max-width: 600px) {
  .page-hero__title {
    font-size: 30px;
    letter-spacing: -1.5px;
  }

  .au-intro__text {
    padding: 32px 16px;
  }

  .au-intro__heading {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -1px;
  }

  .au-intro__inline-photo {
    width: 52px;
    height: 32px;
    margin: 0 4px;
    border-radius: 3px;
  }

  .au-intro__desc {
    font-size: 14px;
  }

  .au-data__content {
    padding: 28px 16px;
  }

  .au-data__heading {
    font-size: 26px;
  }

  .au-data__subtitle {
    font-size: 14px;
  }

  .au-data__col p {
    font-size: 13px;
    line-height: 1.65;
  }

  .au-data__img {
    height: 380px;
  }

  .au-creator {
    padding: 36px 16px;
  }

  .au-creator__content {
    padding: 0 0 24px;
    gap: 14px;
  }

  .au-creator__text {
    font-size: 14px;
  }

  .au-creator__result-label {
    font-size: 13px;
  }

  .au-creator__result-label .au-result {
    font-size: 18px;
  }

  .au-creator__img-wrap {
    width: calc(100% - 16px);
    margin: 0 8px 0;
    padding: 8px;
  }

  .au-born {
    padding: 48px 16px;
  }

  .au-born__heading {
    font-size: 36px;
  }

  .au-born__desc {
    font-size: 14px;
  }

  .au-team__heading {
    font-size: 22px;
  }

  .au-cta__btn-label {
    font-size: 15px;
  }
}

/* ── 479px: small phones ── */
@media (max-width: 479px) {
  .page-hero__title {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .au-intro__heading {
    font-size: 22px;
  }

  .au-intro__desc {
    font-size: 13px;
  }

  .au-data__heading {
    font-size: 22px;
  }

  .au-data__subtitle {
    font-size: 13px;
  }

  .au-data__col p {
    font-size: 13px;
  }

  .au-creator__text {
    font-size: 13px;
  }

  .au-creator__result-label {
    font-size: 13px;
  }

  .au-creator__result-label .au-result {
    font-size: 17px;
  }

  .au-born__heading {
    font-size: 30px;
  }

  .au-born__desc {
    font-size: 13px;
  }

  .au-team__heading {
    font-size: 20px;
  }

  .au-team__stack {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  .au-team__card {
    width: 82vw;
    max-width: 340px;
    height: calc(82vw * 1.5);
    max-height: 510px;
  }

  .au-team__card-name {
    font-size: 16px;
  }

  .au-team__card-role {
    font-size: 11px;
  }

  .au-cta__btn-label {
    font-size: 14px;
  }

  .au-cta__eyes {
    gap: 28px;
  }
}