:root {
  --black: #000000;
  --old-yellow: #c8a638;
  --field-yellow: #ffdc4f;
  --cream: #ece9dd;
  --ink: #000000;
  --muted-ink: #000000;

  /* NEW */
  --page-gutter: clamp(18px, 2vw, 32px);
}

* {
  box-sizing: border-box;
}

input, textarea, button {
  word-spacing: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--old-yellow);
  color: var(--ink);
  font-family: 'Cormorant Garamond', Georgia, serif;
  word-spacing: -0.08em;
  overflow-x: hidden;
}

.site-shell {
  min-height: 270vh;
}

.intro-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  padding: clamp(18px, 2vw, 32px);
  overflow: hidden;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  transition: background-color 900ms cubic-bezier(0.22, 1, 0.36, 1), background-image 900ms ease;
  isolation: isolate;
}

body.is-ready .intro-stage {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('./assets/portrait.png');
}

.texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 224, 88, 0.18), transparent 30%),
    radial-gradient(circle at 80% 62%, rgba(61, 72, 32, 0.18), transparent 34%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.18), transparent 40%, rgba(255, 255, 255, 0.1));
  filter: saturate(0.85);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .texture {
  opacity: 1;
}

.top-nav {
  position: fixed;
  top: clamp(18px, 2vw, 32px);
  left: var(--page-gutter);
  right: var(--page-gutter);
  z-index: 50;
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr) 1.5fr;
  gap: 8px;
  width: auto;
  margin-inline: 0;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 650ms ease 200ms, transform 650ms cubic-bezier(0.22, 1, 0.36, 1) 200ms;
}

body.is-ready .top-nav {
  opacity: 1;
  transform: translateY(0);
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--field-yellow);
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 1vw, 0.92rem);
  font-weight: 300;
  letter-spacing: 0;
}

.nav-pill.active {
  background: rgba(29, 25, 18, 0.62);
}

.nav-pill.action {
  background: var(--field-yellow);
  color: var(--ink);
}

.hero-title {
  position: absolute;
  left: clamp(18px, 5.4vw, 92px);
  top: clamp(86px, 12vh, 132px);
  margin: 0;
  max-width: 9ch;
  color: var(--field-yellow);
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: clamp(6rem, 16vw, 17rem);
  font-weight: 500;
  line-height: 0.76;
  letter-spacing: -0.04em;
  transform: translateY(22vh);
  transition: transform 1600ms cubic-bezier(0.25, 1, 0.5, 1), text-shadow 900ms ease;
  text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.hero-title span {
  display: block;
}

.hero-title::after {
  content: '';
  position: absolute;
  inset: -10px -20px;
  background-color: #000000;
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  z-index: 2;
}

body.is-ready .hero-title {
  transform: translateY(0);
  transition-delay: 600ms, 600ms;
  text-shadow: 0 24px 70px rgba(54, 44, 14, 0.18);
}

body.is-ready .hero-title::after {
  transform: scaleY(0);
}

.corner-note,
.year-mark {
  position: absolute;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 220, 79, 0.88);
  font-size: clamp(0.68rem, 1vw, 0.84rem);
  font-weight: 300;
  line-height: 1.35;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 650ms ease 450ms, transform 650ms cubic-bezier(0.22, 1, 0.36, 1) 450ms;
}

.corner-note {
  left: clamp(18px, 5.4vw, 92px);
  bottom: 30px;
  width: min(440px, 72vw);
}

.year-mark {
  right: clamp(18px, 3vw, 46px);
  bottom: 30px;
}

body.is-ready .corner-note,
body.is-ready .year-mark {
  opacity: 1;
  transform: translateY(0);
}

.scroll-zone {
  position: relative;
  height: 170vh;
  margin-top: -100vh;
  pointer-events: none;
  z-index: 2;
}

.pull-panel {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(320px, 1.35fr);
  column-gap: clamp(24px, 8vw, 120px);
  width: 100%;
  min-height: 100vh;
  padding-block: clamp(30px, 5vw, 72px);
  padding-inline: 0;
  border-radius: 32px 32px 0 0;
  background: var(--cream);
  color: var(--ink);
  transform: translate3d(0, 100vh, 0);
  will-change: transform;
  pointer-events: auto;
  box-shadow: 0 -18px 60px rgba(36, 31, 22, 0.22);
  overflow: hidden;
}

.panel-kicker {
  align-self: start;
  padding-top: clamp(18px, 3vw, 42px);
  color: var(--muted-ink);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 300;
  line-height: 1.35;
  text-transform: uppercase;
}

.panel-kicker span {
  display: block;
}

.panel-copy {
  position: relative;
  align-self: start;
  justify-self: end;
  width: min(720px, 100%);
  padding-top: 0;
}

.panel-copy p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.15rem, 4.4vw, 5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.gesture {
  position: absolute;
  z-index: 1;
  width: min(60vw, 520px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  overflow: visible;
}

.gesture path {
  fill: none;
  stroke: var(--field-yellow);
  stroke-width: 18;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-track {
  position: relative;
  z-index: 3;
  background: var(--cream);
  color: var(--ink);
  height: 220vh;
  border-top: 2px dashed var(--ink);
}

.gallery-sticky-container {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--cream);
}

.gallery-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-top: clamp(92px, 11vh, 150px);
  padding-bottom: clamp(70px, 10vh, 130px);
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

.frame-more {
  padding-top: clamp(50px, 7vh, 100px);
  padding-bottom: clamp(50px, 7vh, 100px);
}

.gallery-frame.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.photo-card {
  position: absolute;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.9) contrast(0.95);
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.gallery-frame.active .photo-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered card transition delays */
.photo-more-a, .photo-expression-a, .photo-gsap-a, .photo-joy-a {
  transition-delay: 0.05s;
}
.photo-more-b, .photo-gsap-b, .photo-joy-b {
  transition-delay: 0.15s;
}
.photo-more-c, .photo-joy-c {
  transition-delay: 0.25s;
}

.statement {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: min(760px, 72vw);
  transform: translate(-50%, -35%);
  opacity: 0;
  text-align: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
  will-change: transform, opacity;
}

.gallery-frame.active .statement {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.statement span {
  display: block;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 300;
  text-transform: uppercase;
}

.statement h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.scribble {
  position: absolute;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.scribble path {
  fill: none;
  stroke: var(--field-yellow);
  stroke-width: 16;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-more-a {
  top: 0;
  left: 8vw;
  width: min(33vw, 430px);
  aspect-ratio: 409 / 362;
}

.photo-more-b {
  top: 36vh;
  right: 4vw;
  width: min(24vw, 330px);
  aspect-ratio: 305 / 368;
}

.photo-more-c {
  left: 37vw;
  bottom: 7vh;
  width: min(17vw, 220px);
  aspect-ratio: 1;
}

.statement-more {
  top: 52%;
}

.scribble-wave {
  left: 18%;
  top: -65px;
  width: min(34vw, 370px);
}

.photo-expression-a {
  top: 18vh;
  left: 12vw;
  width: min(32vw, 430px);
  aspect-ratio: 1;
}

.statement-expression {
  top: 52%;
  left: 50%;
}

.scribble-eye {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(31vw, 360px);
}

.photo-gsap-a {
  left: 12vw;
  top: 43vh;
  width: min(32vw, 430px);
  aspect-ratio: 1;
}

.photo-gsap-b {
  top: 12vh;
  right: 3.5vw;
  width: min(32vw, 430px);
  aspect-ratio: 1;
}

.statement-gsap {
  top: 52%;
}

.outline-word {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(8rem, 15vw, 17rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  -webkit-text-stroke: 3px var(--field-yellow);
  opacity: 0.96;
}

.photo-joy-a {
  top: 0;
  right: 19vw;
  width: min(17vw, 230px);
  aspect-ratio: 213 / 159;
}

.photo-joy-b {
  right: 22vw;
  bottom: 4vh;
  width: min(29vw, 370px);
  aspect-ratio: 346 / 215;
}

.photo-joy-c {
  left: 8vw;
  bottom: -2vh;
  width: min(17vw, 230px);
  aspect-ratio: 212 / 178;
}

.statement-joy {
  top: 52%;
}

.scribble-smile {
  left: 57%;
  top: 46%;
  width: min(24vw, 280px);
  transform: translate(-16%, -16%);
}

/* Strategy Section */
.strategy-zone {
  position: relative;
  height: 200vh;
  background: var(--cream);
  border-top: 2px dashed var(--ink);
}

.strategy-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(40px, 6vh, 90px);
  overflow: hidden;
  background: var(--cream);
}

.strategy-container {
  position: relative;
  width: 100%;
  height: clamp(360px, 52vh, 520px);
  margin: 0 auto;
  padding-inline: var(--page-gutter);
  --deck-offset: clamp(30px, 4.5vh, 60px);
}

.title-dash {
  width: 48px;
  height: 0;
  border-top: 1px dashed var(--ink);
  margin: 0 0 20px 0;
}

.strategy-zone .title-dash {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: clamp(-170px, -19vh, -136px);
  z-index: 3;
}

.strategy-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  top: clamp(-300px, -32vh, -240px);
  left: 0;
  padding-inline: var(--page-gutter);
  z-index: 3;
}

.strategy-left-col {
  max-width: 45%;
}

.strategy-right-col {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.strategy-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-ink);
  margin: 0;
}

.strategy-title {
  margin: 0 0 16px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.strategy-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 22.26px;
  line-height: 1.15;
  font-weight: 300;
  color: var(--muted-ink);
  margin: 0;
}

.strategy-card {
  position: absolute;
  inset: 0;
  padding-inline: inherit;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.strategy-card.card-1 {
  z-index: 1;
  height: calc(100% - var(--deck-offset));
}

.strategy-card.card-2 {
  z-index: 2;
  top: var(--deck-offset);
  height: calc(100% - var(--deck-offset));
  transform: translate3d(0, 100vh, 0);
  will-change: transform;
}

.strategy-card.card-1 .strategy-banner,
.strategy-card.card-2 .strategy-banner {
  box-shadow: 0 -12px 36px rgba(0, 0, 0, 0.22);
}

.strategy-banner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  overflow: hidden;
  padding: 6px;
  display: flex;
  align-items: stretch;
}

.strategy-overlay-card {
  width: min(380px, 35%);
  background: var(--field-yellow);
  padding: clamp(24px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  z-index: 2;
  border-radius: 6px;
}

.strategy-card-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}

.strategy-card-text {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.68rem, 0.8vw, 0.8rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

/* Abacus Section */
.abacus-zone {
  position: relative;
  height: 250vh;
  background: var(--cream);
  border-top: 2px dashed var(--ink);
}

.abacus-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(60px, 9vh, 120px);
  overflow: hidden;
}

.abacus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto clamp(24px, 4vh, 60px) auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
  opacity: 0;
  will-change: opacity;
}
.abacus-header-left {
  max-width: 45%;
}

.abacus-kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-ink);
}

.abacus-header-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  max-width: 45%;
}

.abacus-header-right {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.abacus-header-right .abacus-header-text {
  max-width: 100%;
}

.abacus-header-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: clamp(10px, 1.5vw, 20px) 0 0 0;
  opacity: 0.85;
  max-width: 400px;
}

.abacus-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 80px);
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
  position: relative;
}

.abacus-col {
  position: relative;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(30px, 4.5vw, 60px);
}

.col-content {
  position: relative;
  opacity: 0;
  will-change: transform, opacity;
}

.col-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: clamp(280px, 40vh, 350px);
  width: 0;
  border-left: 1px dashed var(--ink);
  opacity: 1;
  will-change: opacity;
}

.col-num {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: clamp(3.5rem, 8vw, 10rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.col-title {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 12px 0;
  color: var(--ink);
}

.col-meta {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.65rem, 0.9vw, 0.8rem);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.05em;
}

/* Contact & Smoke Section */
.smoke-zone {
  position: relative;
  min-height: 115vh;
  background: var(--cream);
  padding:
    clamp(200px, 24vh, 260px)
    var(--page-gutter)
    clamp(80px, 10vh, 140px)
    var(--page-gutter);
  border-top: 2px dashed var(--ink);
  overflow: hidden;
}

.smoke-ring-wrapper {
  position: relative;
  width: 100%;
  height: clamp(480px, 72vh, 650px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
  will-change: opacity;
  margin: 0 auto;
}

.smoke-ring-wrapper.active {
  opacity: 1;
}

.smoke-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.smoke-kicker {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.smoke-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 clamp(60px, 8vh, 100px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateY(2.5rem);
  transition: transform 1400ms cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.smoke-title::after {
  content: '';
  position: absolute;
  inset: -10px -20px;
  background-color: var(--cream);
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 800ms cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  z-index: 2;
}

.smoke-ring-wrapper.active .smoke-title {
  transform: translateY(0);
  transition-delay: 500ms;
}

.smoke-ring-wrapper.active .smoke-title::after {
  transform: scaleY(0);
}

.smoke-line-2 {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.inline-card-photo {
  width: clamp(60px, 9vw, 110px);
  height: clamp(80px, 12vw, 140px);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(40, 35, 29, 0.12);
  transform: rotate(-3deg);
  display: inline-block;
}

.smoke-btn {
  background: var(--field-yellow);
  color: var(--ink);
  border: none;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 220, 79, 0.35);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.smoke-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255, 220, 79, 0.5);
}

.smoke-btn:active {
  transform: translateY(-1px);
}

.skills-ring-scaler {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 1;
  pointer-events: none;
  
  /* Zoom & Fade transition with a premium elastic/overshoot curve */
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
              visibility 0.6s;
  will-change: transform, opacity;
}

.skills-ring-scaler.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.skills-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  --radius: clamp(260px, 30vw, 350px);
  animation: spin 16s linear infinite;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.ring-positioner {
  position: absolute;
  width: 0;
  height: 0;
  transform: rotate(calc(var(--index) * (360deg / 15))) translate(var(--radius));
}

.ring-item {
  position: absolute;
  transform: translate(-50%, -50%) rotate(90deg);
  pointer-events: auto;
  text-align: left;
  line-height: 1.15;
  
  /* Sized to comfortably fit the larger matched font size */
  width: clamp(85px, 9.2vw, 110px);
  height: clamp(85px, 9.2vw, 110px);
  box-sizing: border-box;
  
  /* Flex layout to center content vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  /* Card Textbox style - optimized to run smoothly on GPU */
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(29, 25, 18, 0.12);
  padding: 10px;
  border-radius: clamp(10px, 1.2vw, 14px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(40, 35, 29, 0.05);
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s, color 0.3s;
}

.ring-item:hover {
  background: var(--field-yellow);
  border-color: var(--field-yellow);
  transform: translate(-50%, -50%) rotate(90deg) scale(1.08);
  box-shadow: 0 8px 24px rgba(230, 190, 40, 0.22);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Smoke Modal */
.smoke-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.smoke-modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.smoke-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.smoke-modal-content {
  position: relative;
  background: var(--cream);
  width: min(500px, 90%);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(40, 35, 29, 0.1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.smoke-modal[aria-hidden="false"] .smoke-modal-content {
  transform: translateY(0);
}

.smoke-modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--muted-ink);
  cursor: pointer;
  transition: color 0.2s ease;
}

.smoke-modal-close:hover {
  color: var(--ink);
}

.smoke-modal-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--muted-ink);
  margin-bottom: 24px;
}

.smoke-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.smoke-form.hidden {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: uppercase;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(40, 35, 29, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.form-group textarea {
  resize: none;
  overflow-y: auto;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--old-yellow);
  background: rgba(255, 255, 255, 0.9);
}

.smoke-submit-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 14px;
  font-weight: 300;
  border-radius: 12px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
  transition: opacity 0.2s ease;
}

.smoke-submit-btn:hover {
  opacity: 0.9;
}

.smoke-success-state {
  display: none;
  text-align: center;
  padding-block: 20px;
}

.smoke-success-state.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.smoke-puff-animation {
  font-size: 48px;
  animation: puffUp 1.5s ease-out infinite;
}

@keyframes puffUp {
  0% {
    transform: translateY(10px) scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20px) scale(1.4);
    opacity: 0;
  }
}

.smoke-success-state h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  margin: 0;
  color: var(--ink);
}

.smoke-success-state p {
  color: var(--muted-ink);
  font-size: 0.95rem;
  margin: 0;
}

.footer-wrapper {
  background: var(--cream);
}

/* Site Footer */
.site-footer {
  background: var(--field-yellow);
  color: var(--ink);
  padding: clamp(30px, 4vh, 40px) 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  cursor: pointer;
}

.footer-top {
  width: 100%;
  box-sizing: border-box;
  padding-inline: clamp(24px, 4vw, 48px);
}

.newsletter-wrap {
  max-width: 100%;
}

.newsletter-kicker {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 0.9vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--ink);
  margin-bottom: 24px;
}

.newsletter-form {
  position: relative;
}

button.input-row {
  background: none;
  border: none;
  border-bottom: 2px dashed var(--ink);
  padding: 0 0 12px 0;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: border-color 0.3s ease, opacity 0.3s ease;
  will-change: opacity;
}

button.input-row:focus {
  outline: none;
  border-color: var(--ink);
}

.newsletter-text-display {
  display: block;
  width: 100%;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.newsletter-submit {
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

button.input-row:hover .newsletter-submit {
  transform: translateX(6px);
}

.arrow-icon {
  width: 36px;
  height: 36px;
}

/* Footer Marquee Banner */
.footer-marquee {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  width: 100%;
  padding-block: clamp(20px, 3vh, 40px);
  margin-block: 60px 16px;
}

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

.marquee-content {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
}

.marquee-content span {
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  font-size: clamp(5.5rem, 13vw, 16rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.marquee-eye {
  width: clamp(100px, 13vw, 180px);
  height: auto;
  overflow: visible;
}

.marquee-eye path {
  fill: none;
  stroke: #ffffff;
  stroke-width: 16;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Footer Bottom Metadata */
.footer-bottom {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.65rem, 0.8vw, 0.85rem);
  font-weight: 300;
  color: var(--ink);
  opacity: 0.7;
  padding-top: 8px;
  padding-inline: clamp(24px, 4vw, 48px);
}

@media (max-width: 640px) {
  /* Footer Mobile Adjustments */
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* Smoke Zone Mobile Adjustments */
  .smoke-zone {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .smoke-title {
    font-size: clamp(2.5rem, 11vw, 4.5rem);
  }
  
  .smoke-ring-wrapper {
    height: clamp(460px, 80vh, 600px);
  }

  .skills-ring {
    --radius: clamp(155px, 40vw, 190px);
  }

  .ring-item {
    transform: translate(-50%, -50%) rotate(90deg) !important;
    width: clamp(65px, 16vw, 78px);
    height: clamp(65px, 16vw, 78px);
    padding: 8px;
    font-size: clamp(8px, 1.8vw, 10px);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(40, 35, 29, 0.04);
  }

  .ring-item:hover {
    transform: translate(-50%, -50%) rotate(90deg) scale(1.08) !important;
  }

  /* Abacus Mobile Adjustments */
  .abacus-zone {
    height: auto;
    min-height: auto;
  }
  .abacus-container {
    position: relative;
    height: auto;
    padding-block: 80px;
    display: block;
  }
  .abacus-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
    padding-inline: 24px;
    opacity: 1 !important;
  }
  .abacus-header-left {
    max-width: 100%;
  }
  .abacus-header-text {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .abacus-header-right {
    max-width: 100%;
    align-items: flex-start;
    text-align: left;
  }
  .abacus-header-sub {
    max-width: 100%;
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-top: 8px;
  }
  .abacus-track {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .abacus-col {
    height: auto;
    padding-left: clamp(30px, 4.5vw, 60px);
  }
  .col-line {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 220px;
    opacity: 1 !important;
  }
  .col-content {
    opacity: 1 !important;
    transform: none !important;
  }

  .intro-stage {
    min-height: 600px;
    padding: 14px;
  }

  .top-nav {
    grid-template-columns: 1fr 1fr;
  }

  .top-nav .nav-pill:nth-child(3),
  .top-nav .nav-pill:nth-child(4),
  .top-nav .nav-pill:nth-child(5),
  .top-nav .nav-pill:nth-child(6) {
    display: none;
  }

  .hero-title {
    left: 18px;
    top: 118px;
    font-size: clamp(5rem, 24vw, 9.5rem);
  }

  .pull-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 42px;
  }

  .panel-copy {
    justify-self: start;
    padding-top: 0;
  }

  .panel-copy p {
    font-size: clamp(2.35rem, 11vw, 4.8rem);
  }

  .gesture {
    width: min(95vw, 390px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .year-mark {
    display: none;
  }

  .gallery-frame {
    min-height: 100svh;
    padding: 112px 20px 80px;
  }

  .statement {
    width: calc(100vw - 40px);
  }

  .statement h2 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
    white-space: normal;
  }

  .photo-card {
    opacity: 0.92;
  }

  .photo-more-a,
  .photo-expression-a,
  .photo-gsap-a {
    left: 20px;
    top: 128px;
    width: 46vw;
    height: 28vh;
  }

  .photo-more-b,
  .photo-gsap-b {
    right: 20px;
    top: 58vh;
    width: 38vw;
    height: 25vh;
  }

  .photo-more-c,
  .photo-joy-a,
  .photo-joy-c {
    display: none;
  }

  .statement-expression {
    left: 50%;
  }

  .outline-word {
    font-size: 8rem;
    -webkit-text-stroke-width: 8px;
  }

  .photo-joy-b {
    right: 20px;
    bottom: 8vh;
    width: 56vw;
    height: 24vh;
  }

  .scribble-wave,
  .scribble-eye,
  .scribble-smile {
    width: 78vw;
  }

  /* Strategy Zone Mobile Adjustments */
  .strategy-zone {
    height: auto;
    background: var(--cream);
    padding-block: 40px;
  }
  
  .strategy-sticky {
    position: static;
    height: auto;
    overflow: visible;
    padding-bottom: 0;
  }
  
  .strategy-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-inline: 16px;
  }
  
  .strategy-zone .title-dash {
    position: static;
    transform: none;
    margin: 0 auto 16px auto;
  }

  .strategy-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-inline: 0;
    margin-bottom: 24px;
  }
  .strategy-left-col,
  .strategy-right-col {
    max-width: 100%;
    width: 100%;
  }
  .strategy-right-col {
    align-items: flex-start;
    text-align: left;
  }
  .strategy-title {
    text-align: left;
    font-size: clamp(2.0rem, 8vw, 3.0rem);
    margin: 0 0 12px 0;
  }
  .strategy-intro-text {
    text-align: left;
  }
  
  .strategy-card {
    position: static;
    width: 100%;
    height: auto;
    padding-inline: 0;
  }
  
  .strategy-card.card-1,
  .strategy-card.card-2 {
    transform: none !important;
    top: auto !important;
    height: auto !important;
  }

  .strategy-card.card-1 .strategy-banner,
  .strategy-card.card-2 .strategy-banner {
    box-shadow: none !important;
  }
  
  .strategy-banner {
    height: auto;
    min-height: 380px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4px;
  }
  
  .strategy-overlay-card {
    width: 100%;
    min-height: 200px;
    padding: 24px;
    margin-top: 40px;
    border-radius: 4px;
  }
}

/* Where I'm Most Useful Grid Layout */
.useful-grid-container {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  position: absolute;
  left: var(--page-gutter);
  right: var(--page-gutter);
  width: auto !important;
  transform: translateY(-50%) !important;
  gap: clamp(24px, 4.5vh, 50px);
}

.useful-left {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  box-sizing: border-box;
}

.useful-left-col {
  max-width: 45%;
}

.useful-right-col {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  position: relative;
}

.useful-right-col .title-dash {
  align-self: flex-end;
}

.useful-left .gallery-title {
  position: relative;
  z-index: 3;
  margin: 0 0 16px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  white-space: normal;
  text-align: right;
}

.useful-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-ink);
  margin: 0;
}

.useful-intro-text {
  font-family: 'Inter', sans-serif;
  font-size: 22.26px;
  line-height: 1.45;
  font-weight: 300;
  color: var(--muted-ink);
  margin: 0;
  text-align: right;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.useful-left .scribble-wave {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  transform: translate(2%, -25%);
  width: min(32vw, 360px);
  pointer-events: none;
}

.useful-right {
  width: 100%;
}

.useful-cards-grid {
  position: relative; /* For absolute dot positioning */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 100%;
  margin-inline: auto;
  text-align: left;
  background-color: #FFFFFF;
  padding: 4px;
  padding-bottom: calc(clamp(40px, 6vh, 90px) + 4px);
  box-sizing: border-box;
}

.dot-group {
  position: absolute;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.group-top-right {
  top: clamp(16px, 3vh, 32px);
  right: clamp(16px, 2.5vw, 32px);
}

.group-bottom-left {
  bottom: clamp(16px, 3vh, 32px);
  left: clamp(16px, 2.5vw, 32px);
}

.grid-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-orange {
  background-color: #ff9f1a; /* Vibrant Mac minimize orange */
}

.dot-green {
  background-color: #27c93f; /* Vibrant Mac maximize green */
}

.useful-card {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: clamp(280px, 32vh, 380px);
  transition: box-shadow 0.3s ease;
}

.useful-card:nth-child(odd) {
  transform: translateY(0);
}

.useful-card:nth-child(even) {
  transform: translateY(clamp(40px, 6vh, 90px));
}

.useful-card:hover {
  box-shadow: 0 12px 32px rgba(40, 35, 29, 0.12);
  z-index: 2;
}

.card-header {
  position: relative;
  z-index: 2;
  height: clamp(38px, 4.5vh, 46px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  border-radius: 0;
}

.card-badge {
  border: 1px solid rgba(0, 0, 0, 0.35);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  background: transparent;
  color: #000000;
}

.card-icon {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #000000;
}

/* Body Section */
.card-body {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 3vh, 36px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  box-sizing: border-box;
  border-radius: 0;
}

.card-desc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.85vw, 0.95rem);
  line-height: 1.4;
  font-weight: 400;
  color: #000000;
  margin: 0 0 24px 0;
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 2.1vw, 2.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #000000;
  text-transform: lowercase;
  margin: 0;
}

/* Card Themes - Unified Yellow Theme matching the Strategy section style */
.card-strategy,
.card-ux,
.card-data,
.card-workflows {
  background: var(--field-yellow);
}
.card-strategy .card-header,
.card-ux .card-header,
.card-data .card-header,
.card-workflows .card-header {
  background: var(--field-yellow);
}
.card-strategy .card-body,
.card-ux .card-body,
.card-data .card-body,
.card-workflows .card-body {
  background: var(--field-yellow);
}

/* Quote Card for 'A field of expression' */
.quote-container {
  position: relative;
  width: min(600px, 85vw);
  aspect-ratio: 3.5 / 1;
  margin: 0 auto;
}

.quote-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.quote-box {
  flex: 1;
  border: none;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(20px, 4vw, 40px);
}

/* Shadow Card */
.quote-shadow {
  left: -20px;
  top: 20px;
  z-index: 1;
  color: #c5c2b5;
}
.quote-shadow .quote-box {
  background-color: #c5c2b5;
}

/* Main Card */
.quote-main {
  z-index: 2;
  color: var(--field-yellow);
}
.quote-main .quote-box {
  background-color: var(--field-yellow);
}

/* Typography / Icons */
.quote-mark {
  position: absolute;
  height: auto;
  color: #ffffff;
}

.quote-mark-start {
  width: clamp(45px, 10vw, 75px);
  top: clamp(-30px, -5vw, -15px);
  left: clamp(-25px, -4vw, -12px);
  transform: rotate(180deg);
}

.quote-mark-end {
  width: clamp(75px, 16vw, 130px);
  bottom: clamp(-50px, -10vw, -35px);
  right: clamp(-40px, -8vw, -25px);
}

.statement .title-dash {
  margin-left: auto;
  margin-right: auto;
}

.statement .quote-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #000000;
  text-align: center;
  margin: 0 0 clamp(72px, 12vh, 120px) 0 !important;
  white-space: normal !important;
}

@media (max-width: 768px) {
  .dot-group {
    display: none;
  }

  .quote-container {
    width: min(290px, 75vw);
  }
  
  .quote-shadow {
    left: -12px;
    top: 12px;
  }

  .useful-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .useful-left-col,
  .useful-right-col {
    max-width: 100%;
    width: 100%;
  }
  
  .useful-right-col {
    align-items: flex-start;
    text-align: left;
    margin-top: 8px;
  }
  
  .useful-left .gallery-title {
    text-align: left;
    font-size: clamp(2.0rem, 8vw, 3.0rem);
    margin: 0 0 12px 0;
  }
  
  .useful-intro-text {
    text-align: left;
    max-width: 100%;
    font-size: 22.26px;
  }
  
  .useful-left .scribble-wave {
    right: auto;
    left: 0;
    top: 0;
    transform: translate(-5%, -20%);
    width: min(80vw, 260px);
  }

  .useful-grid-container {
    left: var(--page-gutter) !important;
    right: var(--page-gutter) !important;
    width: auto !important;
    transform: translate(0, -50%) !important;
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 8px;
  }
  
  .useful-grid-container::-webkit-scrollbar {
    width: 4px;
  }
  
  .useful-grid-container::-webkit-scrollbar-thumb {
    background: rgba(40, 35, 29, 0.2);
    border-radius: 4px;
  }
  
  .useful-cards-grid {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 4px;
    padding-bottom: 4px;
  }
  
  .useful-card {
    padding: 0;
    min-height: auto;
  }
  
  .useful-card:nth-child(odd),
  .useful-card:nth-child(even) {
    transform: none !important;
  }
  
  .useful-card:hover {
    box-shadow: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .pull-panel {
    transform: translate3d(0, 0, 0);
  }
}
