/* Header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

.header-group {
  position: absolute;
  top: clamp(40px, 5vw, 80px);
  left: clamp(40px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 200;
  color: var(--color-fg);
  white-space: nowrap;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-fg);
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

body.nav-open .hamburger {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open .hamburger span {
  background: white;
}

body.nav-open .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

body.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

body.nav-open .brand {
  color: white;
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 150;
  display: flex;
  align-items: flex-start;
  padding: clamp(40px, 5vw, 80px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay__cta {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: white;
  color: #0a0a0a;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-top: clamp(60px, 8vw, 100px);
  transition: transform 0.15s ease;
}

.nav-overlay__cta:active {
  transform: scale(0.97);
}

.nav-overlay__cta:hover .btn-arrow {
  transform: translateX(6px);
}

@media (min-width: 768px) {
  .site-header {
    padding: 32px 40px;
  }
}

/* Contact — base styles (apply on all viewports) */
.contact__eyebrow,
.contact__intro,
.contact__label,
.contact__input,
.contact__textarea,
.contact__sign {
  color: white;
}

.contact__intro,
.contact__sign {
  font-weight: 200;
  line-height: 1.65;
}

/* Success state */
.contact__success {
  display: none;
  opacity: 0;
  animation: contact-fade-in 0.6s ease forwards;
}

.contact--sent .contact__form,
.contact--sent .contact__sign {
  display: none;
}

.contact--sent .contact__success {
  display: block;
}

.contact__success-title {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.contact__success-sub {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.6rem, 0.8vw, 0.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.contact__success-sign {
  font-family: 'Inter', sans-serif;
  font-weight: 200;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: white;
  line-height: 1.65;
  letter-spacing: -0.01em;
}

@keyframes contact-fade-in {
  to { opacity: 1; }
}

.contact__eyebrow,
.contact__label {
  font-family: 'Space Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact__form {
  display: flex;
  flex-direction: column;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: white;
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  cursor: pointer;
  -webkit-appearance: none;
  transition: transform 0.15s ease;
}

.contact__submit:active {
  transform: scale(0.97);
}

.contact__input,
.contact__textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  padding: 10px 0;
  outline: none;
  resize: none;
  -webkit-appearance: none;
  transition: border-color var(--transition);
}

.contact__input:focus,
.contact__textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.hero__image-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__logo {
  display: none;
}

.hero__mobile-logo {
  display: none;
}

.hero__tagline-mobile {
  display: none;
}

.btn-instagram {
  display: none;
}

@media (min-width: 1024px) {
  .hero__logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 30%;
    width: 40vw;
    height: auto;
    max-width: none;
  }
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.hero__text-card {
  background: white;
  padding: 20px 24px;
  margin-top: -2px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;

}

.hero__title {
  font-family: var(--font-body);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero__subtitle-card {
  background: #0a0a0a;
  color: white;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;

  text-transform: uppercase;
  line-height: 1.5;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: white;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.8rem;

  text-transform: uppercase;
  text-decoration: none;
  margin: 24px 24px 0 24px;
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 64px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, 1px);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-primary:active {
  transform: scale(0.97);
}


@media (min-width: 1024px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr 50vw;
    min-height: 100vh;
    padding-top: 0;
    overflow: visible;
  }

  .hero__right {
    grid-column: 2;
    grid-row: 1;
  }

  .hero__image-wrap {
    aspect-ratio: unset;
    height: max(100vh, 65vw);
    width: 100%;
    margin-top: 0;
    padding: 0;
  }

  .slide--harvey {
    position: relative;
    height: max(100vh, 65vw);
    display: flex;
    flex-direction: row;
  }

  .slide--sofi {
    position: relative;
    height: max(100vh, 65vw);
    overflow: hidden;
  }

  .sofi__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .sofi__workplay {
    position: absolute;
    bottom: clamp(20px, 3vw, 48px);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2 * clamp(20px, 3vw, 48px));
    display: block;
  }

  .slide--contact {
    min-height: 100vh;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vw, 120px);
  }

  .contact__inner {
    width: 100%;
    max-width: 480px;
  }

  .contact__eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.66rem, 0.9vw, 0.96rem);
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: clamp(16px, 2vw, 32px);
  }

  .contact__intro {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: white;
    line-height: 1.65;
    letter-spacing: -0.01em;
    margin-bottom: clamp(28px, 3vw, 48px);
  }

  .contact__rule {
    width: clamp(48px, 7.2vw, 96px);
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: clamp(40px, 5vw, 72px);
  }

  .contact__form {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3vw, 48px);
  }

  .contact__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact__label {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.5rem, 0.65vw, 0.7rem);
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }

  .contact__input,
  .contact__textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1.1rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    padding: 10px 0;
    outline: none;
    width: 100%;
    resize: none;
    transition: border-color var(--transition);
  }

  .contact__input:focus,
  .contact__textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.7);
  }

  .contact__submit {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: white;
    color: #0a0a0a;
    border: none;
    border-radius: 999px;
    padding: 16px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    cursor: pointer;
    margin-top: clamp(8px, 1vw, 16px);
    transition: opacity var(--transition), transform 0.15s ease;
  }

  .contact__submit:hover .btn-arrow {
    transform: translateX(6px);
  }

  .contact__submit:active {
    transform: scale(0.97);
  }

  .contact__sign {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: clamp(0.85rem, 1vw, 1rem);
    color: white;
    line-height: 1.65;
    letter-spacing: -0.01em;
    margin-top: clamp(40px, 5vw, 72px);
  }

  .harvey__half {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
  }

  .harvey__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

  .harvey__half--mirror .harvey__img {
    transform: scaleX(-1);
  }

  .harvey__list {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(16px, 2vw, 28px) clamp(20px, 3vw, 40px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    pointer-events: none;
  }

  .harvey__list span {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.45rem, 0.6vw, 0.65rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    letter-spacing: 0.04em;
  }

  .harvey__list span::after {
    content: ' /\00a0';
    color: rgba(255, 255, 255, 0.2);
  }

  .harvey__list span:last-child::after {
    content: '';
  }

  .harvey__center-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 20px;
    padding-bottom: 15%;
    text-align: center;
    pointer-events: none;
  }

  .harvey__eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.66rem, 0.9vw, 0.96rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: clamp(12px, 2vw, 40px);
  }

  .harvey__rule {
    width: clamp(48px, 7.2vw, 96px);
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin-bottom: clamp(12px, 2vw, 40px);
  }

  .harvey__quote {
    font-size: clamp(1.92rem, 3.12vw, 3.6rem);
    font-weight: 200;
    font-style: italic;
    color: white;
    line-height: 1.2;
    text-align: center;
    margin-bottom: clamp(12px, 2vw, 40px);
  }

  .harvey__quote strong {
    font-weight: 900;
    font-style: normal;
  }

  .harvey__rule--bottom {
    margin-bottom: clamp(12px, 2vw, 40px);
  }

  .harvey__cta {
    font-family: 'Space Mono', monospace;
    font-size: clamp(0.66rem, 0.9vw, 0.96rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.18em;
  }

  .harvey__cta strong {
    font-weight: 700;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    font-size: 120%;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero__left {
    grid-column: 1;
    grid-row: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(140px, 22vh, 260px);
    padding-left: clamp(40px, 5vw, 80px);
    z-index: 10;
  }

  .hero__cards {
    display: contents;
  }

  .hero__text-card {
    background: transparent;
    padding: 0;
  }

  @keyframes text-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
  }

  .hero__eyebrow {
    font-size: clamp(2.5rem, 4.5vw, 5.5rem);
    font-weight: 200;
    background: linear-gradient(90deg, #0a0a0a 30%, #888 50%, #0a0a0a 70%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 12s ease-in-out infinite;
  }

  .hero__title {
    font-size: clamp(2.5rem, 4.5vw, 5.5rem);
    font-weight: 900;
  }

  .hero__subtitle-card {
    background: transparent;
    color: #0a0a0a;
    padding: clamp(32px, 4vw, 64px) 0 24px 0;
    font-size: clamp(1.2rem, 2vw, 2.25rem);
    font-weight: 900;
    line-height: 1;
  }

  .hero__motion {
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    font-weight: 200;
    text-transform: none;
    margin-top: clamp(24px, 3vw, 48px);
  }

  .btn-primary {
    margin: clamp(20px, 2.5vw, 40px) 0 0 0;
    align-self: start;
    justify-self: start;
    background: #0a0a0a;
    color: white;
    border-color: #0a0a0a;
    font-size: clamp(1rem, 1.8vw, 1.8rem);
  }

  .btn-primary:hover {
    background: #333;
  }

  .btn-instagram {
    display: inline-flex;
    position: static;
    text-decoration: none;
    margin-top: clamp(24px, 3vw, 48px);
  }

  @keyframes arrow-shimmer-desktop {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
  }

  .btn-arrow {
    background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.2), white);
    background-size: 300% 100%;
    animation: arrow-shimmer-desktop 4s ease-in-out infinite;
  }

  .hero__tagline {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 1rem;
    text-align: left;
    padding: 0 0 0 60px;
  }


}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  background: transparent;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

/* Body copy */
.body-copy {
  padding: 80px 24px;
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
}

.body-copy p {
  margin-bottom: 1.6em;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .body-copy {
    padding: 100px 40px;
    font-size: 1.35rem;
  }
}

/* FAQ */
.faq {
  padding: 60px 24px 100px;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid #e0e0e0;
}

.faq__question {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 32px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.4em;
  color: #0a0a0a;
}

.faq__answer p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .faq {
    padding: 60px 40px 100px;
  }

  .faq__answer p {
    font-size: 1.1rem;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Mobile only ── */
@media (max-width: 1023px) {
  .site-header:not(.scrolled) {
    opacity: 1;
    pointer-events: auto;
  }

  .site-header:not(.scrolled) .header-group {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .site-header:not(.scrolled) .brand {
    font-weight: 200;
    font-size: 18px;
    color: white;
  }

  .site-header {
    position: absolute;
  }

  .hamburger {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .hero {
    height: 100vh;
    overflow: visible;
  }

  .hero__image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }

  .hero__right {
    padding-top: 100vh;
  }

  .slide--harvey,
  .slide--sofi {
    display: none;
  }

  .slide--contact {
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 32px 80px;
    min-height: auto;
  }

  .contact__inner {
    width: 100%;
    max-width: none;
  }

  .contact__eyebrow {
    font-size: 0.75rem;
    margin-bottom: 24px;
  }

  .contact__intro {
    margin-bottom: 40px;
  }

  .contact__rule {
    margin-bottom: 48px;
  }

  .contact__form {
    gap: 60px;
  }

  .contact__label {
    font-size: 0.6rem;
  }

  .contact__input,
  .contact__textarea {
    font-size: 1rem;
  }

  .contact__submit {
    font-size: 1rem;
    margin-top: 20px;
  }

  .contact__sign {
    margin-top: 60px;
  }

  .hero__image {
    object-fit: cover;
    object-position: top;
  }

  .hero__left {
    position: absolute;
    top: 38%;
    left: 16px;
    right: 16px;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }

  .btn-instagram {
    display: inline-flex;
    margin-top: 32px;
    align-self: flex-start;
    text-decoration: none;
  }

  .hero__mobile-logo {
    display: block;
    height: clamp(100px, 22vh, 200px);
    width: auto;
    max-width: none;
    margin-left: calc(40vw - 16px);
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .hero__cards {
    display: flex;
    flex-direction: column;
  }

  .hero__text-card {
    background: white;
    padding: clamp(14px, 3vh, 24px);
  }

  .hero__subtitle-card {
    background: #0a0a0a;
    color: white;
    padding: clamp(14px, 3vh, 24px);
    margin-top: 0;
    text-transform: uppercase;
    font-size: clamp(0.85rem, 2.5vw, 1.15rem);
    font-weight: 900;
    line-height: 1.2;
  }

  .hero__motion {
    display: none;
  }

  .hero__tagline-mobile {
    display: block;
    position: static;
    text-align: left;
    font-size: 18px;
    font-weight: 200;
    color: white;
    margin-top: 20px;
  }

  .btn-primary {
    margin: clamp(10px, 2vh, 20px) 0 0 0;
    background: white;
    color: #0a0a0a;
    border-color: transparent;
    align-self: flex-start;
    font-size: clamp(1rem, 4vw, 1.4rem);
    font-weight: 900;
  }

  @keyframes arrow-shimmer {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(500%); opacity: 0; }
  }

  .btn-arrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    height: calc(100% + 4px);
    width: 25%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: arrow-shimmer 2s ease-in-out infinite;
  }

  @keyframes text-shimmer-mobile {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
  }

  .hero__eyebrow {
    font-size: clamp(1.4rem, 5.3vw, 2rem);
    font-weight: 200;
    line-height: 0.95;
    margin-bottom: clamp(4px, 1vh, 8px);
    background: linear-gradient(90deg, #0a0a0a 30%, #888 50%, #0a0a0a 70%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer-mobile 12s ease-in-out infinite;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6.7vw, 2.5rem);
    font-weight: 900;
    line-height: 0.95;
  }
}

/* Mobile square/landscape — switch to scrollable stacked layout */
@media (max-width: 1023px) and (min-aspect-ratio: 10/13) {
  body {
    overflow-y: auto;
  }

  .hero {
    height: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .hero__right {
    display: contents;
  }

  .hero__image-wrap {
    position: relative;
    height: 50vw;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    order: 1;
  }

  .slide--harvey,
  .slide--sofi {
    display: none;
  }

  .slide--contact {
    order: 3;
    display: flex;
    padding: 48px 24px 64px;
    min-height: auto;
  }

  .hero__left {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    background: #0a0a0a;
    padding: 24px 16px;
  }

  .hero__text-card {
    background: transparent;
    padding: 0;
    padding-bottom: 12px;
  }

  .hero__eyebrow {
    background: linear-gradient(90deg, white 30%, #aaa 50%, white 70%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero__title {
    color: white;
    -webkit-text-fill-color: white;
  }

  .hero__subtitle-card {
    padding: 12px 0;
  }

  .hero__tagline-mobile {
    color: rgba(255, 255, 255, 0.6);
  }
}

