/* ==========================================================================
   FarmOR — global stylesheet
   Plain CSS. No build step, no framework.
   Breakpoints: sm 640px · lg 1024px · xl2 1536px
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Hide scrollbars everywhere (the old build used tailwind-scrollbar-hide). */
* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* -------------------------------------------------------------- tokens -- */
:root {
  --bg: #fdfbff;
  --indigo: #575dc2;
  --navy: #22255e;
  --footer-bg: #e1e3f9;
  --muted: rgba(0, 0, 0, 0.6);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --grad-button: linear-gradient(271.29deg, #242a87 8.74%, #4950c6 94.14%);
  --grad-list: linear-gradient(180deg, #cacdff 0%, #9096ff 100%);
  --grad-about: linear-gradient(
    274.59deg,
    rgba(202, 205, 255, 0.8) 27.03%,
    rgba(144, 150, 255, 0.8) 95.77%
  );

  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: #101010;
}

/* ------------------------------------------------------------ utilities -- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Site logo, top-left of every page. */
.logo {
  width: 141px;
  height: 28px;
  margin: 22px 0 0 20px;
}

.logo img {
  width: 141px;
  height: 28px;
}

/* Close button, top-right of the sub-pages. */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 50;
}

@media (min-width: 1024px) {
  .close-btn {
    top: 40px;
  }
}

/* Scroll container used by the sub-pages. */
.page {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 24px;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .page {
    padding-bottom: 0;
  }
}

/* --------------------------------------------------------------- footer -- */
.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  min-height: 144px;
  padding: 20px 16px 0;
  background-color: var(--footer-bg);
  font-size: 14px;
}

.footer a,
.footer h4 {
  color: var(--indigo);
  font-size: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}

.footer-links a {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .footer {
    padding-left: 64px;
    padding-right: 64px;
  }

  .footer a,
  .footer h4 {
    font-size: 16px;
  }
}

@media (min-width: 1536px) {
  .footer {
    min-height: 160px;
  }

  .footer a,
  .footer h4 {
    font-size: 20px;
  }
}

/* ============================================================== home === */
/* Six full-screen panels. Stacked vertically on mobile, scrolled
   horizontally (wheel-driven, snapping) from 1024px up.                     */

.screens {
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: y proximity;
}

.screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  flex-shrink: 0;
  scroll-snap-align: center;
  background-color: var(--bg);
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .screens {
    display: flex;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .screen {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
}

.screen .logo {
  display: none;
}

@media (min-width: 1024px) {
  .screen .logo {
    display: block;
  }
}

/* Section headline shared by Impact / Careers / Teams. */
.section-head {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
}

.section-head h2 {
  padding: 0 24px;
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .section-head {
    margin-top: 16px;
    padding: 0 64px;
  }

  .section-head h2 {
    padding: 0;
    font-size: 48px;
  }
}

@media (min-width: 1536px) {
  .section-head {
    margin-top: 64px;
  }

  .section-head h2 {
    font-size: 72px;
  }
}

/* -------------------------------------------------- home · scroll dial -- */
.progress-dial {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 9999px;
  background: #fff;
  transform: translateX(-50%);
}

.progress-dial svg {
  display: none;
  transform: rotate(-90deg);
}

@media (min-width: 1024px) {
  .progress-dial svg {
    display: block;
  }
}

.progress-dial circle {
  fill: none;
  stroke-width: 6%;
  stroke: #f00;
}

.progress-dial .track {
  opacity: 0.3;
}

.progress-dial .indicator {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.15s linear;
}

.progress-dial img {
  position: absolute;
}

/* ------------------------------------------------------ home · panel 1 -- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* The logo grows out of a full-bleed splash into the top-left mark. */
.hero-logo {
  display: flex;
  align-items: flex-end;
  width: 90vw;
  height: 90vh;
  margin: 22px 5vw 0;
  animation: logo-settle 2s ease forwards;
}

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

@keyframes logo-settle {
  to {
    width: 141px;
    height: 28px;
    margin-left: 0;
    margin-right: 0;
    transform: translate(20px, 10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo {
    width: 141px;
    height: 28px;
    margin-left: 20px;
    animation: none;
  }

  .hero-logo img {
    height: 28px;
  }
}

.hero-body {
  display: flex;
  margin-top: 48px;
}

@media (min-width: 1024px) {
  .hero-body {
    padding: 0 56px;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .hero-copy {
    flex: 1;
  }
}

.hero-copy h1 {
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.hero-copy p {
  padding-top: 16px;
  font-size: 14px;
  line-height: 20px;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .hero-copy h1 {
    font-size: 72px;
  }
}

@media (min-width: 1536px) {
  .hero-copy h1 {
    font-size: 96px;
  }

  .hero-copy p {
    font-size: 18px;
  }
}

/* Foreground landscape strip along the bottom of the hero. */
.hero-land {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-land {
    bottom: -96px;
  }
}

/* Mobile-only audience chips. */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  opacity: 0;
  animation: fade-up 0.5s ease 2.1s forwards;
}

.chips span {
  padding: 4px 12px;
  border-radius: 9999px;
  background-color: var(--footer-bg);
  color: var(--indigo);
  font-size: 11px;
  font-weight: 600;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Mobile-only action cards. */
.hero-cards-mobile {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 24px;
}

.hero-cards-mobile .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  animation: fade-up 0.5s ease forwards;
  transition: transform 0.15s ease;
}

.hero-cards-mobile a:nth-child(1) .card {
  animation-delay: 2.25s;
}
.hero-cards-mobile a:nth-child(2) .card {
  animation-delay: 2.4s;
}
.hero-cards-mobile a:nth-child(3) .card {
  animation-delay: 2.55s;
}

.hero-cards-mobile a:active .card {
  transform: scale(0.95);
}

.hero-cards-mobile .card-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px;
  border-radius: 8px;
}

.hero-cards-mobile h3 {
  margin-top: 8px;
  color: #1f2937;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 1024px) {
  .chips,
  .hero-cards-mobile {
    display: none;
  }
}

/* Desktop-only fanned card deck. */
.hero-deck {
  display: none;
}

@media (min-width: 1024px) {
  .hero-deck {
    display: flex;
    flex: 1;
    justify-content: center;
  }

  .hero-deck-inner {
    position: relative;
    padding: 40px 224px 0 0;
  }
}

.deck-card {
  position: absolute;
  width: 256px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
}

.deck-card:hover {
  z-index: 4;
  box-shadow: var(--shadow-xl);
}

.deck-card .card-art {
  padding: 12px 24px;
  border-radius: 8px;
}

.deck-card .card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 24px 24px 8px;
  font-size: 18px;
}

.deck-card .card-arrow {
  width: 41.666%;
  visibility: hidden;
}

.deck-card:hover .card-arrow {
  visibility: visible;
}

/* Each card deals out of the centre of the stack into its resting angle.
   The resting transform is the card's own style and the keyframes only
   describe where it starts (`backwards` fill covers the delay). Filling the
   animation forwards instead would keep overriding :hover for the life of
   the page, which is what would leave the cards frozen under the cursor. */
.deck-card--partner {
  z-index: 2;
  transform: translateX(-130px) rotate(-20deg) scale(0.8);
  animation: deal-partner 1.5s ease 1s backwards;
}

.deck-card--seller {
  z-index: 3;
  transform: rotate(0deg) scale(0.9);
  animation: deal-seller 1.5s ease 1s backwards;
}

.deck-card--contact {
  z-index: 1;
  transform: translateX(130px) rotate(20deg) scale(0.8);
  animation: deal-contact 1.5s ease 1s backwards;
}

@keyframes deal-partner {
  from {
    transform: none;
  }
}

@keyframes deal-seller {
  from {
    transform: none;
  }
}

@keyframes deal-contact {
  from {
    transform: none;
  }
}

.deck-card--partner:hover,
.deck-card--contact:hover {
  transform: rotate(0deg) scale(1.1);
}

.deck-card--seller:hover {
  transform: scale(1.1);
}

@media (min-width: 1536px) {
  .deck-card {
    width: 384px;
  }
}

/* ------------------------------------------------- home · mobile menu -- */
.menu-toggle {
  position: absolute;
  top: 35px;
  right: 15px;
  z-index: 60;
  display: block;
  width: 20px;
  height: 20px;
  opacity: 0;
  animation: fade-in 1s ease 1s forwards;
}

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

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle line {
  stroke: #000;
  stroke-width: 2.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .line-top {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .line-mid {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .line-bot {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  width: 0;
  height: 100vh;
  overflow: hidden;
  background-color: #e7dfd1;
  transition: width 0.5s ease;
}

.mobile-nav[hidden] {
  display: block;
}

.mobile-nav.is-open {
  width: 100vw;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  padding: 64px 40px 0;
  list-style: none;
}

.mobile-nav li {
  padding: 8px 0;
  border-bottom: 2px solid #8c4a0d;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s ease;
}

.mobile-nav.is-open li {
  opacity: 1;
}

.mobile-nav.is-open li:nth-child(1) {
  transition-delay: 0.2s;
}
.mobile-nav.is-open li:nth-child(2) {
  transition-delay: 0.4s;
}
.mobile-nav.is-open li:nth-child(3) {
  transition-delay: 0.6s;
}

.mobile-nav a {
  color: #8c4a0d;
  font-size: 18px;
  font-weight: 600;
}

/* ------------------------------------------------------ home · panel 2 -- */
.about-scene {
  position: relative;
  display: none;
  height: 100vh;
}

@media (min-width: 1024px) {
  .about-scene {
    display: block;
  }
}

.about-window {
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.75);
  transform-origin: top left;
}

.about-desk {
  position: absolute;
  bottom: -20px;
  left: 0;
  transform: scale(0.75);
}

@media (min-width: 1536px) {
  .about-window {
    top: 48px;
    left: 16px;
    transform: none;
  }

  .about-desk {
    bottom: 48px;
    left: 48px;
    transform: none;
  }
}

.about-badge {
  position: absolute;
  top: 0;
  right: 12px;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  overflow: hidden;
}

.about-badge img {
  z-index: 10;
  width: 256px;
}

@media (min-width: 1024px) {
  .about-badge {
    right: 0;
    justify-content: center;
  }

  .about-badge img {
    width: 288px;
  }
}

@media (min-width: 1536px) {
  .about-badge img {
    width: 384px;
  }
}

.about-lights {
  position: absolute;
  top: -16px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-left: 40px;
  overflow: visible;
  pointer-events: none;
}

.about-lights img {
  position: relative;
  z-index: 10;
  right: 176px;
  transform: scale(0.75);
}

.about-lights img:first-child {
  top: -8px;
}

.about-lights img:last-child {
  top: -48px;
  margin-left: 20px;
}

@media (min-width: 1024px) {
  .about-lights {
    left: -176px;
  }

  .about-lights img:last-child {
    margin-left: 40px;
  }
}

@media (min-width: 1536px) {
  .about-lights img {
    transform: none;
  }
}

.about-copy {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 144px;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .about-copy {
    position: absolute;
    top: 130px;
    right: 0;
    width: 50%;
    height: calc(100vh - 170px);
    margin-top: 0;
  }
}

@media (min-width: 1536px) {
  .about-copy {
    height: 50%;
  }
}

.about-copy h2 {
  margin-bottom: 16px;
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}

.about-copy > p {
  font-size: 14px;
  line-height: 20px;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .about-copy h2 {
    font-size: 36px;
  }
}

@media (min-width: 1536px) {
  .about-copy h2 {
    font-size: 48px;
  }

  .about-copy > p {
    font-size: 18px;
  }
}

.about-pair {
  position: relative;
}

@media (min-width: 1024px) {
  .about-pair {
    display: flex;
    margin-top: 20px;
  }
}

.about-card {
  position: relative;
  display: flex;
  flex: 1;
  max-width: 28rem;
  margin: 4px;
  top: 100px;
  opacity: 0;
  transition: top 0.7s ease, opacity 0.7s ease;
}

.about-card.is-visible {
  top: 0;
  opacity: 1;
}

.about-card > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 56px;
  height: 56px;
}

.about-card-body {
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 20px;
  padding: 8px;
  border: 1px solid #ae9fbc;
  border-radius: 8px;
  background: var(--grad-about);
}

.about-card-body h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
}

.about-card-body p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (min-width: 1024px) {
  .about-card-body h3 {
    font-size: 20px;
  }
}

@media (min-width: 1536px) {
  .about-card-body h3 {
    font-size: 24px;
  }

  .about-card-body p {
    font-size: 14px;
  }
}

/* ------------------------------------------------------ home · panel 3 -- */
.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  gap: 12px 0;
  padding-right: 12px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    padding-right: 0;
  }
}

.impact-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transform: scale(0);
  transition: transform 0.5s ease;
}

.impact-row.is-visible {
  transform: scale(1);
}

.impact-count {
  position: absolute;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 24px;
  background-color: #a9adf8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  color: #fffdfb;
  font-family: var(--font-display);
  font-size: 20px;
}

.impact-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 85vw;
  height: 80px;
  margin-left: 24px;
  border-radius: 16px;
  background-color: var(--footer-bg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.impact-bar p {
  flex: 1;
  margin-right: 32px;
  padding-left: 56px;
  color: #7e82d2;
  font-family: var(--font-display);
  font-size: 20px;
}

.impact-bar img {
  position: absolute;
  right: 24px;
  transform: scale(0.75);
}

@media (min-width: 1024px) {
  .impact-bar {
    margin-left: 40px;
  }

  .impact-count,
  .impact-bar p {
    font-size: 30px;
  }

  .impact-bar img {
    transform: scale(0.8);
  }
}

@media (min-width: 1536px) {
  .impact-count {
    width: 112px;
    height: 112px;
  }

  .impact-count,
  .impact-bar p {
    font-size: 36px;
  }

  .impact-bar {
    height: 128px;
  }

  .impact-bar p {
    padding-left: 144px;
  }

  .impact-bar img {
    transform: none;
  }
}

.impact-photo {
  display: flex;
  overflow: hidden;
}

.impact-photo img {
  object-fit: contain;
}

@media (min-width: 1024px) {
  .impact-photo {
    grid-column-start: 2;
    grid-row: 1 / span 4;
    height: 380px;
  }
}

@media (min-width: 1536px) {
  .impact-photo {
    height: 430px;
  }
}

/* ------------------------------------------------------ home · panel 4 -- */
.careers {
  background-color: var(--bg);
  background-image: url("../assets/careers/Careers.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.careers-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 1024px) {
  .careers-cards {
    flex-direction: row;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (min-width: 1536px) {
  .careers-cards {
    margin-top: 24px;
  }
}

.career-card {
  position: relative;
  width: 20rem;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: scale(0.85) translateY(100px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.3s ease;
}

.career-card.is-visible {
  transform: scale(0.85);
  opacity: 1;
}

.career-card:hover {
  box-shadow: var(--shadow-xl);
}

.career-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 12px 0 8px;
  font-size: 16px;
}

.career-card .apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 12px;
  border-radius: 8px;
  background-color: var(--indigo);
  color: #fff;
}

@media (min-width: 640px) {
  .career-card {
    transform: scale(0.9) translateY(100px);
  }

  .career-card.is-visible {
    transform: scale(0.9);
  }
}

@media (min-width: 1024px) {
  .career-card {
    width: 16rem;
    margin: 16px;
    padding: 16px;
    transform: translateY(100px);
    font-size: 18px;
  }

  .career-card.is-visible {
    transform: none;
  }

  .career-card .apply {
    height: 56px;
    margin-top: 20px;
  }
}

@media (min-width: 1536px) {
  .career-card {
    width: 22rem;
    margin: 32px;
  }

  .career-card-body {
    margin: 32px 0 16px;
    font-size: 24px;
  }

  .career-card .apply {
    height: 80px;
    margin-top: 56px;
    font-size: 20px;
  }
}

/* ------------------------------------------------------ home · panel 5 -- */
.team-intro {
  max-width: 36rem;
  margin-top: 8px;
  padding: 0 24px;
  font-size: 14px;
  opacity: 0.6;
}

@media (min-width: 1024px) {
  .team-intro {
    padding: 0;
  }
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 40px;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .team-grid {
    gap: 48px;
    margin-top: 32px;
    padding: 0;
  }
}

@media (min-width: 1536px) {
  .team-grid {
    gap: 80px;
    margin-top: 80px;
  }
}

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.member.is-visible {
  transform: none;
  opacity: 1;
}

.member:nth-child(2) {
  transition-delay: 0.2s;
}

.member-photo {
  position: relative;
  width: 176px;
  height: 176px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transition: box-shadow 0.3s ease;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.member-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34, 37, 94, 0.7), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.member:hover .member-photo {
  box-shadow: var(--shadow-xl);
}

.member:hover .member-photo img {
  filter: none;
  transform: scale(1.05);
}

.member:hover .member-photo::after {
  opacity: 1;
}

.member-linkedin {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px;
  border-radius: 9999px;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s ease, background-color 0.2s ease;
}

.member:hover .member-linkedin,
.member-linkedin:focus-visible {
  opacity: 1;
}

.member-linkedin:hover {
  background: var(--footer-bg);
}

.member-info {
  margin-top: 16px;
  text-align: center;
}

.member-info h3 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.member-role {
  margin-top: 4px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 600;
}

.member-bio {
  max-width: 220px;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.625;
  opacity: 0.7;
}

@media (min-width: 640px) {
  .member-photo {
    width: 208px;
    height: 208px;
  }
}

@media (min-width: 1024px) {
  .member-photo {
    width: 160px;
    height: 160px;
  }

  .member-info h3 {
    font-size: 16px;
  }

  .member-role {
    font-size: 14px;
  }

  .member-bio {
    max-width: 260px;
  }
}

@media (min-width: 1536px) {
  .member-photo {
    width: 240px;
    height: 240px;
  }

  .member-info h3 {
    font-size: 18px;
  }

  .member-role {
    font-size: 16px;
  }

  .member-bio {
    font-size: 14px;
  }
}

/* ------------------------------------------------------ home · panel 6 -- */
.social {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}

/* Desktop: the oversized Anton link list. */
.social-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .social-desktop {
    position: absolute;
    inset: 0;
    display: block;
  }
}

.social-list {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 64px 112px;
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.5);
  font-family: var(--font-display);
}

.social-list a {
  margin: 8px 0;
}

.social-list h4 {
  font-size: 48px;
  font-weight: 400;
  cursor: pointer;
}

@media (min-width: 1536px) {
  .social-list {
    margin-top: 64px;
    padding-bottom: 176px;
  }

  .social-list a {
    margin: 16px 0;
  }

  .social-list h4 {
    font-size: 72px;
  }
}

.social-list .LINKEDIN:hover {
  background: #4071b1;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.social-list .INSTAGRAM:hover {
  background: linear-gradient(
    270deg,
    #7000ff 0%,
    #f73a3e 33%,
    #f13dd2 66%,
    #7000ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.social-list .FACEBOOK:hover {
  background: #1778f2;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.social-list .YOUTUBE:hover {
  background: #f00;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.social-desktop-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Mobile: bento grid + marquee. */
.social-mobile {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .social-mobile,
  .social-mobile-footer {
    display: none;
  }
}

.social-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      ellipse at top right,
      rgba(87, 93, 194, 0.12) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      ellipse at bottom left,
      rgba(87, 93, 194, 0.08) 0%,
      rgba(255, 255, 255, 0) 60%
    );
}

.social-header {
  position: relative;
  z-index: 10;
  padding: 32px 20px 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.social-header.is-visible {
  opacity: 1;
  transform: none;
}

.social-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.social-eyebrow span {
  color: var(--indigo);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.social-rule {
  flex: 1;
  height: 1px;
  background: rgba(87, 93, 194, 0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.2s;
}

.social-header.is-visible .social-rule {
  transform: scaleX(1);
}

.social-header h3 {
  color: #1a1a1a;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  line-height: 0.95;
}

.social-header h3 span {
  color: var(--indigo);
}

.social-bento {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  padding: 0 20px;
}

.social-tile {
  position: relative;
  min-height: 115px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(87, 93, 194, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px -8px rgba(87, 93, 194, 0.25);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.social-tile.is-visible {
  opacity: 1;
  transform: none;
}

.social-tile:nth-child(1) {
  transition-delay: 0.25s;
}
.social-tile:nth-child(2) {
  transition-delay: 0.33s;
}
.social-tile:nth-child(3) {
  transition-delay: 0.41s;
}
.social-tile:nth-child(4) {
  transition-delay: 0.49s;
}

.social-tile:hover.is-visible {
  transform: translateY(-4px);
}

.social-tile:active.is-visible {
  transform: scale(0.96);
  box-shadow: 0 2px 10px -4px rgba(87, 93, 194, 0.3);
}

.social-tile-wash {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-tile:hover .social-tile-wash,
.social-tile:active .social-tile-wash {
  opacity: 1;
}

.social-tile-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.social-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.social-tile-icon svg {
  width: 20px;
  height: 20px;
}

.social-tile-arrow {
  color: var(--indigo);
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.social-tile:hover .social-tile-arrow {
  transform: translate(2px, -2px);
}

.social-tile-name {
  position: relative;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.025em;
}

.social-tile-handle {
  position: relative;
  margin-top: 2px;
  color: rgba(87, 93, 194, 0.8);
  font-size: 11px;
  font-weight: 500;
}

.social-spacer {
  flex: 1;
}

.social-marquee {
  position: relative;
  z-index: 10;
  padding: 12px 0;
  overflow: hidden;
  border-top: 1px solid rgba(87, 93, 194, 0.15);
  border-bottom: 1px solid rgba(87, 93, 194, 0.15);
  background: rgba(87, 93, 194, 0.03);
  font-family: var(--font-display);
}

.social-marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.social-marquee-track span {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 16px;
  color: #1a1a1a;
  font-size: 20px;
}

.social-marquee-track .dot {
  color: var(--indigo);
  font-size: 14px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-marquee-track {
    animation: none;
  }
}

@media (min-width: 640px) {
  .social-header h3 {
    font-size: 48px;
  }

  .social-bento {
    gap: 16px;
  }

  .social-tile {
    padding: 20px;
  }

  .social-marquee-track span {
    font-size: 24px;
  }
}

/* ========================================= sellerCentral / partnerApp === */
.split {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media (min-width: 1024px) {
  .split {
    padding: 0 64px;
  }
}

.split-inner {
  display: flex;
  flex-direction: column;
  margin: 20px 0 16px;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .split-inner {
    flex-direction: row;
    padding: 0;
  }
}

.split-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .split-col {
    width: 50%;
  }
}

.split-col + .split-col {
  margin-top: 40px;
}

.split-col h1 {
  width: 100%;
  margin: 16px 0 4px;
  padding: 0 16px;
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

.split-col .tagline {
  width: 100%;
  margin-bottom: 32px;
  padding: 0 16px;
  font-size: 18px;
}

.split-col .blurb {
  margin-bottom: 24px;
  padding: 0 24px;
  color: var(--muted);
  font-size: 16px;
}

@media (min-width: 1024px) {
  .split-col h1 {
    padding: 0;
    font-size: 60px;
  }

  .split-col .tagline,
  .split-col .blurb {
    padding: 0;
  }
}

@media (min-width: 1536px) {
  .split-col h1 {
    font-size: 72px;
  }

  .split-col .tagline {
    font-size: 20px;
  }

  .split-col .blurb {
    font-size: 18px;
  }
}

.seller-shot {
  width: 60%;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.pill-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  max-width: 100%;
  height: 56px;
  border-radius: 9999px;
  background: var(--grad-button);
  color: #fff;
  font-size: 18px;
}

.pill-button img {
  margin-right: 8px;
}

.pill-button .arrow {
  height: 12px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0.4rem 0;
  padding: 7px 8px;
  border-radius: 8px;
  background: var(--grad-list);
}

.feature-list p {
  margin-left: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .feature-list p {
    font-size: 16px;
  }
}

@media (min-width: 1536px) {
  .feature-list li {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .feature-list p {
    font-size: 18px;
  }
}

/* partnerApp variants */
.feature-list--app li {
  width: 90%;
}

@media (min-width: 1024px) {
  .feature-list--app li {
    width: 70%;
  }
}

.download-button {
  margin-bottom: 64px;
}

/* --------------------------------------------- partnerApp · carousel --- */
.carousel {
  position: relative;
  width: 100%;
  height: 25rem;
  perspective: 1000px;
}

.carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 12rem;
  height: 24rem;
  margin-left: -6rem;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.3, 1), opacity 0.6s ease,
    filter 0.6s ease;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
  transition: transform 0.25s ease;
}

.carousel-slide[data-offset="0"] img:hover {
  transform: scale(1.03);
}

.carousel-slide[aria-hidden="true"] {
  pointer-events: none;
}

.carousel-nav {
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: 20;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(87, 93, 194, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel-dot[aria-current="true"] {
  background: var(--indigo);
  transform: scale(1.3);
}

/* ============================================================ contact === */
.contact {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .contact {
    height: 100vh;
    padding-bottom: 0;
  }

  .contact .close-btn {
    right: 40px;
  }
}

.contact-body {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 64px;
}

@media (min-width: 1024px) {
  .contact-body {
    padding: 0 64px;
  }
}

.contact-body h1 {
  margin-bottom: 4px;
  padding: 0 16px;
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
}

.contact-body h1:last-of-type {
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .contact-body h1 {
    padding: 0;
    font-size: 60px;
  }
}

@media (min-width: 1536px) {
  .contact-body h1 {
    font-size: 72px;
  }
}

.contact-details {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px 0;
  margin-top: 96px;
  padding: 16px;
}

@media (min-width: 1024px) {
  .contact-details {
    width: 50%;
    padding: 0;
  }
}

.contact-details dt {
  grid-column: span 2;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 30px;
}

.contact-details dd {
  grid-column: 3 / 7;
  margin: 0 0 0 8px;
  color: rgba(34, 37, 94, 0.8);
  font-size: 24px;
}

@media (min-width: 1024px) {
  .contact-details dd {
    margin-left: 32px;
  }
}

@media (min-width: 1536px) {
  .contact-details dt {
    font-size: 36px;
  }

  .contact-details dd {
    font-size: 30px;
  }
}

.contact-banner {
  position: absolute;
  right: 10%;
  bottom: 0;
  z-index: 10;
  width: 50vw;
}

@media (min-width: 1024px) {
  .contact-banner {
    width: 30vw;
  }
}

/* ======================================================= legal pages === */
.legal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 44px;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .legal {
    padding: 0 64px;
  }
}

.legal h1 {
  width: 100%;
  margin: 16px 0 16px;
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.legal h2 {
  width: 100%;
  margin: 8px 0;
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.4px;
}

.legal-body {
  margin-bottom: 8px;
  color: #101010;
  font-size: 18px;
  opacity: 0.8;
}

.legal-body p {
  margin-bottom: 8px;
}

.legal-body ul {
  margin-bottom: 8px;
  padding-left: 16px;
  list-style: disc;
}

.legal-body li {
  margin-top: 8px;
}

@media (min-width: 1024px) {
  .legal h2 {
    font-size: 24px;
  }
}

@media (min-width: 1536px) {
  .legal h1 {
    font-size: 36px;
  }

  .legal h2 {
    font-size: 30px;
  }
}

/* =============================================================== 404 === */
.notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.notfound h1 {
  color: var(--indigo);
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
}

.notfound p {
  margin: 12px 0 32px;
  color: var(--muted);
  font-size: 18px;
}

/* A second document title inside one legal page (refund.html) — styled like
   the page title but kept out of the heading-level-1 slot. */
.legal h2.legal-title {
  margin: 16px 0;
  font-size: 30px;
}

@media (min-width: 1536px) {
  .legal h2.legal-title {
    font-size: 36px;
  }
}
