:root {
  --black: #0a0a0a;
  --charcoal: #151515;
  --silver: #d9d9d9;
  --silver-soft: rgba(217, 217, 217, 0.72);
  --silver-dim: rgba(217, 217, 217, 0.12);
  --line: rgba(217, 217, 217, 0.2);
  --line-dark: rgba(10, 10, 10, 0.12);
  --max: 1180px;
  --outer: 5vw;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--silver);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor img {
  cursor: none;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  background: var(--silver);
  color: var(--black);
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--black);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

.loader img {
  width: 72px;
  opacity: 0.92;
  animation: loaderPulse 1.7s ease-in-out infinite;
}

.loader span {
  position: absolute;
  bottom: 36px;
  left: var(--outer);
  right: var(--outer);
  height: 1px;
  overflow: hidden;
  background: rgba(217, 217, 217, 0.12);
}

.loader span::after {
  content: "";
  display: block;
  width: 45%;
  height: 100%;
  background: var(--silver);
  animation: loaderLine 1.3s ease-in-out infinite;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.cursor-follower {
  position: fixed;
  inset: 0;
  z-index: 180;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.has-custom-cursor .cursor-follower.has-position {
  opacity: 1;
  visibility: visible;
}

.cursor-dot,
.cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 999px;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, width, height;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--silver);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid var(--silver);
  mix-blend-mode: difference;
  transition:
    width 0.3s ease,
    height 0.3s ease,
    border-color 0.3s ease;
}

.cursor-follower.is-hovering .cursor-ring {
  width: 44px;
  height: 44px;
}

.site-header {
  position: fixed;
  top: 28px;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: none;
}

.brand-mark,
.main-nav,
.menu-toggle {
  pointer-events: auto;
}

.brand-mark {
  position: absolute;
  left: var(--outer);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(18px);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.brand-mark:hover {
  transform: translateY(-2px);
  background: rgba(217, 217, 217, 0.1);
}

.brand-mark img {
  width: 27px;
  height: 29px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(20px);
}

.main-nav a {
  color: rgba(217, 217, 217, 0.88);
  font-size: 0.88rem;
  white-space: nowrap;
  transition:
    color 0.22s ease,
    opacity 0.22s ease;
}

.main-nav a span {
  margin-right: 7px;
  color: rgba(217, 217, 217, 0.42);
  font-size: 0.69rem;
}

.main-nav:hover a {
  opacity: 0.42;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--silver);
  opacity: 1;
}

.menu-toggle {
  position: absolute;
  right: var(--outer);
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.34);
  backdrop-filter: blur(18px);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 14px;
  display: block;
  width: 18px;
  height: 1px;
  background: var(--silver);
  transition:
    transform 0.22s ease,
    top 0.22s ease;
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:nth-child(2) {
  top: 27px;
}

body.menu-open .menu-toggle span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  top: 23px;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 96px var(--outer) 48px;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s ease,
    visibility 0.32s ease,
    backdrop-filter 0.32s ease,
    -webkit-backdrop-filter 0.32s ease;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  color: var(--silver);
  font-size: 2rem;
}

body.menu-open .mobile-nav {
  opacity: 1;
  visibility: visible;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

main {
  position: relative;
  isolation: isolate;
}

.section-dark {
  background: var(--black);
  color: var(--silver);
}

.section-light {
  background: var(--silver);
  color: var(--black);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px var(--outer) 92px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 1px), 0) scale(1.04);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.9) contrast(1.08) brightness(0.58) blur(4px);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.64) 42%, rgba(10, 10, 10, 0.16) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.94) 100%);
}

.hero-above {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-above img {
  height: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  max-width: 45%;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 22px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  opacity: 0.62;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.2rem;
  font-weight: 520;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
}

.hero-logo {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--silver-soft);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 650;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.button-primary {
  border: 1px solid var(--silver);
  background: var(--silver);
  color: var(--black);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--silver);
}

.section-light .button-primary:hover {
  color: var(--black);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(217, 217, 217, 0.08);
  color: var(--silver);
}

.button-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 217, 217, 0.45);
  background: rgba(217, 217, 217, 0.13);
}

.hero-ticker {
  position: absolute;
  z-index: 2;
  right: var(--outer);
  bottom: 30px;
  display: flex;
  gap: 18px;
  color: rgba(217, 217, 217, 0.52);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-ticker span:not(:last-child)::after {
  content: "|";
  margin-left: 18px;
  color: rgba(217, 217, 217, 0.28);
}

.intro {
  padding: 108px var(--outer);
}

.section-label {
  width: min(var(--max), 100%);
  margin: 0 auto 54px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid currentColor;
  padding-top: 18px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.intro-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 56px;
  align-items: end;
}

.intro-lead {
  margin: 0;
  max-width: 960px;
  font-size: 3.35rem;
  line-height: 1.02;
  font-weight: 460;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  border-bottom: 1px solid currentColor;
  font-weight: 650;
}

.beliefs {
  position: relative;
  padding: 112px var(--outer);
  overflow: hidden;
}

.beliefs::before {
  content: "";
  position: absolute;
  top: 54px;
  right: -110px;
  width: 520px;
  height: 550px;
  background: url("./idv/logo.svg") center / contain no-repeat;
  opacity: 0.035;
  transform: rotate(-8deg);
}

.beliefs-heading,
.belief-list,
.solutions-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.beliefs-heading {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 72px;
}

.beliefs-heading h2,
.approach-copy h2,
.feature-copy h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3.65rem;
  line-height: 1;
  font-weight: 500;
}

.belief-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.belief-item {
  min-height: 260px;
  padding: 24px 22px 0 0;
  border-right: 1px solid var(--line);
}

.belief-item:last-child {
  border-right: 0;
}

.belief-item span,
.method-card span,
.solution-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.48;
}

.belief-item h3,
.method-card h3,
.solution-card h3 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  font-weight: 650;
}

.belief-item p,
.method-card p,
.solution-card p,
.approach-copy p,
.feature-copy p,
.proof-copy p,
.contact-copy p {
  margin: 0;
  color: currentColor;
  opacity: 0.68;
}

.approach {
  padding: 112px max(var(--outer), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: start;
}

.approach-copy {
  position: sticky;
  top: 128px;
}

.approach-copy p:last-child,
.feature-copy p,
.proof-copy p,
.contact-copy p {
  max-width: 570px;
  margin-top: 24px;
  font-size: 1.04rem;
}

.approach-media {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.approach-media img {
  width: 100%;
  aspect-ratio: 1 / 1.16;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.05);
  transform: scale(1.03);
  transition: transform 1.2s ease;
}

.approach-media.is-visible img {
  transform: scale(1);
}

.method-steps {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.method-card,
.solution-card {
  min-height: 240px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(10, 10, 10, 0.03);
}

.featured {
  padding: 112px max(var(--outer), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: 58px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.feature-image img,
.proof-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.72) contrast(1.06) brightness(0.78);
  transform: scale(1.035);
  transition: transform 1.2s ease;
}

.feature-image.is-visible img,
.proof-image.is-visible img {
  transform: scale(1);
}

.solutions {
  padding: 112px var(--outer);
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
}

.solution-card span {
  margin-bottom: 84px;
}

.proof {
  padding: 112px max(var(--outer), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(0, 0.8fr);
  gap: 58px;
  align-items: center;
}

.proof-image {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 38px 0 0;
}

.metrics div {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.metrics dt {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 650;
}

.metrics dd {
  margin: 0;
  color: var(--silver-soft);
  font-size: 0.88rem;
}

.contact {
  padding: 112px max(var(--outer), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 72px;
}

.contact-form {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(10, 10, 10, 0.03);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.82rem;
  font-weight: 650;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.04);
  color: var(--black);
  padding: 13px 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(10, 10, 10, 0.55);
  background: rgba(10, 10, 10, 0.02);
}

.contact-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: rgba(10, 10, 10, 0.7);
  font-size: 0.92rem;
}

.site-footer {
  padding: 80px max(var(--outer), calc((100vw - var(--max)) / 2)) 42px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(480px, 92vw);
  margin-bottom: 42px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--silver-soft);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--silver);
}

.site-footer p {
  margin: 0;
  color: rgba(217, 217, 217, 0.48);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.56;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes loaderLine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(240%);
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 4.2rem;
  }

  .intro-lead,
  .beliefs-heading h2,
  .approach-copy h2,
  .feature-copy h2,
  .proof-copy h2,
  .contact-copy h2 {
    font-size: 2.8rem;
  }

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

  .belief-item:nth-child(2) {
    border-right: 0;
  }

  .belief-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .proof-image {
    order: 2;
  }
}

@media (max-width: 840px) {
  :root {
    --outer: 22px;
  }

  .site-header {
    justify-content: space-between;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle,
  .mobile-nav {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: 0 var(--outer) 96px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-above {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: block;
    transform: none;
    pointer-events: none;
  }

  .hero-above.is-visible {
    opacity: 1;
  }

  .hero-above::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 35%, var(--black) 92%);
    pointer-events: none;
  }

  .hero-above img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 33% bottom; /* Centraliza o rosto do modelo (que está a 33% da esquerda no original) */
    display: block;
    max-width: 100%;
    opacity: 0.82;
  }

  .brand-features {
    grid-template-columns: 1fr;
  }

  .hero-content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-logo {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto 12px;
  }

  .hero h1 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .hero-copy {
    font-size: 0.94rem;
    line-height: 1.45;
    margin: 12px auto 0;
    max-width: 320px;
    text-align: center;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
  }

  .hero-actions .liquid-button {
    width: 100%;
    max-width: 280px;
  }

  .hero-actions .liquid-btn-text {
    width: 100%;
  }

  .hero-ticker {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    justify-content: center;
    width: 100%;
    max-width: calc(100% - var(--outer) * 2);
    z-index: 5;
  }

  .intro,
  .beliefs,
  .solutions {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .intro-grid,
  .approach,
  .featured,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .approach,
  .featured,
  .proof,
  .contact {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .approach-copy {
    position: static;
  }

  .approach-media img {
    aspect-ratio: 4 / 5;
  }

  .method-steps {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-image img,
  .proof-image img {
    aspect-ratio: 4 / 5;
  }

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

@media (max-width: 620px) {
  .brand-mark,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-label {
    flex-direction: column;
    margin-bottom: 36px;
  }

  .intro-lead,
  .beliefs-heading h2,
  .approach-copy h2,
  .feature-copy h2,
  .proof-copy h2,
  .contact-copy h2 {
    font-size: 2.12rem;
    line-height: 1.06;
  }

  .belief-list,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .belief-item {
    min-height: 220px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .belief-item:first-child {
    border-top: 0;
  }

  .solution-card {
    min-height: 245px;
  }

  .solution-card span {
    margin-bottom: 42px;
  }

  .contact-form {
    padding: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-follower {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor input,
  body.has-custom-cursor select,
  body.has-custom-cursor textarea,
  body.has-custom-cursor img {
    cursor: auto;
  }

  .cursor-follower {
    display: none;
  }
}

/* Brand Page Styles */
.brand-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 96px var(--outer) 32px;
}

.brand-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: auto 0;
}

.brand-card {
  background: rgba(21, 21, 21, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.brand-card-logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.brand-card-logo img {
  width: auto;
  height: 80px;
}

.brand-card-body {
  width: 100%;
}

.brand-card-body h2 {
  font-size: 3.4rem;
  font-weight: 520;
  line-height: 1;
  margin: 6px 0 24px;
}

.brand-lead {
  font-size: 1.14rem;
  line-height: 1.5;
  color: var(--silver);
  margin-bottom: 16px;
}

.brand-divider {
  width: 50px;
  height: 1px;
  background: var(--line);
  margin: 16px auto;
}

.brand-copy {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--silver-soft);
  margin-bottom: 18px;
}

.brand-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

.brand-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(217, 217, 217, 0.06);
  color: var(--silver);
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.brand-features strong {
  display: block;
  font-size: 1.04rem;
  font-weight: 650;
  color: var(--silver);
  margin-bottom: 4px;
}

.brand-features p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.42;
  color: var(--silver-soft);
}

.brand-card-footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  width: 100%;
  font-size: 0.78rem;
  color: rgba(217, 217, 217, 0.42);
}

@media (max-width: 840px) {
  .brand-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .brand-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .brand-card {
    padding: 32px 24px;
    gap: 20px;
  }

  .brand-card-logo img {
    height: 80px;
  }
  
  .brand-lead {
    font-size: 1rem;
    margin-bottom: 16px;
  }
  
  .brand-divider {
    margin: 16px auto;
  }
  
  .brand-copy {
    font-size: 0.94rem;
    margin-bottom: 18px;
  }
  
  .brand-features {
    gap: 20px;
  }
  
  .brand-features strong {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .brand-features p {
    font-size: 0.88rem;
  }

  .brand-card-footer {
    padding-top: 20px;
  }
}

/* Liquid Glass Button */
.liquid-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 8px;
  white-space: nowrap;
  border-radius: var(--radius);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.liquid-button:hover {
  transform: scale(1.05);
}

.liquid-button:active {
  transform: scale(0.97);
}

.liquid-btn-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--radius);
  pointer-events: none;
  /* Premium liquid-glass shadows styled according to the component specs */
  box-shadow: 
    0 0 8px rgba(0, 0, 0, 0.03), 
    0 2px 6px rgba(0, 0, 0, 0.08), 
    inset 3px 3px 0.5px -3.5px rgba(255, 255, 255, 0.12), 
    inset -3px -3px 0.5px -3.5px rgba(255, 255, 255, 0.85), 
    inset 1px 1px 1px -0.5px rgba(255, 255, 255, 0.6), 
    inset -1px -1px 1px -0.5px rgba(255, 255, 255, 0.6), 
    inset 0 0 6px 6px rgba(255, 255, 255, 0.12), 
    inset 0 0 2px 2px rgba(255, 255, 255, 0.06), 
    0 0 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.liquid-btn-glass {
  position: absolute;
  inset: 0;
  isolate: isolate;
  z-index: -10;
  overflow: hidden;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

@supports (backdrop-filter: url(#test)) {
  .liquid-btn-glass {
    backdrop-filter: url("#container-glass") blur(6px);
    -webkit-backdrop-filter: url("#container-glass") blur(6px);
  }
}

.liquid-btn-text {
  position: relative;
  z-index: 10;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--silver);
  font-size: 1.04rem;
  font-weight: 650;
  height: 58px;
  padding: 0 42px;
}

/* Disable scroll on desktop (except for pages allowing scroll like links.html) */
@media (min-width: 841px) {
  html:not(.allow-scroll), body:not(.allow-scroll) {
    overflow: hidden;
    height: 100%;
  }
}

/* Bio Links Page Styles */
@media (min-width: 841px) {
  .bio-page-html, .bio-page-body {
    overflow: hidden !important;
    height: 100% !important;
  }
}

.bio-links-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px var(--outer);
}

@media (min-width: 841px) {
  .bio-links-section {
    height: 100vh;
    height: 100svh;
    overflow: hidden;
    padding: 24px var(--outer);
  }
}

@media (max-width: 840px) {
  .bio-links-section {
    justify-content: flex-start;
    padding: 56px var(--outer) 36px;
    overflow-y: auto;
  }
}

.bio-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-card {
  width: 100%;
  background: rgba(21, 21, 21, 0.45);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.bio-brand-logo {
  display: flex;
  justify-content: center;
  width: 32px;
  height: auto;
  opacity: 0.72;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.bio-brand-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.bio-brand-logo img {
  width: 100%;
  height: auto;
}

/* Premium Framed Avatar for cutout photo */
.bio-avatar-container {
  position: relative;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(217, 217, 217, 0.22);
  background: linear-gradient(135deg, #161616 0%, #0d0d0d 100%);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.55),
    inset 0 0 12px rgba(255, 255, 255, 0.05);
  transition: 
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
    border-color 0.5s ease, 
    box-shadow 0.5s ease;
}

/* Subtle ambient glow behind avatar */
.bio-avatar-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(217, 217, 217, 0.16) 0%, transparent 75%);
  z-index: 1;
  pointer-events: none;
}

.bio-avatar-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: contrast(1.02) brightness(0.95);
}

.bio-avatar-container:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(217, 217, 217, 0.5);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.65), 
    0 0 25px rgba(217, 217, 217, 0.12);
}

.bio-avatar-container:hover img {
  transform: scale(1.04);
}

.bio-card-body {
  width: 100%;
}

.bio-card h1 {
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.34;
  color: var(--silver);
  margin: 0 auto 18px;
  max-width: 92%;
  letter-spacing: -0.01em;
}

.bio-card-description {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--silver-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.bio-card-description p {
  margin: 0;
}

.bio-card-description p strong {
  color: var(--silver);
  font-weight: 600;
}

.bio-links-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}

/* Premium Link Buttons with fill-up slide animation */
.bio-link-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(217, 217, 217, 0.04);
  color: var(--silver);
  font-weight: 650;
  font-size: 0.96rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  overflow: hidden;
  padding: 10px 24px;
}

.bio-link-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--silver);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.bio-link-button:hover {
  color: var(--black);
  border-color: var(--silver);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
}

.bio-link-button:hover::after {
  transform: scaleY(1);
}

.bio-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 12px;
}

.bio-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(217, 217, 217, 0.04);
  color: var(--silver);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bio-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bio-social-link:hover {
  color: var(--black);
  background: var(--silver);
  border-color: var(--silver);
  transform: translateY(-3px) rotate(4deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.bio-footer {
  width: 100%;
  font-size: 0.74rem;
  color: rgba(217, 217, 217, 0.36);
  margin-top: 16px;
}

@media (max-width: 620px) {
  .bio-links-section {
    padding: 48px 16px;
  }

  .bio-card {
    padding: 44px 28px;
    gap: 28px;
    border-radius: 24px;
  }

  .bio-avatar-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }

  .bio-card h1 {
    font-size: 1.48rem;
  }

  .bio-card-description {
    font-size: 0.92rem;
    gap: 16px;
    margin-bottom: 24px;
  }

  .bio-link-button {
    font-size: 0.94rem;
    min-height: 52px;
  }
}

/* Height-based media queries to ensure single-screen fit (no scrolling) on DESKTOP viewports */
@media (min-width: 841px) and (max-height: 780px) {
  .bio-links-section {
    padding: 16px var(--outer);
  }
  .bio-card {
    padding: 24px 28px;
    gap: 16px;
  }
  .bio-avatar-container {
    width: 88px;
    height: 88px;
    border-radius: 50%;
  }
  .bio-brand-logo {
    width: 28px;
    margin-bottom: -16px;
  }
  .bio-card h1 {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }
  .bio-card-description {
    font-size: 0.82rem;
    line-height: 1.5;
    gap: 8px;
    margin-bottom: 14px;
  }
  .bio-links-wrapper {
    gap: 10px;
    margin-bottom: 6px;
  }
  .bio-link-button {
    min-height: 42px;
    font-size: 0.88rem;
    padding: 8px 20px;
  }
  .bio-socials {
    gap: 14px;
    margin-top: 6px;
  }
  .bio-social-link {
    width: 38px;
    height: 38px;
  }
  .bio-social-link svg {
    width: 16px;
    height: 16px;
  }
  .bio-footer {
    margin-top: 10px;
    font-size: 0.7rem;
  }
}

@media (min-width: 841px) and (max-height: 640px) {
  .bio-avatar-container {
    display: none;
  }
  .bio-brand-logo {
    display: none;
  }
  .bio-card {
    padding: 16px 20px;
    gap: 12px;
    border-radius: 16px;
  }
  .bio-card h1 {
    font-size: 1.15rem;
    margin-bottom: 6px;
  }
  .bio-card-description {
    font-size: 0.78rem;
    gap: 6px;
    margin-bottom: 8px;
  }
}


